0

我正在使用 flex/actionscript。我创建了一个具有以下路径http://192.168.0.110/cgi/reg.cgi的网络服务?当我运行上面的网址时,它工作正常。但是当我使用 httpservice 和 send 方法使用它时,它给了我错误。事件:registerFailure 错误描述:HTTP 更新错误

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);
4

1 回答 1

0

据我了解,网络服务应该是格式的。例如:http ://www.w3schools.com/webservices/tempconvert.asmx?WSDL (这个工作试试!)。

此 Web 服务的链接是页面http://www.w3schools.com/webservices/tempconvert.asmx

所以我认为。网络服务链接有问题。希望这可以帮助。

于 2011-06-02T10:58:22.790 回答