tags:

views:

20

answers:

1

Hi All, Is there any way programmatically or any tool by which i can generate SOAP messages from WCF services ?

A: 

What do you mean? WCF uses SOAP to communicate - all WCF messages (except when using the REST based webHttpBinding) ARE SOAP messages.....

Something I think I'm not understanding what you're really looking for....

If you need a tool to build SOAP messages to send to a WCF service - look at the WcfTestClient.exe in your Visual Studio Common7/IDE directory - it does that. Works with almost any WCF binding.

Or check out SoapUI for a more powerful toolset to examine and test web services in general (works with WCF's basicHttpBinding).

Marc

marc_s