English 中文(简体)
How to generate SOAP message from a WCF service?
原标题:
  • 时间:2009-11-13 03:33:13
  •  标签:
  • wcf

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

最佳回答

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

问题回答

Do you mean you want to view the soap messages? if you do, you can try wcf trace viewer. It comes with VS 2010 developer edition. If you don t have that, you can try WCF storm, 15 days free trail.

But yeah, like what marc said, if you want to generate soap messages to test your wcf service host, you can use wcftestclient.exe.





相关问题
WCF DataMember Serializing questions

Ok, so I was part way through the long winded process of creating DTOs for sending my model over the wire and I don t feel like I m going down the right route. My issue is that most of the entities ...

Access WCF service on same server

I have a .NET website with a WCF service. How do I access the current operations context of my service? One possible work around is to just make a call to the service within the app...but that seems ...

WCF binding error

So I got into work early today and got the latest from source control. When I try to launch our ASP.NET application, I get this exception: "The binding at system.serviceModel/bindings/wsHttpBinding ...

The service operation requires a transaction to be flowed

I am facing strange issue with our WCF service. The same code was working fine until recently we added more OperationContracts(Web Methods). We have common 3 tier architecture. DAL (WCF) BLL Web ...

热门标签