In interface I have written :- =webservicequery( a!wsConfig(

In interface I have written :-

=webservicequery(
a!wsConfig(
wsdlUrl: "10.33.155.68:8080/.../Hello
service: "{query.test.com}HelloService",
port: "Hello",
operation: "{query.test.com}helloName"
),


{
CreateUrlSoapIn: {
real_url: ri!textToBeStored
}
}
).returnValue.helloNameResponse.helloNameReturn

The web service returns Hello there <Inputname>
But I am unable to set input data which of type "helloName" So how should I use this data type to have proper returned values.
Below is the WSDL :-


<wsdl:definitions xmlns:apachesoap="xml.apache.org/xml-soap" xmlns:impl="http://query.test.com" xmlns:intf="http://query.test.com" xmlns:wsdl="schemas.xmlsoap.org/.../" xmlns:wsdlsoap="schemas.xmlsoap.org/.../" xmlns:xsd="www.w3.org/.../XMLSchema" targetNamespace="http://query.test.com">
<!--
WSDL created by Apache Axis version: 1.4
Built on Apr ...

OriginalPostID-162448

OriginalPostID-162448

  Discussion posts and replies are publicly visible

Parents
  • ...22, 2006 (06:55:48 PDT)
    -->
    <wsdl:types>
    <schema xmlns="www.w3.org/.../XMLSchema" elementFormDefault="qualified" targetNamespace="http://query.test.com">
    <element name="helloName">
    <complexType>
    <sequence>
    <element name="name" type="xsd:string"/>
    </sequence>
    </complexType>
    </element>
    <element name="helloNameResponse">
    <complexType>
    <sequence>
    <element name="helloNameReturn" type="xsd:string"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    </wsdl:types>
    <wsdl:message name="helloNameRequest">
    <wsdl:part element="impl:helloName" name="parameters"></wsdl:part>
    </wsdl:message>
    <wsdl:message name="helloNameResponse">
    <wsdl:part element="impl:helloNameResponse" name="parameters"></wsdl:part>
    </wsdl:message>
    <wsdl:portType name="Hello">
    <wsdl:operation name="helloName">
    <wsdl:input message="impl:helloNameRequest" name="helloNameRequest"></wsdl:input>
    <wsdl:output message="impl:helloNameResponse" name="helloNameResponse"></wsdl:output>
    </wsdl:operation>
    </wsdl:port...
Reply
  • ...22, 2006 (06:55:48 PDT)
    -->
    <wsdl:types>
    <schema xmlns="www.w3.org/.../XMLSchema" elementFormDefault="qualified" targetNamespace="http://query.test.com">
    <element name="helloName">
    <complexType>
    <sequence>
    <element name="name" type="xsd:string"/>
    </sequence>
    </complexType>
    </element>
    <element name="helloNameResponse">
    <complexType>
    <sequence>
    <element name="helloNameReturn" type="xsd:string"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    </wsdl:types>
    <wsdl:message name="helloNameRequest">
    <wsdl:part element="impl:helloName" name="parameters"></wsdl:part>
    </wsdl:message>
    <wsdl:message name="helloNameResponse">
    <wsdl:part element="impl:helloNameResponse" name="parameters"></wsdl:part>
    </wsdl:message>
    <wsdl:portType name="Hello">
    <wsdl:operation name="helloName">
    <wsdl:input message="impl:helloNameRequest" name="helloNameRequest"></wsdl:input>
    <wsdl:output message="impl:helloNameResponse" name="helloNameResponse"></wsdl:output>
    </wsdl:operation>
    </wsdl:port...
Children
No Data