<?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: magento, retrieve new customers in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367155#M130564</link>
    <description>On the store I have all resources as treu for webservices.&lt;BR /&gt;here goes the screenshot</description>
    <pubDate>Tue, 07 Feb 2012 14:51:13 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-02-07T14:51:13Z</dc:date>
    <item>
      <title>magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367152#M130561</link>
      <description>Hello. 
&lt;BR /&gt;I want to retrieve new costumers from my magento web site with txmlrpcinput component. 
&lt;BR /&gt;I have the txmlrpcinput like this: server url: "&lt;A href="http://mysite/api/xmlrpc" target="_blank"&gt;http://mysite/api/xmlrpc&lt;/A&gt;" 
&lt;BR /&gt;auth=true and "apiuser" + "apikey" 
&lt;BR /&gt;method: "call" 
&lt;BR /&gt;when i run the job the errors are: 
&lt;BR /&gt;statistics] connecting to socket on port 3760 
&lt;BR /&gt; connected 
&lt;BR /&gt;Exception in component tXMLRPCInput_1 
&lt;BR /&gt;org.apache.xmlrpc.XmlRpcException: Calling parameters do not match signature 
&lt;BR /&gt; at org.apache.xmlrpc.client.XmlRpcStreamTransport.readResponse(XmlRpcStreamTransport.java:184) 
&lt;BR /&gt;Any ideia? 
&lt;BR /&gt;Thanks</description>
      <pubDate>Sat, 16 Nov 2024 12:27:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367152#M130561</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T12:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367153#M130562</link>
      <description>Hey Ruben, 
&lt;BR /&gt;I have done connections for a few magento stores. This post will not answer your question, but it will give you another way to connect to a magento store.
&lt;BR /&gt;First make sure that you have the WSDL enabled at the store. What I have done is....
&lt;BR /&gt;Basic Settings 
&lt;BR /&gt; tWebserviceInput
&lt;BR /&gt; WSDL: "
&lt;A href="http://yourstore.com/api/v2_soap/" rel="nofollow noopener noreferrer"&gt;http://yourstore.com/api/v2_soap/&lt;/A&gt;" (depending on your magento version you might have to add a ?wsdl at the end)
&lt;BR /&gt; Method name: "" (I leave it empty)
&lt;BR /&gt; Edit Schema add whichever rows you want to output (for example: orderID)
&lt;BR /&gt;Advanced Settings
&lt;BR /&gt; check advanced used checkmark
&lt;BR /&gt; Then click the WSDL2Java button. This will generate the code based on the WSDL from the store. Keep in mind different versions of magento have different WSDL.
&lt;BR /&gt; In the code section:
&lt;BR /&gt;
&lt;PRE&gt;        &lt;BR /&gt;String url= "http://yourstore.com/api/v2_soap/?wsdl";&lt;BR /&gt;routines.Mage_Api_Model_Server_V2_HandlerPortType portType = null;&lt;BR /&gt;String sessionId = null;&lt;BR /&gt;SalesOrderEntity[]  entity = null;&lt;BR /&gt;portType = new routines.MagentoServiceLocator().getMage_Api_Model_Server_V2_HandlerPort(new java.net.URL(url));&lt;BR /&gt;sessionId = portType.login(context.userName,context.password);&lt;BR /&gt;//Filters to get orders in a certain status&lt;BR /&gt;AssociativeEntity ae1 = new AssociativeEntity("status", "Processing");&lt;BR /&gt;AssociativeEntity[]  ae = {ae1};&lt;BR /&gt;ComplexFilter cof1 = new ComplexFilter("status", ae1);&lt;BR /&gt;ComplexFilter[] cof = {cof1};&lt;BR /&gt;Filters filters = new Filters(ae,cof);&lt;BR /&gt;entity = portType.salesOrderList(sessionId,filters);&lt;BR /&gt;&lt;BR /&gt;for(int i = 0 ; i &amp;lt; entity.length; i++)&lt;BR /&gt;{&lt;BR /&gt;SalesOrderEntity orderInfo = portType.salesOrderInfo(sessionId, entity&lt;I&gt;.getIncrement_id());&lt;BR /&gt;output_row.orderID = entity&lt;I&gt;.getIncrement_id();&lt;BR /&gt;}&lt;/I&gt;&lt;/I&gt;&lt;/PRE&gt;
&lt;BR /&gt;Then you can output out of your tWebserviceInput to another component.
&lt;BR /&gt;This is how I have been doing it but if anyone else has any input I'm all ears. 
&lt;BR /&gt;Hope this helps.</description>
      <pubDate>Thu, 12 Jan 2012 00:38:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367153#M130562</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-01-12T00:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367154#M130563</link>
      <description>Hello and thanks for your reply.&lt;BR /&gt;Sorry for my late response, but I was ending some other projects.&lt;BR /&gt;I've done every thing you said, I have an orderid into tlogrow, but no data retrieved, but also no errors and and I have connection.&lt;BR /&gt;Do you have any ideia?&lt;BR /&gt;Thanks</description>
      <pubDate>Tue, 07 Feb 2012 14:34:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367154#M130563</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-02-07T14:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367155#M130564</link>
      <description>On the store I have all resources as treu for webservices.&lt;BR /&gt;here goes the screenshot</description>
      <pubDate>Tue, 07 Feb 2012 14:51:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367155#M130564</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-02-07T14:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367156#M130565</link>
      <description>What is your entity_id mapped to?&lt;BR /&gt;Here is how I get the order increment id:  output_row.orderID = entity&lt;I&gt;.getIncrement_id();&lt;BR /&gt;Also keep in mind that if you have any filters set you may or may not get anything across.&lt;/I&gt;</description>
      <pubDate>Wed, 08 Feb 2012 17:43:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367156#M130565</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-02-08T17:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367157#M130566</link>
      <description>Hello again. 
