I am using the Call Web Service smart service and providing the following WSDL f

I am using the Call Web Service smart service and providing the following WSDL for it:
<?xml version="1.0" encoding="ISO-8859-1"?>

<wsdl:definitions xmlns:soap="schemas.xmlsoap.org/.../"
          xmlns:tns="cpilookup.ws.soa.cheth.org"
          xmlns:cm="cpilookup.ws.soa.cheth.org/schema"
          xmlns:xs="www.w3.org/.../XMLSchema"
          xmlns:http="schemas.xmlsoap.org/.../"
          xmlns:wsdl="schemas.xmlsoap.org/.../"
          targetNamespace="cpilookup.ws.soa.cheth.org">

          <!-- Type definitions for input- and output parameters for webservice -->
          <wsdl:types>
                    <xs:schema targetNamespace="cpilookup.ws.soa.cheth.org">
                              <xs:import namespace="cpilookup.ws.soa.cheth.org/schema"
                              schemaLocation="patient_info.xsd"></xs:import>
                              <xs:element name="inputCPILookup">
                                        <xs:complexType>
                                                  <xs:sequence>
                                                            <xs:element type="cm:personInformation" name="person"/>
                                                  </xs:sequence>
                                        </xs:com...

patient_info.xsd

OriginalPostID-97094

OriginalPostID-97094

  Discussion posts and replies are publicly visible

Parents
  • ...sport="schemas.xmlsoap.org/.../>
                        <wsdl:operation name="CPILookup">
                                  <soap:operation
    soapAction="cpilookup.ws.soa.cheth.org/CPILookup"
    style="document"/>
                                  <wsdl:input>
                                            <soap:body parts="in" use="literal"/>
                                  </wsdl:input>
                                  <wsdl:output>
                                            <soap:body parts="out" use="literal"/>
                                  </wsdl:output>
                        </wsdl:operation>
              </wsdl:binding>

              <!-- Service definition -->
              <wsdl:service name="CPILookupEndpointService">
                        <wsdl:port name="CPILookupService" binding="tns:CPILookupBinding">
                                  <soap:address location="localhost:9080/.../>
                        </wsdl:port>
              </wsdl:service>

    </wsdl:definitions>

    The schema is pretty simple. It looks like:

    <xs:schema attributeFormDefault="unqualified"
              elementFormDefault="qualified"
              xmlns:xs="www.w3.org/.../XMLSchema"
              targetNamespace="cpilookup.ws.soa.cheth.org/schema"
              xmlns:cmx="http://cpilookup.w...
Reply
  • ...sport="schemas.xmlsoap.org/.../>
                        <wsdl:operation name="CPILookup">
                                  <soap:operation
    soapAction="cpilookup.ws.soa.cheth.org/CPILookup"
    style="document"/>
                                  <wsdl:input>
                                            <soap:body parts="in" use="literal"/>
                                  </wsdl:input>
                                  <wsdl:output>
                                            <soap:body parts="out" use="literal"/>
                                  </wsdl:output>
                        </wsdl:operation>
              </wsdl:binding>

              <!-- Service definition -->
              <wsdl:service name="CPILookupEndpointService">
                        <wsdl:port name="CPILookupService" binding="tns:CPILookupBinding">
                                  <soap:address location="localhost:9080/.../>
                        </wsdl:port>
              </wsdl:service>

    </wsdl:definitions>

    The schema is pretty simple. It looks like:

    <xs:schema attributeFormDefault="unqualified"
              elementFormDefault="qualified"
              xmlns:xs="www.w3.org/.../XMLSchema"
              targetNamespace="cpilookup.ws.soa.cheth.org/schema"
              xmlns:cmx="http://cpilookup.w...
Children
No Data