Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
5k views

In WCF, for a webHttpBinding, how do I specify credentials in the client side web.config when the server is using basic authentication?

I have two WCF RESTful services - the "general" service is public and has no security; the "admin" service I intend to use basic authentication over SSL. This is my server side web.config: ...
3
votes
0answers
1k views

Does the WCF REST WebChannelFactory client support REST services that use redirects?

If you have a RESTful web service that uses HTTP 301 redirects to send requests like: http://server/customers/?name=John to the url http://server/customers/324 (as created by a service ...
2
votes
1answer
362 views

WCF + REST, Increase MaxStringContentLength

We are running into the following error: There was an error deserializing the object of type Project.ModelType. The maximum string content length quota (8192) has been exceeded while reading ...
1
vote
1answer
235 views

Disposing client after creation with WebChannelFactory

In my current production code, and according to documentation on msdn, the way to create a client is this using (WebChannelFactory<IServiceInterface> cf = new ...