Click here to Skip to main content
15,892,199 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
From my web application i m calling a web service passing the input parameters. Now i want the soap message whatever is going to the webservice from my web application.
Posted
Updated 21-Jun-11 20:17pm
v2
Comments
R. Giskard Reventlov 21-Jun-11 11:05am    
What is your question? What have you tried for yourself? You need to be very clear since we have long since lost our powers of telepathy.
StM0n 22-Jun-11 4:57am    
"[...] since we have long since lost our powers of telepathy." Did we.... oh yeah, I see your reply... we did *scnr*

1 solution

Create a web service with the webmethod to receive an xmldocument as string input.

For saving xml file:

MSIL
StreamWriter file = new StreamWriter("c:\\test.txt");
file.WriteLine(xmldata);
file.Close();
 
Share this answer
 

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