<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic SOAP CONNECTION to EU Web Serices in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/SOAP-CONNECTION-to-EU-Web-Serices/m-p/480417#M1235381</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello I trying to use a SOAP connector to EU Web Service, but the service answer me with the following text and a don't konw why:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;soap:Envelope xmlns:soap="&lt;A href="http://schemas.xmlsoap.org/soap/envelope/" target="_blank"&gt;soap:ClientUnexpected" _mce_href="http://schemas.xmlsoap.org/soap/envelope/"&amp;gt;&amp;lt;soap:Body&amp;gt;&amp;lt;soap:Fault&amp;gt;&amp;lt;faultcode&amp;gt;soap:Client&amp;lt;/faultcode&amp;gt;&amp;lt;faultstring&amp;gt;Unexpected"&amp;gt;http://schemas.xmlsoap.org/soap/envelope/"&amp;gt;&amp;lt;soap:Body&amp;gt;&amp;lt;soap:Fault&amp;gt;&amp;lt;faultcode&amp;gt;soap:Client&amp;lt;/faultcode&amp;gt;&amp;lt;faultstring&amp;gt;Unexpected&lt;/A&gt; wrapper element {urn:ec.europa.eu:taxud:vies:services:checkVat}checkVat found.&amp;nbsp;&amp;nbsp; Expected {urn:ec.europa.eu:taxud:vies:services:checkVat:types}checkVat.&amp;lt;/faultstring&amp;gt;&amp;lt;/soap:Fault&amp;gt;&amp;lt;/soap:Body&amp;gt;&amp;lt;/soap:Envelope&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you help me? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code that i developed is the following :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;sub wsSOAP&lt;BR /&gt;&lt;BR /&gt; set val=ActiveDocument.Fields("CountryCodes").GetPossibleValues&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; countryID = val.Item(0).Text&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set val=ActiveDocument.Fields("VatCode").GetPossibleValues&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; vatID = val.Item(0).Text&lt;BR /&gt;&lt;BR /&gt; xmlToSend = ""&lt;BR /&gt;&lt;BR /&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;?xml version='1.0' encoding='utf-8'?&amp;gt;" &lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;SOAP-ENV:Envelope&amp;nbsp; xmlns:SOAP-ENV='&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.xmlsoap.org/soap/envelope/" target="_blank"&gt;http://schemas.xmlsoap.org/soap/envelope/&lt;/A&gt;&lt;SPAN&gt;' xmlns:SOAP-ENC='&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.xmlsoap.org/soap/encoding/" target="_blank"&gt;http://schemas.xmlsoap.org/soap/encoding/&lt;/A&gt;&lt;SPAN&gt;' xmlns:xsi='&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.w3.org/2001/XMLSchema-instance" target="_blank"&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/A&gt;&lt;SPAN&gt;'&amp;nbsp; xmlns:xsd='&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.w3.org/2001/XMLSchema" target="_blank"&gt;http://www.w3.org/2001/XMLSchema&lt;/A&gt;&lt;SPAN&gt;' xmlns:tns1='urn:ec.europa.eu:taxud:vies:services:checkVat:types'&amp;gt;"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;SOAP-ENV:Body&amp;gt;"&lt;BR /&gt;&lt;BR /&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;tns1:checkVat xmlns:tns1='urn:ec.europa.eu:taxud:vies:services:checkVat'&amp;gt;"&lt;BR /&gt;&lt;BR /&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;tns1:countryCode&amp;gt;" &amp;amp; countryID &amp;amp; "&amp;lt;/tns1:countryCode&amp;gt;"&lt;BR /&gt;&lt;BR /&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;tns1:vatNumber&amp;gt;" &amp;amp; vatID &amp;amp; "&amp;lt;/tns1:vatNumber&amp;gt;"&lt;BR /&gt;&lt;BR /&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;/tns1:checkVat&amp;gt;"&lt;BR /&gt;&lt;BR /&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;/SOAP-ENV:Body&amp;gt;"&lt;BR /&gt;&lt;BR /&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;/SOAP-ENV:Envelope&amp;gt;"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; set txt1 = ActiveDocument.Variables("vXMLSent")&lt;BR /&gt;&lt;BR /&gt; txt1.setContent xmlToSend, true&lt;/P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;P&gt;end sub &lt;/P&gt;&lt;/SPAN&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
    <dc:creator />
    <dc:date>2026-01-26T16:26:21Z</dc:date>
    <item>
      <title>SOAP CONNECTION to EU Web Serices</title>
      <link>https://community.qlik.com/t5/QlikView/SOAP-CONNECTION-to-EU-Web-Serices/m-p/480417#M1235381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello I trying to use a SOAP connector to EU Web Service, but the service answer me with the following text and a don't konw why:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;soap:Envelope xmlns:soap="&lt;A href="http://schemas.xmlsoap.org/soap/envelope/" target="_blank"&gt;soap:ClientUnexpected" _mce_href="http://schemas.xmlsoap.org/soap/envelope/"&amp;gt;&amp;lt;soap:Body&amp;gt;&amp;lt;soap:Fault&amp;gt;&amp;lt;faultcode&amp;gt;soap:Client&amp;lt;/faultcode&amp;gt;&amp;lt;faultstring&amp;gt;Unexpected"&amp;gt;http://schemas.xmlsoap.org/soap/envelope/"&amp;gt;&amp;lt;soap:Body&amp;gt;&amp;lt;soap:Fault&amp;gt;&amp;lt;faultcode&amp;gt;soap:Client&amp;lt;/faultcode&amp;gt;&amp;lt;faultstring&amp;gt;Unexpected&lt;/A&gt; wrapper element {urn:ec.europa.eu:taxud:vies:services:checkVat}checkVat found.&amp;nbsp;&amp;nbsp; Expected {urn:ec.europa.eu:taxud:vies:services:checkVat:types}checkVat.&amp;lt;/faultstring&amp;gt;&amp;lt;/soap:Fault&amp;gt;&amp;lt;/soap:Body&amp;gt;&amp;lt;/soap:Envelope&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you help me? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code that i developed is the following :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;sub wsSOAP&lt;BR /&gt;&lt;BR /&gt; set val=ActiveDocument.Fields("CountryCodes").GetPossibleValues&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; countryID = val.Item(0).Text&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set val=ActiveDocument.Fields("VatCode").GetPossibleValues&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; vatID = val.Item(0).Text&lt;BR /&gt;&lt;BR /&gt; xmlToSend = ""&lt;BR /&gt;&lt;BR /&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;?xml version='1.0' encoding='utf-8'?&amp;gt;" &lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;SOAP-ENV:Envelope&amp;nbsp; xmlns:SOAP-ENV='&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.xmlsoap.org/soap/envelope/" target="_blank"&gt;http://schemas.xmlsoap.org/soap/envelope/&lt;/A&gt;&lt;SPAN&gt;' xmlns:SOAP-ENC='&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.xmlsoap.org/soap/encoding/" target="_blank"&gt;http://schemas.xmlsoap.org/soap/encoding/&lt;/A&gt;&lt;SPAN&gt;' xmlns:xsi='&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.w3.org/2001/XMLSchema-instance" target="_blank"&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/A&gt;&lt;SPAN&gt;'&amp;nbsp; xmlns:xsd='&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.w3.org/2001/XMLSchema" target="_blank"&gt;http://www.w3.org/2001/XMLSchema&lt;/A&gt;&lt;SPAN&gt;' xmlns:tns1='urn:ec.europa.eu:taxud:vies:services:checkVat:types'&amp;gt;"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;SOAP-ENV:Body&amp;gt;"&lt;BR /&gt;&lt;BR /&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;tns1:checkVat xmlns:tns1='urn:ec.europa.eu:taxud:vies:services:checkVat'&amp;gt;"&lt;BR /&gt;&lt;BR /&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;tns1:countryCode&amp;gt;" &amp;amp; countryID &amp;amp; "&amp;lt;/tns1:countryCode&amp;gt;"&lt;BR /&gt;&lt;BR /&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;tns1:vatNumber&amp;gt;" &amp;amp; vatID &amp;amp; "&amp;lt;/tns1:vatNumber&amp;gt;"&lt;BR /&gt;&lt;BR /&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;/tns1:checkVat&amp;gt;"&lt;BR /&gt;&lt;BR /&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;/SOAP-ENV:Body&amp;gt;"&lt;BR /&gt;&lt;BR /&gt; xmlToSend = xmlToSend &amp;amp; "&amp;lt;/SOAP-ENV:Envelope&amp;gt;"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; set txt1 = ActiveDocument.Variables("vXMLSent")&lt;BR /&gt;&lt;BR /&gt; txt1.setContent xmlToSend, true&lt;/P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;P&gt;end sub &lt;/P&gt;&lt;/SPAN&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SOAP-CONNECTION-to-EU-Web-Serices/m-p/480417#M1235381</guid>
      <dc:creator />
      <dc:date>2026-01-26T16:26:21Z</dc:date>
    </item>
  </channel>
</rss>

