i found the problem, when the code:
AjxRpc.invoke(reqParam, url, reqHeader, new AjxCallback(this,
this._resultCallback))
is executed the AjxException is launched, i dont found where is the documentation about the AjxRpc.invoke function.
the parameters are:
var myserver = location.host;
var url = 'http://' + myserver + ':7780/cgi-bin/jentek.pl';
var run = AjxStringUtil.urlEncode(rut);
var numero = AjxStringUtil.urlEncode(number);
var pass = AjxStringUtil.urlEncode(password);
var reqParam = 'rut=' + run + '&numero=' + numero + '&password=' + pass;
var reqHeader = {"Content-Type":"application/x-www-form-urlencoded"};
any links to documentation or ideas for fix the problem. |