<?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 Re: WSDL. Can not access data in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/WSDL-Can-not-access-data/m-p/2311058#M82131</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Could you please post your current job setting screenshots here? Which webservice component are you using?&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;Sabrina&lt;/P&gt;</description>
    <pubDate>Wed, 05 Jul 2017 04:06:26 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-07-05T04:06:26Z</dc:date>
    <item>
      <title>WSDL. Can not access data</title>
      <link>https://community.qlik.com/t5/Talend-Studio/WSDL-Can-not-access-data/m-p/2311057#M82130</link>
      <description>&lt;P&gt;I try Create WSDL via Talend:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;if i use &lt;STRONG&gt;SOAP UI - it's work fine.&lt;/STRONG&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SOAP.JPG" style="width: 935px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LvJA.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/146155i1619F9F6F4ABCF41/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LvJA.jpg" alt="0683p000009LvJA.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;But when i try use WSDL from another envoriment -&amp;nbsp;There are problems with the extract of data:&lt;/P&gt; 
&lt;P&gt;In another envoriment i can't get XML. Only data.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;I can't get value of complex type "root" and values from simple types.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Please help me fix schema in wsdl for&amp;nbsp;obtain the results of data:&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Code from another&amp;nbsp;envoriment:&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;void run()
{
    wsdl.getMaxoptraSession10.BreadServicePortTypeClient getMaxoptraSession; // declare WSDL 
    wsdl.getMaxoptraSession10.NodeType NodeType; // declare node (complex type)
    wsdl.getMaxoptraSession10.ResponceType ResponceType; // declare node (complex type)
    str fld;
    ;
    // instance
    getMaxoptraSession = new  wsdl.getMaxoptraSession10.BreadServicePortTypeClient();
    // call web-service (it's worked)
    ResponceType = getMaxoptraSession.BreadServiceOperation(""); // try get &amp;lt;tns:BreadServiceOperationResponce xmlns:tns="http://www.talend.org/service/"&amp;gt;
    NodeType = ResponceType.get_root(); // try get &amp;lt;root&amp;gt; ERROR HERE!
    fld = NodeType.get_sessionID(); // try get sessionID &amp;lt;&amp;gt;value
    return ;
}&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;My WSDL:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;wsdl:definitions name="BreadService"
		xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
		xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
		xmlns:xsd="http://www.w3.org/2001/XMLSchema"
		xmlns:tns="http://www.talend.org/service/"
		targetNamespace="http://www.talend.org/service/"&amp;gt;

	&amp;lt;wsdl:types&amp;gt;
		&amp;lt;xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
			targetNamespace="http://www.talend.org/service/"&amp;gt;
			&amp;lt;xsd:element name="BreadServiceOperationRequest"&amp;gt;
				&amp;lt;xsd:complexType&amp;gt;
					&amp;lt;xsd:sequence&amp;gt;
						&amp;lt;xsd:element name="root" type="xsd:string"&amp;gt;&amp;lt;/xsd:element&amp;gt;
					&amp;lt;/xsd:sequence&amp;gt;
				&amp;lt;/xsd:complexType&amp;gt;
			&amp;lt;/xsd:element&amp;gt;
			&amp;lt;xsd:element name="BreadServiceOperationResponse"&amp;gt;
				&amp;lt;xsd:complexType&amp;gt;
					&amp;lt;xsd:sequence&amp;gt;
						&amp;lt;xsd:element
							name="BreadServiceOperationResponce" type="tns:ResponceType"&amp;gt;
						&amp;lt;/xsd:element&amp;gt;
					&amp;lt;/xsd:sequence&amp;gt;
				&amp;lt;/xsd:complexType&amp;gt;
			&amp;lt;/xsd:element&amp;gt;
		
			&amp;lt;xsd:complexType name="NodeType"&amp;gt;
				&amp;lt;xsd:sequence&amp;gt;
					&amp;lt;xsd:element name="sessionID" type="xsd:string"&amp;gt;&amp;lt;/xsd:element&amp;gt;
				&amp;lt;/xsd:sequence&amp;gt;
			&amp;lt;/xsd:complexType&amp;gt;
		
			&amp;lt;xsd:complexType name="ResponceType"&amp;gt;
				&amp;lt;xsd:sequence&amp;gt;
					&amp;lt;xsd:element name="root" type="tns:NodeType"&amp;gt;&amp;lt;/xsd:element&amp;gt;
				&amp;lt;/xsd:sequence&amp;gt;
			&amp;lt;/xsd:complexType&amp;gt;
		&amp;lt;/xsd:schema&amp;gt;
	&amp;lt;/wsdl:types&amp;gt;

	&amp;lt;wsdl:message name="BreadServiceOperationRequest"&amp;gt;
		&amp;lt;wsdl:part name="parameters" element="tns:BreadServiceOperationRequest"&amp;gt;&amp;lt;/wsdl:part&amp;gt;
	&amp;lt;/wsdl:message&amp;gt;
	&amp;lt;wsdl:message name="BreadServiceOperationResponse"&amp;gt;
		&amp;lt;wsdl:part name="parameters" element="tns:BreadServiceOperationResponse"&amp;gt;&amp;lt;/wsdl:part&amp;gt;
	&amp;lt;/wsdl:message&amp;gt;

	&amp;lt;wsdl:portType name="BreadServicePortType"&amp;gt;
		&amp;lt;wsdl:operation name="BreadServiceOperation"&amp;gt;
			&amp;lt;wsdl:input message="tns:BreadServiceOperationRequest"&amp;gt;&amp;lt;/wsdl:input&amp;gt;
			&amp;lt;wsdl:output message="tns:BreadServiceOperationResponse"&amp;gt;&amp;lt;/wsdl:output&amp;gt;
		&amp;lt;/wsdl:operation&amp;gt;
	&amp;lt;/wsdl:portType&amp;gt;

	&amp;lt;wsdl:binding name="BreadServiceBinding" type="tns:BreadServicePortType"&amp;gt;
		&amp;lt;soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" /&amp;gt;
		&amp;lt;wsdl:operation name="BreadServiceOperation"&amp;gt;
			&amp;lt;soap:operation soapAction="http://www.talend.org/service/BreadServiceOperation" /&amp;gt;
			&amp;lt;wsdl:input&amp;gt;
				&amp;lt;soap:body use="literal" /&amp;gt;
			&amp;lt;/wsdl:input&amp;gt;
			&amp;lt;wsdl:output&amp;gt;
				&amp;lt;soap:body use="literal" /&amp;gt;
			&amp;lt;/wsdl:output&amp;gt;
		&amp;lt;/wsdl:operation&amp;gt;
	&amp;lt;/wsdl:binding&amp;gt;

	&amp;lt;wsdl:service name="BreadService"&amp;gt;
		&amp;lt;wsdl:port name="BreadServicePort" binding="tns:BreadServiceBinding"&amp;gt;
			&amp;lt;soap:address location="http://192.168.3.173:8090/services/BreadService" /&amp;gt;
		&amp;lt;/wsdl:port&amp;gt;
	&amp;lt;/wsdl:service&amp;gt;
