0

当我只是尝试使用 Nusoap 开发一个简单的 Web 服务时。当我执行我的 server.php 时,它会执行并显示 WSDL 文件的输出和我给出的方法。但是,当我尝试执行我的 XML 文件时它显示作为文档空的错误。我在下面给出。

这是错误:

  This page contains the following errors:

  error on line 1 at column 21: Extra content at the end of the document
  Below is a rendering of the page up to the first error.

这是我的 XML 文件:

   HTTP/1.1 200 OK
   Server: Microsoft-IIS/5.0
   Date: Thu, 24 Apr 2003 15:15:28 GMT
   X-Powered-By: PHP/4.0.6
   Server: NuSOAP Server v0.6.3
   Connection: Close
   Content-Type: text/xml; charset=UTF-8
   Content-Length: 522

  <?xml version="1.0" encoding="ISO-8859-1"?>
  <SOAP-ENV:Envelope
     SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
     xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
     xmlns:si="http://soapinterop.org/xsd">
     <SOAP-ENV:Body>
       <helloResponse>
           <return xsi:type="xsd:string">Hello, Scott</return>
        </helloResponse>
     </SOAP-ENV:Body>
   </SOAP-ENV:Envelope>

谁能告诉我是什么原因。

4

1 回答 1

0

您缺少名称空间。命名空间将 Envelope 定义为 SOAP Envelope。

于 2013-05-17T07:50:33.610 回答