Expand my Community achievements bar.

Guidelines for the Responsible Use of Generative AI in the Experience Cloud Community.

WSDL and Livecycle

Avatar

Level 1

Hi!

I have one problem I created a simple php soap server who returns one word and wsdl file, now I try to importing wsdl into livecycle and creating data connection but then all done its return only empty message body subform.

Any ideas how to fix? This thing here is my wsdl

<?xml version="1.0" encoding="UTF-8"?>

<wsdl:definitions name="HelloWorld" targetNamespace="urn:HelloWorld" xmlns:tns="urn:HelloWorld"  xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/">

  <wsdl:types>  

<xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.w3.org/2001/XMLSchema">  

                <xsd:element name="HelloResponse" type="xsd:string" />

    </xsd:schema> 

  </wsdl:types> 

  <wsdl:message name="doHello">

    <wsdl:part name="arr" type="tns:string" />   

    </wsdl:message>    

  <wsdl:message name="doHelloResponse">

    <wsdl:part name="return" type="tns:HelloResponse" />

  </wsdl:message>

  <wsdl:portType name="HelloPort">

     <wsdl:operation name="doHello">

      <wsdl:input message="tns:doHello" />

      <wsdl:output message="tns:doHelloResponse" />

    </wsdl:operation>   

  </wsdl:portType> 

  <wsdl:binding name="HelloBinding" type="tns:HelloPort">

    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />

     <wsdl:operation name="doHello">

        <soap:operation soapAction="urn:HelloAction" style="literal" />

        <wsdl:input>

          <soap:body  namespace="urn:Hello" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />         

        </wsdl:input>

        <wsdl:output>

          <soap:body  namespace="urn:Hello" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />         

        </wsdl:output>

       </wsdl:operation>    

        </wsdl:binding> 

  <wsdl:service name="HelloService">

    <wsdl:port name="HelloPort" binding="tns:HelloBinding">

      <soap:address location="http://localhost/bak/server.php" />

    </wsdl:port>

  </wsdl:service>   

</wsdl:definitions>

0 Replies