<?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 WSDL Editor Issue in Open Studio 7.2.1 in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/WSDL-Editor-Issue-in-Open-Studio-7-2-1/m-p/2229924#M20714</link>
    <description>&lt;P&gt;Hi All&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have a strange situation in Open Studio 7.2.1. I'm trying to create a service and create WSDL for it with an editor but after some modification (adding params etc.) I see something like that&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TalendWSDLEditorIssue.png" style="width: 805px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M6PZ.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/140919i5220EA3F74B658FB/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M6PZ.png" alt="0683p000009M6PZ.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;Steps to reproduce:&lt;/P&gt; 
&lt;OL&gt; 
 &lt;LI&gt;Create service in TOS&lt;/LI&gt; 
 &lt;LI&gt;Select Create WSDL when asked&lt;/LI&gt; 
 &lt;LI&gt;Change Target namespace to something different then&amp;nbsp;&lt;A href="http://www.talend.org/service/" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.talend.org/service/&lt;/A&gt;&lt;/LI&gt; 
 &lt;LI&gt;Save the service and close the editor&lt;/LI&gt; 
 &lt;LI&gt;Open editor again and you will have the same problem&lt;/LI&gt; 
&lt;/OL&gt; 
&lt;P&gt;Here is a source of what was generated by TOS&lt;/P&gt; 
&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;wsdl:definitions name="TitanSyncDataServices"
		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.bffgroup.com/pl/services"
		targetNamespace="http://www.bffgroup.com/pl/services"&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="TitanSyncDataServicesOperationRequest"&amp;gt;
				&amp;lt;xsd:complexType&amp;gt;
					&amp;lt;xsd:sequence&amp;gt;
						&amp;lt;xsd:element name="in" 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="TitanSyncDataServicesOperationResponse"&amp;gt;
				&amp;lt;xsd:complexType&amp;gt;
					&amp;lt;xsd:sequence&amp;gt;
						&amp;lt;xsd:element name="out" 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:schema&amp;gt;
	&amp;lt;/wsdl:types&amp;gt;

	&amp;lt;wsdl:message name="TitanSyncDataServicesOperationRequest"&amp;gt;
		&amp;lt;wsdl:part name="parameters" element="tns:TitanSyncDataServicesOperationRequest"&amp;gt;&amp;lt;/wsdl:part&amp;gt;
	&amp;lt;/wsdl:message&amp;gt;
	&amp;lt;wsdl:message name="TitanSyncDataServicesOperationResponse"&amp;gt;
		&amp;lt;wsdl:part name="parameters" element="tns:TitanSyncDataServicesOperationResponse"&amp;gt;&amp;lt;/wsdl:part&amp;gt;
	&amp;lt;/wsdl:message&amp;gt;

	&amp;lt;wsdl:portType name="TitanSyncDataServicesPortType"&amp;gt;
		&amp;lt;wsdl:operation name="TitanSyncDataServicesOperation"&amp;gt;
			&amp;lt;wsdl:input message="tns:TitanSyncDataServicesOperationRequest"&amp;gt;&amp;lt;/wsdl:input&amp;gt;
			&amp;lt;wsdl:output message="tns:TitanSyncDataServicesOperationResponse"&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="TitanSyncDataServicesBinding" type="tns:TitanSyncDataServicesPortType"&amp;gt;
		&amp;lt;soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" /&amp;gt;
		&amp;lt;wsdl:operation name="TitanSyncDataServicesOperation"&amp;gt;
			&amp;lt;soap:operation soapAction="http://www.talend.org/service/TitanSyncDataServicesOperation" /&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="TitanSyncDataServices"&amp;gt;
		&amp;lt;wsdl:port name="TitanSyncDataServicesPort" binding="tns:TitanSyncDataServicesBinding"&amp;gt;
			&amp;lt;soap:address location="http://localhost:8090/services/TitanSyncDataServices" /&amp;gt;
		&amp;lt;/wsdl:port&amp;gt;
	&amp;lt;/wsdl:service&amp;gt;
&amp;lt;/wsdl:definitions&amp;gt;&lt;/PRE&gt;</description>
    <pubDate>Sat, 16 Nov 2024 04:45:58 GMT</pubDate>
    <dc:creator>mkoprowski</dc:creator>
    <dc:date>2024-11-16T04:45:58Z</dc:date>
    <item>
      <title>WSDL Editor Issue in Open Studio 7.2.1</title>
      <link>https://community.qlik.com/t5/Talend-Studio/WSDL-Editor-Issue-in-Open-Studio-7-2-1/m-p/2229924#M20714</link>
      <description>&lt;P&gt;Hi All&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have a strange situation in Open Studio 7.2.1. I'm trying to create a service and create WSDL for it with an editor but after some modification (adding params etc.) I see something like that&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TalendWSDLEditorIssue.png" style="width: 805px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M6PZ.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/140919i5220EA3F74B658FB/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M6PZ.png" alt="0683p000009M6PZ.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;Steps to reproduce:&lt;/P&gt; 
