Sto cercando di implementare un client per il servizio SOAP di National Rail Enquiries (http://www.livedepartureboards.co.uk/ldbws/).Azione SOAP WSDL
Applico il WSDL (http://realtime.nationalrail.co.uk/ldbws/wsdl.aspx) a http://soapclient.com/soaptest.html, ma torno il messaggio di errore "Impossibile gestire la richiesta senza un parametro di azione valido. Fornire un'azione sapone valida."; cosa diavolo dovrebbe essere l'azione?
Grazie, Stewart
edit:
ho appena usato soapclient.com come un esempio veloce. Nel mio software, invio il seguente XML; Ho ancora capito che mi manca un'azione.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://thalesgroup.com/RTTI/2008-02-20/ldb/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:ldbt2="http://thalesgroup.com/RTTI/2008-02-20/ldb/types" xmlns:ldbt="http://thalesgroup.com/RTTI/2007-10-10/ldb/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ct="http://thalesgroup.com/RTTI/2007-10-10/ldb/commontypes" >
<SOAP-ENV:Body>
<ldbt2:GetDepartureBoardRequest xmlns:ldbt2="http://thalesgroup.com/RTTI/2008-02-20/ldb/" >
<ldbt2:numRows>5</ldbt2:numRows>
<ldbt2:crs>WAT</ldbt2:crs>
<ldbt2:filterCrs>GLD</ldbt2:filterCrs>
<ldbt2:filterType>to</ldbt2:filterType>
<ldbt2:timeOffset>0</ldbt2:timeOffset>
</ldbt2:GetDepartureBoardRequest>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
E 'probabile che la soapclient.com non piace il WSDL, per ragioni proprie. Il servizio web NRE funziona bene, però, l'ho usato io stesso. – skaffman
Vedere http://stackoverflow.com/questions/128263/how-do-you-determine-a-valid-soapaction – Jono
In breve, cercare il WSDL per soapAction. Vedere http://stackoverflow.com/questions/128263/how-do-you-determine-a-valid-soapaction – Jono