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

AW: Help with WSDL2RPG



   Hello Thomas,


   I think I break the neck of WSDL2RPG. We've approximately 1600 records
   which we want to send to the WS.

   With the fixed array program version (collect datasets of 100 and send
   them to the WSà 16 request messages for the WS) it takes 1-2 minutes.

   With the dynamic array program version I get an error message after 30
   minutes that says something like a buffer overflow.

   If I check the call stack of the job the most time is used in
   WSDL2RPGRT (Procedures findMapE and sortMap), presumably this is the
   routine where the arrays

   are handled. During that time I see an increase of the cpu usage of
   that job to 60 %. I've worked through the documentation "FAQ How to
   Troubleshoot Performance Problems v1.0" and changed some settings as
   described:


   1)


   -       Initial array size:

            parameters.MaterialInformation.MaterialLot.hItems =

               MemoryManager_createArray(

                  uuid

                  : %size(newMaterialLotType_A1)

                  : 'MaterialLot' : cFalse : 2000 );


   è  We've 1600 entries for it.


             newMaterialLotType_A1.MaterialLotProperty.hItems =

              MemoryManager_createArray(uuid:
   %size(newMaterialLotPropertyType_...

               A3): 'MaterialLotProperty' +'_' + %char(RecordCounter)

               : cFalse : 10 );


   è  Each of the 1600 MaterialLot  records has 10 entries for this
   element. So I think the initial size of 10 would be ok under the
   assumption that there is a new array for each top level element.


            newMaterialLotPropertyType_A3.Value.hItems =

              MemoryManager_createArray(

              uuid

               : %size(newValueType_A6)

               : 'Value' + '_' + %char(RecordCounter) +'_' + %CHAR(X_A3)

               : cFalse : 1 );


   è  Each MaterialLotProperty has 1 entries for this element.


               newMaterialLotType_A1.Quantity.hItems =

                  MemoryManager_createArray(

                     uuid

                     : %size(newQuantityType_A7)

                     : 'Quantity'+ '_' + %char(RecordCounter)

                     : cFalse : 1 );


   è  Each MaterialLot has 1 entries for this element.


   So we've:


   1 array MaterialLot with 1600 entries

   1600 arrays for MaterialLotProperty

   16000 (1600 * 10) arrays for Value

   1600 arrays for Quantity


   So there are 18901 arrays to handle for WSDL2RPG.



   2) Disable symbolic names in the test program and the stub module
   (cFalse)


   3) Setting the cache size to 16 MB (ManagedMemoryDataSource_new)




   My call stack:


                                  Display Call
   Stack


    Thread:
   00000567





    Type  Program                  Statement
   Procedure

          QCMD       QSYS
   /04F8

          STRSUP     VEGALIB       1200
   /0012

       1  QPGMMENU   QSYS
   /059C

          VSEFAC20   TST_WS
   _QRNP_PEP_VSEFAC20

          VSEFAC20   TST_WS        275
   VSEFAC20

          WSDL2RPGRT WSDL2RPG      41100
   WSDL2R84_MemoryManager_crea >

          WSDL2RPGRT WSDL2RPG      24600
   WSDL2R82_Array_new

          WSDL2RPGRT WSDL2RPG      111300
   newArrayInternal

          WSDL2RPGRT WSDL2RPG      60600
   WSDL2R82_Array_existName

          BASICS1    WSDL2RPG      44600
   BASICS1RC_BasicMap_contains >

          BASICS1    WSDL2RPG      209300
   findMapE

          BASICS1    WSDL2RPG      214000
   sortMap

          BASICS1    WSDL2RPG      183700
   BASICS1RA_BasicList_sort

          BASICS1    WSDL2RPG      273000            sortList

          QC2UTIL1   QSYS          38                qsort

          BASICS1    WSDL2RPG      266200            qsortCallback

          BASICS1    WSDL2RPG      219300            sortCallback



   httpapi_debug:


   HTTPAPI Ver 1.24beta14 released 2011-10-08

   OS/400 Ver V6R1M0



   WSDL2RPG Ver 1.15beta10 released 2012-03-26


   ** Using symbolic names is not recommended due to significant
   performance degrades for large dynamic arrays

   ** Disable symbolic names to improve performance:
   MemoryManager_attachService( .. : cFalse)

   HTTPAPI Ver 1.24beta14 released 2011-10-08

   OS/400 Ver V6R1M0


   ** 2012-04-25-14.42.19.937000: Entering
   MaterialInformationSoap_ProcessMaterialInformation()

   New iconv() objects set, PostRem=1208. PostLoc=0. ProtRem=819.
   ProtLoc=0

   WSDL2RPG: RNX0425: Die Länge, die für die Speicherzuordnung angefordert
   wurde, liegt außerhalb des zulässigen Bereichs.

                      Ursache  . . . . : RPG-Prozedur WSDL2R87_M in
   Programm WSDL2RPG/WSDL2RPGRT hat versucht, Speicher mit einer Länge
   zuzuordnen, die kein Wert zwischen 1 und 16776704 war.
   Fehlerbeseitigung: Mit Hilfe des Benutzers, der für die Programmpfle

   ge verantwortlich ist, die Fehlerursache bestimmen.

             received from procedure: SignalException

                       and statement: 20




   Regards,


   Timo


   -----Ursprüngliche Nachricht-----
   Von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   [mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] Im Auftrag von
   thomas.raddatz@xxxxxx
   Gesendet: Mittwoch, 25. April 2012 11:57
   An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   Betreff: AW: Help with WSDL2RPG



   Timo,


   It was worth a try but you were clever enough to guess what really

   happened. ;-)


   Indeed there was a change in the latest beta that disabled named arrays
   by

   default. The following line of the service stub module was changed:


   from:


      MemoryManager_attachService(uuid);


   to:


      MemoryManager_attachService(uuid: cFalse);


   Your service module (VSEFACS) uses the old version and therefore
   enables

   named arrays. On the other hand parameter "ensure unique array names"
   has

   never been added to MemoryManager_createArray() in the test program.

   WSDL2RPG adds that parameter in the stub module (for the response
   message)

   but not in the test program. I simply checked the wrong line of code,

   which made me assuming that you removed the parameter.


   You are right that "*.hItems" uniquely identifies an array. "hItems" is

   the handle of an array.


   Regards,


   Thomas.


   [1]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 25.04.2012
   11:00:33:


   > Von: [2]t.casaluci@xxxxxxxx

   > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,

   > Datum: 25.04.2012 11:10

   > Betreff: AW: Help with WSDL2RPG

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

   >


   > Hello Thomas,

   >


   > I'm rather sure that I don't removed the "ensure unique array names"

   > from the createArray function.

   > The program was created with WSDL2RPG V1.15beta4, perhaps there was

   > a change on the default values of this functions?

   > But I was not aware of that WSDL2RPG is able to populate the arrays

   > with the unique names like

   >


   >


   >             newMaterialLotType_A1.MaterialLotProperty.hItems =

   >             MemoryManager_createArray(uuid: %size

   > (newMaterialLotPropertyType_...

   >             A3): 'MaterialLotProperty' +'_' + %char(RecordCounter));

   >


   > with

   >


   >             Array_add(

   >                   newMaterialLotType_A1.MaterialLotProperty.hItems

   >                   : %addr(newMaterialLotPropertyType_A3));

   >


   > So I think the actual handle "hItems" is responsible that the

   > Array_add function uses the right array.

   > Many thanks for your support.

   >


   > Regards,

   >


   > Timo

   >


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

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

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

   > Gesendet: Dienstag, 24. April 2012 21:32

   > An: HTTPAPI and FTPAPI Projects

   > Betreff: Re: Help with WSDL2RPG

   >


   > Timo,

   >


   > Sometimes things are too obvious and therefore hard to see. The
   problem

   was

   > that (most likely) you removed the "ensure unique array names"
   parameter


   > from the MemoryManager_createArray() procedure call.

   >


   > Basically it is a good idea to not use named arrays because you get a

   great

   > performance boost without it. But you have to do it right. ;-)

   >


   > You have three option to do it right:

   >


   > 1. Option:

   >


   >     MemoryManager_createArray(

   >        uuid

   >        : %size(newMaterialLotPropertyType_A3)

   >        : 'MaterialLotProperty' + '_' + %char(X_A1));

   >        // Ensures a unique name by adding a counter.

   >


   > 2. Option:

   >


   >     MemoryManager_createArray(

   >        uuid

   >        : %size(newValueType_A6)

   >        : 'Value'

   >        : cTrue);   // Ensure unique names - Slow!

   >


   > 3. Option:

   >


   >     MemoryManager_createArray(

   >        uuid

   >        : %size(newQuantityType_A7));

   >        // Do not use a name at all.

   >


   > Feel free to study the attached version of VSEFAC20B. I re-formatted
   the


   > source code and removed all the unnecessary stuff.

   >


   > The zip file also contains the request message generated by
   VSEFAC20B.

   It

   > looks something like this:

   >


   > <s1:MaterialLot>

   >      <s1:ID>Test LotID: 1</s1:ID>

   >      <s1:MaterialDefinitionID>2.9</s1:MaterialDefinitionID>

   >      <s1:MaterialLotProperty>

   >          <s1:ID>NotificationID: 1_1</s1:ID>

   >          <s1:Value>

   >              <s1:ValueString>Value: 1_1_1</s1:ValueString>

   >              <s1:DataType>string</s1:DataType>

   >          </s1:Value>

   >          <s1:Value>

   >              <s1:ValueString>Value: 1_1_2</s1:ValueString>

   >              <s1:DataType>string</s1:DataType>

   >          </s1:Value>

   >      </s1:MaterialLotProperty>

   >      <s1:MaterialLotProperty>

   >          <s1:ID>NotificationID: 1_2</s1:ID>

   >          <s1:Value>

   >              <s1:ValueString>Value: 1_2_1</s1:ValueString>

   >              <s1:DataType>string</s1:DataType>

   >          </s1:Value>

   >          <s1:Value>

   >              <s1:ValueString>Value: 1_2_2</s1:ValueString>

   >              <s1:DataType>string</s1:DataType>

   >          </s1:Value>

   >      </s1:MaterialLotProperty>

   >


   > The numbers, such as "1", "1_1", "1_1_2" show the sequence numbers of

   the

   > array items. For example "<s1:ValueString>Value:
   1_2_2</s1:ValueString>"

   is

   > the second "Value" item of the second "MaterialLotProperty" of the
   first


   > "MaterialLot".

   >


   > Regards,

   >


   > Thomas.

   >


   > Am 24.04.2012 15:44, schrieb Casaluci, Timo:

   > >     Hello Thomas,

   > >

   > >

   > >     attached is an example of the soap message which I get with the

   program

   > >     version with the fixed length arrays.

   > >

   > >     I try to rebuilt the same with dynamic arrays. As you can see,
   is

   the

   > >     element MaterialLot (Level 2) an array under the data structure

   > >

   > >     parameters.MaterialInformation (Level 1) and the elements

   > >     MaterialLotProperty (in our environment 8 times for each

   MaterialLot

   > >     with different values) and Quantity (both Level 3) are arrays

   under

   > >     MaterialLot.

   > >

   > >     In the FOR loop, which is in the program version with the fixed

   length

   > >     a loop through a sql result set, I want to fill the different

   > >     MaterialLot data and Sub data.

   > >

   > >     I tried to reset the different arrays in and outside the loop
   but

   got

   > >     every time an  "array already exists"  on the createArray

   statement or

   > >     an "array doesn't exists" error on the Array_add statement. And
   in

   the

   > >     version without error the structure if the soap message wasn't
   ok,

   e.g.

   > >     one MaterialLot element and thousands MaterialLotProperty
   elements

   > >     under it instead the expected 8 elements. The web service is

   called

   > >     after the loop only one times with all data (e.g. 1600
   MaterialLot

   > >     entries).

   > >

   > >     As I said, the program version with the fixed length arrays
   works

   fine,

   > >     I made this one for a better understanding of WSDL2RPG. So
   there

   is

   > >     absolutely no hurry on it

   > >

   > >     and I appreciation the support you provide here.

   > >

   > >

   > >     Thanks,

   > >

   > >

   > >     Timo

   > >

   > >

   > >

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

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

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

   > >     [8]thomas.raddatz@xxxxxx

   > >     Gesendet: Dienstag, 24. April 2012 12:44

   > >     An: [9]ftpapi@xxxxxxxxxxxxxxxxxxxxxx

   > >     Betreff: AW: Help with WSDL2RPG

   > >

   > >

   > >

   > >     Timo,

   > >

   > >

   > >     I am not sure about what you are doing. "MaterialLot" seems to
   be

   a top

   > >

   > >     level array and hence needs to created once and only once
   before

   you

   > >     call

   > >

   > >     the web service. After having called the web service you should

   free

   > >     all

   > >

   > >     arrays as soon as you do not need the stored information any

   longer.

   > >     You

   > >

   > >     may call MaterialInformationSoap_terminateMemoryManager(uuid)
   to

   free

   > >     all

   > >

   > >     memory allocations associated to your web service, as you
   already

   do it

   > >     in

   > >

   > >     VSEFAC20.

   > >

   > >

   > >     What are you doing inside your FOR loop? Do you call the web

   service

   > >     for

   > >

   > >     each iteration of 'RecordCounter' or do you call the web
   service

   after

   > >     the

   > >

   > >     FOR loop?

   > >

   > >

   > >     Regards,

   > >

   > >

   > >     Thomas.

   > >

   > >

   > >     [1][10]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   24.04.2012

   > >     11:37:13:

   > >

   > >

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

   > >

   > >     >  An: [12]ftpapi@xxxxxxxxxxxxxxxxxxxxxx,

   > >

   > >     >  Datum: 24.04.2012 11:47

   > >

   > >     >  Betreff: AW: Help with WSDL2RPG

   > >

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

   > >

   > >     >

   > >

   > >

   > >     >  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: [4][14]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   [mailto:ftpapi-

   > >

   > >     >  [5][15]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:
   [6][16]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<mailto:ftpapi-

   > >

   > >     >  [7][17]bounces@xxxxxxxxxxxxxxxxxxxxxx>  [

   > >

   > >     [8][18]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   > >

   > >     >
   ]<[9][19]mailto:[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
   datato

   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
   containsthe

   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: [10][20]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<

   [21]mailto:ftpapi-

   > >

   > >     >  [11][22]bounces@xxxxxxxxxxxxxxxxxxxxxx>  [

   > >

   > >     [12][23]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   > >

   > >     >
   ]<[13][24]mailto:[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: [14][25]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<

   [26]mailto:ftpapi-

   > >

   > >     >  [15][27]bounces@xxxxxxxxxxxxxxxxxxxxxx>  [

   > >

   > >     [16][28]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   > >

   > >     >
   ]<[17][29]mailto:[mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx]> Im

   > >     Auftrag

   > >

   > >     >  von
   [18][30]thomas.raddatz@xxxxxx<mailto:thomas.raddatz@xxxxxx>

   > >

   > >     >

   > >

   > >

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

   > >

   > >     >

   > >

   > >

   > >     >  >>  An: [19][31]ftpapi@xxxxxxxxxxxxxxxxxxxxxx<

   > >

   > >     [20][32]mailto: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.

   > >

   > >     >

   > >

   > >

   > >     >  >>

   > >

   > >     >

   > >

   > >

   > >     >  >>  [21]

   [33]http://www.tools400.de/Downloads/Freeware/Tools/FAQ/wsdl2rpg/

   > >

   > >     >

   FAQ_What_to_do_in_case_of_a_RNF0501_compiler_error_message_v1.0.pdf

   > >

   > >     >

   > >

   > >

   > >     >  >>

   > >

   > >     >

   > >

   > >

   > >     >  >>  Thomas.

   > >

   > >     >

   > >

   > >

   > >     >  >>

   > >

   > >     >

   > >

   > >

   > >     >  >>
   [22][34]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<mailto:ftpapi-

   > >

   > >     >  [23][35]bounces@xxxxxxxxxxxxxxxxxxxxxx>  schrieb am
   17.01.2012

   09:39:10:

   > >

   > >     >

   > >

   > >

   > >     >  >>

   > >

   > >     >

   > >

   > >

   > >     >  >>>  Von:
   [24][36]t.casaluci@xxxxxxxx<mailto:t.casaluci@xxxxxxxx>

   > >

   > >     >

   > >

   > >

   > >     >  >>>  An: [25][37]ftpapi@xxxxxxxxxxxxxxxxxxxxxx<

   > >

   > >     [26][38]mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx>

   > >

   > >     >

   > >

   > >

   > >     >  >>>  Datum: 17.01.2012 09:47

   > >

   > >     >

   > >

   > >

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

   > >

   > >     >

   > >

   > >

   > >     >  >>>  Gesendet von:
   [27][39]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<

   > >

   > >     >  [28][40]mailto: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: [29]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<

   mailto:ftpapi-

   > >

   > >     >  [30]bounces@xxxxxxxxxxxxxxxxxxxxxx>  [mailto:ftpapi-

   > >

   > >     >

   > >

   > >

   > >     >  >>>

   > >     [31]bounces@xxxxxxxxxxxxxxxxxxxxxx<

   mailto:bounces@xxxxxxxxxxxxxxxxxxxxx

   > >     m

   > >

   > >     >  >] 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: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<

   mailto:ftpapi-

   > >

   > >     >  bounces@xxxxxxxxxxxxxxxxxxxxxx>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        [mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   ]<mailto:[

   > >

   > >     >  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
   locationis

   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]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<

   > >

   > >     >  mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >         [2][mailto:ftpapi-

   > bounces@xxxxxxxxxxxxxxxxxxxxxx

   > >

   > >     ]<mailto:[

   > >

   > >     >  mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx]>  Im

   > >

   > >     >

   > >

   > >

   > >     >  >>

   > >

   > >     >

   > >

   > >

   > >     >  >>  Auftrag von

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

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

   > >

   > >     mailto:thomas.raddatz@xxxxxx>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

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

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

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

   > >

   > >     >  mailto: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]http://

   > www.wbf.org/xml/

   > >

   > >     >  b2mml-v0300

   > >

   > >     >

   > >

   > >

   > >     >  >>  " and

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        it

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >         references

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

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

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

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

   > >

   > >     targetNamespace="

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

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

   ">

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >           <s:import

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

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

   > >

   > >     >

   > >

   > >

   > >     >  >>  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]

   > >

   > >     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]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<

   > >

   > >     >  mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx>  schrieb am

   > >

   > >     >

   > >

   > >

   > >     >  >>

   > >

   > >     >

   > >

   > >

   > >     >  >>  13.01.2012

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >         12:21:09:

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >


   > >     >

   > >

   > >

   > >     >  >>>>        >

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

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

   > >

   > >     >  mailto:t.casaluci@xxxxxxxx>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >         >      An: [7][11]

   > ftpapi@xxxxxxxxxxxxxxxxxxxxxx<

   > >

   > >     >  mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

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

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

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

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >         >      Gesendet von:

   > >

   > >     >

   > >

   > >

   > >     >  >>

   > >

   > >     >

   > >

   > >

   > >     >  >>
   [8][12]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<mailto: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

   interaspace.

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >         >      >

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >

   > >

   > >     >

   > >

   > >

   > >     >  >>>>

   > >

   > >     >

   > >

   > >

   > >     >  >>>>        >         >      >       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

   inerror 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

   > >

   > >     >

   > >

   > >

   > >     >

   > >

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

   > >

   > >     >

   > >

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

   > >

   > >     >  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.

   > >

   > >

   ***********************************************************************

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

   > >     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

   > >

   ***********************************************************************

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

   > >

   > > References

   > >

   > >     1. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   > >     2. mailto:t.casaluci@xxxxxxxx

   > >     3. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   > >     4. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   > >     5. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx

   > >     6.
   mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-

   > >     7. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx

   > >     8. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

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

   > >    10.
   mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-

   > >    11. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx

   > >    12. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

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

   > >    14.
   mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-

   > >    15. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx

   > >    16. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

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

   > >    18. mailto:thomas.raddatz@xxxxxx%3cmailto:thomas.raddatz@xxxxxx

   > >    19. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx%3c

   > >    20. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx

   > >    21.
   http://www.tools400.de/Downloads/Freeware/Tools/FAQ/wsdl2rpg/

   > >    22.
   mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-

   > >    23. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx

   > >    24. mailto:t.casaluci@xxxxxxxx%3cmailto:t.casaluci@xxxxxxxx

   > >    25. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx%3c

   > >    26. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx

   > >    27. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3c

   > >    28. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx

   > >    29.
   mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-

   > >    30. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx

   > >    31. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx%

   > 3cmailto:bounces@xxxxxxxxxxxxxxxxxxxxxx

   > >

   > >

   > >

   > >

   > >

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

   > > 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.

References

   1. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   2. mailto:t.casaluci@xxxxxxxx
   3. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   4. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   5. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx
   6. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   7. mailto:[mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx]
   8. mailto:thomas.raddatz@xxxxxx
   9. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  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%3cmailto:ftpapi-
  17. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx
  18. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  19. mailto:[mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  20. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3c
  21. mailto:ftpapi-
  22. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx
  23. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  24. mailto:[mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  25. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3c
  26. mailto:ftpapi-
  27. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx
  28. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  29. mailto:[mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  30. mailto:thomas.raddatz@xxxxxx%3cmailto:thomas.raddatz@xxxxxx
  31. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx%3c
  32. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  33. http://www.tools400.de/Downloads/Freeware/Tools/FAQ/wsdl2rpg/
  34. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-
  35. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx
  36. mailto:t.casaluci@xxxxxxxx%3cmailto:t.casaluci@xxxxxxxx
  37. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx%3c
  38. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  39. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3c
  40. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
-----------------------------------------------------------------------
This is the FTPAPI mailing list.  To unsubscribe, please go to:
http://www.scottklement.com/mailman/listinfo/ftpapi
-----------------------------------------------------------------------