socialMatrix
socialMatrix

Reputation: 1443

view SOAP request before it is sent to a web-service

I am consuming a SOAP based web-service with .net 3.5 The web-service itself is developed in Java.

I know what the SOAP request should look like; And I am building the similar request in .net. However, I want to look at the XML that is sent to the web-service.

Is there a tool that would allow me to see what the request that I send look like just before it hits the web-service?

Upvotes: 0

Views: 577

Answers (1)

Amila Suriarachchi
Amila Suriarachchi

Reputation: 1238

you can use Apache tcpmon[1] to view the messages pass through.

[1] http://ws.apache.org/commons/tcpmon/

Upvotes: 1

Related Questions