I sent data to host with following script.
but no data seems post to host.
Firebug shows no POST Data.
Following is TCP MONITOR data
POST /exampleajax/login?isc_rpc=1&isc_v=7.0RC&isc_xhr=1&isc_tnum=0 HTTP/1.1
Host: localhost:8888
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; ja; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10 (.NET CLR 3.5.30729)
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: ja,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: Shift_JIS,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Referer: http://localhost:8888/
Content-Length: 0
Cookie: GLog=%7B%0D%20%20%20%20left%3A105%2C%20%0D%20%20%20%20top%3A20%2C%20%0D%20%20%20%20width%3A640%2C%20%0D%20%20%20%20height%3A480%2C%20%0D%20%20%20%20priorityDefaults%3A%7B%0D%20%20%20%20%20%20%20%20Log%3A4%0D%20%20%20%20%7D%2C%20%0D%20%20%20%20defaultPriority%3A3%2C%20%0D%20%20%20%20trackRPC%3Afalse%0D%7D; JSESSIONID=1n3m6pymy890n
Pragma: no-cache
Cache-Control: no-cache
Please help.
but no data seems post to host.
Code:
RPCManager.sendRequest({httpMethod:"POST",data:"STRING DATA", callback: "myCallback(data)", actionURL: "/exampleajax/login"});
Following is TCP MONITOR data
POST /exampleajax/login?isc_rpc=1&isc_v=7.0RC&isc_xhr=1&isc_tnum=0 HTTP/1.1
Host: localhost:8888
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; ja; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10 (.NET CLR 3.5.30729)
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: ja,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: Shift_JIS,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Referer: http://localhost:8888/
Content-Length: 0
Cookie: GLog=%7B%0D%20%20%20%20left%3A105%2C%20%0D%20%20%20%20top%3A20%2C%20%0D%20%20%20%20width%3A640%2C%20%0D%20%20%20%20height%3A480%2C%20%0D%20%20%20%20priorityDefaults%3A%7B%0D%20%20%20%20%20%20%20%20Log%3A4%0D%20%20%20%20%7D%2C%20%0D%20%20%20%20defaultPriority%3A3%2C%20%0D%20%20%20%20trackRPC%3Afalse%0D%7D; JSESSIONID=1n3m6pymy890n
Pragma: no-cache
Cache-Control: no-cache
Please help.