ActionScript和Flex:在发送之前获取soap webservice有效负载?

时间:2014-01-13 12:21:41

标签: web-services actionscript-3 flex

我尝试将数据提交到网络服务:

this.service.upload(id, data);

它适用于大多数文件,但有两个特定文件,我收到错误:

Error #1088: The markup in the document following the root element must be well-formed.

在这种情况下唯一不同的是文件数据。我需要一种方法来查看发送到服务的EXACT xml请求,以便我可以看到web服务正在抱怨什么。有没有办法做类似的事情:

var b:String = this.service.upload(id, data).toXML();

注意:上述方法无效。有没有类似的方法我可以确切地看到发送的是什么?

0 个答案:

没有答案