Heim > Backend-Entwicklung > PHP-Tutorial > 关于zend soap解决办法

关于zend soap解决办法

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Freigeben: 2016-06-13 13:44:09
Original
899 Leute haben es durchsucht

关于zend soap
使用Zend_Soap_AutoDiscover自动生成的wsdl在windows下正常,同样的代码换到linux环境中就不行了,

XML code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" name="Bss_Mailservice" targetNamespace="http://split.bss.com/interface/index/mailservice">
<types>
<schema targetnamespace="http://split.bss.com/interface/index/mailservice"></schema>
</types>
<porttype name="Bss_MailservicePort">
<operation name="auth">
<documentation>auth</documentation>
<input message="tns:authIn">
</operation>
<operation name="send">
<documentation>send</documentation>
<input message="tns:sendIn">
</operation>
</porttype>
<binding name="Bss_MailserviceBinding" type="tns:Bss_MailservicePort">
<binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"></binding>
<operation name="auth">
<operation soapaction="http://split.bss.com/interface/index/mailservice#auth"></operation>
<input>
<body use="encoded" encodingstyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://split.bss.com/interface/index/mailservice"></body>

<output>
<body use="encoded" encodingstyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://split.bss.com/interface/index/mailservice"></body>
</output>
</operation>
<operation name="send">
<operation soapaction="http://split.bss.com/interface/index/mailservice#send"></operation>
<input>
<body use="encoded" encodingstyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://split.bss.com/interface/index/mailservice"></body>

<output>
<body use="encoded" encodingstyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://split.bss.com/interface/index/mailservice"></body>
</output>
</operation>
</binding>
<service name="Bss_MailserviceService">
<port name="Bss_MailservicePort" binding="tns:Bss_MailserviceBinding">
<address location="http://split.bss.com/interface/index/mailservice"></address>
</port>
</service>
<message name="authIn">
<part name="appkey" type="xsd:anyType"></part>
</message>
<message name="sendIn">
<part name="to" type="xsd:anyType"></part>
<part name="cc" type="xsd:anyType"></part>
<part name="bcc" type="xsd:anyType"></part>
<part name="subject" type="xsd:anyType"></part>
<part name="body" type="xsd:anyType"></part>
</message>


Nach dem Login kopieren

基中





这几个参数都应该是string类型,但在linux下生成的是anyType,另外我在方法的注释中己经写了返回值的注释,但也不管用
PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
   /**
     * 
     * 发送邮件
     * @param string $to
     * @param string $cc
     * @param string $bcc
     * @param string $subject
     * @param string $body
     * @return array
     * @throws SoapFault
     */
    public function send($to, $cc, $bcc, $subject, $body) {

Nach dem Login kopieren

请问这是怎么回事啊?
Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage