I explicitly specify a POST and I don't see the post data in the Request and more over specifies it has a OPTIONS.
The response should be a HTML specifying matching users to Query in table format. I am trying to post and read the html to create a auto-complete input box.
This the Jquery Code:
$.post('https://internal.company.com/data/displayUserList', { Email: "", Name: "%GEORGE%"}, function(responseText, textStatus) { console.log("Response:\n" + responseText + textStatus) } ); Request captured by FireBug1.6.1 (Firefox)
OPTIONS /data/displayUserList HTTP/1.1 Host: internal.company.com User-Agent: Mozilla/5.0 Firefox/3.6.8 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Connection: keep-alive Origin: null Access-Control-Request-Method: POST