serviceLeyFACe_Encoded
Haga clic aquí para obtener una lista completa de operaciones.
consultarEstados
Prueba
El formulario de prueba sólo está disponible para solicitudes del equipo local.SOAP 1.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 /ws/organismos/A/serviceLeyFACe.asmx HTTP/1.1 Host: fakturae.leioa.eus Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "https://webservice.face.gob.es#consultarEstados" <?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:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="https://webservice.face.gob.es" xmlns:types="https://webservice.face.gob.es/encodedTypes" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> <tns:consultarEstados /> </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:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="https://webservice.face.gob.es" xmlns:types="https://webservice.face.gob.es/encodedTypes" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> <tns:consultarEstadosResponse> <consultarEstadosResult href="#id1" /> </tns:consultarEstadosResponse> <tns:ConsultarEstadosResponse id="id1" xsi:type="tns:ConsultarEstadosResponse"> <resultado href="#id2" /> <estados href="#id3" /> </tns:ConsultarEstadosResponse> <tns:Resultado id="id2" xsi:type="tns:Resultado"> <codigo xsi:type="xsd:string">string</codigo> <descripcion xsi:type="xsd:string">string</descripcion> <codigoSeguimiento xsi:type="xsd:string">string</codigoSeguimiento> </tns:Resultado> <soapenc:Array id="id3" soapenc:arrayType="tns:Estado[2]"> <Item href="#id4" /> <Item href="#id5" /> </soapenc:Array> <tns:Estado id="id4" xsi:type="tns:Estado"> <nombre xsi:type="xsd:string">string</nombre> <codigo xsi:type="xsd:string">string</codigo> <descripcion xsi:type="xsd:string">string</descripcion> </tns:Estado> <tns:Estado id="id5" xsi:type="tns:Estado"> <nombre xsi:type="xsd:string">string</nombre> <codigo xsi:type="xsd:string">string</codigo> <descripcion xsi:type="xsd:string">string</descripcion> </tns:Estado> </soap:Body> </soap:Envelope>
SOAP 1.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 /ws/organismos/A/serviceLeyFACe.asmx HTTP/1.1 Host: fakturae.leioa.eus 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:soapenc="http://www.w3.org/2003/05/soap-encoding" xmlns:tns="https://webservice.face.gob.es" xmlns:types="https://webservice.face.gob.es/encodedTypes" xmlns:rpc="http://www.w3.org/2003/05/soap-rpc" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body soap12:encodingStyle="http://www.w3.org/2003/05/soap-encoding"> <tns:consultarEstados /> </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:soapenc="http://www.w3.org/2003/05/soap-encoding" xmlns:tns="https://webservice.face.gob.es" xmlns:types="https://webservice.face.gob.es/encodedTypes" xmlns:rpc="http://www.w3.org/2003/05/soap-rpc" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body soap12:encodingStyle="http://www.w3.org/2003/05/soap-encoding"> <tns:consultarEstadosResponse> <rpc:result xmlns="">consultarEstadosResult</rpc:result> <consultarEstadosResult soapenc:id="id0" xsi:type="tns:ConsultarEstadosResponse"> <resultado soapenc:id="id1" xsi:type="tns:Resultado"> <codigo xsi:type="xsd:string">string</codigo> <descripcion xsi:type="xsd:string">string</descripcion> <codigoSeguimiento xsi:type="xsd:string">string</codigoSeguimiento> </resultado> <estados soapenc:id="id2" soapenc:itemType="tns:Estado" soapenc:arraySize="2"> <Item soapenc:id="id3"> <nombre xsi:type="xsd:string">string</nombre> <codigo xsi:type="xsd:string">string</codigo> <descripcion xsi:type="xsd:string">string</descripcion> </Item> <Item soapenc:id="id4"> <nombre xsi:type="xsd:string">string</nombre> <codigo xsi:type="xsd:string">string</codigo> <descripcion xsi:type="xsd:string">string</descripcion> </Item> </estados> </consultarEstadosResult> </tns:consultarEstadosResponse> </soap12:Body> </soap12:Envelope>