driving me nutso....
I have a .Net 2.0 webservice that takes a string and returns XML. I have an HTML page that uses jQuery a simple $.post command to call the service and process the return. The service is up on the remote site, I can access it via URL and I can test it successfully using SOAP_UI no problem.
On my machine everything works great but on the remote server, the jQuery call fails.
jQuery code is:
$.post("/sample.asmx/sampleFunction", { StringParam: paramValue },
function(data) {
//stuff
},
"xml");
any thoughts?