&lt;BR /&gt;I try again, I am having a Jaa IO exception error, after pressing the WSDL2Java button on the TwebserviceInput advanced options... 
&lt;BR /&gt;Any Ideia?</description>
      <pubDate>Mon, 23 Apr 2012 22:52:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367157#M130566</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-04-23T22:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367158#M130567</link>
      <description>I have had that happen to me with different Magento implementations... Usually it boils down to the URL that you are using. Normally I start at 
&lt;A href="http://www.yourdomain.com/api/v2_soap/?wsdl" rel="nofollow noopener noreferrer"&gt;http://www.yourdomain.com/api/v2_soap/?wsdl&lt;/A&gt; then I press the WSDL2JAVA. However I am actually encountering the same problem where I get the IO error with Magento 1.6.1 but it might not be the Magento version nor Talend but how the server is configured and if you are allowed access. 
&lt;BR /&gt;
&lt;BR /&gt;Other things you might try:
&lt;BR /&gt;api/v2_soap/
&lt;BR /&gt;api/soap/?wsdl
&lt;BR /&gt;api/?wsdl
&lt;BR /&gt;
&lt;BR /&gt;Hope that this is helpful. If I figure out a generic way to get the wsdl working across versions I will let you know. But I think it depends on how the webstore is configured.</description>
      <pubDate>Mon, 23 Apr 2012 23:07:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367158#M130567</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-04-23T23:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367159#M130568</link>
      <description>i'm using twebservice for the implementation of a webservice MAGENTO , could you please tell me if i can use it??? 
