I am calling a SOAP service via a ChannelFactory without using the WSDL. I will be consuming multiple versions of this service and i'm trying to avoid having multiple versions of the WSDL in my project/config files.
The code is as follows:
[ServiceContract()]
public interface IServiceContract
{
[OperationContract(Name = "login")]
string login(string username);
}
public void UserLogin()
{
IServiceContract service = new ChannelFactory<IServiceContract>(
new BasicHttpBinding(),
"http://myurl.com/index.php/api/v2_soap/index/")
.CreateChannel();
var sessionId = service.login("username");
}
Using Fiddler I see the SOAP request and response come back just fine. But there is a namespace issue preventing the response message from deserializing.
Error Message: Error in deserializing body of reply message for operation 'login'. OperationFormatter encountered an invalid Message body. Expected to find node type 'Element' with name 'loginResponse' and namespace 'http://tempuri.org/'. Found node type 'Element' with name 'ns1:loginResponse' and namespace 'urn:Foo'
If I update my ServiceContract to include the namespace like so:
[ServiceContract(Namespace="urn:Foo")]
public interface IServiceContract
{
[OperationContract(Name = "login")]
string login(string username);
}
The error message goes away but the method now returns null instead of the actual value. Once again I can see the XML in Fiddler and the value I am looking for is in the response but it appears it still can't find the element ns1:loginResponse.
The question is how do I configure the ChannelFactory to know that all elements with a given Namespace will be prefixed with ns1:?