N
Nick
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<IMyInterface> factory = new
ChannelFactory<IMyInterface>("endpoint");
var proxy = factory.CreateChannel();
var response = proxy.MyFunction(param1);
((IDisposable)proxy).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<IMyInterface> factory = new
ChannelFactory<IMyInterface>("endpoint");
var proxy = factory.CreateChannel();
var response = proxy.MyFunction(param1);
((IDisposable)proxy).Dispose();
I'm using webHttpBinding. Any ideas? Thanks for any help, I really
appreciate it.
Thanks,
Nick