Click here to Skip to main content
15,879,474 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi
How to send username and password in soap C#

I want to send xml using web services .but issue is occurred during send request to web service I have not Append Username and password in soap.


So can u please help us how to do it...
Posted
Comments
[no name] 19-Sep-12 9:19am    
How can we know what web service you are using or what "issue is occurred" means?

1 solution

WebRequest request = (HttpWebRequest)WebRequest.Create(endPoint);
        request.Method = "POST";

        byte[] byteArray = Encoding.UTF8.GetBytes(requestMesg);
        request.ContentLength = byteArray.Length;

        request.ContentType = "application/soap+xml;charset=UTF-8";

        NetworkCredential creds = new NetworkCredential("username", "password");
        request.Credentials = creds;

        Stream datastream = request.GetRequestStream();
        datastream.Write(byteArray, 0, byteArray.Length);
        datastream.Close();

        WebResponse response = request.GetResponse();
        datastream = response.GetResponseStream();

        StreamReader reader = new StreamReader(datastream);

        respMesg = reader.ReadToEnd().ToString();

        reader.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