XML para simular la llamada que hace ULMA para pasar a enviados los pedidos
WSDL:
http://www.animales.es/ws/internal_soap/order.wsdl
Lanzar con SoapUI a http://www.animales.es/ws/internal_soap/order.php
Puede que se necesite modificar le fichero order.php añadiendo
define('SOAP_CALL',true);
chdir('../../');
include 'includes/application_top.php';
<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:int="http://10.30.7.112/ws/internal_soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
<soapenv:Header/>
<soapenv:Body>
<int:order_sent soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<pedido xsi:type="int:OrderType">
<orderId xsi:type="xsd:int">1338626</orderId>
<agencia xsi:type="xsd:int">1</agencia>
<expediciones xsi:type="int:stringArray" soapenc:arrayType="xsd:string[]">
<expedicion>1234</expedicion>
</expediciones>
<fechaEnvio xsi:type="xsd:string">2016-12-19</fechaEnvio>
<estadoSap xsi:type="xsd:int">5</estadoSap>
</pedido>
</int:order_sent>
</soapenv:Body>
</soapenv:Envelope>