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: 253
        
- Is it required to use a RESTful
service to be able to make a ajax
call to a wcf service (for example: by using
WebInvokeattribute on Operation contracts)
- Once a service is made RESTful by adding a webHttpbinding on the service host, can the host have other endpoints as well? (wsHttpornetTcp)
- Is it required that the aspNetCompatibilityEnabledbe set to true for a service that has webHttp binding (and can this setting coexist for other endpoints)
- I understand I can use both JQuery and ScriptManagerfor making WCF calls on the client. Why should I use one over the other?
© Stack Overflow or respective owner