I wasn't sure if this belonged in the C# group or not, but here goes. When I
call the service (not one I created - or have any control over) I get this
error:
Unrecognized charSet 'ISO-8859-1' in contentType.
Here is the calling code:
ChannelFactory< IMyInterfacefac tory = new
ChannelFactory< IMyInterface>(" endpoint");
var proxy = factory.CreateC hannel();
var response = proxy.MyFunctio n(param1);
((IDisposable)p roxy).Dispose() ;
I'm using webHttpBinding. Any ideas? Thanks for any help, I really
appreciate it.
Thanks,
Nick
call the service (not one I created - or have any control over) I get this
error:
Unrecognized charSet 'ISO-8859-1' in contentType.
Here is the calling code:
ChannelFactory< IMyInterfacefac tory = new
ChannelFactory< IMyInterface>(" endpoint");
var proxy = factory.CreateC hannel();
var response = proxy.MyFunctio n(param1);
((IDisposable)p roxy).Dispose() ;
I'm using webHttpBinding. Any ideas? Thanks for any help, I really
appreciate it.
Thanks,
Nick
Comment