I am trying to call a webservice using WCF that uses the following encoding:
I cann
Another option is using the older .NET Framework 2.0 ASMX WebServices technology which supports iso-8859-1
out of the box:
And if the service uses Basic HTTP Authentication you can specify it like this:
TheService theService = new TheService();
theService.Credentials = new NetworkCredential("username", "password");