pbean
pbean

Reputation: 717

How to implement a SOAP client in C# (specifically for Windows Mobile)?

I'm really confused about how to create a SOAP client in C# using .NET. I have found this page which looks really promising, but for the life of me I can't find Microsoft.Web.Services2. Also most information I find about SOAP with C#/.NET are about creating web services in ASP.NET and that's not what I want to do.

Basically what I want to do is implement a SOAP client in C# in a Windows Mobile application.

Upvotes: 2

Views: 1931

Answers (1)

ctacke
ctacke

Reputation: 67178

Download the old OpenNETCF.Web.Services2 source code (in the deprecated source downloads at the bottom of the page). Depending on your exact needs, this will probably provide the WSE classes you need.

Upvotes: 1

Related Questions