Hi, I have a WCF service (XML+JSON) running on http://servicehost:8080/myService. My ASP.NET application with jQuery is running on http://webapp/Login.aspx
I want jQuery to use Ajax and call the URL http://servicehost:8080/myService. The browser does not allow this cross-host call, which is expected. Some of the posts on stackoverflow suggested using JSONP. Is that the only option?
Is there a way to define a proxy service on the http://webapp and have it access the remote WCF service?
Thanks
Abhi