&lt;BR /&gt;if yes i find difficulties to configurate it !!! 
&lt;BR /&gt;here is my questions 
&lt;BR /&gt;yes this is the part where i face problems ... 
&lt;BR /&gt;i don't know what to put in the expressions accorded to the elements. 
&lt;BR /&gt;for exemple i need the login operation(used by MAGENTOwebservice) shown in the firt screen just under the wsdl adress 
&lt;BR /&gt;for this opération i have in the left the field of my table CMS and on the right the webservices parametres 
&lt;BR /&gt; EXPRESSIONS ELEMENTS 
&lt;BR /&gt;user id ------- user_name 
&lt;BR /&gt;login_user 
&lt;BR /&gt; ---------- apikey 
&lt;BR /&gt;pass_user 
&lt;BR /&gt;this is in the inputmapping part 
&lt;BR /&gt;in the outputmapping i get in the left side the retur login and i ve to macht it with one parametre in the right side , i don't know what i've to return ?? 
&lt;BR /&gt;QUESTIONS 
&lt;BR /&gt;1-i dont know how to fill the expressions with which input left fields fill them ??? 
&lt;BR /&gt;2-what is the type of what i will return in type_login in the output ( i'm working on MAGENTOwebservice) 
&lt;BR /&gt; 
&lt;BR /&gt;in the second case i use the call operation 
&lt;BR /&gt;in the left side i get my sql database table (CATEGORY) 
&lt;BR /&gt;in the right i was asqued to complete the expession of theses elements id session (the session of ma CMS webservice) 
&lt;BR /&gt;the resource path of my webservice and the args 
&lt;BR /&gt;QUESTIONS 
&lt;BR /&gt;1- i don't know how to bring the id session (the login return of ma first case ) 
&lt;BR /&gt;2- for the resource path i try CATEGORY.CREATE as shown in MAGENTO website but it doesn't work is that Ok 
&lt;BR /&gt;3_for the args i don't know which fields bring from my Mysql database CATEGORY table to fill the args area and if there more than one args is there any separating thing (, or . or wink 
&lt;BR /&gt; 
&lt;BR /&gt;thank's a lot you for your help</description>
      <pubDate>Wed, 20 Jun 2012 08:16:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367159#M130568</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2012-06-20T08:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367160#M130569</link>
      <description>Could you post some detailed images of what you are trying to accomplish. I don't quite understand what you are trying to do here.</description>
      <pubDate>Wed, 20 Jun 2012 16:16:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367160#M130569</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-06-20T16:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367161#M130570</link>
      <description>here are some pictures to explaine what i want to do , and what i can't configurate with the webservice . 
&lt;BR /&gt;i'm trying to call 2 Magento operations a LOGIN and a CALL " to create a nwe category" ( i don't know how to fill the ressource path and the args as shown in the picture ) 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt;</description>
      <pubDate>Thu, 21 Jun 2012 10:27:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367161#M130570</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2012-06-21T10:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367162#M130571</link>
      <description>here are all the images of what i'm tring to do i'm sorry for the first message: the pictures wasn't so clear . 
&lt;BR /&gt;firstly i'm trying to log into the webservice magento 
&lt;BR /&gt;next i'm tring to bring back the Id session return from the first shema and try to create a nwe category in my webservice , but i don't know what to put in the ressource path and the args . 
&lt;BR /&gt;would you please help me to configurate this . 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;A href="http://www.casimages.com/img.php?i=120621054516178910.jpg" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;IMG src="https://community.qlik.com/" /&gt;&lt;/A&gt; 
&lt;BR /&gt; 
&lt;A href="http://www.casimages.com/img.php?i=120621054821994445.jpg" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;IMG src="https://community.qlik.com/" /&gt;&lt;/A&gt; 
&lt;BR /&gt; 
&lt;A href="http://www.casimages.com/img.php?i=120621054908879263.jpg" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;IMG src="https://community.qlik.com/" /&gt;&lt;/A&gt; 
&lt;BR /&gt; 
&lt;A href="http://www.casimages.com/img.php?i=120621055105174913.jpg" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;IMG src="https://community.qlik.com/" /&gt;&lt;/A&gt; 
&lt;BR /&gt; 
&lt;A href="http://www.casimages.com/img.php?i=120621054934387759.jpg" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;IMG src="https://community.qlik.com/" /&gt;&lt;/A&gt; 
&lt;BR /&gt; 
&lt;A href="http://www.casimages.com/img.php?i=120621054954782278.jpg" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;IMG src="https://community.qlik.com/" /&gt;&lt;/A&gt; 
&lt;BR /&gt; 
&lt;A href="http://www.casimages.com/img.php?i=120621055016548793.jpg" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;IMG src="https://community.qlik.com/" /&gt;&lt;/A&gt; 
&lt;BR /&gt; 
&lt;A href="http://www.casimages.com/img.php?i=120621055034562602.jpg" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;IMG src="https://community.qlik.com/" /&gt;&lt;/A&gt;</description>
      <pubDate>Thu, 21 Jun 2012 16:42:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367162#M130571</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2012-06-21T16:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367163#M130572</link>
      <description>Is hard to see from the images. But if I am seeing correct it looks like you are using tWebservice. I could not figure out how to make the Magento WSDL work with that component. Instead I used tWebServiceInput to connect to Magento's WSDL.&lt;BR /&gt;Hope that is helpful.</description>
      <pubDate>Fri, 22 Jun 2012 20:41:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367163#M130572</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-06-22T20:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367164#M130573</link>
      <description>hi, thank you for your answer , 
