发出Curl命令时SaxParseException

时间:2014-02-03 18:15:22

标签: curl sax

我使用CURL将消息发送到Web服务。通常我在CURL命令中传递.xml文件路径,但现在我需要在命令行参数中将整个.xml作为字符串传递。将路径传递给.xml文档时没有问题,但是当我尝试将.xml内容作为String传递时,我得到了SaxParseException ......

命令

Curl -k -v -u username:password -d "<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">SOME MESSAGE</soap:Envelope>" endpointurl

异常

org.xml.sax.SAXParseException: Open quote is expected for attribute "xmlns:soap" associated with an  element type  "soap:Envelope". (net.sf.saxon.trans.DynamicError). Message payload is of type: String (org.mule.api.transformer.TransformerMessagingException). Message payload is of type: String* Closing connection 0

1 个答案:

答案 0 :(得分:0)

解决:由于某种原因,它不喜欢xmlns:soap属性中的双引号。删除它们就可以了。