hello, thank you very much for your help. The code bellow is the js i wrote in my html doc. (It is taken from w3schools.)
try
{// Firefox, Opera 8.0+, Safari, IE7
xmlHttp=new XMLHttpRequest();
}
catch(e)
{// Old IE
try
{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch(e)
{
alert ("Your browser does not support XMLHTTP!");
return;
}
}
xmlHttp.open("GET",url,false);//here is my question.
//what do i have to write as url?!?!
xmlHttp.send(null);//thats the way of sending get messages
What i wrote as url is: "http://"+the ip address of the equipment i am working on (http://10.0.4.150). As i have already mentioned, both client and server are placed on the same equipment. The server didn't get the request at all. I know that something does work because i got the html doc by an http request. I hope i explained myself properly. Thanks again,