&lt;BR /&gt; 
&lt;BR /&gt;could you please show me the way how to do it with the twebserviceInput component. 
&lt;BR /&gt;i need to do theses operations create a nwe catégory , delete a category and modifie a category ; 
&lt;BR /&gt;which method do i have to use ? 
&lt;BR /&gt;what's the shema to connect mysql database to the webservice ? 
&lt;BR /&gt;how do i have to fill all the parameters of the webservice ? 
&lt;BR /&gt;your answer will help me a lot thank you !!!!!</description>
      <pubDate>Sun, 24 Jun 2012 21:49:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367164#M130573</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2012-06-24T21:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367165#M130574</link>
      <description>The 2nd post on this thread should help with that... Let me know if it does not make sense.</description>
      <pubDate>Tue, 26 Jun 2012 00:49:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367165#M130574</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-06-26T00:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367166#M130575</link>
      <description>thanks for your answer , 
&lt;BR /&gt;i've tried to do exactly what is shown in the second post , but in the java code i don't know how to do a call to add a new category or to delete one ?? could you please brief me how to do it .
&lt;BR /&gt;thank you</description>
      <pubDate>Tue, 26 Jun 2012 08:31:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367166#M130575</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2012-06-26T08:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367167#M130576</link>
      <description>Assuming you are doing something similar to what I had described in this post, you can do:
&lt;BR /&gt;
&lt;PRE&gt;routines.Mage_Api_Model_Server_V2_HandlerPortType portType = new routines.MagentoServiceLocator().getMage_Api_Model_Server_V2_HandlerPort(new java.net.URL(url));&lt;BR /&gt;portType.catalogCategoryCreate(sessionId, parentId, categoryData, storeView);&lt;BR /&gt;portType.catalogCategoryDelete(sessionId, categoryId);&lt;/PRE&gt;
&lt;BR /&gt;That is how you can create or delete a category.</description>
      <pubDate>Wed, 27 Jun 2012 20:24:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367167#M130576</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-06-27T20:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367168#M130577</link>
      <description>hi , i tried what you said but i'm using Twebservice i got the magento operations as shown in the shema below , but i don't know what to put in th Category data for exemple . 
