Click here to Skip to main content
15,880,796 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
I have a soap message like this.Basically it is hello world web service method created in .net c#.

XML
<soap:envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:tem="http://tempuri.org/">
   <soap:header />
   <soap:body>
      <tem:helloworld />
   </soap:body>
</soap:envelope>



I am testing it in SOAP UI, it is working.

But my client is sending the data like

XML
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
   <soap:Header/>
   <soap:Body>
      <tem:HelloWorld/>
   </soap:Body>
</soap:Envelope>


When i try this in SOAP UI it is throwing error. "xmlns:tem="http://tempuri.org/" is not provided by them. There code cannot be changed, but how do i remove it in my web service? I see xmlns:tem="http://tempuri.org/" getting by default added. But if i give [WebService(Namespace = "")] for my class also it is not working.

Apprciate any help.
Posted
Updated 18-Jun-13 13:42pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900