I get the following error when I am trying to invoke my Adobe Livecyle Soap service:
Value cannot be null. Parameter name: uri
The strange thing is that I don't have any parameter named "uri". I can't debug this error since the service can't even start. The error message is all I've got.
Here is the code, that I pass the parameter:
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"]));
{}
button to format it - you can't do a decent job of code formatting in comments. The edit link is at the bottom left under the tags. – DapEndpointAddress
constructor that's throwing the exception - check your config file and make sure that you have a "LetterMergeURL"appSetting
. – Dap