[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

AW: Help with WSDL2RPG



   Hello Thomas,


   it don't work as expected. Just for testing, I clean up everything I
   have, but still got the error, that the array MaterialLot isn't unique.


   for RecordCounter = 1 to 100;

             clear parameters;

             clear parameters.MaterialInformation.MaterialLot;

             clear parameters.MaterialInformation.MaterialLot.hItems;

             clear newMaterialLotType_A1;

             //MemoryManager_deleteArray(uuid:
   %size(newMaterialLotType_A1));

             parameters.MaterialInformation.MaterialLot.hItems =

               MemoryManager_createArray(uuid:
   %size(newMaterialLotType_A1): 'Mate+


   rialLot');


   It's the 2nd run through the loop that gives in:


   MemoryManager_createArray(uuid: %size(newMaterialLotType_A1): 'Mate+

               rialLot');


   the error:



   Message ID . . . . . . :   CPF9898       Severity . . . . . . . :
   40

   Message type . . . . . :
   Escape

   Date sent  . . . . . . :   24.04.12      Time sent  . . . . . . :
   10:39:34



   Message . . . . :   BasicList: ERROR - Array name is not unique:
   MaterialLot.



                               Display Message
   Details



    Message ID . . . . . . :   CPF9898       Severity . . . . . . . :
   40

    Date sent  . . . . . . :   24.04.12      Time sent  . . . . . . :
   10:39:34

    Message type . . . . . :
   Escape




    From program . . . . . . . . . :
   BASICS1

      From library . . . . . . . . :
   WSDL2RPG

      From module  . . . . . . . . :
   BASICS1R1

      From procedure . . . . . . . :
   BASICS1R1_f_sndPgmMsg

      From statement . . . . . . . :
   54400



    To program . . . . . . . . . . :
   WSDL2RPGRT

      To library . . . . . . . . . :
   WSDL2RPG

      To module  . . . . . . . . . :     WSDL2R82

      To procedure . . . . . . . . :
   WSDL2R82_Array_new

      To statement . . . . . . . . :
   24600





   It looks like that the array MaterialLot  wasn't cleaned up. It worked
   for some sub arrays in the structure but nor for that higher one.


   Thanks,


   Timo


   -----Ursprüngliche Nachricht-----
   Von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   [mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] Im Auftrag von Thomas
   Raddatz
   Gesendet: Freitag, 20. April 2012 18:57
   An: HTTPAPI and FTPAPI Projects
   Betreff: Re: Help with WSDL2RPG


   Timo,


   When you create a new order you should clear the "Order" data structure

   before you assign any values to it. That way you also clear the handle

   (pointer) of the "OrderPosition" array resulting in a "Pointer not set"

   error message when trying to add an item to it. This message should
   remind

   you to create a "OrderPosition" dynamic array to which you then can add
   any

   number of order items.


   In your example you just overwrote the values of the "Order" data
   structure

   but you did not create a new "OrderPosition" dynamic array.


   Maybe I should improve the test program and add the expected "Clear"

   statements along with some comments to it to make things easier to

   understand and follow.


   Here is some pseudo code to show how to do it right:


       Clear <SalesOrders>;


       // Create Orders Array

       // Use:  MemoryManager_createArray(...)

       <SalesOrders.hOrder> = createDynamicArray();


       while (getNextOrder(anOrder) = true) {

          Clear <Order>;

          // Assign order values:

          <Order.Number> = anOrder.number;

          <Order.Date> = anOrder.date;

          ...


          // Create Order Items Array

          // Use:  MemoryManager_createArray(...)

          <Order.hOrderPosition> = createDynamicArray();


          while (getNextOrderItem(anOrder, anOrderPosition) = true) {

             Clear <OrderPosition>;

             // Assign item values:

             <OrderPosition.number> = anOrderPosition.number;

             <OrderPosition.quantity> = anOrderPosition.quantity;

            <OrderPosition.ArticleNumber> = anOrderPosition.ArticleNumber;

             ...


             // Add order item to order

             addArrayItem(<Order.hOrderPosition>, <OrderPosition>);

          }


          // Add order to <SalesOrders>

          addArrayItem(<SalesOrders.hOrder>, <Order>);

       }


   Of course the pseudo code is not guaranteed to be free of errors. ;-)


   Regards,


   Thomas.


   Am 20.04.2012 12:25, schrieb Casaluci, Timo:

   > Hello Thomas,

   >

   > I've downloaded the latest beta of WSDL2RPG and tested the program
   call again.

   > You're right, it works without any change of the programs.

   > Thank you for this.

   > Yesterday we've decided together with the provider of the web service
   not to send to much data at once to their web server (performance issue
   of their webserver).

   > So I was able to use the program version with the fixed length arrays
   and send the whole

   > data in blocks in 100.

   > Another thing what is not completely clear for me is how you address
   and create the dynamic arrays in a nested structure:

   >

   > E.g:

   >

   > <SalesOrders>

   >          <Order>

   >                      <OrderNumber>4711</OrderNumber>

   >                      <OrderPosition>

   >                                 <ArticleNumber>A</ArticleNumber>

   >                      </OrderPosition>

   >                      <OrderPosition>

   >                                 <ArticleNumber>B</ArticleNumber>

   >                      </OrderPosition>

   >          </Order>

   >          <Order>

   >                      <OrderNumber>4712</OrderNumber>

   >                      <OrderPosition>

   >                                 <ArticleNumber>C</ArticleNumber>

   >                      </OrderPosition>

   >                      <OrderPosition>

   >                                 <ArticleNumber>D</ArticleNumber>

   >                      </OrderPosition>

   >          </Order>

   > </SalesOrders>

   >

   > So I've an array called "OrderPosition" and fill it with some
   position information for OrderNumber 4711.

   > I do the same for order number 4712, but it's the same array. So in
   the Soap message I get something like

   >

   > <SalesOrders>

   >          <Order>

   >                      <OrderNumber>4711</OrderNumber>

   >                      <OrderPosition>

   >                                 <ArticleNumber>A</ArticleNumber>

   >                      </OrderPosition>

   >                      <OrderPosition>

   >                                 <ArticleNumber>B</ArticleNumber>

   >                      </OrderPosition>

   >                      <OrderPosition>

   >                                 <ArticleNumber>C</ArticleNumber>

   >                      </OrderPosition>

   >                      <OrderPosition>

   >                                 <ArticleNumber>D</ArticleNumber>

   >                      </OrderPosition>

   >          </Order>

   >          <Order>

   >                      <OrderNumber>4712</OrderNumber>

   >                      <OrderPosition>

   >                                 <ArticleNumber>A</ArticleNumber>

   >                      </OrderPosition>

   >                      <OrderPosition>

   >                                 <ArticleNumber>B</ArticleNumber>

   >                      </OrderPosition>

   >                      <OrderPosition>

   >                                 <ArticleNumber>C</ArticleNumber>

   >                      </OrderPosition>

   >                      <OrderPosition>

   >                                 <ArticleNumber>D</ArticleNumber>

   >                      </OrderPosition>

   >          </Order>

   > </SalesOrders>

   >

   >

   > Regards,

   >

   > Timo

   >

   > -----Ursprüngliche Nachricht-----

   > Von: [1]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   [2][mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] Im Auftrag von Thomas
   Raddatz

   > Gesendet: Mittwoch, 18. April 2012 19:40

   > An: HTTPAPI and FTPAPI Projects

   > Betreff: Re: Help with WSDL2RPG

   >

   > Timo,

   >

   > I successfully tested your programs with the latest beta of WSDL2RPG
   and a

   > soapUI mock service using your response message from the http api
   debug log.

   >

   > Please update to WSDL2RPG v1.15 beta 10 and try your programs again.
   Do no

   > generate the programs again. Just install the beta, and call your
   programs.

   > If that does not work for whatever reasons, re-compile your programs
   and

   > try it again.

   >

   > All I did with your programs was adding a proxy and specifying the
   endpoint

   > of my mock service. That's all.

   >

   > Regards,

   >

   > Thomas.

   >

   > Am 18.04.2012 10:35, schrieb Casaluci, Timo:

   >> Hello,

   >>

   >> we're back on this project now and change the program to use dynamic
   arrays because of the 64k limitation.

   >> During the processing of the web service response, which is nearly
   the same what we send to it, we got

   >> the error that an array already exists.

   >> I think that's the arrays I've created to send the data to the web
   service.

   >> So my question is:

   >> 1)    Should the created arrays, which are necessary to send the
   data to the web service, be deleted before processing the response.

   >>        If yes, it has to be done in the web service stub module
   before processing the response message?

   >> Or

   >> 2)    Have I done something wrong and WSDL2RPG should recognize that
   the arrays already exists and populate them with the response after it
   cleans them up?

   >>

   >> I've attached the httpapi_debug.txt file which contains the error
   message and the data we send and receive.

   >>

   >> VSEFAC20 = Source of the test program to call the web service.

   >> VSEFACS01 = web service stub module

   >> VSEFACS = the common procedures of the web service

   >> MaterialInformation.wsdl = wsdl with which the programs were
   generated

   >>

   >> Thanks,

   >>

   >> Timo

   >>

   >> -Ursprüngliche Nachricht-----

   >> Von: [3]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   [4][mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] Im Auftrag von
   Casaluci, Timo

   >> Gesendet: Dienstag, 17. Januar 2012 22:43

   >> An: HTTPAPI and FTPAPI Projects

   >> Betreff: AW: Help with WSDL2RPG

   >>

   >> Yes, I've supposed that. We're on V6R1 here, but some of the DS
   exceed 1,000,000,000 byte so I've to slim down the WSDL file to the
   elements

   >> which we really need and change the "unbounded"  occurrence to a
   value which fits to our data. It's a standard description for

   >> data exchange and covers a lot stuff we don't need here.

   >>

   >> Thanks,

   >>

   >> Timo

   >>

   >> -----Ursprüngliche Nachricht-----

   >> Von: [5]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   [6][mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] Im Auftrag von
   [7]thomas.raddatz@xxxxxx

   >> Gesendet: Dienstag, 17. Januar 2012 10:17

   >> An: [8]ftpapi@xxxxxxxxxxxxxxxxxxxxxx

   >> Betreff: AW: Help with WSDL2RPG

   >>

   >>

   >> Timo,

   >>

   >>

   >> That is not a problem of WSDL2RPG but a limitation of RPG. If you
   compile

   >>

   >> for V5R4 or lower, the maximum field size is 64k. Starting with V6R1
   IBM

   >>

   >> increased the maximum field size to 16MB. However some web services

   >>

   >> extensively use arrays and then often exceeds that limitation.
   Please have

   >>

   >> a look at "FAQ What to do in case of a RNF0501 compile error
   message"

   >>

   >> which desribes how to get around that problem.

   >>

   >>
   [9]http://www.tools400.de/Downloads/Freeware/Tools/FAQ/wsdl2rpg/FAQ_Wha
   t_to_do_in_case_of_a_RNF0501_compiler_error_message_v1.0.pdf

   >>

   >> Thomas.

   >>

   >> [10]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 17.01.2012
   09:39:10:

   >>

   >>> Von: [11]t.casaluci@xxxxxxxx

   >>> An: [12]ftpapi@xxxxxxxxxxxxxxxxxxxxxx

   >>> Datum: 17.01.2012 09:47

   >>> Betreff: AW: Help with WSDL2RPG

   >>> Gesendet von: [13]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>

   >>

   >>> Hello Thomas,

   >>>

   >>

   >>> I did the changes you've mentioned. But now I got several errors

   >>

   >>> that the 16773104 bytes border is exceeded.

   >>>

   >>

   >>> RNF7301 Position (35794437-35794566) of subfield STATUS in data

   >>

   >>> structure S1_MATE...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (35794567-35794696) of subfield STORAGE... in data

   >>

   >>> structure S1_MATE...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure S1_RPGA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (34199-16807302) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-287623428) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16807303-16823946) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-287623428) of subfield MATERIA... in data

   >>

   >>> structure S1_RPGA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure S1_RPGA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50843-16823946) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-287623428) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16823947-16840590) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-287623428) of subfield MATERIA... in data

   >>

   >>> structure S1_RPGA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure S1_RPGA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (51233-16824336) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50063-16823166) of subfield TESTRESULT in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285499652) of subfield TESTRES... in data

   >>

   >>> structure TESTRESULT  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16823167-19020162) of subfield VALUE in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16824337-33597440) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285542916) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (33597441-35794436) of subfield QUANTITY in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (35794437-35794566) of subfield STATUS in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (35794567-35794696) of subfield STORAGE... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure S1_RPGA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50063-16823166) of subfield TESTRESULT in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285499652) of subfield TESTRES... in data

   >>

   >>> structure TESTRESULT  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16823167-19020162) of subfield VALUE in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285542916) of subfield MATERIA... in data

   >>

   >>> structure S1_RPGA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285542916) of subfield MATERIA... in data

   >>

   >>> structure S1_RPGA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-835161092) of subfield QAMATER... in data

   >>

   >>> structure S1_RPGA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285499652) of subfield TESTRES... in data

   >>

   >>> structure S1_RPGA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50713-16823816) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (34199-16807302) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-287623428) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16807303-16823946) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16823817-33596920) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50843-16823946) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-287623428) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16823947-16840590) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (33596921-50370024) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (51233-16824336) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50063-16823166) of subfield TESTRESULT in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285499652) of subfield TESTRES... in data

   >>

   >>> structure TESTRESULT  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16823167-19020162) of subfield VALUE in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16824337-33597440) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285542916) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (33597441-35794436) of subfield QUANTITY in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (35794437-35794566) of subfield STATUS in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (35794567-35794696) of subfield STORAGE... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50370025-67143128) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285542916) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (67143129-67143154) of subfield PUBLISH... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (67143155-83916258) of subfield QAMATER... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-835161092) of subfield QAMATER... in data

   >>

   >>> structure QAMATER...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50713-16823816) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (34199-16807302) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-287623428) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16807303-16823946) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16823817-33596920) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50843-16823946) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-287623428) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16823947-16840590) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (33596921-50370024) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (51233-16824336) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50063-16823166) of subfield TESTRESULT in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285499652) of subfield TESTRES... in data

   >>

   >>> structure TESTRESULT  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16823167-19020162) of subfield VALUE in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16824337-33597440) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285542916) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (33597441-35794436) of subfield QUANTITY in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (35794437-35794566) of subfield STATUS in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (35794567-35794696) of subfield STORAGE... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50370025-67143128) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285542916) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (67143129-67143154) of subfield PUBLISH... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (67143155-83916258) of subfield QAMATER... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-835161092) of subfield QAMATER... in data

   >>

   >>> structure QAMATER...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF0376 TESTRES... The data item is larger than the maximum of  16.

   >>> 773.104 Bytes.

   >>> RNF0376 MATERIA... The data item is larger than the maximum of  16.

   >>> 773.104 Bytes.

   >>> RNF0376 MATERIA... The data item is larger than the maximum of  16.

   >>> 773.104 Bytes.

   >>> RNF0376 MATERIA... The data item is larger than the maximum of  16.

   >>> 773.104 Bytes.

   >>> RNF0376 MATERIA... The data item is larger than the maximum of  16.

   >>> 773.104 Bytes.

   >>> RNF0376 QAMATER... The data item is larger than the maximum of  16.

   >>> 773.104 Bytes.

   >>> RNF0376 MATERIA... The data item is larger than the maximum of  16.

   >>> 773.104 Bytes.

   >>> RNF0376 MATERIA... The data item is larger than the maximum of  16.

   >>> 773.104 Bytes.

   >>> RNF0376 MATERIA... The data item is larger than the maximum of  16.

   >>> 773.104 Bytes.

   >>> RNF0376 MATERIA... The data item is larger than the maximum of  16.

   >>> 773.104 Bytes.

   >>> RNF7301 Position (34199-16807302) of subfield MATERIA... in data

   >>

   >>> structure S1_MATE...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-287623428) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16807303-16823946) of subfield MATERIA... in data

   >>

   >>> structure S1_MATE...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50843-16823946) of subfield MATERIA... in data

   >>

   >>> structure S1_MATE...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-287623428) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16823947-16840590) of subfield MATERIA... in data

   >>

   >>> structure S1_MATE...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50713-16823816) of subfield MATERIA... in data

   >>

   >>> structure S1_MATE...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (34199-16807302) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-287623428) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16807303-16823946) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16823817-33596920) of subfield MATERIA... in data

   >>

   >>> structure S1_MATE...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50843-16823946) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-287623428) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16823947-16840590) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (33596921-50370024) of subfield MATERIA... in data

   >>

   >>> structure S1_MATE...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (51233-16824336) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50063-16823166) of subfield TESTRESULT in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285499652) of subfield TESTRES... in data

   >>

   >>> structure TESTRESULT  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16823167-19020162) of subfield VALUE in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16824337-33597440) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285542916) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (33597441-35794436) of subfield QUANTITY in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (35794437-35794566) of subfield STATUS in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (35794567-35794696) of subfield STORAGE... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50370025-67143128) of subfield MATERIA... in data

   >>

   >>> structure S1_MATE...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285542916) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (67143129-67143154) of subfield PUBLISH... in data

   >>

   >>> structure S1_MATE...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (67143155-83916258) of subfield QAMATER... in data

   >>

   >>> structure S1_MATE...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-835161092) of subfield QAMATER... in data

   >>

   >>> structure QAMATER...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50063-16823166) of subfield TESTRESULT in data

   >>

   >>> structure S1_MATE...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285499652) of subfield TESTRES... in data

   >>

   >>> structure TESTRESULT  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16823167-19020162) of subfield VALUE in data

   >>

   >>> structure S1_MATE...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (51233-16824336) of subfield MATERIA... in data

   >>

   >>> structure S1_MATE...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-2146957316) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (50063-16823166) of subfield TESTRESULT in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285499652) of subfield TESTRES... in data

   >>

   >>> structure TESTRESULT  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16823167-19020162) of subfield VALUE in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (16824337-33597440) of subfield MATERIA... in data

   >>

   >>> structure S1_MATE...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (5-285542916) of subfield MATERIA... in data

   >>

   >>> structure MATERIA...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF7301 Position (33597441-35794436) of subfield QUANTITY in data

   >>

   >>> structure S1_MATE...  is greater than length of data structure

   >>

   >> (16773104).

   >>> RNF0501 Length of character item S1_RPGA... exceeds 16773104;

   >>

   >>> length defaults to  16773104.

   >>> RNF0501 Length of character item S1_RPGA... exceeds 16773104;

   >>

   >>> length defaults to  16773104.

   >>> RNF0501 Length of character item S1_RPGA... exceeds 16773104;

   >>

   >>> length defaults to  16773104.

   >>> RNF0501 Length of character item S1_RPGA... exceeds 16773104;

   >>

   >>> length defaults to  16773104.

   >>> RNF0501 Length of character item S1_RPGA... exceeds  16773104;

   >>

   >>> length defaults to  16773104.

   >>> RNF0501 Length of character item S1_RPGA... exceeds  16773104;

   >>

   >>> length defaults to  16773104.

   >>> RNF0501 Length of character item S1_MATE... exceeds 16773104;

   >>

   >>> length defaults to  16773104.

   >>> RNF0501 Length of character item S1_MATE... exceeds 16773104;

   >>

   >>> length defaults to  16773104.

   >>> RNF0501 Length of character item S1_MATE... exceeds 16773104;

   >>

   >>> length defaults to  16773104.

   >>> RNF0501 Length of character item S1_RPGA... exceeds 16773104;

   >>

   >>> length defaults to  16773104.

   >>> RNF0501 Length of character item S1_RPGA... exceeds  16773104;

   >>

   >>> length defaults to  16773104.

   >>> RNF0501 Length of character item S1_RPGA... exceeds 16773104;

   >>

   >>> length defaults to  16773104.

   >>> RNF0501 Length of character item S1_MATE... exceeds 16773104;

   >>

   >>> length defaults to  16773104.

   >>> RNF0501 Length of character item S1_RPGA... exceeds 16773104;

   >>

   >>> length defaults to  16773104.

   >>> RNF0501 Length of character item S1_MATE... exceeds 16773104;

   >>

   >>> length defaults to  16773104.

   >>>

   >>

   >>> Any proposals?

   >>>

   >>

   >>> Thanks,

   >>>

   >>

   >>> Timo

   >>>

   >>

   >>> -----Ursprüngliche Nachricht-----

   >>> Von: [14]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx [mailto:ftpapi-

   >>> [15]bounces@xxxxxxxxxxxxxxxxxxxxxx] Im Auftrag von Thomas Raddatz

   >>> Gesendet: Montag, 16. Januar 2012 23:15

   >>> An: HTTPAPI and FTPAPI Projects

   >>> Betreff: Re: Help with WSDL2RPG

   >>>

   >>

   >>> Timo,

   >>>

   >>

   >>> Since there is too much workload on our box I could not yet test
   the bug

   >>

   >>

   >>> fix thoroughly. However you may try to change procedure

   >>

   >>> "OutputFile_addTypeDef" of module "WSDL2R03" like this:

   >>>

   >>

   >>>     // Get final type definition

   >>>     if (TypeDef_isUserDefined(i_type));

   >>>        // and not TypeDef_isArrayValue(i_type));  //<<== removed

   >>>        finalType = TypeDef_getFinalTypeUsed(i_type);

   >>>     else;

   >>>        finalType = i_type;

   >>>     endif;

   >>>

   >>

   >>> After having compiled the module you may use UPDPGM to update
   program

   >>

   >>> WSDL2RPG instead of running the installer again.

   >>>

   >>

   >>> Thomas.

   >>>

   >>

   >>> Am 16.01.2012 18:12, schrieb Casaluci, Timo:

   >>>>       Hello Thomas,

   >>>>

   >>>>

   >>>>       today I tried to continue with WSDL2RPG to generate a first
   test

   >>>>       program.

   >>>>

   >>>>       WSDL2RPG successfully created the Web Service stub (see
   attached

   >>

   >> Source

   >>>>       Files).

   >>>>

   >>>>

   >>>>       I try to compile it to a module with:

   >>>>

   >>>>

   >>>>       CRTRPGMOD MODULE(RXLKVOBJI/WS0001)
   SRCFILE(R8LKVSRCI/VEXSRCL)

   >>>>       SRCMBR(WS0001) OPTION(*EVENTF) DBGVIEW(*LIST) REPLACE(*YES)

   >>>>

   >>>>

   >>>>       and got several RNF7030 error messages:

   >>>>

   >>>>

   >>>>       RNF7030 The name or indicator MATERIA... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator MATERIA... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ANY is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ANY is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator VALUE is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ANY is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator MATERIA... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ANY is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator VALUE is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ANY is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator MATERIA... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ANY is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator MATERIA... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator MATERIA... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator MATERIA... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator MATERIA... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator QAMATER... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ANY is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator TESTRESULT is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator VALUE is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ANY is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator MATERIA... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator MATERIA... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator QUANTITY is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ANY is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator QUANTITY is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ANY is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ANY is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator TESTEDM... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator TESTEDM... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator TESTEDM... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ANY is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ITEM is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ITEM is not defined.

   >>>>

   >>

   >>>>       RNF7030 The name or indicator ITEM is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ITEM is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ITEM is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ITEM is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ITEM is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ITEM is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ITEM is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ITEM is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ITEM is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ITEM is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ITEM is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ITEM is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ITEM is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ITEM is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator ITEM is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator TESTEDM... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator TESTEDM... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator TESTEDM... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator TESTRES... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator VALUETYPE is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator VALUETYPE is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator VALUETYPE is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator S1_ANYR... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator S1_ANYR... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator S1_ANYR... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator S1_ANYR... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator S1_ANYR... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator S1_ANYR... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator S1_ANYR... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator S1_ANYR... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator S1_ANYR... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator S1_ANYR... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator S1_ANYR... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator S1_ANYR... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator S1_ANYR... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator S1_ANYR... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator S1_ANYR... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator S1_ANYR... is not defined.

   >>>>

   >>>>       RNF7030 The name or indicator S1_ANYR... is not defined.

   >>>>

   >>>>

   >>>>

   >>>>       E.g. the first errors links me to the  following DS:

   >>>>

   >>>>

   >>>>            D tns_ProcessMaterialInformation_t...

   >>>>

   >>>>            D                 DS                  template

   >>>>

   >>>>            D                                     qualified

   >>>>

   >>>>            D  MaterialInformation...

   >>>>

   >>>>            D

   >>>>       likeds(s1_MaterialInformationType_t)

   >>>>

   >>>>             *

   >>>>

   >>>>             *

   >>>>

   >>>>            D tns_ProcessMaterialInformationResponse_t...

   >>>>

   >>>>            D                 DS                  template

   >>>>

   >>>>            D                                     qualified

   >>>>

   >>>>            D  MaterialInformation...

   >>>>

   >>>>            D

   >>>>       likeds(s1_MaterialInformationType_t)

   >>>>

   >>>>

   >>>>       But the definition for DS s1_MaterialInformationType_t
   exists in

   >>

   >> the

   >>>>       source file:

   >>>>

   >>>>

   >>>>            D s1_MaterialInformationType_t...

   >>>>

   >>>>            D                 DS                  template

   >>>>

   >>>>            D                                     qualified

   >>>>

   >>>>            D  ProcessingStatus...

   >>>>

   >>>>            D

   >>>>       likeds(s2_ProcessingStatusType_t)

   >>>>

   >>>>            D  Any likeds(s1_RpgArrayOfAny_t)

   >>>>

   >>>>            D  Description

   >>>>       likeds(s1_RpgArrayOfDescription_t)

   >>>>

   >>>>            D  ID                          128A   varying

   >>>>

   >>>>            D  Location likeds(s1_LocationType_t)

   >>>>

   >>>>            D  MaterialClass

   >>>>       likeds(s1_RpgArrayOfMaterialClass_t)

   >>>>

   >>>>            D  MaterialDefinition...

   >>>>

   >>>>            D

   >>>>       likeds(s1_RpgArrayOfMaterialDefini...

   >>>>

   >>>>            D                                     tion_t)

   >>>>

   >>>>            D  MaterialLot

   >>>>       likeds(s1_RpgArrayOfMaterialLot_t)

   >>>>

   >>>>            D  MaterialSubLot...

   >>>>

   >>>>            D

   >>>>       likeds(s1_RpgArrayOfMaterialSubLot_t)

   >>>>

   >>>>            D  PublishedDate                  Z

   >>>>

   >>>>            D  QAMaterialTestSpecification...

   >>>>

   >>>>            D

   >>>>       likeds(s1_RpgArrayOfQAMaterialTest...

   >>>>

   >>>>            D                                     Specification_t)

   >>>>

   >>>>             *

   >>>>

   >>>>             *

   >>>>

   >>>>

   >>>>       Should these two generated module sources work without
   manual

   >>

   >> changes?

   >>>>

   >>>>

   >>>>       Thanks,

   >>>>

   >>>>

   >>>>       Timo

   >>>>

   >>>>

   >>>>       -----Ursprüngliche Nachricht-----

   >>>>       Von: [16]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>>       [17][mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] Im
   Auftrag von

   >>

   >> Thomas

   >>>>       Raddatz

   >>>>       Gesendet: Freitag, 13. Januar 2012 20:35

   >>>>       An: HTTPAPI and FTPAPI Projects

   >>>>       Betreff: Re: Help with WSDL2RPG

   >>>>

   >>>>

   >>>>       Timo,

   >>>>

   >>>>

   >>>>       That are really good news. I am happy that you could solve
   the

   >>

   >> problem

   >>>>       that

   >>>>

   >>>>       way because there is no way for recursion with RPG data

   >>

   >> structures.

   >>>>

   >>>>

   >>>>       Thomas.

   >>>>

   >>>>

   >>>>       Am 13.01.2012 18:47, schrieb Casaluci, Timo:

   >>>>

   >>>>       >        Hello,

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        thank you for going so deep into this. We don't
   develop

   >>

   >> this

   >>>>       WSDL, we

   >>>>

   >>>>       >        got it from a software company which makes the
   software for

   >>

   >> our

   >>>>       Storage

   >>>>

   >>>>       >        System.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        I'm not sure what they want to describe with that

   >>

   >> recursivity,

   >>>>       perhaps

   >>>>

   >>>>       >        it should be possible that a location is able to
   show to

   >>

   >> another

   >>>>

   >>>>       >        location.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        I've tested the WSDL with the Tool WS-I Compliance
   of

   >>

   >> soapUI and

   >>>>       got a

   >>>>

   >>>>       >        "passed" for it.

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        soapUI generates the following Soap message for it:

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >                    <b2m:Location>

   >>>>

   >>>>       >

   >>>>

   >>>>       >                       <!--Optional:-->

   >>>>

   >>>>       >

   >>>>

   >>>>       >                       <b2m:EquipmentID>?</b2m:EquipmentID>

   >>>>

   >>>>       >

   >>>>

   >>>>       >                       <!--Optional:-->

   >>>>

   >>>>       >

   >>>>

   >>>>       >                       <b2m:EquipmentElementLevel

   >>>>

   >>>>       >        OtherValue="?">?</b2m:EquipmentElementLevel>

   >>>>

   >>>>       >

   >>>>

   >>>>       >                       <!--Optional:-->

   >>>>

   >>>>       >

   >>>>

   >>>>       >                       <b2m:Location/>

   >>>>

   >>>>       >

   >>>>

   >>>>       >                       <!--Zero or more repetitions:-->

   >>>>

   >>>>       >

   >>>>

   >>>>       >                       <b2m:Any>

   >>>>

   >>>>       >

   >>>>

   >>>>       >                          <!--You may enter ANY elements at
   this

   >>

   >> point-->

   >>>>

   >>>>       >

   >>>>

   >>>>       >                       </b2m:Any>

   >>>>

   >>>>       >

   >>>>

   >>>>       >                    </b2m:Location>

   >>>>

   >>>>       >

   >>>>

   >>>>       >        I think in our environment we don't need this
   "optional"

   >>

   >> location

   >>>>

   >>>>       >        element under the element LocationType.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        For testing I've now changed the Element Location
   Type to:

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >              <s:complexType name="LocationType">

   >>>>

   >>>>       >

   >>>>

   >>>>       >                <s:sequence>

   >>>>

   >>>>       >

   >>>>

   >>>>       >                  <s:element minOccurs="0" maxOccurs="1"

   >>>>       name="EquipmentID"

   >>>>

   >>>>       >        type="s:string" />

   >>>>

   >>>>       >

   >>>>

   >>>>       >                  <s:element minOccurs="0" maxOccurs="1"

   >>>>

   >>>>       >        name="EquipmentElementLevel"

   >>

   >> type="s1:EquipmentElementLevelType"

   >>>>       />

   >>>>

   >>>>       >

   >>>>

   >>>>       >                  <s:element minOccurs="0"
   maxOccurs="unbounded"

   >>>>       name="Any"

   >>>>

   >>>>       >        type="s1:AnyType" />

   >>>>

   >>>>       >

   >>>>

   >>>>       >                </s:sequence>

   >>>>

   >>>>       >

   >>>>

   >>>>       >              </s:complexType>

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        and eliminated a second one under
   MaterialSubLotType.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        Now I got the message "Successfully generated 2 Web
   Service

   >>

   >> stub

   >>>>

   >>>>       >        modules: WS0001*. Feel free to ..."!

   >>>>

   >>>>       >

   >>>>

   >>>>       >        I'm looking forward to work with your tools.

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        Thank you and have a nice weekend!

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        Timo Casaluci

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        -----Ursprüngliche Nachricht-----

   >>>>

   >>>>       >        Von: [1][18]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>>

   >>>>       >
   [2][19][mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] Im

   >>

   >> Auftrag von

   >>>>

   >>>>       >        [3][20]thomas.raddatz@xxxxxx

   >>>>

   >>>>       >        Gesendet: Freitag, 13. Januar 2012 13:26

   >>>>

   >>>>       >        An: [4][21]ftpapi@xxxxxxxxxxxxxxxxxxxxxx

   >>>>

   >>>>       >        Betreff: Re: AW: Help with WSDL2RPG

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        Timo,

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        Element 'LocationType' is the one that causes the
   error.

   >>

   >> That

   >>>>       element

   >>>>

   >>>>       >        is

   >>>>

   >>>>       >

   >>>>

   >>>>       >        part of namespace
   "[1][5][22]http://www.wbf.org/xml/b2mml-v0300

   >> " and

   >>>>       it

   >>>>

   >>>>       >        references

   >>>>

   >>>>       >

   >>>>

   >>>>       >        element 's1:LocationType':

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        <s:schema elementFormDefault="qualified"
   targetNamespace="

   >>>>

   >>>>       >

   >>>>

   >>>>       >        [2][6][23]http://www.wbf.org/xml/b2mml-v0300";>

   >>>>

   >>>>       >

   >>>>

   >>>>       >          <s:import

   >>>>

   >>>>       >        namespace="[3][7]

   >> [24]http://www.wbf.org/xml/b2mml-v0300-extensions";

   >>>>       />

   >>>>

   >>>>       >

   >>>>

   >>>>       >           ...

   >>>>

   >>>>       >

   >>>>

   >>>>       >          <s:complexType name="LocationType">

   >>>>

   >>>>       >

   >>>>

   >>>>       >            <s:sequence>

   >>>>

   >>>>       >

   >>>>

   >>>>       >              <s:element minOccurs="0" maxOccurs="1"

   >>

   >> name="EquipmentID"

   >>>>

   >>>>       >

   >>>>

   >>>>       >        type="s:string" />

   >>>>

   >>>>       >

   >>>>

   >>>>       >              <s:element minOccurs="0" maxOccurs="1"

   >>>>

   >>>>       >        name="EquipmentElementLevel"

   >>>>

   >>>>       >

   >>>>

   >>>>       >        type="s1:EquipmentElementLevelType" />

   >>>>

   >>>>       >

   >>>>

   >>>>       >              <s:element minOccurs="0" maxOccurs="1"

   >>

   >> name="Location"

   >>>>

   >>>>       >

   >>>>

   >>>>       >        type="s1:LocationType" />

   >>>>

   >>>>       >

   >>>>

   >>>>       >              <s:element minOccurs="0"
   maxOccurs="unbounded"

   >>

   >> name="Any"

   >>>>

   >>>>       >

   >>>>

   >>>>       >        type="s1:AnyType" />

   >>>>

   >>>>       >

   >>>>

   >>>>       >            </s:sequence>

   >>>>

   >>>>       >

   >>>>

   >>>>       >          </s:complexType>

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        The value assigned to namespace prefix 's1' is

   >>>>

   >>>>       >

   >>>>

   >>>>       >        'http://www.wbf.org/xml/b2mml-v0300', which is the

   >>

   >> samenamespace

   >>>>       of

   >>>>

   >>>>       >        the

   >>>>

   >>>>       >

   >>>>

   >>>>       >        element that shall be defined.

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        <wsdl:definitions

   >>>>

   >>>>       >

   >>>>

   >>>>       >            ...

   >>>>

   >>>>       >

   >>>>

   >>>>       >
   xmlns:s1="[4][8][25]http://www.wbf.org/xml/b2mml-v0300";

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        Hence both 'LocationType'(s) are the same:

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >          <s:complexType name="LocationType">       <<==
   this one is

   >>

   >> the

   >>>>       same as

   >>>>

   >>>>       >        ...

   >>>>

   >>>>       >

   >>>>

   >>>>       >            <s:sequence>

   >>>>

   >>>>       >

   >>>>

   >>>>       >               ...

   >>>>

   >>>>       >

   >>>>

   >>>>       >              <s:element minOccurs="0" maxOccurs="1"

   >>

   >> name="Location"

   >>>>

   >>>>       >

   >>>>

   >>>>       >        type="s1:LocationType" />      <<== ... this one

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        I have no idea to what construct of Java, C# or any
   other

   >>

   >> object

   >>>>

   >>>>       >        oriented

   >>>>

   >>>>       >

   >>>>

   >>>>       >        programming language that maps. How did you develop
   or

   >>

   >> create the

   >>>>       WSDL?

   >>>>

   >>>>       >        Or

   >>>>

   >>>>       >

   >>>>

   >>>>       >        am I missing something?

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        Thomas.

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        [5][9][26]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   schrieb am

   >>

   >> 13.01.2012

   >>>>

   >>>>       >        12:21:09:

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     Von: [6][10][27]t.casaluci@xxxxxxxx

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     An: [7][11][28]ftpapi@xxxxxxxxxxxxxxxxxxxxxx

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     Datum: 13.01.2012 12:27

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     Betreff: AW: Help with WSDL2RPG

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     Gesendet von:

   >>

   >> [8][12][29]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     Hello,

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     now I've attached the WSDL File, it's located
   on a

   >>

   >> server in

   >>>>       our

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     intranet. I've expected that the file is
   correct

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     because it?s the standard interface of the
   stock system

   >>

   >> we

   >>>>       want to

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     exchange data with.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     What we want to do in the first step is to
   send our

   >>

   >> open

   >>>>       orders from

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     our ERP System to a web service which is
   located on a

   >>

   >> remote

   >>>>       server.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     And in a second step we want to get back a
   similar

   >>

   >>> set of data

   >>>>       to a

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     web service which is located on our IBM i.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     Thanks,

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     Timo

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     -----Ursprüngliche Nachricht-----

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     Von:
   [9][13]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>>       [mailto:ftpapi-

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     [10][14]bounces@xxxxxxxxxxxxxxxxxxxxxx] Im
   Auftrag von

   >>>>

   >>>>       >

   >>>>

   >>>>       >        [11][15]thomas.raddatz@xxxxxxxxxxx

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     Gesendet: Freitag, 13. Januar 2012 11:12

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     An: HTTPAPI and FTPAPI Projects

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     Betreff: Re: Help with WSDL2RPG

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     Timo,

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     It is always a good idea to attached the wsdl
   file

   >>

   >>> when having

   >>>>       a

   >>>>

   >>>>       >        problem

   >>>>

   >>>>       >

   >>>>

   >>>>       >        with

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     the generator. The problem you reported does
   not

   >>

   >>> sound good to

   >>>>       me. I

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     assume that

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     there is a recursion in the wsdl file. Please
   send the

   >>

   >> wsdl

   >>>>       file or

   >>>>

   >>>>       >        the

   >>>>

   >>>>       >

   >>>>

   >>>>       >        URL of

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     the wsdl file to me and I am going to try to
   figure out

   >>

   >> what

   >>>>       wrong

   >>>>

   >>>>       >        with

   >>>>

   >>>>       >

   >>>>

   >>>>       >        it or

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     the generator.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     Regards,

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     Thomas.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     "Casaluci,
   Timo"<[12][16]t.casaluci@xxxxxxxx>     hat am

   >>

   >> 12.

   >>>>       Januar 2012 um

   >>>>

   >>>>       >        16:41

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     geschrieben:

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     Hello Mr. Raddatz,

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     I've a question/problem for you.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     During the generation of my first WS
   Client Stub

   >>

   >> program

   >>>>       with

   >>>>

   >>>>       >        WSDL2RPG

   >>>>

   >>>>       >

   >>>>

   >>>>       >        I got

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     the following error message:

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     Extract from my Joblog:

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     WSDL2RPG

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>

   >> URL('http://vega-facts01/FactsWebServices/MaterialInformation/Mat

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     erialInformation.asmx?WSDL')
   SERVICE(*SELECT

   >>

   >> *SELECT)

   >>>>

   >>>>       >

   >>>>

   >>>>       >        SRCFILE(R8LKVSRCI/VE

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     XSRCL) SRCMBR(WS0001) TYPE(*STUB)

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     Member WS000101 added to file VEXSRCL
   in R8LKVSRCI.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     Member WS000101 file VEXSRCL in
   R8LKVSRCI changed.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     Automatic storage overflow. (MCH4429)

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     Function check. MCH4429 unmonitored by
   WSDL2RPG at

   >>>>       statement

   >>>>

   >>>>       >

   >>>>

   >>>>       >        0000101200,

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >       instruction X'0000'.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     The call to main ended in error (C G D
   F).

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     The call to main ended in error (C G D
   F).

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >                             Weitere

   >>

   >> Nachrichteninformationen

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >      Nachrichten-ID . . . . :   MCH4429

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >      Sendedatum . . . . . . :   12.01.12

   >>

   >>> Sendezeit  . . .

   >>>>       . . .

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     :   16:30:21

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >      Nachricht . . . :   Automatic storage
   overflow.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >      Cause . . . . . :   One of the
   automatic storage

   >>

   >> stacks

   >>>>

   >>>>       >        X'00000002'

   >>>>

   >>>>       >

   >>>>

   >>>>       >        for the

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >        thread has overflowed or a storage
   access beyond

   >>

   >> the

   >>>>       maximum

   >>>>

   >>>>       >        size

   >>>>

   >>>>       >

   >>>>

   >>>>       >        of a

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >        teraspace automatic storage stack
   was

   >>

   >>> attempted. Further

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     program execution

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >        within the thread is not possible.
   Automatic

   >>

   >> storage

   >>>>       stack

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     values and their

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >        meanings follow:

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >          1 -- System stack in single level
   storage.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >          2 -- User stack in single level
   storage.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >          3 -- System stack in teraspace.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >          4 -- User stack in teraspace.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >      Technical description . . . . . . . .
   :   Attempt

   >>

   >> to

   >>>>       reduce the

   >>>>

   >>>>       >

   >>>>

   >>>>       >        automatic

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >        storage used by programs running in
   the thread.

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >          Ende

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     Would it be helpful to attach the WSDL
   File?

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     Thanks

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     Timo Casaluci

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>

   >>
   ***********************************************************************

   >>>>

   >>>>       >        *************

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     VEGA Grieshaber KG

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     Kommanditgesellschaft mit Sitz in
   Wolfach

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     Registergericht Freiburg: HRA 680 687

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     Persönlich haftender Gesellschafter:
   Jürgen

   >>

   >> Grieshaber

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     Persönlich haftende Gesellschafterin:
   Grieshaber

   >>

   >> Holding

   >>>>       GmbH

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     Sitz Wolfach, Registergericht Freiburg:
   HRB 680 271

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >     Geschäftsführer: Jürgen Grieshaber,
   Günter Kech,

   >>

   >> Rainer

   >>>>       Mielke

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>

   >>
   ***********************************************************************

   >>>>

   >>>>       >        *************

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     [Anhang "MaterialInformation.WSDL" gelöscht
   von Thomas

   >>>>       Raddatz/OBI/

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     DE]

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>

   >>
   -----------------------------------------------------------------------

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     This is the FTPAPI mailing list.  To
   unsubscribe,

   >>

   >> please go

   >>>>       to:

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >     [13][17]

   >> http://www.scottklement.com/mailman/listinfo/ftpapi

   >>>>

   >>>>       >

   >>>>

   >>>>       >        >

   >>>>

   >>>>       >

   >>>>

   >>

   >>
   -----------------------------------------------------------------------

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >        --

   >>>>

   >>>>       >

   >>>>

   >>>>       >        IMPORTANT NOTICE:

   >>>>

   >>>>       >

   >>>>

   >>>>       >        This email is confidential, may be legally
   privileged, and

   >>

   >> is for

   >>>>       the

   >>>>

   >>>>       >

   >>>>

   >>>>       >        intended recipient only. Access, disclosure,
   copying,

   >>>>       distribution, or

   >>>>

   >>>>       >

   >>>>

   >>>>       >        reliance on any of it by anyone else is prohibited
   and may

   >>

   >> be a

   >>>>

   >>>>       >        criminal

   >>>>

   >>>>       >

   >>>>

   >>>>       >        offence. Please delete if obtained in error and
   email

   >>>>       confirmation to

   >>>>

   >>>>       >        the sender.

   >>>>

   >>>>       >

   >>>>

   >>>>       >    References

   >>>>

   >>>>       >

   >>>>

   >>>>       >        1. [18]http://www.wbf.org/xml/b2mml-v0300

   >>>>

   >>>>       >        2. [19]http://www.wbf.org/xml/b2mml-v0300

   >>>>

   >>>>       >        3.
   [20]http://www.wbf.org/xml/b2mml-v0300-extensions

   >>>>

   >>>>       >        4. [21]http://www.wbf.org/xml/b2mml-v0300

   >>>>

   >>>>       >        5. [22]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>>

   >>>>       >        6. [23]mailto:t.casaluci@xxxxxxxx

   >>>>

   >>>>       >        7. [24]mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx

   >>>>

   >>>>       >        8. [25]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>>

   >>>>       >        9. [26]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>>

   >>>>       >       10. [27]mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>>

   >>>>       >       11. [28]mailto:thomas.raddatz@xxxxxxxxxxx

   >>>>

   >>>>       >       12. [29]mailto:t.casaluci@xxxxxxxx

   >>>>

   >>>>       >       13.
   [30]http://www.scottklement.com/mailman/listinfo/ftpapi

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>>>       >

   >>>>

   >>

   >>
   -----------------------------------------------------------------------

   >>>>

   >>>>       >    This is the FTPAPI mailing list.  To unsubscribe,
   please go to:

   >>>>

   >>>>       >    [31]http://www.scottklement.com/mailman/listinfo/ftpapi

   >>>>

   >>>>       >

   >>>>

   >>

   >>
   -----------------------------------------------------------------------

   >>>>

   >>>>

   >>

   >>
   -----------------------------------------------------------------------

   >>>>

   >>>>       This is the FTPAPI mailing list.  To unsubscribe, please go
   to:

   >>>>

   >>>>       [32]http://www.scottklement.com/mailman/listinfo/ftpapi

   >>>>

   >>>>

   >>

   >>
   -----------------------------------------------------------------------

   >>>>

   >>>> References

   >>>>

   >>>>       1. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>>       2. mailto:[mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx]

   >>>>       3. mailto:thomas.raddatz@xxxxxx

   >>>>       4. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx

   >>>>       5. http://www.wbf.org/xml/b2mml-v0300

   >>>>       6. http://www.wbf.org/xml/b2mml-v0300

   >>>>       7. http://www.wbf.org/xml/b2mml-v0300-extensions

   >>>>       8. http://www.wbf.org/xml/b2mml-v0300

   >>>>       9. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>>      10. mailto:t.casaluci@xxxxxxxx

   >>>>      11. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx

   >>>>      12. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>>      13. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>>      14. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>>      15. mailto:thomas.raddatz@xxxxxxxxxxx

   >>>>      16. mailto:t.casaluci@xxxxxxxx

   >>>>      17. http://www.scottklement.com/mailman/listinfo/ftpapi

   >>>>      18. http://www.wbf.org/xml/b2mml-v0300

   >>>>      19. http://www.wbf.org/xml/b2mml-v0300

   >>>>      20. http://www.wbf.org/xml/b2mml-v0300-extensions

   >>>>      21. http://www.wbf.org/xml/b2mml-v0300

   >>>>      22. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>>      23. mailto:t.casaluci@xxxxxxxx

   >>>>      24. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx

   >>>>      25. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>>      26. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>>      27. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx

   >>>>      28. mailto:thomas.raddatz@xxxxxxxxxxx

   >>>>      29. mailto:t.casaluci@xxxxxxxx

   >>>>      30. http://www.scottklement.com/mailman/listinfo/ftpapi

   >>>>      31. http://www.scottklement.com/mailman/listinfo/ftpapi

   >>>>      32. http://www.scottklement.com/mailman/listinfo/ftpapi

   >>>>

   >>>>

   >>>>

   >>>>

   >>>>

   >>

   >>
   -----------------------------------------------------------------------

   >>>> This is the FTPAPI mailing list.  To unsubscribe, please go to:

   >>>> http://www.scottklement.com/mailman/listinfo/ftpapi

   >>>>

   >>

   >>
   -----------------------------------------------------------------------

   >>>
   -----------------------------------------------------------------------

   >>> This is the FTPAPI mailing list.  To unsubscribe, please go to:

   >>> http://www.scottklement.com/mailman/listinfo/ftpapi

   >>>
   -----------------------------------------------------------------------

   >>>
   -----------------------------------------------------------------------

   >>> This is the FTPAPI mailing list.  To unsubscribe, please go to:

   >>> http://www.scottklement.com/mailman/listinfo/ftpapi

   >>>
   -----------------------------------------------------------------------

   >>

   >>

   >> --

   >> IMPORTANT NOTICE:

   >> This email is confidential, may be legally privileged, and is for
   the

   >> intended recipient only. Access, disclosure, copying, distribution,
   or

   >> reliance on any of it by anyone else is prohibited and may be a
   criminal

   >> offence. Please delete if obtained in error and email confirmation
   to the sender.

   >>
   -----------------------------------------------------------------------

   >> This is the FTPAPI mailing list.  To unsubscribe, please go to:

   >> http://www.scottklement.com/mailman/listinfo/ftpapi

   >>
   -----------------------------------------------------------------------

   >>

   >>

   >>

   >>
   -----------------------------------------------------------------------

   >> This is the FTPAPI mailing list.  To unsubscribe, please go to:

   >> http://www.scottklement.com/mailman/listinfo/ftpapi

   >>
   -----------------------------------------------------------------------

   >
   -----------------------------------------------------------------------

   > This is the FTPAPI mailing list.  To unsubscribe, please go to:

   > http://www.scottklement.com/mailman/listinfo/ftpapi

   >
   -----------------------------------------------------------------------

   >
   -----------------------------------------------------------------------

   > This is the FTPAPI mailing list.  To unsubscribe, please go to:

   > http://www.scottklement.com/mailman/listinfo/ftpapi

   >
   -----------------------------------------------------------------------

   >

   -----------------------------------------------------------------------

   This is the FTPAPI mailing list.  To unsubscribe, please go to:

   http://www.scottklement.com/mailman/listinfo/ftpapi

   -----------------------------------------------------------------------

References

   1. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   2. mailto:[mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx]
   3. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   4. mailto:[mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx]
   5. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   6. mailto:[mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx]
   7. mailto:thomas.raddatz@xxxxxx
   8. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   9. http://www.tools400.de/Downloads/Freeware/Tools/FAQ/wsdl2rpg/FAQ_What_to_do_in_case_of_a_RNF0501_compiler_error_message_v1.0.pdf
  10. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  11. mailto:t.casaluci@xxxxxxxx
  12. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  13. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  14. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  15. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx
  16. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  17. mailto:[mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx]
  18. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  19. mailto:[mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx]
  20. mailto:thomas.raddatz@xxxxxx
  21. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  22. http://www.wbf.org/xml/b2mml-v0300
  23. http://www.wbf.org/xml/b2mml-v0300
  24. http://www.wbf.org/xml/b2mml-v0300-extensions
  25. http://www.wbf.org/xml/b2mml-v0300
  26. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  27. mailto:t.casaluci@xxxxxxxx
  28. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  29. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
-----------------------------------------------------------------------
This is the FTPAPI mailing list.  To unsubscribe, please go to:
http://www.scottklement.com/mailman/listinfo/ftpapi
-----------------------------------------------------------------------