当我尝试调用我的Adobe Livecyle Soap服务时出现以下错误:
值不能为空。参数名称:uri
奇怪的是我没有任何名为“uri”的参数。我无法调试此错误,因为服务甚至无法启动。错误消息是我所有的。
以下是我传递参数的代码:
BasicHttpBinding binding =
new BasicHttpBinding(BasicHttpSecurityMode.Transport);
binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.Basic;
LetterService.LETTER_APPLICATIONS_Client client =
new LetterService.LETTER_APPLICATIONS_Client(
binding,
new EndpointAddress(
System.Configuration.ConfigurationManager.AppSettings["URL"]));
答案 0 :(得分:5)
EndpointAddress()
的参数名为URI
(您可以将光标放在(
之后,然后按Ctrl + Shift + Space
查看参数列表)。
您可以通过替换以下内容来验证这是问题:
new EndpointAddress(
System.Configuration.ConfigurationManager.AppSettings["URL"]));
..具有如下内容:
new EndpointAddress("http://your.service.uri/");
如果可行,您知道您的错误与配置相关。