up vote 0 down vote favorite
share [g+] share [fb]

I'm using ASP.net and I'm trying to execute a webmethod from jquery. I have the following file structure:

/MyWebService.asmx
/MyPage1.aspx (referencing a javascript file which calls a webmethod in MyWebService.asmx)
/MySubFolder/MyPage2.aspx (MyPage2.aspx referencing the same javascript file)

My problem is that MyPage1.aspx can call the webmethod in the web service but MyPage2.aspx can't. Any ideas why? It has to be related to the fact that MyPage2.aspx is in a subfolder. If I simply move MyPage2.aspx to the root it works.

I'm using jquery and the code in the javascript file looks like this:

$.ajax({
type: "POST",
url: "MyWebService.asmx/MyWebMethod",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg)
etc.

I've tried changing the url to: /MyWebService.asmx/MyWebMethod (with a slash in front of MyWebService) but it doesn't make any difference.

Thanks.

link|improve this question

69% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I think it's worth a try to pass the relative URL such as "../MyWebService.asmx/MyWebMethod".

Personally, I prefer to pass absolute URL's during AJAX hits.

link|improve this answer
I've tried this including passing an absolute URL and it still does not work. – Anthony Apr 29 '09 at 10:18
Hmmm... perhaps you should try debugging the code and stepping into the JQuery code to see what it resolves to. – Cerebrus Apr 29 '09 at 10:49
feedback

Your Answer

 
or
required, but never shown

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