views:

1388

answers:

1

Hi, I have an error in deserialization from calling an operation in an external web service (https). The error is "Error in deserializing body of reply message for operation 'score'." Score is a credit score operation. The stack trace includes "There is an error in XML document (2, 157)." but I don't know how to get the XML document so I can identify the problem.

I am using Visual Studio 2008, and the service proxy is generated code. My question is: Can I get a dump of the response somehow? Tried Fiddler, but when using transport level security (https), the error changes to "Could not establish trust relationship for the SSL/TLS secure channel".

+2  A: 

Using the Service Trace Viewer Tool may offer more details on the exception. Try setting the trace level to Error or Warning.

Steve Dignan
Thank you very much, this worked perfectly and was easy to set up.
Henrik