我想知道在flex中使用httpservice的url和destination之间的区别。
我遇到了一个看起来像这样的httpservice示例
service.resultFormat="e4x"
service.method="GET";
service.destination="http://www.blash.com" // I used an actual page
service.addEventListener("result", httpResult);
service.addEventListener("fault", httpFault);
service.send(parameters);
当我尝试这个时,我收到一个错误错误,说服务“频道”为空。
我取出了目标参数并设置了url参数,它工作正常。
目的地和频道究竟是什么?
FYI我正在调用的页面是一个公共API,它以XML格式返回结果。
答案 0 :(得分:0)
destination是您必须在service-config.xml中配置的代理 它与远程处理有关。