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?
Asked
Active
Viewed 293 times
-3
-
2You really need to be more specific to get help in this forum. Which tool did you use? How did you use that tool? What do you mean by "without success"? – carlosfigueira Jan 26 '13 at 00:25
-
In general, you want to send them the WSDL and any referenced XML Schema files (*.xsd) – John Saunders Jan 26 '13 at 00:55
1 Answers
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