Hi
Can you help me to retreive information from a SOAP server that is already running and use that info in a SriptCase Form i have 4 options but i really dont now how to retreive the fields to use them on the form
SOAP 1.1 (Option 1)
A continuaci?n se muestra un ejemplo de solicitud y respuesta para SOAP 1.1. Es necesario reemplazar los marcadores de posici?n que aparecen con valores reales.
POST /AcceDer/wsvigencia.asmx HTTP/1.1
Host: 11.107.8.12
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/EsVigente"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<EsVigente xmlns="http://tempuri.org/">
<osNSS>string</osNSS>
<osCURP>string</osCURP>
<osAgrAfil>string</osAgrAfil>
<osCPID>string</osCPID>
</EsVigente>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<EsVigenteResponse xmlns="http://tempuri.org/">
<EsVigenteResult>xml</EsVigenteResult>
</EsVigenteResponse>
</soap:Body>
</soap:Envelope>
SOAP 1.2 (Option 2)
A continuaci?n se muestra un ejemplo de solicitud y respuesta para SOAP 1.2. Es necesario reemplazar los marcadores de posici?n que aparecen con valores reales.
POST /AcceDer/wsvigencia.asmx HTTP/1.1
Host: 11.107.8.12
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<EsVigente xmlns="http://tempuri.org/">
<osNSS>string</osNSS>
<osCURP>string</osCURP>
<osAgrAfil>string</osAgrAfil>
<osCPID>string</osCPID>
</EsVigente>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<EsVigenteResponse xmlns="http://tempuri.org/">
<EsVigenteResult>xml</EsVigenteResult>
</EsVigenteResponse>
</soap12:Body>
</soap12:Envelope>
HTTP GET (Option 3)
A continuaci?n se muestra un ejemplo de solicitud y respuesta para HTTP GET. Es necesario reemplazar los marcadores de posici?n que aparecen con valores reales.
GET /AcceDer/wsvigencia.asmx/EsVigente?osNSS=string&osCURP=string&osAgrAfil=string&osCPID=string HTTP/1.1
Host: 11.107.8.12
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0"?>
xml
HTTP POST (Option 4)
A continuaci?n se muestra un ejemplo de solicitud y respuesta para HTTP POST. Es necesario reemplazar los marcadores de posici?n que aparecen con valores reales.
POST /AcceDer/wsvigencia.asmx/EsVigente HTTP/1.1
Host: 11.107.8.12
Content-Type: application/x-www-form-urlencoded
Content-Length: length
osNSS=string&osCURP=string&osAgrAfil=string&osCPID=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0"?>
xml
And this is what i get on the browser when i test the code using HTTP POST
<?xml version="1.0" encoding="UTF-8"?>
-<NewDataSet>
-<Table>
<NSS>3303854734</NSS>
<CURPIMSS>GOFN850801WWCBXSB1</CURPIMSS>
<CURP>000000000000000000</CURP>
<PATERNO>GOMEZ</PATERNO>
<MATERNO>FIERRO</MATERNO>
<NOMBRE>NORMA ANGELICA</NOMBRE>
<AGREGADO_MEDICO>1F1985OR</AGREGADO_MEDICO>
<AGREGADO_AFILIACION>01219856</AGREGADO_AFILIACION>
<FECHA_NACIMIENTO>1985-08-10T00:00:00-06:00</FECHA_NACIMIENTO>
<CONSULTORIO>28</CONSULTORIO>
<TURNO>V</TURNO>
<DIRECCION>16 NO 4404</DIRECCION>
<TELEFONO>410-12-03</TELEFONO>
<COLONIA>BELLAVISTA AMPLIACION 31416</COLONIA>
<VIGENCIA>VIGENTE</VIGENCIA>
<VIGENTE_HASTA>1900-01-01T00:00:00-07:00</VIGENTE_HASTA>
<DH_UMF>NO ASIGNADA</DH_UMF>
<DH_DELEG>99</DH_DELEG>
<DH_CVE_PRESUP>9999999999999999</DH_CVE_PRESUP>
<DH_IP_SERVER>254.254.254.254</DH_IP_SERVER>
<CPID> 2014 -27-B131103X-000000000000000000-1</CPID>
</Table>
-<Table>
<NSS>3303854734</NSS>
<CURPIMSS>BAFF841223WWCBXSB2</CURPIMSS>
<CURP>000000000000000000</CURP>
<PATERNO>BACA</PATERNO>
<MATERNO>FLORES</MATERNO>
<NOMBRE>FRANCISCO ALBERTO</NOMBRE>
<AGREGADO_MEDICO>2M1984OR</AGREGADO_MEDICO>
<AGREGADO_AFILIACION>02119840</AGREGADO_AFILIACION>
<FECHA_NACIMIENTO>1984-12-23T00:00:00-07:00</FECHA_NACIMIENTO>
<CONSULTORIO>28</CONSULTORIO>
<TURNO>V</TURNO>
<DIRECCION>16 NO 4404</DIRECCION>
<TELEFONO>410-12-03</TELEFONO>
<COLONIA>BELLAVISTA AMPLIACION 31416</COLONIA>
<VIGENCIA>VIGENTE</VIGENCIA>
<VIGENTE_HASTA>1900-01-01T00:00:00-07:00</VIGENTE_HASTA>
<DH_UMF>NO ASIGNADA</DH_UMF>
<DH_DELEG>99</DH_DELEG>
<DH_CVE_PRESUP>9999999999999999</DH_CVE_PRESUP>
<DH_IP_SERVER>254.254.254.254</DH_IP_SERVER>
<CPID> 2014 -27-B131103X-000000000000000000-1</CPID>
</Table>
</NewDataSet>