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: 201
- 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) - Once a service is made RESTful by adding a
webHttp
binding on the service host, can the host have other endpoints as well? (wsHttp
ornetTcp
) - 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) - 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