I have been using WCF web services for around about a year now and have found them very useful. I have always used and consumed them on the same serving domain. However this time I am wanting to consume them on another domain. I understand why this is happening, because of security and so. I had the same problem with reading RSS feeds from an external domain.
I have been doing some research into this and most people are saying that JSONP (padded JSON) will solve this problem but I thought i'd ask my own question because someone might have found another answer or because i'm using .NET 4, the answer might be simpler.
So, I am using Jquery to consume these restful web services on another domain. I am also using .NET 4. My web services are a mix of GET and POST so really i'm looking for a solution that will deal with both GET and POSTS across domains. Does anyone have a solution or examples for this? My WCF web services are located within my ASP.NET web application. I have also turned on crossdomainscriptaccessenabled in my web config.
Also, for what it's worth - when I was setting up WCF web sevices last year, I was able to consume a web service on an iphone app which now confuses me as I never enabled cross domain posting. That's just a side note though.
Thanks