Java - Problemas con la URI en una wsdl

 
Vista:

Problemas con la URI en una wsdl

Publicado por Sonia (8 intervenciones) el 08/03/2007 11:35:09
Hola, necesito la uri de una wsdl para hacer el setTargetObjectURI y no se de donde cogerla, alguien podria decirmelo. Adjunto la wsdl.
Muchas gracias por adelantado

<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://dcbank.com.org/cds/spain" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://dcbank.com.org/cds/spain">
<wsdl:types>
<schema targetNamespace="http://dcbank.com.org/cds/spain" xmlns="http://www.w3.org/2001/XMLSchema">
<import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
<xsd:include schemaLocation="multiAttributesTypes.xsd"/>
<!-- ELEMENTS -->
<element name="Name">
<complexType>
<sequence>
<element name="firstName" type="xsd:string"/>
<element name="lastName" type="xsd:string"/>
</sequence>
</complexType>
</element>
<element name="HelloCDSResponse">
<complexType>
<sequence>
<element name="text" type="xsd:string"/>
</sequence>
</complexType>
</element>
</schema>
</wsdl:types>
<wsdl:message name="HelloCDSRequestMessage">
<wsdl:part name="input" element="impl:Name"/>
</wsdl:message>
<wsdl:message name="HelloCDSResponseMessage">
<wsdl:part name="output" element="impl:HelloCDSResponse"/>
</wsdl:message>
<wsdl:message name="TestCDSRequestMessage">
<wsdl:part name="testInput" element="impl:multipartRequest"/>
</wsdl:message>
<wsdl:message name="TestCDSResponseMessage">
<wsdl:part name="testOutput" element="impl:multipartResponse"/>
</wsdl:message>
<wsdl:portType name="HelloCDSPortType">
<wsdl:operation name="HelloCDS" parameterOrder="in1">
<wsdl:input name="HelloCDSRequestMessage" message="impl:HelloCDSRequestMessage"/>
<wsdl:output name="HelloCDSResponseMessage" message="impl:HelloCDSResponseMessage"/>
</wsdl:operation>
<wsdl:operation name="testCDS" parameterOrder="in1">
<wsdl:input message="impl:TestCDSRequestMessage"/>
<wsdl:output message="impl:TestCDSResponseMessage"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="HelloCDSSoapBinding" type="impl:HelloCDSPortType">
<wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="HelloCDS">
<wsdlsoap:operation soapAction="HelloCDS"/>
<wsdl:input>
<wsdlsoap:body use="literal"/>
</wsdl:input>
<wsdl:output>
<wsdlsoap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="testCDS">
<wsdlsoap:operation soapAction="testCDS"/>
<wsdl:input>
<wsdlsoap:body use="literal"/>
</wsdl:input>
<wsdl:output>
<wsdlsoap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="HelloCDSService">
<wsdl:port name="HelloCDS" binding="impl:HelloCDSSoapBinding">
<wsdlsoap:address location="http://d032a171.emea.corpds.test:9096/CDS_ES_POC/services/HelloCDSService"/>
</wsdl:port>
</wsdl:service>
<!-- MESSAGES -->
<!-- Port type (operations) -->
<!-- BINDING (bind operations) -->
<!-- SERVICE -->
</wsdl:definitions>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder