Jump to content

send link and in return get a string from the server


GoldSoft

Recommended Posts

My first time on this Excellent forum, hope that someone can help me here.....

i got from my customer string that I need to get to the server and get an answer.

this is the string:

http://XXX.YYY.DDD.WWW:8082/My_ws?Myapp=Myprice&Mydip=123&itemno=123456

and i get any string as Result.

i try this in ajax and jQuery - But I did not get any answer and I think something wrong in the code:

$.ajax({ServiceCallID: 1,url: MyString,type: 'POST',data: '{"itemno": "' + itemno+ '"}',contentType: 'application/json; charset=utf-8',dataType: 'json',success:function (data, textStatus, XMLHttpRequest) {ALL = (data.d).toString();}},error:function (XMLHttpRequest, textStatus, errorThrown) {alert(textStatus);}});

I really have no idea how I'm supposed to send this link and in return get a string from the server :sorry:

thanks

Link to comment
Share on other sites

Check your browser's developer console for error messages. You also might want to verify what the response to the ajax request is instead of assuming that data.d is defined. If the server you are sending the ajax request to is different than the one where your page is hosted then browsers will not allow you to do that with the default settings.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...