&lt;OL&gt; 
 &lt;LI&gt;Create service in TOS&lt;/LI&gt; 
 &lt;LI&gt;Select Create WSDL when asked&lt;/LI&gt; 
 &lt;LI&gt;Change Target namespace to something different then&amp;nbsp;&lt;A href="http://www.talend.org/service/" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.talend.org/service/&lt;/A&gt;&lt;/LI&gt; 
 &lt;LI&gt;Save the service and close the editor&lt;/LI&gt; 
 &lt;LI&gt;Open editor again and you will have the same problem&lt;/LI&gt; 
&lt;/OL&gt; 
&lt;P&gt;Here is a source of what was generated by TOS&lt;/P&gt; 
&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;wsdl:definitions name="TitanSyncDataServices"
		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.bffgroup.com/pl/services"
		targetNamespace="http://www.bffgroup.com/pl/services"&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="TitanSyncDataServicesOperationRequest"&amp;gt;
				&amp;lt;xsd:complexType&amp;gt;
					&amp;lt;xsd:sequence&amp;gt;
						&amp;lt;xsd:element name="in" 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="TitanSyncDataServicesOperationResponse"&amp;gt;
				&amp;lt;xsd:complexType&amp;gt;
					&amp;lt;xsd:sequence&amp;gt;
						&amp;lt;xsd:element name="out" 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:schema&amp;gt;
	&amp;lt;/wsdl:types&amp;gt;

	&amp;lt;wsdl:message name="TitanSyncDataServicesOperationRequest"&amp;gt;
		&amp;lt;wsdl:part name="parameters" element="tns:TitanSyncDataServicesOperationRequest"&amp;gt;&amp;lt;/wsdl:part&amp;gt;
	&amp;lt;/wsdl:message&amp;gt;
	&amp;lt;wsdl:message name="TitanSyncDataServicesOperationResponse"&amp;gt;
		&amp;lt;wsdl:part name="parameters" element="tns:TitanSyncDataServicesOperationResponse"&amp;gt;&amp;lt;/wsdl:part&amp;gt;
	&amp;lt;/wsdl:message&amp;gt;

	&amp;lt;wsdl:portType name="TitanSyncDataServicesPortType"&amp;gt;
		&amp;lt;wsdl:operation name="TitanSyncDataServicesOperation"&amp;gt;
			&amp;lt;wsdl:input message="tns:TitanSyncDataServicesOperationRequest"&amp;gt;&amp;lt;/wsdl:input&amp;gt;
			&amp;lt;wsdl:output message="tns:TitanSyncDataServicesOperationResponse"&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="TitanSyncDataServicesBinding" type="tns:TitanSyncDataServicesPortType"&amp;gt;
		&amp;lt;soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" /&amp;gt;
		&amp;lt;wsdl:operation name="TitanSyncDataServicesOperation"&amp;gt;
			&amp;lt;soap:operation soapAction="http://www.talend.org/service/TitanSyncDataServicesOperation" /&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="TitanSyncDataServices"&amp;gt;
		&amp;lt;wsdl:port name="TitanSyncDataServicesPort" binding="tns:TitanSyncDataServicesBinding"&amp;gt;
			&amp;lt;soap:address location="http://localhost:8090/services/TitanSyncDataServices" /&amp;gt;
		&amp;lt;/wsdl:port&amp;gt;
	&amp;lt;/wsdl:service&amp;gt;
&amp;lt;/wsdl:definitions&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 16 Nov 2024 04:45:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/WSDL-Editor-Issue-in-Open-Studio-7-2-1/m-p/2229924#M20714</guid>
      <dc:creator>mkoprowski</dc:creator>
      <dc:date>2024-11-16T04:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: WSDL Editor Issue in Open Studio 7.2.1</title>
      <link>https://community.qlik.com/t5/Talend-Studio/WSDL-Editor-Issue-in-Open-Studio-7-2-1/m-p/2229925#M20715</link>
      <description>&lt;P&gt;ny body have the same problems ?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Sep 2019 17:17:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/WSDL-Editor-Issue-in-Open-Studio-7-2-1/m-p/2229925#M20715</guid>
      <dc:creator>mkoprowski</dc:creator>
      <dc:date>2019-09-13T17:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: WSDL Editor Issue in Open Studio 7.2.1</title>
      <link>https://community.qlik.com/t5/Talend-Studio/WSDL-Editor-Issue-in-Open-Studio-7-2-1/m-p/2229926#M20716</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt; 
&lt;P&gt;Could you please create a jira issue on talend bug tracker for this WSDL Editor issue?&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2019 04:28:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/WSDL-Editor-Issue-in-Open-Studio-7-2-1/m-p/2229926#M20716</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-14T04:28:54Z</dc:date>
    </item>
    <item>
      <title>Re: WSDL Editor Issue in Open Studio 7.2.1</title>
      <link>https://community.qlik.com/t5/Talend-Studio/WSDL-Editor-Issue-in-Open-Studio-7-2-1/m-p/2229927#M20717</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you give me an adres wher to do it ?&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2019 09:12:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/WSDL-Editor-Issue-in-Open-Studio-7-2-1/m-p/2229927#M20717</guid>
      <dc:creator>mkoprowski</dc:creator>
      <dc:date>2019-10-14T09:12:17Z</dc:date>
    </item>
  </channel>
</rss>

