Writing a C# SOAP client over SSL
Currenlty i am writing a SOAP client over SSL in the following way
1) Use an open source SSL library to establish a SSL connection to a SOAP web service server.
2) Manually form SOAP request and pass it onto the server over the SSL connection created in 1.
Now my question is whether i can do all this through a web service client class or some other class provided as part of the .NET library or which is freely available over the internet.
Preferrably i would like to do it using the .NET framewrok class library.
Any help in this would be really appreciated.
Thanks
Vinu

