Hi all!
I want call a soap service in FME. I use this link:
https://swea.riksbank.se/sweaWS/wsdl/sweaWS_ssl.wsdl
I used the program SoapUI to generate and test the xml request. In SoapUI the return works fine. This is the request I use:
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsd="http://swea.riksbank.se/xsd">
<soap:Header/>
<soap:Body>
<xsd:getMonthlyAverageExchangeRates>
<year>2022</year>
<month>1</month>
<languageid>en</languageid>
</xsd:getMonthlyAverageExchangeRates>
</soap:Body>
</soap:Envelope>
However, in FME I only get a list of function as a return.
Any help is welcome.
Thanks in advance!