I have the following web service;

    [WebMethod]
    public string HelloWorld()
    {
        return "Hello World";
    }

It's stock standard with no alterations to the class decorators.

I have this jQuery method;

var webMethod = "http://localhost:54473/Service1.asmx/HelloWorld"; 

$.ajax({
    type: "POST",
    contentType: "application/json; charset=utf-8",
    data: "{}",  
    dataType: "json",
    url: webMethod,
    success: function(msg){ alert(msg.d); },
    error: function (XMLHttpRequest, textStatus, errorThrown) {
        alert(errorThrown);
          }
});

It's a post action because later on I need to post data to it.

When I execute the jQuery I get a "No transport" error returned.

One thing I should also mention is that the jQuery is stored in a simple HTML file on my machine and the WebService is running on my machine also.

There is no code behind on the HTML page it's simply a web page and not a c# project or anything.

Can anyone please point me in the right direction here?

link|improve this question

80% accept rate
Can you get to your web service just using a browser? – Avitus Mar 9 '11 at 3:55
Sorry, I didn't notice that this is a different post (I edited this post, thinking it was my own), I must've clicked the hyperlink to this one in my own post. Really sorry to the post owner =\ – Erick Garcia Jul 26 '11 at 11:05
feedback

2 Answers

up vote 29 down vote accepted

If your jQuery page isn't being loaded from http://localhost:54473 then this issue is probably because you're trying to make cross-domain request.

Update 1 Take a look at this blog post.

Update 2 If this is indeed the problem (and I suspect it is), you might want to check out JSONP as a solution. Here are a few links that might help you get started:

link|improve this answer
2  
Yeah, it probably has something to do with security. – Codeglot Mar 9 '11 at 3:57
It doesn't have to be localhost:54473, it just has to be the same domain. – jcolebrand Mar 9 '11 at 3:59
@drachenstern Hm, I've always thought (and seem to remember always reading) that the scheme, host and port needed to be same. This and this and this seem to support my way of thinking about what constitutes the same domain. – no.good.at.coding Mar 9 '11 at 4:04
@no.good.at.coding I was so not aware of that. Many thanks. – jcolebrand Mar 9 '11 at 4:09
@drachenstern Glad to be of help! All this web stuff is tricky - something new to learn everyday :) – no.good.at.coding Mar 9 '11 at 4:11
show 4 more comments
feedback

Add this: jQuery.support.cors = true;

It enables cross-site scripting in jQuery (introduced after 1.4x, I believe).

We were using a really old version of jQuery (1.3.2) and swapped it out for 1.6.1. Everything was working, except .ajax() calls. Adding the above line fixed the problem.

link|improve this answer
A bit more info here: blueonionsoftware.com/… – Andrew Arnott Jun 22 '11 at 1:19
7  
this fix my problem, worked in chrome and firefox but not IE. added this to the top of my script and all was good – Peter Jul 8 '11 at 4:40
@SrBlanco This fix my probem too, Thanks for sharing this info. – Mvcdev Jul 11 '11 at 21:10
1  
Very good fix,I had the same problem on Internet Explorer 9 when I was requesting a kml file from the same domain using a relative path... mysteries of IE... – contam Oct 21 '11 at 7:46
thanks. yes my rest calls stopped after 1.5 jquery updates. this code fixed it. – ashraf Dec 17 '11 at 1:52
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.