&amp;lt;/wsdl:definitions&amp;gt;&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 09:33:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/WSDL-Can-not-access-data/m-p/2311057#M82130</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T09:33:55Z</dc:date>
    </item>
    <item>
      <title>Re: WSDL. Can not access data</title>
      <link>https://community.qlik.com/t5/Talend-Studio/WSDL-Can-not-access-data/m-p/2311058#M82131</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Could you please post your current job setting screenshots here? Which webservice component are you using?&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jul 2017 04:06:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/WSDL-Can-not-access-data/m-p/2311058#M82131</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-05T04:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: WSDL. Can not access data</title>
      <link>https://community.qlik.com/t5/Talend-Studio/WSDL-Can-not-access-data/m-p/2311059#M82132</link>
      <description>&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="job.JPG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LvK9.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/142796iA900FD81F4931D6E/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LvK9.jpg" alt="0683p000009LvK9.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;I use tESBProviderRequest and tESBProviderResponce&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jul 2017 05:10:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/WSDL-Can-not-access-data/m-p/2311059#M82132</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-05T05:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: WSDL. Can not access data</title>
      <link>https://community.qlik.com/t5/Talend-Studio/WSDL-Can-not-access-data/m-p/2311060#M82133</link>
      <description>&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="12345.jpg" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lv9v.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/134884iB4284B2E48A66B4F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lv9v.jpg" alt="0683p000009Lv9v.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;STRONG&gt;So probably it will be more understandable&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jul 2017 10:53:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/WSDL-Can-not-access-data/m-p/2311060#M82133</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-05T10:53:02Z</dc:date>
    </item>
  </channel>
</rss>

