-3

i need integrate my application with another system, and i need to sent the web service structure, so for this i need to send a xml with the request and response message. I use some tools to do this but without any success. How i can solve this problem?

John Saunders
  • 160,644
  • 26
  • 247
  • 397

1 Answers1

0

Use Fiddler to capture samples of the requests to the Web service and the corresponding responses.

Use the WSDL of the Web service - if it is a SOAP one there should be a URL that returns it.

MiMo
  • 11,793
  • 1
  • 33
  • 48
  • i try with fiddler and with WebServiceStudio and i can't get the message that i need to pass. I need the soap message with request and response from my wcf. – user2012719 Jan 27 '13 at 09:40
  • Fiddler does not show localhost traffic - maybe that's the reson why you don't see the request and responses? You should definitly be able to see the SOAP messages there – MiMo Jan 27 '13 at 22:41