Microsoft Dynamics CRM を使用したことはありません。
マップを使用して新しいパネルを生成し、すべての連絡先をマップに配置する方法を探しています。
Microsoft Dynamics CRM については何も知りませんが、Google Maps API V3 の使い方は完璧に知っています。
私は一日中試しましたが、何かを得ることはできません。
連絡先情報をどこでどのように取得してマップに配置できるかを知る必要があるだけです。
Dynamics CRM を使用するのは初めてなので、とても混乱しています。
みんなありがとう。
私がとても混乱しているのは私のコードです。
<html>
<head>
<title>Nada</title>
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<script src="../ClientGlobalContext.js.aspx"></script>
<script src="Scripts/jquery1.4.1.min.js" type="text/javascript"></script>
<script src="Scripts/RESTJQueryMap.js" type="text/javascript"></script>
<script type="text/javascript">
function SoapCall() {
var xml =
"" +
"<?xml version=\"1.0\" encoding=\"utf-8\"?>" +
" <soap:Envelope xmln:soap=\"http://schemas.xmlsoap.org/soap/envelope/\"" +
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"" +
" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">" +
GenerateAuthenticationHeader() +
" <soap:Body>" +
" <RetrieveMultiple xmlns=\"http://schemas.microsoft.com/crm/2007/WebServices\">" +
" <query xmlns:q1=\"http://schemas.microsoft.com/crm/2006/Query\" xsi:type=\"q1:QueryExpression\">" +
" <q1:EntityName>account</q1:EntityName>" +
" <q1:ColumnSet xsi:type=\"q1:ColumnSet\">" +
" <q1:Attributes>" +
" <q1:Attribute>name</q1:Attribute>" +
" </q1:Attributes>" +
" </q1:ColumnSet>" +
" </query>" +
" </RetrieveMultiple>" +
" </soap:Body>" +
"</soap:Envelope>" +
"";
var xmlHttpRequest = new ActiveXObject("Msxml2.XMLHTTP");
xmlHttpRequest.Open("POST", "/mscrmservices/2007/CrmService.asmx", false);
xmlHttpRequest.setRequestHeader("SOAPAction", " http://schemas.microsoft.com/crm/2007/WebServices/RetrieveMultiple");
xmlHttpRequest.setRequestHeader("Content-Type", "text/xml; charset=utf-8");
xmlHttpRequest.setRequestHeader("Content-Length", xml.length);
xmlHttpRequest.send(xml);
var resultXML = xmlHttpRequest.responseXml;
alert(resultXML.xml);
// Check for errors.
var errorCount = resultXML.selectNodes('//error').length;
if (errorCount != 0) {
var msg = resultXML.selectSingleNode('//description').nodeTypedValue;
return "-1";
}
var results = resultXML.selectNodes('//BusinessEntity');
for (var i = 0; i < results.length; i++) {
var output = results[i].selectSingleNode("./q1:name").nodeTypeValue;
alert(output);
}
}
</script>
</head>
<body>
<button onClick="SoapCall()">Empezar</button>
</body>
</html>
ボタンが「SoapCall()」を開始する場所
次に、エラーがあります:
GET .../ClientGlobalContext.js.aspx 404 (見つかりません)
GET .../WebResources/Scripts/jquery1.4.1.min.js 500 (内部サーバー エラー) new_PRU:7
GET .../WebResources/Scripts/RESTJQueryMap.js 500 (内部サーバー エラー)