Click here to Skip to main content
15,897,371 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello friends,
I am new to webservices, i am calling my local webservice by http-post method like this:
C#
byte[] data = System.Text.Encoding.ASCII.GetBytes("a=" + TextBox1.Text+"&b="+TextBox2.Text);
System.Net.WebRequest request = System.Net.HttpWebRequest.Create("http://localhost:5083/myservicecodeproject1/WebServicetakinganewcsfile.asmx/add");
request.Method = "POST";
request.ContentLength = data.Length;
request.ContentType = "application/x-www-form-urlencoded";

System.IO.Stream str = request.GetRequestStream();
str.Write(data, 0, data.Length);
str.Flush();       


Now i am using the response to get my result
C#
System.Net.WebResponse response = request.GetResponse();
System.IO.StreamReader reader = new System.IO.StreamReader(response.GetResponseStream());
string result=reader..ReadToEnd();


now this result string gets :

XML
<?xml version="1.0" encoding="utf-8"?>
<int xmlns="http://tempuri.org/">
2
</int>

Now here is my question HOW to get this int "2" result into a integer type variable...

Thanks a lot in advance
Posted
Updated 30-Apr-13 23:04pm
v3

1 solution

 
Share this answer
 
Comments
vinu2528 1-May-13 6:09am    
thanks a lot edo tzumer

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