I am using flex/actionscript. i have created a webservice with following path http://192.168.0.110/cgi/reg.cgi? When i run the above url its works fine. but when i use it using httpservice and send method it is giving me error. event: registerFailure Error description: HTTP update error
mHttpService = new HTTPService();
mHttpService.url = mWebServiceUrl;
mHttpService.method = "POST";
mHttpService.addEventListener("result", httpResult);
mHttpService.addEventListener("fault", httpFault);
var request:Object = new Object();
request.username = user;
request.identity = id;
mHttpService.cancel();
mHttpService.send(request);