Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

XML SOAP request in qlikview

Hi!

I'm trying to create a SOAP request in Qlikview without using some kind of connector. I've managed to create a request in a SOAP application that looks lite this:

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:v2="http://namespace.lantmateriet.se/distribution/products/address/v2">

   <soap:Header>

    </soap:Header>

   <soap:Body>

      <v2:FindAdressRequest>

         <v2:fastighetsnyckel>210126110</v2:fastighetsnyckel>

      </v2:FindAdressRequest>

   </soap:Body>

</soap:Envelope>


And this generates a respons for me. But how to I apply this to Qlikview? I've created some sort of XML-search in QV using Google Maps geocode that works great, like this:

Data:

LOAD timestamp,

    attribution,

    querystring,

    [place/lat] as lat,

    [place/lon] as lon

FROM [http://nominatim.openstreetmap.org/search?q=$(address)&format=xml&accept-language=SE&limit=1] (XmlSimple, Table is [searchresults],utf8);

So I want to make something similar using my XML example, is that possible? In that case, how?

Any help is welcome

0 Replies