&lt;BR /&gt;i'm using V2soap : http:// ................ /index.php/api/v2_soap/?wsdl* 
&lt;BR /&gt;but i need to know what to put in the category data !!! 
&lt;BR /&gt;i get this error once i execute my job 
&lt;BR /&gt; 
&lt;BR /&gt;démarrage du job test2 a 11:59 03/07/2012. 
&lt;BR /&gt; connecting to socket on port 3599 
&lt;BR /&gt; connected 
&lt;BR /&gt;warning: bootstrap class path not set in conjunction with -source 1.5 
&lt;BR /&gt;1 warning 
&lt;BR /&gt;41de9480b8d924ee9b25b81e67b4dc10 
&lt;BR /&gt;Exception in component tWebService_2 
&lt;BR /&gt;java.lang.RuntimeException: Error compiling schema from WSDL at {file:/C:/DOCUME~1/BOUTAI~1.BAH/LOCALS~1/Temp/wsdl1341309565306/mainWSDL.wsdl}: 
&lt;BR /&gt;undefined simple or complex type 'typens:associativeMultiArray' 
&lt;BR /&gt; at line 95 column 6513 of schema file:/C:/DOCUME~1/BOUTAI~1.BAH/LOCALS~1/Temp/wsdl1341309565306/mainWSDL.wsdl 
&lt;BR /&gt; at org.apache.cxf.endpoint.dynamic.DynamicClientFactory$InnerErrorListener.throwException(DynamicClientFactory.java:714) 
&lt;BR /&gt; at org.apache.cxf.endpoint.dynamic.DynamicClientFactory.createClient(DynamicClientFactory.java:320) 
&lt;BR /&gt; at org.talend.webservice.helper.ServiceInvokerHelper.createClient(ServiceInvokerHelper.java:143) 
&lt;BR /&gt; at org.talend.webservice.helper.ServiceInvokerHelper.getClient(ServiceInvokerHelper.java:134) 
&lt;BR /&gt; at org.talend.webservice.helper.ServiceInvokerHelper.invoke(ServiceInvokerHelper.java:235) 
&lt;BR /&gt; at startretail.test2_0_1.test2.tMysqlInput_2Process(test2.java:2741) 
&lt;BR /&gt; at startretail.test2_0_1.test2.runJobInTOS(test2.java:3012) 
&lt;BR /&gt; at startretail.test2_0_1.test2.main(test2.java:2880) 
&lt;BR /&gt; disconnected 
&lt;BR /&gt;Caused by: org.xml.sax.SAXParseExceptionpublicId: file:/C:/DOCUME~1/BOUTAI~1.BAH/LOCALS~1/Temp/wsdl1341309565306/mainWSDL.wsdl; systemId: file:/C:/DOCUME~1/BOUTAI~1.BAH/LOCALS~1/Temp/wsdl1341309565306/mainWSDL.wsdl; lineNumber: 95; columnNumber: 6513; undefined simple or complex type 'typens:associativeMultiArray' 
&lt;BR /&gt; at com.sun.xml.xsom.impl.parser.ParserContext$1.reportError(ParserContext.java:180) 
&lt;BR /&gt; at com.sun.xml.xsom.impl.parser.NGCCRuntimeEx.reportError(NGCCRuntimeEx.java:175) 
&lt;BR /&gt; at com.sun.xml.xsom.impl.parser.DelayedRef.resolve(DelayedRef.java:110) 
&lt;BR /&gt; at com.sun.xml.xsom.impl.parser.DelayedRef.run(DelayedRef.java:85) 
&lt;BR /&gt; at com.sun.xml.xsom.impl.parser.ParserContext.getResult(ParserContext.java:135) 
&lt;BR /&gt; at com.sun.xml.xsom.parser.XSOMParser.getResult(XSOMParser.java:211) 
&lt;BR /&gt; at com.sun.tools.xjc.ModelLoader.createXSOM(ModelLoader.java:532) 
&lt;BR /&gt; at com.sun.tools.xjc.api.impl.s2j.SchemaCompilerImpl.bind(SchemaCompilerImpl.java:268) 
&lt;BR /&gt; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
&lt;BR /&gt; at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 
&lt;BR /&gt; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 
&lt;BR /&gt; at java.lang.reflect.Method.invoke(Method.java:601) 
&lt;BR /&gt; at org.apache.cxf.common.util.ReflectionInvokationHandler.invoke(ReflectionInvokationHandler.java:52) 
&lt;BR /&gt; at $Proxy17.bind(Unknown Source) 
&lt;BR /&gt; at org.apache.cxf.endpoint.dynamic.DynamicClientFactory.createClient(DynamicClientFactory.java:318) 
&lt;BR /&gt; ... 6 more 
&lt;BR /&gt;Job test2 terminé à 11:59 03/07/2012.</description>
      <pubDate>Tue, 03 Jul 2012 13:03:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367168#M130577</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2012-07-03T13:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367169#M130578</link>
      <description>What version of Magento are you integrating with? Also can you post the code you are using in your tWebService -&amp;gt; Advanced Settings. Is hard form me to look at a Exception stack without knowing what you are doing. Also this will get you the answer of what you need to use in the Category... &lt;A href="http://www.magentocommerce.com/wiki/doc/webservices-api/catalog_category" rel="nofollow noopener noreferrer"&gt;http://www.magentocommerce.com/wiki/doc/webservices-api/catalog_category&lt;/A&gt;</description>
      <pubDate>Tue, 03 Jul 2012 16:25:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367169#M130578</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-03T16:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367170#M130579</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Hey Ruben, &lt;BR /&gt;I have done connections for a few magento stores. This post will not answer your question, but it will give you another way to connect to a magento store.&lt;BR /&gt;First make sure that you have the WSDL enabled at the store. What I have done is....&lt;BR /&gt;Basic Settings &lt;BR /&gt; tWebserviceInput&lt;BR /&gt; WSDL: "&lt;A href="http://yourstore.com/api/v2_soap/" rel="nofollow noopener noreferrer"&gt;http://yourstore.com/api/v2_soap/&lt;/A&gt;" (depending on your magento version you might have to add a ?wsdl at the end)&lt;BR /&gt; Method name: "" (I leave it empty)&lt;BR /&gt; Edit Schema add whichever rows you want to output (for example: orderID)&lt;BR /&gt;Advanced Settings&lt;BR /&gt; check advanced used checkmark&lt;BR /&gt; Then click the WSDL2Java button. This will generate the code based on the WSDL from the store. Keep in mind different versions of magento have different WSDL.&lt;BR /&gt; In the code section:&lt;BR /&gt;&lt;PRE&gt;        &lt;BR /&gt;String url= "http://yourstore.com/api/v2_soap/?wsdl";&lt;BR /&gt;routines.Mage_Api_Model_Server_V2_HandlerPortType portType = null;&lt;BR /&gt;String sessionId = null;&lt;BR /&gt;SalesOrderEntity[]  entity = null;&lt;BR /&gt;portType = new routines.MagentoServiceLocator().getMage_Api_Model_Server_V2_HandlerPort(new java.net.URL(url));&lt;BR /&gt;sessionId = portType.login(context.userName,context.password);&lt;BR /&gt;//Filters to get orders in a certain status&lt;BR /&gt;AssociativeEntity ae1 = new AssociativeEntity("status", "Processing");&lt;BR /&gt;AssociativeEntity[]  ae = {ae1};&lt;BR /&gt;ComplexFilter cof1 = new ComplexFilter("status", ae1);&lt;BR /&gt;ComplexFilter[] cof = {cof1};&lt;BR /&gt;Filters filters = new Filters(ae,cof);&lt;BR /&gt;entity = portType.salesOrderList(sessionId,filters);&lt;BR /&gt;&lt;BR /&gt;for(int i = 0 ; i &amp;lt; entity.length; i++)&lt;BR /&gt;{&lt;BR /&gt;SalesOrderEntity orderInfo = portType.salesOrderInfo(sessionId, entity&lt;I&gt;.getIncrement_id());&lt;BR /&gt;output_row.orderID = entity&lt;I&gt;.getIncrement_id();&lt;BR /&gt;}&lt;/I&gt;&lt;/I&gt;&lt;/PRE&gt;&lt;BR /&gt;Then you can output out of your tWebserviceInput to another component.&lt;BR /&gt;This is how I have been doing it but if anyone else has any input I'm all ears. &lt;BR /&gt;Hope this helps.&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;magento, retrieve new customers 
