<?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 WRONG_DOCUMENT_ERR: when using tWebServiceInput Component in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/WRONG-DOCUMENT-ERR-when-using-tWebServiceInput-Component/m-p/2310228#M81372</link>
    <description>Hello thank you for helping. 
&lt;BR /&gt;I am using the advanced setting of this component to build the required SOAP message to retrieve data from InsideSales.com. 
&lt;BR /&gt;I used the WSDL2Java button to create the needed routines, and I am able to login using those routines. The trouble comes when building the necessary filters to retrieve the targeted information. I get a WRONG_DOCUMENT_ERR: on the building the XML. I saw a few posts online that reference a bug in axis but I don't know if it is relevent: 
&lt;A href="https://issues.apache.org/jira/browse/AXIS-2705" target="_blank" rel="nofollow noopener noreferrer"&gt;https://issues.apache.org/jira/browse/AXIS-2705&lt;/A&gt; 
&lt;BR /&gt;The url for the WSDL = " 
&lt;A href="https://fphc.insidesales.com/do=noauth/soap/service?wsdl" target="_blank" rel="nofollow noopener noreferrer"&gt;https://fphc.insidesales.com/do=noauth/soap/service?wsdl&lt;/A&gt;" 
&lt;BR /&gt;here is my code from the advanced settings tab: 
&lt;BR /&gt; 
&lt;PRE&gt;routines.AllInsideSalesServicesPortType inSalesSoap = new routines.AllInsideSalesServicesServiceLocator().getAllInsideSalesServicesPort();&lt;BR /&gt;routines.AllInsideSalesServicesBindingStub stub = (routines.AllInsideSalesServicesBindingStub)inSalesSoap;&lt;BR /&gt;				&lt;BR /&gt;boolean result = inSalesSoap.login("secretuser", "secretpw", "secretsecuritytoken");&lt;BR /&gt;System.out.println("the successful login attempt is " + result);&lt;BR /&gt;String[] values = {"false"};&lt;BR /&gt;routines.Filter empFilter1 = new routines.Filter("deleted","=",values);&lt;BR /&gt;routines.Filter empFilters[] = {empFilter1};&lt;BR /&gt;routines.Employee[] resultEmp = inSalesSoap.getEmployees(empFilters, 0, 0);&lt;/PRE&gt; 
&lt;BR /&gt;The error looks like this: 
&lt;BR /&gt; 
&lt;PRE&gt;Exception in component tWebServiceInput_2&lt;BR /&gt;AxisFault&lt;BR /&gt; faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException&lt;BR /&gt; faultSubcode: &lt;BR /&gt; faultString: org.w3c.dom.DOMException: WRONG_DOCUMENT_ERR: A node is used in a different document than the one that created it.&lt;BR /&gt; faultActor: &lt;BR /&gt; faultNode: &lt;BR /&gt; faultDetail: &lt;BR /&gt;	{http://xml.apache.org/axis/}stackTrace:org.w3c.dom.DOMException: WRONG_DOCUMENT_ERR: A node is used in a different document than the one that created it.&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.dom.ParentNode.internalInsertBefore(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.dom.ParentNode.insertBefore(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.dom.NodeImpl.appendChild(Unknown Source)&lt;BR /&gt;	at org.apache.axis.message.SOAPFaultBuilder.onEndChild(SOAPFaultBuilder.java:305)&lt;BR /&gt;	at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1090)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)&lt;BR /&gt;	at javax.xml.parsers.SAXParser.parse(Unknown Source)&lt;BR /&gt;	at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)&lt;BR /&gt;	at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)&lt;BR /&gt;	at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)&lt;BR /&gt;	at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)&lt;BR /&gt;	at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)&lt;BR /&gt;	at org.apache.axis.client.Call.invokeEngine(Call.java:2784)&lt;BR /&gt;	at org.apache.axis.client.Call.invoke(Call.java:2767)&lt;BR /&gt;	at org.apache.axis.client.Call.invoke(Call.java:2443)&lt;BR /&gt;	at org.apache.axis.client.Call.invoke(Call.java:2366)&lt;BR /&gt;	at org.apache.axis.client.Call.invoke(Call.java:1812)&lt;BR /&gt;	at routines.AllInsideSalesServicesBindingStub.getEmployees(AllInsideSalesServicesBindingStub.java:2287)&lt;BR /&gt;	at insidesalesconversion.fortestingonly_0_1.ForTestingOnly.tWebServiceInput_2Process(ForTestingOnly.java:601)&lt;BR /&gt;	at insidesalesconversion.fortestingonly_0_1.ForTestingOnly.runJobInTOS(ForTestingOnly.java:919)&lt;BR /&gt;	at insidesalesconversion.fortestingonly_0_1.ForTestingOnly.main(ForTestingOnly.java:761)&lt;BR /&gt;	{http://xml.apache.org/axis/}hostname:ws795-1&lt;BR /&gt;org.w3c.dom.DOMException: WRONG_DOCUMENT_ERR: A node is used in a different document than the one that created it.&lt;BR /&gt;	at org.apache.axis.AxisFault.makeFault(AxisFault.java:101)&lt;BR /&gt;	at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:701)&lt;BR /&gt;	at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)&lt;BR /&gt;	at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)&lt;BR /&gt;	at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)&lt;BR /&gt;	at org.apache.axis.client.Call.invokeEngine(Call.java:2784)&lt;BR /&gt;	at org.apache.axis.client.Call.invoke(Call.java:2767)&lt;BR /&gt;	at org.apache.axis.client.Call.invoke(Call.java:2443)&lt;BR /&gt;	at org.apache.axis.client.Call.invoke(Call.java:2366)&lt;BR /&gt;	at org.apache.axis.client.Call.invoke(Call.java:1812)&lt;BR /&gt;	at routines.AllInsideSalesServicesBindingStub.getEmployees(AllInsideSalesServicesBindingStub.java:2287)&lt;BR /&gt;	at insidesalesconversion.fortestingonly_0_1.ForTestingOnly.tWebServiceInput_2Process(ForTestingOnly.java:601)&lt;BR /&gt;	at insidesalesconversion.fortestingonly_0_1.ForTestingOnly.runJobInTOS(ForTestingOnly.java:919)&lt;BR /&gt;	at insidesalesconversion.fortestingonly_0_1.ForTestingOnly.main(ForTestingOnly.java:761)&lt;BR /&gt;Caused by: org.w3c.dom.DOMException: WRONG_DOCUMENT_ERR: A node is used in a different document than the one that created it.&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.dom.ParentNode.internalInsertBefore(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.dom.ParentNode.insertBefore(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.dom.NodeImpl.appendChild(Unknown Source)&lt;BR /&gt;	at org.apache.axis.message.SOAPFaultBuilder.onEndChild(SOAPFaultBuilder.java:305)&lt;BR /&gt;	at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1090)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)&lt;BR /&gt;	at javax.xml.parsers.SAXParser.parse(Unknown Source)&lt;BR /&gt;	at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)&lt;BR /&gt;	at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)&lt;BR /&gt;	... 12 more&lt;/PRE&gt;</description>
    <pubDate>Sat, 16 Nov 2024 12:35:12 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-11-16T12:35:12Z</dc:date>
    <item>
      <title>WRONG_DOCUMENT_ERR: when using tWebServiceInput Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/WRONG-DOCUMENT-ERR-when-using-tWebServiceInput-Component/m-p/2310228#M81372</link>
      <description>Hello thank you for helping. 
&lt;BR /&gt;I am using the advanced setting of this component to build the required SOAP message to retrieve data from InsideSales.com. 
&lt;BR /&gt;I used the WSDL2Java button to create the needed routines, and I am able to login using those routines. The trouble comes when building the necessary filters to retrieve the targeted information. I get a WRONG_DOCUMENT_ERR: on the building the XML. I saw a few posts online that reference a bug in axis but I don't know if it is relevent: 
&lt;A href="https://issues.apache.org/jira/browse/AXIS-2705" target="_blank" rel="nofollow noopener noreferrer"&gt;https://issues.apache.org/jira/browse/AXIS-2705&lt;/A&gt; 
&lt;BR /&gt;The url for the WSDL = " 
&lt;A href="https://fphc.insidesales.com/do=noauth/soap/service?wsdl" target="_blank" rel="nofollow noopener noreferrer"&gt;https://fphc.insidesales.com/do=noauth/soap/service?wsdl&lt;/A&gt;" 
&lt;BR /&gt;here is my code from the advanced settings tab: 
&lt;BR /&gt; 
&lt;PRE&gt;routines.AllInsideSalesServicesPortType inSalesSoap = new routines.AllInsideSalesServicesServiceLocator().getAllInsideSalesServicesPort();&lt;BR /&gt;routines.AllInsideSalesServicesBindingStub stub = (routines.AllInsideSalesServicesBindingStub)inSalesSoap;&lt;BR /&gt;				&lt;BR /&gt;boolean result = inSalesSoap.login("secretuser", "secretpw", "secretsecuritytoken");&lt;BR /&gt;System.out.println("the successful login attempt is " + result);&lt;BR /&gt;String[] values = {"false"};&lt;BR /&gt;routines.Filter empFilter1 = new routines.Filter("deleted","=",values);&lt;BR /&gt;routines.Filter empFilters[] = {empFilter1};&lt;BR /&gt;routines.Employee[] resultEmp = inSalesSoap.getEmployees(empFilters, 0, 0);&lt;/PRE&gt; 
&lt;BR /&gt;The error looks like this: 
&lt;BR /&gt; 
&lt;PRE&gt;Exception in component tWebServiceInput_2&lt;BR /&gt;AxisFault&lt;BR /&gt; faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException&lt;BR /&gt; faultSubcode: &lt;BR /&gt; faultString: org.w3c.dom.DOMException: WRONG_DOCUMENT_ERR: A node is used in a different document than the one that created it.&lt;BR /&gt; faultActor: &lt;BR /&gt; faultNode: &lt;BR /&gt; faultDetail: &lt;BR /&gt;	{http://xml.apache.org/axis/}stackTrace:org.w3c.dom.DOMException: WRONG_DOCUMENT_ERR: A node is used in a different document than the one that created it.&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.dom.ParentNode.internalInsertBefore(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.dom.ParentNode.insertBefore(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.dom.NodeImpl.appendChild(Unknown Source)&lt;BR /&gt;	at org.apache.axis.message.SOAPFaultBuilder.onEndChild(SOAPFaultBuilder.java:305)&lt;BR /&gt;	at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1090)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)&lt;BR /&gt;	at javax.xml.parsers.SAXParser.parse(Unknown Source)&lt;BR /&gt;	at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)&lt;BR /&gt;	at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)&lt;BR /&gt;	at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)&lt;BR /&gt;	at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)&lt;BR /&gt;	at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)&lt;BR /&gt;	at org.apache.axis.client.Call.invokeEngine(Call.java:2784)&lt;BR /&gt;	at org.apache.axis.client.Call.invoke(Call.java:2767)&lt;BR /&gt;	at org.apache.axis.client.Call.invoke(Call.java:2443)&lt;BR /&gt;	at org.apache.axis.client.Call.invoke(Call.java:2366)&lt;BR /&gt;	at org.apache.axis.client.Call.invoke(Call.java:1812)&lt;BR /&gt;	at routines.AllInsideSalesServicesBindingStub.getEmployees(AllInsideSalesServicesBindingStub.java:2287)&lt;BR /&gt;	at insidesalesconversion.fortestingonly_0_1.ForTestingOnly.tWebServiceInput_2Process(ForTestingOnly.java:601)&lt;BR /&gt;	at insidesalesconversion.fortestingonly_0_1.ForTestingOnly.runJobInTOS(ForTestingOnly.java:919)&lt;BR /&gt;	at insidesalesconversion.fortestingonly_0_1.ForTestingOnly.main(ForTestingOnly.java:761)&lt;BR /&gt;	{http://xml.apache.org/axis/}hostname:ws795-1&lt;BR /&gt;org.w3c.dom.DOMException: WRONG_DOCUMENT_ERR: A node is used in a different document than the one that created it.&lt;BR /&gt;	at org.apache.axis.AxisFault.makeFault(AxisFault.java:101)&lt;BR /&gt;	at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:701)&lt;BR /&gt;	at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)&lt;BR /&gt;	at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)&lt;BR /&gt;	at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)&lt;BR /&gt;	at org.apache.axis.client.Call.invokeEngine(Call.java:2784)&lt;BR /&gt;	at org.apache.axis.client.Call.invoke(Call.java:2767)&lt;BR /&gt;	at org.apache.axis.client.Call.invoke(Call.java:2443)&lt;BR /&gt;	at org.apache.axis.client.Call.invoke(Call.java:2366)&lt;BR /&gt;	at org.apache.axis.client.Call.invoke(Call.java:1812)&lt;BR /&gt;	at routines.AllInsideSalesServicesBindingStub.getEmployees(AllInsideSalesServicesBindingStub.java:2287)&lt;BR /&gt;	at insidesalesconversion.fortestingonly_0_1.ForTestingOnly.tWebServiceInput_2Process(ForTestingOnly.java:601)&lt;BR /&gt;	at insidesalesconversion.fortestingonly_0_1.ForTestingOnly.runJobInTOS(ForTestingOnly.java:919)&lt;BR /&gt;	at insidesalesconversion.fortestingonly_0_1.ForTestingOnly.main(ForTestingOnly.java:761)&lt;BR /&gt;Caused by: org.w3c.dom.DOMException: WRONG_DOCUMENT_ERR: A node is used in a different document than the one that created it.&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.dom.ParentNode.internalInsertBefore(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.dom.ParentNode.insertBefore(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.dom.NodeImpl.appendChild(Unknown Source)&lt;BR /&gt;	at org.apache.axis.message.SOAPFaultBuilder.onEndChild(SOAPFaultBuilder.java:305)&lt;BR /&gt;	at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1090)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)&lt;BR /&gt;	at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)&lt;BR /&gt;	at javax.xml.parsers.SAXParser.parse(Unknown Source)&lt;BR /&gt;	at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)&lt;BR /&gt;	at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)&lt;BR /&gt;	... 12 more&lt;/PRE&gt;</description>
      <pubDate>Sat, 16 Nov 2024 12:35:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/WRONG-DOCUMENT-ERR-when-using-tWebServiceInput-Component/m-p/2310228#M81372</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T12:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: WRONG_DOCUMENT_ERR: when using tWebServiceInput Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/WRONG-DOCUMENT-ERR-when-using-tWebServiceInput-Component/m-p/2310229#M81373</link>
      <description>did you have any luck with this Scott? I'm seeing the same error..
&lt;BR /&gt;-Jesal</description>
      <pubDate>Wed, 05 Sep 2012 06:16:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/WRONG-DOCUMENT-ERR-when-using-tWebServiceInput-Component/m-p/2310229#M81373</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-05T06:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: WRONG_DOCUMENT_ERR: when using tWebServiceInput Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/WRONG-DOCUMENT-ERR-when-using-tWebServiceInput-Component/m-p/2310230#M81374</link>
      <description>Any updates as to how to fix this? I getting the same DOM_DOCUMENT_ERR.</description>
      <pubDate>Fri, 01 Feb 2013 19:56:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/WRONG-DOCUMENT-ERR-when-using-tWebServiceInput-Component/m-p/2310230#M81374</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-01T19:56:55Z</dc:date>
    </item>
  </channel>
</rss>

