Quick simple question really.
I'm sending data to a web service in C# and its giving me XML back. It is a SOAP 1.1 and/or 1.2 web service. I'm not sure how to properly recieve this data and then get the information I need out of it.
Here is my code to send it
try
{
_webService.ProcessCard(sVariable1, sVariable2);
}
catch ( Exception d )
{
}
And here is what I get back if I manually use the service through a browser
<Response>
<Result>24</Result>
<RespMSG>Invalid</RespMSG>
<ExtData>More Data</ExtData>
</Response>
Here is the service definition:
public Response ProcessCard(string sVariable1, string sVariable2 ) {
object[] results = this.Invoke("ProcessCard", new object[] {
sVariable1,
sVariable2});
return ((Response)(results[0]));
}