gSOAP Web服务无需命名空间即可响应

时间:2011-12-30 14:24:21

标签: c++ web-services xml-namespaces gsoap

我正在使用gSOAP库在C ++中使用.wsdl实现客户端Web服务。 我有一个问题,我在tcpdump数据交换中看到如下:

REQUEST

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns1="http://tempuri.org/" xmlns:ns2="http://xxx.pl/">
  <SOAP-ENV:Body>
    <ns1:AuthenticateUserRequest>
      <ns1:login>xxxx</ns1:login>
      <ns1:password>xxxx</ns1:password>
    </ns1:AuthenticateUserRequest>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

RESPONSE

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
  <SOAP-ENV:Body>
    <authenticate>
      <token>xxxx</token>
      <server>xxxx</server>
    </authenticate>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

但是gSOAP不喜欢没有命名空间的响应(ns1是我实现的wsdl的命名空间)并且引发​​了我的错误。

SOAP 1.1 fault: SOAP-ENV:Client[no subcode]
"Validation constraint violation: tag name or namespace mismatch in element 'authenticate'"
Detail: [no detail]

我可以用它来修复此命名空间问题?

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

您应该能够为gSOAP提供一个默认命名空间,以便对响应进行定期解析。

查看此链接是否有帮助: http://cateof.wordpress.com/2010/09/21/default-namespace-gsoap-with/