0

从美国实例连接到 Dynamics CRM 2011 online 的外部 Web 服务,但是完全相同的代码在新加坡的实例中不起作用(我的客户和我们公司所在的澳大利亚数据中心):

BasicHttpBinding binding = new BasicHttpBinding();
EndpointAddress address = new EndpointAddress("http://my.domain.com/webservice");
DataService1 client = new DataService1(binding, address);
client.RunMethod();

在非美国实例上,此代码返回以下错误:

System.ServiceModel.FaultException`1[[Microsoft.Xrm.Sdk.OrganizationServiceFault,
Microsoft.Xrm.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]:
System.Security.SecurityException: Microsoft Dynamics CRM has experienced an error.
Reference number for administrators or support: #2BEE9520

有没有人能够从非美国的 CRM2011 Online 实例中做类似的事情?

4

2 回答 2

0

几个月前,此论坛主题引用了此问题:http: //social.microsoft.com/Forums/en-US/crmdevelopment/thread/41c0e19b-ada9-42ce-8ca9-dd83538a356e/

我现在自己成功地测试了这一点,发现它是真的。

于 2012-04-19T03:34:29.730 回答
0

这里的代码示例应该可以解决您的问题。 http://community.dynamics.com/product/crm/crmtechnical/b/crmgirishraja/archive/2011/03/22/crm-online-2011-web-services-soap-sample-now-ready-for-europe- amp-asia.aspx

于 2011-05-27T04:28:25.863 回答