Click here to Skip to main content
15,896,269 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
Dear Sir,

I have two webservice first webservice send request to second webservice and second webservice give the responce to first webservice in soap
but in this all i am enable to make code for send respoce from second webservice to first please help me
note: send responce will be


<soap:envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:body>
    <callpaysecureresponse xmlns="https://paysecure/merchant.soap/">
      <callpaysecureresult>string</callpaysecureresult>
    </callpaysecureresponse>
  </soap:body>
</soap:envelope>
 

Please Help Me..................
Posted
Comments
Sinisa Hajnal 10-Nov-14 4:20am    
What do you mean it gives response in SOAP? Second service does not "send" its response, it simply gives the result to the caller regardless of where the call originated - you could call the same service from your desktop application.

You should create the object that contains the data of your soap (better solution) or return XML object (string) and parse it in your caller (worse because it creates the need for you to know exact structure of XML received).

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