&lt;BR /&gt;It's really looking helpful and essential featured source about to retrieve new customers for Magento web development. The exclusive features of this source are really looking just stunning for newbie. Thanks for sharing!</description>
      <pubDate>Thu, 26 Jul 2012 08:16:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367170#M130579</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2012-07-26T08:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: magento, retrieve new customers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367171#M130580</link>
      <description>Hello, 
&lt;BR /&gt;good information so far but I couldn't solve it still 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MPcz.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157233iD1A564EF62DE3BC2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MPcz.png" alt="0683p000009MPcz.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;I had to use 'api/?wsdl' in my URL, otherwise I would have ran into the error mentioned above. 
&lt;BR /&gt;The thing is, ComplexFilter is not available in my wsdl file (using Magento 1.6.2). 
&lt;BR /&gt;The login itself seems to work fine. 
&lt;BR /&gt;Are there any more examples to get hold of this topic? 
&lt;BR /&gt;About the concept itself: 
&lt;BR /&gt;Where can I find the java code I generate by clicking on the WSDL2JAVA button? (just as a reference) 
&lt;BR /&gt;Shall I have one tWebserviceInput per step (retrieve customer, update customer etc.)? 
&lt;BR /&gt;Thanks, 
&lt;BR /&gt;Chris</description>
      <pubDate>Tue, 15 Jan 2013 08:31:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/magento-retrieve-new-customers/m-p/2367171#M130580</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-15T08:31:07Z</dc:date>
    </item>
  </channel>
</rss>

