Making a WCF call with AJAX

Posted by DotnetDude on Stack Overflow See other posts from Stack Overflow or by DotnetDude
Published on 2010-03-12T16:37:53Z Indexed on 2010/03/12 18:47 UTC
Read the original article Hit count: 189

Filed under:
|
|
|
|
  1. Is it required to use a RESTful service to be able to make a ajax call to a wcf service (for example: by using WebInvoke attribute on Operation contracts)
  2. Once a service is made RESTful by adding a webHttp binding on the service host, can the host have other endpoints as well? (wsHttp or netTcp)
  3. Is it required that the aspNetCompatibilityEnabled be set to true for a service that has webHttp binding (and can this setting coexist for other endpoints)
  4. I understand I can use both JQuery and ScriptManager for making WCF calls on the client. Why should I use one over the other?

© Stack Overflow or respective owner

Related posts about wcf

Related posts about AJAX