Permite realizar una conversión entre dos divisas arbitrarias, utilizando el tipo de cambio actual
El servicio requiere como primer parámetro un token de acceso. El token actualmente puede ser cualquier cadena y se ignora
WSDL : http://www.ahristov.com/ws/CurrencyConverter?wsdl
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:cur="http://www.ahristov.com/ws/CurrencyConverter">
<soapenv:Header/>
<soapenv:Body>
<cur:convert>
<token></token>
<from>USD</from>
<to>EUR</to>
<amount>100</amount>
</cur:convert>
</soapenv:Body>
</soapenv:Envelope>
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:ns1="http://www.ahristov.com/ws/CurrencyConverter">
<soapenv:Body>
<ns1:convertResponse>
<return>65.8655</return>
</ns1:convertResponse>
</soapenv:Body>
</soapenv:Envelope>