Guest User

Cristianpark

a guest
Oct 19th, 2009
487
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.30 KB | None | 0 0
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <definitions xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="urn:calcularIndicadorProcedimiento" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:calcularIndicadorProcedimiento">
  3. <types>
  4. <xsd:schema targetNamespace="urn:calcularIndicadorProcedimiento"
  5. >
  6.  <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
  7.  <xsd:import namespace="http://schemas.xmlsoap.org/wsdl/" />
  8.  <xsd:complexType name="periodo">
  9.   <xsd:all>
  10.    <xsd:element name="fechaInicio" type="xsd:string"/>
  11.    <xsd:element name="fechaFin" type="xsd:string"/>
  12.   </xsd:all>
  13.  </xsd:complexType>
  14.  <xsd:complexType name="arrayPeriodos">
  15.   <xsd:complexContent>
  16.    <xsd:restriction base="SOAP-ENC:Array">
  17.     <xsd:attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="tns:periodo[]"/>
  18.    </xsd:restriction>
  19.   </xsd:complexContent>
  20.  </xsd:complexType>
  21.  <xsd:complexType name="medicion">
  22.   <xsd:all>
  23.    <xsd:element name="fechaInicio" type="xsd:string"/>
  24.    <xsd:element name="fechaFin" type="xsd:string"/>
  25.    <xsd:element name="valor" type="xsd:float"/>
  26.   </xsd:all>
  27.  </xsd:complexType>
  28.  <xsd:complexType name="arrayMediciones">
  29.   <xsd:complexContent>
  30.    <xsd:restriction base="SOAP-ENC:Array">
  31.     <xsd:attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="tns:medicion[]"/>
  32.    </xsd:restriction>
  33.   </xsd:complexContent>
  34.  </xsd:complexType>
  35. </xsd:schema>
  36. </types>
  37. <message name="calcularIndicadorProcedimientoRequest">
  38.   <part name="periodos" type="tns:arrayPeriodos" />
  39.   <part name="tipopro" type="xsd:string" />
  40.   <part name="tipoind" type="xsd:string" /></message>
  41. <message name="calcularIndicadorProcedimientoResponse">
  42.   <part name="return" type="tns:arrayMediciones" /></message>
  43. <portType name="calcularIndicadorProcedimientoPortType">
  44.   <operation name="calcularIndicadorProcedimiento">
  45.     <documentation>Calcula el Indicador dado (Eficiencia, Eficacia o Efectividad) para el procedimiento indicado</documentation>
  46.     <input message="tns:calcularIndicadorProcedimientoRequest"/>
  47.     <output message="tns:calcularIndicadorProcedimientoResponse"/>
  48.   </operation>
  49. </portType>
  50. <binding name="calcularIndicadorProcedimientoBinding" type="tns:calcularIndicadorProcedimientoPortType">
  51.   <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
  52.   <operation name="calcularIndicadorProcedimiento">
  53.     <soap:operation soapAction="urn:calcularIndicadorProcedimiento#calcularIndicadorProcedimiento" style="rpc"/>
  54.     <input><soap:body use="encoded" namespace="urn:calcularIndicadorProcedimiento" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></input>
  55.     <output><soap:body use="encoded" namespace="urn:calcularIndicadorProcedimiento" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></output>
  56.   </operation>
  57. </binding>
  58. <service name="calcularIndicadorProcedimiento">
  59.   <port name="calcularIndicadorProcedimientoPort" binding="tns:calcularIndicadorProcedimientoBinding">
  60.     <soap:address location="http://192.168.100.107/sig/ws/wsCorpo.php"/>
  61.   </port>
  62. </service>
  63. </definitions>
Advertisement
Add Comment
Please, Sign In to add comment