In addition:
I have the web page ajax working now on the browser side - this is the javascript function that is sending a GET to the server:
function techChange(value) {
var passedValue = value.split(":");
$.ajax( {
url: "_CheckStatus.htm?maptechnumber=" + passedValue[0] + "&mapjobnumber=" + passedValue[1],
success: function(data) {
alert(data);
//iw.setContent(data);
//iw.open(map, marker);
}
});
} // end of function techChange
I can see the GET being received on the Web Server logging window along with the passed parameters but the procedure _CheckStatus is not getting called even though it shows the page being called on the logging window.
This is the entire logging window text:
GET /_CheckStatus.htm?maptechnumber=6&mapjobnumber=4556 HTTP/1.1
Host: 127.0.0.1:881
Connection: keep-alive
Accept: */*
X-Requested-With: XMLHttpRequest
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.62 Safari/537.36
DNT: 1
Referer:
http://127.0.0.1:881/job_map_today_storeAccept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Cookie: SESSIONID=ASgIoo8ydI8x0cfZbUBWz66LvnSD13
What do I need to do from here?
Chuck