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

RE: WSDL2RPG Failing - WSDL2RPG/WSDL2R01.cbElementStart (Stmt: 231000) : Type must be 'anyType'..



   Gaurav,
   The problem is primarily a debugger problem, because the debugger does
   not display arrays as they really are. For example:
   This is what the debugger displays:
   > EVAL getAddressContainerResponse
     GETADDRESSCONTAINERRESPONSE.GETADDRESSCONTAINERRETURN.ADDRESSLIST.X =
   2

   GETADDRESSCONTAINERRESPONSE.GETADDRESSCONTAINERRETURN.ADDRESSLIST.ITEM.
   CITY(1) =

   ....5...10...15...20...25...30...35...40...45...50...55...60
          1   'Duckburg
    '

   GETADDRESSCONTAINERRESPONSE.GETADDRESSCONTAINERRETURN.ADDRESSLIST.ITEM.
   FIRSTNAME(1) =

   ....5...10...15...20...25...30...35...40...45...50...55...60
          1   'Donald
    '

   GETADDRESSCONTAINERRESPONSE.GETADDRESSCONTAINERRETURN.ADDRESSLIST.ITEM.
   LASTNAME(1) =

   ....5...10...15...20...25...30...35...40...45...50...55...60
          1   'Duck
    '
   Everyone whould assume that there are the following arrays:
      *.city()
      *.firstName()
      *.lastName()
   But that is wrong! The data structure is defined like this and in fact
   'item' is the array:
   D impl_getAddressContainerResponse_t...
   D                 DS                  template
   D                                     qualified
   D  getAddressContainerReturn...
   D                                     likeds(impl_AddressContainer_t)
   D impl_AddressContainer_t...
   D                 DS                  template
   D                                     qualified
   D  addressList                        likeds(impl_ArrayOfAddress_t)
   D  deliveryAddress...
   D                                     likeds(impl_Address_t)
   D  invoiceAddress...
   D                                     likeds(impl_Address_t)
   D  numberOfItems                10I 0
   D impl_ArrayOfAddress_t...
   D                 DS
   likeds(impl_RpgArrayOfArrayOfAddre...
   D                                     ss_t)
   D                                     template
   D impl_RpgArrayOfArrayOfAddress_t...
   D                 DS                  template
   D                                     qualified
   D  x                            10I 0
   D  item                               likeds(impl_Address_t)
   D                                     dim(DIM_A1)
   D impl_Address_t  DS                  template
   D                                     qualified
   D  city                        128A   varying
   D  firstname                   128A   varying
   D  lastname                    128A   varying
   D  street                      128A   varying
   D  zipcode                      10I 0
   Following the sequence of nested data structures we get:
   getAddressContainerResponse.getAddressContainerReturn.addressList.item(
   x).city
   You better use the build in "Parameter Structure Viewer" to get an
   overview of the data structure:
   Command:
   WSDL2RPG
   URL('http://10.115.12.224:8080/PMR/wsdl/AddressContainerService.wsdl')
      SRCFILE(QWSDL2RPG) SRCMBR(*NONE) PARMSTRUCT(*)
   Output:
   Service Response Parameters
   ---------------------------
   o_getAddressContainerResponse(impl_getAddressContainerResponse_t)
     getAddressContainerReturn(impl_AddressContainer_t)
       addressList(impl_ArrayOfAddress_t)
         x(10I 0, *ARRAY_INDEX)
         item(impl_Address_t, *STATIC_ARRAY)
           city(128A  varying)
           firstname(128A  varying)
           lastname(128A  varying)
           street(128A  varying)
           zipcode(10I 0)
   Each nesting prepresents a new sub field and therefore we get:
   o_getAddressContainerResponse.getAddressContainerReturn...
         .addressList.item(*STATIC_ARRAY of type impl_Address_t).city
   Thomas.
   ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 12.09.2013 19:56:18:
   > Von: gaurav.gupta3@xxxxxx
   > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   > Datum: 12.09.2013 20:06
   > Betreff: RE: WSDL2RPG Failing - WSDL2RPG/WSDL2R01.cbElementStart
   > (Stmt: 231000) : Type must be 'anyType'..
   > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >
   > Thomas,
   >
   > As a next I am now trying to capture the response data into some
   > physical table. I am unable to figure as how to read thru the
   > response message and capture it in standard file field variables.
   > Attached is the code and compilation error log for reference.
   >
   >
   >
   > Compilation Errors -
   >
   > ·         *RNF0528 20      2 Index is not allowed for name that is
   > not an array; index is ignored.
   >
   > ·         *RNF5343 30      2 Array has too many omitted indexes;
   > specification is ignore
   >
   >
   >
   > Request your inputs on the same.
   >
   >
   >
   >
   >
   > Thanks,
   >
   > Gaurav
   >
   >
   >
   > Gaurav Gupta
   >
   > Project Leader, GE(Contractor)
   >
   > GE Capital
   >
   > Rail Services
   >
   >
   >
   > T:  +1 312-853-5536
   >
   > D: *750-5536
   >
   > C:  +1 847-337-1852
   >
   > gaurav.gupta3@xxxxxx
   >
   >
   >
   > 161 N Clark St.
   >
   > Chicago, IL  - 60601, USA
   >
   >
   >
   >
   >
   > -----Original Message-----
   > From: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx [[1]mailto:ftpapi-
   > bounces@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of Thomas Raddatz
   > Sent: Wednesday, September 11, 2013 2:07 PM
   > To: HTTPAPI and FTPAPI Projects
   > Subject: Re: WSDL2RPG Failing - WSDL2RPG/WSDL2R01.cbElementStart
   > (Stmt: 231000) : Type must be 'anyType'..
   >
   >
   >
   > You are welcome. I am happy that it works.
   >
   >
   >
   > Thomas.
   >
   >
   >
   > Am 11.09.2013 19:43, schrieb Gupta, Gaurav (GE Capital, non-ge):
   >
   > > Thanks Thomas!! FINALLY I was able to create the wrapper and was
   > successfully able to test it. Also I tried to generate a test/
   > example program using WSDL2RPG and too worked.
   >
   > >
   >
   > > Again Thanks a lot for all your inputs.
   >
   > >
   >
   > > Thanks,
   >
   > > Gaurav
   >
   > >
   >
   > > Gaurav Gupta
   >
   > > Project Leader, GE(Contractor)
   >
   > > GE Capital
   >
   > > Rail Services
   >
   > >
   >
   > > T:  +1 312-853-5536
   >
   > > D: *750-5536
   >
   > > C:  +1 847-337-1852
   >
   > > gaurav.gupta3@xxxxxx<[2]mailto:gaurav.gupta3@xxxxxx>
   >
   > >
   >
   > > 161 N Clark St.
   >
   > > Chicago, IL  - 60601, USA
   >
   > >
   >
   > >
   >
   > > -----Original Message-----
   >
   > > From: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<[3]mailto:ftpapi-
   > bounces@xxxxxxxxxxxxxxxxxxxxxx>
   >
   > > [[4]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of
   >
   > > thomas.raddatz@xxxxxx<[5]mailto:thomas.raddatz@xxxxxx>
   >
   > > Sent: Tuesday, September 10, 2013 4:14 AM
   >
   > > To:
   ftpapi@xxxxxxxxxxxxxxxxxxxxxx<[6]mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx>
   >
   > > Subject: RE: WSDL2RPG Failing - WSDL2RPG/WSDL2R01.cbElementStart
   > (Stmt: 231000) : Type must be 'anyType'..
   >
   > >
   >
   > >
   >
   > > Gaurav,
   >
   > >
   >
   > > The reason for the RNF3749 is that you did not completely
   > commented yourQueryCARS prototype:
   >
   > >
   >
   > > D*QueryCARS...
   >
   > > D*QueryCARS       PR
   extproc('CARSSOAP11Port_QueryCARS')
   >
   > > D*
   likeds(mx_QueryCARSResponse_t)
   >
   > > D*
   >
   > > D* i_mx_QueryCARS...
   >
   > > D*                                    likeds(mx_QueryCARSType_t)
   >
   > >   /IF NOT DEFINED(NO_CONST_ON_INPUT_PARAMETERS)
   >
   > > D                                     const
   >
   > >   /ENDIF
   >
   > > D  o_msg                              like(wsdl_errText_t )
   >
   > >
   >
   > > Please add the asterix to the "const" line and the "o_msg" line
   >
   > > orcompletely remove the prototype. If you want to rename the web
   >
   > > serviceoperation, open member WSMAXIMO03 and rename the prototype
   and
   >
   > > theprocdure interface of the CARSSOAP11Port_QueryCARS operation
   >
   > > to"QueryCARS". As a site note, I would keep the external name (
   >
   > > CARSSOAP11Port_QueryCARS) in order to keep the naming konvention
   > (portname + operation name):
   >
   > >
   >
   > > Before:
   >
   > > -------
   >
   > >
   >
   > > D CARSSOAP11Port_QueryCARS...
   >
   > > D                 PR
   likeds(mx_QueryCARSResponse_t)
   >
   > > D
   extproc('CARSSOAP11Port_QueryCARS')
   >
   > > D  i_mx_QueryCARS...
   >
   > > D                                     likeds(mx_QueryCARSType_t)
   >
   > >   /IF NOT DEFINED(NO_CONST_ON_INPUT_PARAMETERS)
   >
   > > D                                     const
   >
   > >   /ENDIF
   >
   > > D  o_msg                              like(wsdl_errText_t )
   >
   > >
   >
   > > Renamed:
   >
   > > --------
   >
   > >
   >
   > > D QueryCARS...
   >
   > > D                 PR
   likeds(mx_QueryCARSResponse_t)
   >
   > > D
   extproc('CARSSOAP11Port_QueryCARS')
   >
   > > D  i_mx_QueryCARS...
   >
   > > D                                     likeds(mx_QueryCARSType_t)
   >
   > >   /IF NOT DEFINED(NO_CONST_ON_INPUT_PARAMETERS)
   >
   > > D                                     const
   >
   > >   /ENDIF
   >
   > > D  o_msg                              like(wsdl_errText_t )
   >
   > >
   >
   > > On the other hand I do not know whether or not it is a good idea
   > to renamethe web service operation, because this way you get
   > inconsitent nameswhich may confuse the other developers:
   >
   > >
   >
   > >     CARSSOAP11Port_Port_setHttpDebug(*ON: 'debug.log');
   >
   > >
   >
   > >     CARSSOAP11Port_Port_setHttpProxy('your.proxy.server': 8080);
   >
   > >
   >
   > >     QueryCARSResponse = QueryCARS(QueryCARSRequest: msg);
   >
   > >
   >
   > >     // QueryCARS may not be recogniced as related to   //
   > CARSSOAP11Port_Port_setHttpDebug and   //
   CARSSOAP11Port_Port_setHttpProxy
   >
   > >
   >
   > > versus:
   >
   > >
   >
   > >     CARSSOAP11Port_Port_setHttpDebug(*ON: 'debug.log');
   >
   > >
   >
   > >     CARSSOAP11Port_Port_setHttpProxy('your.proxy.server': 8080);
   >
   > >
   >
   > >     QueryCARSResponse = CARSSOAP11Port_QueryCARS(QueryCARSRequest:
   >
   > > msg);
   >
   > >
   >
   > >     // In this example it is clear that all 3 procedures
   >
   > >     // are related.
   >
   > >
   >
   > > The RNF5406 error indicates that you did not pass all parameters
   > to theweb service procedure. In fact the second parameter "msg" is
   missing:
   >
   > >
   >
   > >     mx_QueryCARSResponse_t = CARSSOAP11Port_QueryCARS
   >
   > >                               (mx_QueryCARSType_t);
   >
   > >
   >
   > > The correct procedure call is:
   >
   > >
   >
   > >     mx_QueryCARSResponse_t = CARSSOAP11Port_QueryCARS
   >
   > >                               (mx_QueryCARSType_t: msg);
   >
   > >
   >
   > > Again, please do not try to use the template fields. All these
   > fields arebased on pointer "pDummy" which is never set. Please
   > define your ownfields like this:
   >
   > >
   >
   > > D QueryCARSResponse...
   >
   > > D                 DS
   Likeds(mx_QueryCARSResponse_t) inz
   >
   > > D QueryCARSRequest...
   >
   > > D                 DS                  Likeds(mx_QueryCARSType_t)
   inz
   >
   > > D msg             S                   Like(wsdl_errText_t) inz
   >
   > >
   >
   > >     QueryCARSResponse = CARSSOAP11Port_QueryCARS
   >
   > >                          (QueryCARSRequest: msg);
   >
   > >
   >
   > > Did you already notice that you can generate a test/example
   > program? Thetest program shows how to use the template fields and
   > how to call the webservice operation. FAQ "How to create a test
   > program" is a good startingpoint.
   >
   > >
   >
   > > Regards,
   >
   > >
   >
   > > Thomas.
   >
   > >
   >
   > > ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<[7]mailto:ftpapi-
   > bounces@xxxxxxxxxxxxxxxxxxxxxx> schrieb am 09.09.2013 22:21:18:
   >
   > >
   >
   > >> Von: gaurav.gupta3@xxxxxx<[8]mailto:gaurav.gupta3@xxxxxx>
   >
   > >> An:
   ftpapi@xxxxxxxxxxxxxxxxxxxxxx<[9]mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > >,> Datum: 09.09.2013 23:02
   >
   > >> Betreff: RE: WSDL2RPG Failing - WSDL2RPG/WSDL2R01.cbElementStart>
   > (Stmt: 231000) : Type must be 'anyType'..
   >
   > >> Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<
   > [10]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx>
   >
   > >>> Hi Thomas,
   >
   > >>> Thanks for the input.. I was able to move forward and resolved
   > lot> of errors. As of now I am stuck at a point where the
   > compilation is> failing due to below two errors -
   >
   > >>> ·         *RNF3749 20      1 Keyword is not allowed for a
   > prototype> definition; keyword  ignored.
   >
   > >>> ·         *RNF5406 30      1 The call passed fewer parameters
   > than> the prototype indicates are required.
   >
   > >>>>> I guess I am unable to figure out the correct syntax of  how
   > to> invoke the procedure of WSMAXIMO03 from my wrapper. Can you
   > provide> some inputs on the same. Attached is the source code for
   > wrapper ,> compilation error log & WSMAXIMO03.
   >
   > >>>>> Thanks,
   >
   > >>> Gaurav
   >
   > >>>>> Gaurav Gupta
   >
   > >>> Project Leader, GE(Contractor)
   >
   > >>> GE Capital
   >
   > >>> Rail Services
   >
   > >>>>> T:  +1 312-853-5536
   >
   > >>> D: *750-5536
   >
   > >>> C:  +1 847-337-1852
   >
   > >>> gaurav.gupta3@xxxxxx<[11]mailto:gaurav.gupta3@xxxxxx>
   >
   > >>>>> 161 N Clark St.
   >
   > >>> Chicago, IL  - 60601, USA
   >
   > >>>>>>> -----Original Message-----
   >
   > >> From: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<[12]mailto:ftpapi-
   > bounces@xxxxxxxxxxxxxxxxxxxxxx> [[13]mailto:ftpapi-
   >
   > >>
   bounces@xxxxxxxxxxxxxxxxxxxxxx<[14]mailto:bounces@xxxxxxxxxxxxxxxxxxxxx
   m
   > >] On Behalf Of
   thomas.raddatz@xxxxxx<[15]mailto:thomas.raddatz@xxxxxx>
   >
   > >> Sent: Monday, September 09, 2013 3:33 AM
   >
   > >> To:
   ftpapi@xxxxxxxxxxxxxxxxxxxxxx<[16]mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx>
   >
   > >> Subject: RE: WSDL2RPG Failing - WSDL2RPG/WSDL2R01.cbElementStart>
   > (Stmt: 231000) : Type must be 'anyType'..
   >
   > >>>>>>> Gaurav,
   >
   > >>>>> The first thing you need to remember is that all fields ending
   > with> "_t"are template fields. These fields are intended to be used
   > to> define theactual fields with LIKE or LIKEDS.
   >
   > >>>>> Therefore the following statement are wrong:
   >
   > >>>>>    mx_QueryCARSType_t.CARCONTROL =
   >
   > >>>              %trim(%editc(CRCON#:'Z'));
   >
   > >>>>> Error: mx_QueryCARSType_t is a template fields which can not
   >
   > >>>>> contain
   >
   > >> datadue to the "based(pDummy)" keyword.
   >
   > >>>>> Solution: Define your own file "QueryCARSType" using the
   template field:
   >
   > >>>>>    D QueryCARSType...
   >
   > >>>    D                 DS
   likeds(mx_QueryCARSType_t)
   >
   > >>>    D                                     inz
   >
   > >>>>>    D QueryCARSResponseType...
   >
   > >>>    D                 DS likeds(mx_QueryCARSResponseType_t)
   >
   > >>>    D                                     inz
   >
   > >>>>> Then change your code to:
   >
   > >>>>>    QueryCARSType.CARCONTROL =
   >
   > >>>              %trim(%editc(CRCON#:'Z'));
   >
   > >>>>>    CallP
   >
   > >>>      CARSSOAP11Port_QueryCARS
   >
   > >>>        (QueryCARSType:
   >
   > >>>           QueryCARSResponse);
   >
   > >>>>> Of course you should also enable the following statements in
   > order> to callthe web service stub procedure:
   >
   > >>>>> 003300  *DEFINE PROTOTYPE_WSMAXIMO03
   >
   > >>> 003400  *COPY WSMAXIMO,WSMAXIMO03
   >
   > >>> 003500  *UNDEFINE PROTOTYPE_WSMAXIMO03
   >
   > >>>>> There is no need to copy each and everything (prototypes and>
   > definitions)from WSMAXIMO03 to WSMXWRPR.
   >
   > >>>>> Thomas.
   >
   > >>>>>>> ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<[17]mailto:ftpapi-<
   > [18]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi->
   >
   > >>
   bounces@xxxxxxxxxxxxxxxxxxxxxx<[19]mailto:bounces@xxxxxxxxxxxxxxxxxxxxx
   m
   > >> schrieb am 06.09.2013 20:16:15:
   >
   > >>>>>> Von: gaurav.gupta3@xxxxxx<[20]mailto:gaurav.gupta3@xxxxxx<
   > [21]mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx>>
   >
   > >>>> An:
   >
   > >>>>
   ftpapi@xxxxxxxxxxxxxxxxxxxxxx<[22]mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx<
   >
   [23]mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi@lists.scottkle
   ment.com>
   >
   > >>> ,> Datum: 06.09.2013 20:25
   >
   > >>>> Betreff: RE: WSDL2RPG Failing - WSDL2RPG/
   > WSDL2R01.cbElementStart>> (Stmt: 231000) : Type must be 'anyType'..
   >
   > >>>> Gesendet von:
   ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<[24]mailto:ftpapi-<
   > [25]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi->
   >
   > >>
   bounces@xxxxxxxxxxxxxxxxxxxxxx<[26]mailto:bounces@xxxxxxxxxxxxxxxxxxxxx
   m>>
   >
   > >>>>> HI Thomas/Mike,
   >
   > >>>> As of I am trying to create a wrapper around the stubs generated
   >
   > >>>> but struggling to get it compile. Attached are source codes for
   > the>> wrapper and the web services stubs along with log of
   > compilation>> error which I am getting for Reference. Request your
   > inputs in>> troubleshooting the problem .
   >
   > >>>>> Thanks,
   >
   > >>>> Gaurav
   >
   > >>>> Gaurav Gupta
   >
   > >>>> Project Leader, GE(Contractor)
   >
   > >>>> GE Capital
   >
   > >>>> Rail Services
   >
   > >>>>> T:  +1 312-853-5536
   >
   > >>>> D: *750-5536
   >
   > >>>> C:  +1 847-337-1852
   >
   > >>>> gaurav.gupta3@xxxxxx<[27]mailto:gaurav.gupta3@xxxxxx<
   > [28]mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx>>>> 161
   N Clark St.
   >
   > >>>> Chicago, IL  - 60601, USA
   >
   > >>>>> -----Original Message-----
   >
   > >>>> From: Gupta, Gaurav (GE Capital, non-ge)> Sent: Monday, August
   26,
   >
   > >>>> 2013 1:56 PM
   >
   > >>>> To: HTTPAPI and FTPAPI Projects
   >
   > >>>> Subject: RE: WSDL2RPG Failing - WSDL2RPG/
   > WSDL2R01.cbElementStart>> (Stmt: 231000) : Type must be 'anyType'..
   >
   > >>>>> Mike,
   >
   > >>>> Thanks a ton for your inputs. Finally I was able to create the>>
   >
   > >>>> stubs. While running WSDL2RPG  I set value of 64 instead of 128
   >
   > >>>> for>
   >
   > >> default DIM size.
   >
   > >>>>> Thanks,
   >
   > >>>> Gaurav
   >
   > >>>>> Gaurav Gupta
   >
   > >>>> Project Leader, GE(Contractor)
   >
   > >>>> GE Capital
   >
   > >>>> Rail Services
   >
   > >>>>> T:  +1 312-853-5536
   >
   > >>>> D: *750-5536
   >
   > >>>> C:  +1 847-337-1852
   >
   > >>>> gaurav.gupta3@xxxxxx<[29]mailto:gaurav.gupta3@xxxxxx<
   > [30]mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx>>>> 161
   N Clark St.
   >
   > >>>> Chicago, IL  - 60601, USA
   >
   > >>>>> -----Original Message-----
   >
   > >>>> From: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<[31]mailto:ftpapi-<
   > [32]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi->
   >
   > >>
   bounces@xxxxxxxxxxxxxxxxxxxxxx<[33]mailto:bounces@xxxxxxxxxxxxxxxxxxxxx
   m>> [
   > [34]mailto:ftpapi-
   >
   > >>>>
   bounces@xxxxxxxxxxxxxxxxxxxxxx<[35]mailto:bounces@xxxxxxxxxxxxxxxxxxxxx
   <
   >
   [36]mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:bounces@lists.scottk
   lement.co>
   >
   > >>>> m
   >
   > >>> ] On Behalf Of Mike Krebs
   >
   > >>>> Sent: Tuesday, August 06, 2013 5:56 PM
   >
   > >>>> To: HTTPAPI and FTPAPI Projects
   >
   > >>>> Subject: RE: WSDL2RPG Failing - WSDL2RPG/
   > WSDL2R01.cbElementStart>> (Stmt: 231000) : Type must be 'anyType'..
   >
   > >>>>> I don't use WSDL2RPG but am familiar with this problem from
   > days> of> old and I have tested WSDL back before we moved to 7.1.
   >
   > >>>>> Here is a simple way to get going. Recreate your programs by
   >
   > >>>>> running
   >
   > >>>> the WSDL2RPG including:
   >
   > >>>>> DIM(25) STRLEN(64)
   >
   > >>>>> I didn't have time to find the size that will work for you, but
   >
   > >>>>> the> idea is to reduce the size of some of the structures in
   your
   >
   > >>>>> program
   >
   > >>>> until it fits. Does your program compile now?
   >
   > >>>>> Second way...
   >
   > >>>>> Look in WSMAXIMO. Find the array dimension statements. They
   are>
   >
   > >>>>> called DIM_Ax where x is a number. You will find them all set
   to
   >
   > >>>>> 128
   >
   > >>>> in your current version.
   >
   > >>>>> Take DIM_A1, do a search for where it is used. It is used on>>
   > CARS_CARSType. Now consider your web service. Do you need 128>>
   > instances of CARS_CARSType?
   >
   > >>>>> If the answer is no, decide what is good number. Change the>
   > DIM_A1> constant to be something smaller (hopefully).
   >
   > >>>>> Continue to do this for all 10 DIM constants.
   >
   > >>>> Recompile.
   >
   > >>>>> Does it compile now?
   >
   > >>>>>> -----Original Message-----
   >
   > >>>> From: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<[37]mailto:ftpapi-<
   > [38]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi->
   >
   > >>
   bounces@xxxxxxxxxxxxxxxxxxxxxx<[39]mailto:bounces@xxxxxxxxxxxxxxxxxxxxx
   m>> [
   > [40]mailto:ftpapi-
   >
   > >>>>
   bounces@xxxxxxxxxxxxxxxxxxxxxx<[41]mailto:bounces@xxxxxxxxxxxxxxxxxxxxx
   <
   >
   [42]mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:bounces@lists.scottk
   lement.co>
   >
   > >>>> m
   >
   > >>> ] On Behalf Of Gupta, Gaurav (GE>
   >
   > >>>> Capital, non-ge)
   >
   > >>>> Sent: Tuesday, August 06, 2013 5:02 PM
   > >>>> To: HTTPAPI and FTPAPI Projects
   >
   > >>>> Subject: RE: WSDL2RPG Failing - WSDL2RPG/
   > WSDL2R01.cbElementStart>> (Stmt: 231000) : Type must be 'anyType'..
   >
   > >>>>> Hi Thomas,
   >
   > >>>> I went through the FAQ document but unfortunately it didn't>
   > worked> out for me. I am attaching the stubs which got created>
   > after> importing the WSDL file. If you can have look at it and give>
   > some> direction it will really helpful as currently I am stuck and>
   > not> able to move forward.
   >
   > >>>>> Thanks,
   >
   > >>>> Gaurav
   >
   > >>>>> Gaurav Gupta
   >
   > >>>> Project Leader, GE(Contractor)
   >
   > >>>> GE Capital
   >
   > >>>> Rail Services
   >
   > >>>>> T:  +1 312-853-5536
   >
   > >>>> D: *750-5536
   >
   > >>>> C:  +1 847-337-1852
   >
   > >>>> gaurav.gupta3@xxxxxx<[43]mailto:gaurav.gupta3@xxxxxx<
   > [44]mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx>>
   >
   > >>>>> 161 N Clark St.
   >
   > >>>> Chicago, IL  - 60601, USA
   >
   > >>>>> -----Original Message-----
   >
   > >>>> From: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<[45]mailto:ftpapi-<
   > [46]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi->
   >
   > >>
   bounces@xxxxxxxxxxxxxxxxxxxxxx<[47]mailto:bounces@xxxxxxxxxxxxxxxxxxxxx
   m>> [
   > [48]mailto:ftpapi-
   >
   > >>>>
   bounces@xxxxxxxxxxxxxxxxxxxxxx<[49]mailto:bounces@xxxxxxxxxxxxxxxxxxxxx
   <
   >
   [50]mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:bounces@lists.scottk
   lement.co>
   >
   > >>>> m
   >
   > >>> ] On Behalf Of Thomas Raddatz
   >
   > >>>> Sent: Thursday, August 01, 2013 1:29 PM
   >
   > >>>> To: HTTPAPI and FTPAPI Projects
   >
   > >>>> Subject: Re: WSDL2RPG Failing - WSDL2RPG/
   > WSDL2R01.cbElementStart>> (Stmt: 231000) : Type must be 'anyType'..
   >
   > >>>>> Gaurav,
   >
   > >>>>> Please read FAQ "What to do in case of a RNF0501 compile
   > error>> message v1.0". It describes how to resolve the problem.
   >
   > >>>>> The PDF should be included in the WSDL2RPG zip file. But you
   can>
   >
   > >> also download it from here:
   >
   > >>>>>
   [51]http://www.tools400.de/English/Freeware/WSDL2RPG/wsdl2rpg.html
   >
   > >>>>> Basically your compile failed due to error message RNF0501,
   which>
   >
   > >>>>> means that you hit the 64k barrier of RPG. In order to solve
   the>
   >
   > >>>>> problem you need to reduce the size of your arrays and/or
   reduce
   >
   > >>>>> the
   >
   > >>>> size of your string fields.
   >
   > >>>>> Regards,
   >
   > >>>>> Thomas.
   >
   > >>>>> Am 01.08.2013 16:31, schrieb Gupta, Gaurav (GE Capital,
   non-ge):
   >
   > >>>>> Thomas,
   >
   > >>>>> Apologies, I send you the wrong file. Attached is the correct
   one.
   >
   > >>>>>
   >
   > >>>>>
   >
   > >>>>> Thanks,
   >
   > >>>>> Gaurav
   >
   > >>>>> Gaurav Gupta
   >
   > >>>>> Project Leader, GE(Contractor)
   >
   > >>>>> GE Capital
   >
   > >>>>> Rail Services
   >
   > >>>>>
   >
   > >>>>> T:  +1 312-853-5536
   >
   > >>>>> D: *750-5536
   >
   > >>>>> C:  +1 847-337-1852
   >
   > >>>>> gaurav.gupta3@xxxxxx<[52]mailto:gaurav.gupta3@xxxxxx<
   > [53]mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx>>
   >
   > >>>>>
   >
   > >>>>> 161 N Clark St.
   >
   > >>>>> Chicago, IL  - 60601, USA
   >
   > >
   >
   > >>>>>
   >
   > >>>>>
   >
   > >>>>> -----Original Message-----
   >
   > >>>>> From: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<[54]mailto:ftpapi-<
   > [55]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi->
   >
   > >>
   bounces@xxxxxxxxxxxxxxxxxxxxxx<[56]mailto:bounces@xxxxxxxxxxxxxxxxxxxxx
   m>>
   >
   > >>>>> [[57]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of
   >
   > >>>>> Thomas>
   >
   > >>>>>> Raddatz
   >
   > >>>>> Sent: Thursday, August 01, 2013 4:40 AM
   >
   > >>>>> To: HTTPAPI and FTPAPI Projects
   >
   > >>>>> Subject: Re: WSDL2RPG Failing - WSDL2RPG/
   >
   > >> WSDL2R01.cbElementStart> (Stmt: 231000) : Type must be 'anyType'..
   >
   > >>>>>
   >
   > >>>>> Gaurav,
   >
   > >>>>>
   >
   > >>>>> That problem seems to be an authorization problem, doesn't it?
   >
   > >>>>>
   >
   > >>>>>            *  Enable performance collection  . :   *PEP
   >
   > >>>>>            *  Profiling data . . . . . . . . . :   *NOCOL
   >
   > >>>>>
   >
   > >>>>>
   *----------------------------------------------------------------
   >
   > >>>>> ---
   >
   > >>>>> -* Module not replaced. Need *OBJEXIST and *OBJMGT authority.
   >
   > >>>>>              * * * * *   E N D   O F   C O M P I L A T I O N *
   * * **
   >
   > >>>>>                                                       > Rpt
   from>
   >
   > >>>>>> USRACDEV <
   >
   > >>>>>
   >
   > >>>>> Apparently the modules already exists and you are not allowed>
   > to> delete it due to missing authority. Maybe EDTOBJAUT can shed>
   > some lighton it.
   >
   > >>>>>
   >
   > >>>>> Regards,
   >
   > >>>>>
   >
   > >>>>> Thomas.
   >
   > >>>>>
   >
   > >>>>> Am 31.07.2013 23:12, schrieb Gupta, Gaurav (GE Capital,
   non-ge):
   >
   > >>>>>> Hi Thomas,
   >
   > >>>>>> Need some further assistance on the subject matter. After>>
   > importing the wsdl file using WSDL2RPG I am trying to create the>>
   > modules. But compilations are failing. Attached is the file>>
   > highlighting the errors I am getting and WSDL file which has been>>
   > imported. Please have a look and suggest.
   >
   > >>>>>>
   >
   > >>>>>> Thanks,
   >
   > >>>>>> Gaurav
   >
   > >>>>>>
   >
   > >>>>>> Gaurav Gupta
   >
   > >>>>>> Project Leader, GE(Contractor)
   >
   > >>>>>> GE Capital
   >
   > >>>>>> Rail Services
   >
   > >>>>>>
   >
   > >>>>>> T:  +1 312-853-5536
   >
   > >>>>>> D: *750-5536
   >
   > >>>>>> C:  +1 847-337-1852
   >
   > >>>>>> gaurav.gupta3@xxxxxx<[58]mailto:gaurav.gupta3@xxxxxx<
   > [59]mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx>>
   >
   > >>>>>>
   >
   > >>>>>> 161 N Clark St.
   >
   > >>>>>> Chicago, IL  - 60601, USA
   >
   > >>>>>>
   >
   > >>>>>>
   >
   > >>>>>> -----Original Message-----
   >
   > >>>>>> From: Gupta, Gaurav (GE Capital, non-ge)
   >
   > >>>>>> Sent: Wednesday, July 17, 2013 9:57 AM
   >
   > >>>>>> To: HTTPAPI and FTPAPI Projects
   >
   > >>>>>> Subject: RE: WSDL2RPG Failing - WSDL2RPG/
   >
   > >> WSDL2R01.cbElementStart> (Stmt: 231000) : Type must be 'anyType'..
   >
   > >>>>>>
   >
   > >>>>>> Thanks Thomas!! It was a great help. Iam able to
   > successfully>> create the stb module.
   >
   > >>>>>>
   >
   > >>>>>> Thanks,
   >
   > >>>>>> Gaurav
   >
   > >>>>>>
   >
   > >>>>>> Gaurav Gupta
   >
   > >>>>>> Project Leader, GE(Contractor)
   >
   > >>>>>> GE Capital
   >
   > >>>>>> Rail Services
   >
   > >>>>>>
   >
   > >>>>>> T:  +1 312-853-5536
   >
   > >>>>>> D: *750-5536
   >
   > >>>>>> C:  +1 847-337-1852
   >
   > >>>>>> gaurav.gupta3@xxxxxx<[60]mailto:gaurav.gupta3@xxxxxx<
   > [61]mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx>>
   >
   > >>>>>>
   >
   > >>>>>> 161 N Clark St.
   >
   > >>>>>> Chicago, IL  - 60601, USA
   >
   > >>>>>>
   >
   > >>>>>>
   >
   > >>>>>> -----Original Message-----
   >
   > >>>>>> From:
   ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<[62]mailto:ftpapi-<
   > [63]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi->
   >
   > >>
   bounces@xxxxxxxxxxxxxxxxxxxxxx<[64]mailto:bounces@xxxxxxxxxxxxxxxxxxxxx
   m>>
   >
   > >>>>>> [[65]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] On Behalf
   Of
   >
   > >>>>>> Thomas>
   >
   > >>>>>>>> Raddatz
   >
   > >>>>>> Sent: Wednesday, July 17, 2013 4:32 AM
   >
   > >>>>>> To: HTTPAPI and FTPAPI Projects
   >
   > >>>>>> Subject: Re: WSDL2RPG Failing - WSDL2RPG/
   >
   > >> WSDL2R01.cbElementStart> (Stmt: 231000) : Type must be 'anyType'..
   >
   > >>>>>>
   >
   > >>>>>> Gaurav,
   >
   > >>>>>>
   >
   > >>>>>> You need library LIBHTTP on the system where you want to>
   > install> WSDL2RPG because WSDL2RPG uses HTTP API under the cover.>
   > Without> library LIBHTTP the installer (actually the compiler)>
   > cannot find> the copy books of HTTP API.
   >
   > >>>>>>
   >
   > >>>>>> I do not know why you cannot see v1.15.8, but it is there.
   > Is> it> possible that you use a proxy server to connect to the
   Internet?
   >
   > >> If> the answer is "yes", then it might possible that the proxy
   holds
   >
   > >> an oldcopy.
   >
   > >>>>>>
   >
   > >>>>>> Please try the following direct links to download both files:
   >
   > >>>>>>
   >
   > >>>>>>
   [66]http://www.tools400.de/Downloads/Freeware/Tools/wsdl2rpg.zip
   >
   > >>>>>>
   [67]http://www.tools400.de/Downloads/Freeware/Tools/wsdl2rpg_v1.15.8
   >
   > >>>>>> .zi
   >
   > >>>>>> p
   >
   > >>>>>>
   >
   > >>>>>> The first one is the original file. That file might also be>>
   >
   > >>>>>> cached somewhere and therefore you may get v1.15.7. The second
   >
   > >>>>>> link>
   >
   > >> points to a renamed copy of the original 1.15.8 file and that
   > link>> cannot be cached, because it is new.
   >
   > >>>>>>
   >
   > >>>>>> Last but not least starting from tomorrow I may not be able
   to>
   >
   > >> answer any questions for the next 10 days.
   >
   > >>>>>>
   >
   > >>>>>> Regards,
   >
   > >>>>>>
   >
   > >>>>>> Thomas.
   >
   > >>>>>>
   >
   > >>>>>> Am 17.07.2013 00:23, schrieb Gupta, Gaurav (GE Capital,
   non-ge):
   >
   > >>>>>>>        Thomas,
   >
   > >>>>>>>
   >
   > >>>>>>>        I think I found the latest version under V1.15.7. I>>
   > started installing
   >
   > >>>>>>>        the tool and it failed. Below is the snapshot of
   > error>> message. Is it
   >
   > >>>>>>>        because in my system I don't have LIBHTTP. Please
   suggest.
   >
   > >>>>>>>
   >
   > >>>>>>>        [[68]cid:image003.jpg@01CE8249.3BDB14C0]
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >
   >
   > >>>>>>
   >
   > >>>>>>>        Thanks,
   >
   > >>>>>>>
   >
   > >>>>>>>        Gaurav
   >
   > >>>>>>>
   >
   > >>>>>>>        Gaurav Gupta
   >
   > >>>>>>>
   >
   > >>>>>>>        Project Leader, GE(Contractor)
   >
   > >>>>>>>
   >
   > >>>>>>>        GE Capital
   >
   > >>>>>>>
   >
   > >>>>>>>        Rail Services
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        T:  +1 312-853-5536
   >
   > >>>>>>>
   >
   > >>>>>>>        D: *750-5536
   >
   > >>>>>>>
   >
   > >>>>>>>        C:  +1 847-337-1852
   >
   > >>>>>>>
   >
   > >>>>>>>        gaurav.gupta3@xxxxxx<[69]mailto:gaurav.gupta3@xxxxxx<
   > [70]mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        161 N Clark St.
   >
   > >>>>>>>
   >
   > >>>>>>>        Chicago, IL  - 60601, USA
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        -----Original Message-----
   >
   > >>>>>>>        From: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<<
   > [71]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3c>
   >
   > >> [72]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx>
   >
   > >>>>>>>        [[73]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] On
   > BehalfOfGupta,
   >
   > >>>>>>>        Gaurav (GE Capital, non-ge)
   >
   > >>>>>>>        Sent: Tuesday, July 16, 2013 4:06 PM
   >
   > >>>>>>>        To: HTTPAPI and FTPAPI Projects
   >
   > >>>>>>>        Subject: RE: WSDL2RPG Failing - WSDL2RPG/
   >
   > >>>> WSDL2R01.cbElementStart (Stmt:
   >
   > >>>>>>>        231000) : Type must be 'anyType'..
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        Thomas,
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        I did cleared my cache but still do not see
   thelatestversion.
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        [[1][74]cid:image003.jpg@01CE823E.633C1BF0]
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        Thanks,
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        Gaurav
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        Gaurav Gupta
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        Project Leader, GE(Contractor)
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        GE Capital
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        Rail Services
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        T:  +1 312-853-5536
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        D: *750-5536
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        C:  +1 847-337-1852
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   [2]gaurav.gupta3@xxxxxx<[75]mailto:gaurav.gupta3@xxxxxx<
   > [76]mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        161 N Clark St.
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        Chicago, IL  - 60601, USA
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        -----Original Message-----
   >
   > >>>>>>>
   >
   > >>>>>>>        From: [3]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<<
   > [77]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3c>
   >
   > >> [78]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx>
   >
   > >>>>>>>        [[4][79]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx]
   > On>> Behalf Of Thomas
   >
   > >>>>>>>        Raddatz
   >
   > >>>>>>>
   >
   > >>>>>>>        Sent: Tuesday, July 16, 2013 3:03 PM
   >
   > >>>>>>>
   >
   > >>>>>>>        To: HTTPAPI and FTPAPI Projects
   >
   > >>>>>>>
   >
   > >>>>>>>        Subject: Re: WSDL2RPG Failing - WSDL2RPG/
   >
   > >>>> WSDL2R01.cbElementStart (Stmt:
   >
   > >>>>>>>        231000) : Type must be 'anyType'..
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        Gaurav,
   >
   > >>>>>>>
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        I uploaded v1.15.8 today at noon. Now it is night,
   > soitshould be
   >
   > >>>>>>>        there.
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        At least I can see it here, in Germany. ;-)
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        Please ensure that your Internet browser displays
   > the>> actual page and
   >
   > >>>>>>>        not a cached version. For example, in Firefox that
   isCtrl+R.
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        Regards,
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        Thomas.
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        Am 16.07.2013 20:26, schrieb Gupta, Gaurav
   (GECapital,non-ge):
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Thomas ,
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > On the below link I am finding the latest version as
   v1.
   >
   > >>>> 15.7. Where
   >
   > >>>>>>>        can I get v1.15.8?
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > [5][80]http://www.tools400.de/English/english.html
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Thanks,
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Gaurav
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Gaurav Gupta
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Project Leader, GE(Contractor)
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > GE Capital
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Rail Services
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > T:  +1 312-853-5536
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > D: *750-5536
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > C:  +1 847-337-1852
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   [6]gaurav.gupta3@xxxxxx<[81]mailto:gaurav.gupta3@xxxxxx<<
   > [82]mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx%3c>
   >
   > >> [83]mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > 161 N Clark St.
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Chicago, IL  - 60601, USA
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > -----Original Message-----
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > From:
   >
   > >>>>>>>
   [7]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<[84]mailto:ftpapi-<<
   > [85]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-%3c>
   >
   > >> [86]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi->
   >
   > >>>> bounces@xxxxxxxx<[87]mailto:bounces@xxxxxxxx<
   > [88]mailto:bounces@xxxxxxxx%3cmailto:bounces@xxxxxxxx>>
   >
   > >>>>>>>        ottklement.com>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   [[8][89]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] On
   >
   > >>>>>>> Behalf> >>> Of Gupta,
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Gaurav (GE Capital, non-ge)
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Sent: Tuesday, July 16, 2013 11:52 AM
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > To: HTTPAPI and FTPAPI Projects
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Subject: RE: WSDL2RPG Failing-WSDL2RPG/
   > WSDL2R01.cbElementStart
   >
   > >>>>>>>        (Stmt: 231000) : Type must be 'anyType'..
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Thomas,
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > This installation of the tool does not need to
   happen
   >
   > >>>>>>> in
   >
   > >>>> Production.
   >
   > >>>>>>>        I mean I will install this tool in dev and create my>
   > stub> and move this
   >
   > >>>>>>>        stub to production. Do I need additional objects as>
   > well> be moved into
   >
   > >>>>>>>        production.
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Thanks,
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Gaurav
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > -----Original Message-----
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > From:
   >
   > >>>>>>>
   [9]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<[90]mailto:ftpapi-<<
   > [91]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-%3c>
   >
   > >> [92]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi->
   >
   > >>>> bounces@xxxxxxxx<[93]mailto:bounces@xxxxxxxx<
   > [94]mailto:bounces@xxxxxxxx%3cmailto:bounces@xxxxxxxx>>
   >
   > >>>>>>>        ottklement.com>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   [[10][95]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] OnBehalfOf
   >
   > >>>>>>>        Gupta,
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Gaurav (GE Capital, non-ge)
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Sent: Tuesday, July 16, 2013 9:56 AM
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > To: HTTPAPI and FTPAPI Projects
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Subject: RE: WSDL2RPG Failing-WSDL2RPG/
   > WSDL2R01.cbElementStart
   >
   > >>>>>>>        (Stmt: 231000) : Type must be 'anyType'..
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Hi Thomas,
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Thanks for the response. Does this means I need
   > touninstallthe
   >
   > >>>>>>>        current version and install the latest version or
   > canbothversion
   >
   > >>>>>>>        reside. One more thing does WSDL2RPG has any impact
   > onOSupgrade.
   >
   > >
   >
   > >>>>>>        There is a plan to upgrade the OS from V5R4 to V7R1.
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Thanks,
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Gaurav
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Gaurav Gupta
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Project Leader, GE(Contractor)
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > GE Capital
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Rail Services
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > T:  +1 312-853-5536
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > D: *750-5536
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > C:  +1 847-337-1852
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   [11]gaurav.gupta3@xxxxxx<[96]mailto:gaurav.gupta3@xxxxxx<<
   > [97]mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx%3c>
   >
   > >> [98]mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > 161 N Clark St.
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Chicago, IL  - 60601, USA
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > -----Original Message-----
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > From:
   >
   > >>>>>>>
   [12]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<[99]mailto:ftpapi-<<
   >
   [100]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-%3c>
   >
   > >>
   [101]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi->
   >
   > >>>>
   bounces@lists.s<[102]mailto:bounces@lists.s<[103]mailto:bounces@lists.s
   %
   > 3cmailto:bounces@lists.s>>
   >
   > >>>>>>>        cottklement.com>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   [[13][104]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] On
   >
   > >>>>>>> BehalfOf
   >
   > >>>>>>>>>        Thomas
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Raddatz
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Sent: Tuesday, July 16, 2013 5:03 AM
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > To: HTTPAPI and FTPAPI Projects
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Subject: Re: WSDL2RPG Failing-WSDL2RPG/
   > WSDL2R01.cbElementStart
   >
   > >>>>>>>        (Stmt: 231000) : Type must be 'anyType'..
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Gaurav,
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > I am sorry, but v1.6 was released in September
   > 2008> and> hence is far
   >
   > >>>>>>>        too old. If I remember correctly this problem has
   beenfixedwith
   >
   > >>>>>>>        v1.7.2, but I would not go with that version. It
   > isalsofarto old:
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Version 1.7.2 - 27.07.2009
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > --------------------------
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Fixed:   Now initializing complex types to
   > 'anyType'> in> case it does
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >            not have further type information,
   > e.g.:>> <xsd:complexType
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >            name="Documentos"/>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Please download and install the current version
   1.15.
   >
   > >> 8> and give it a
   >
   > >>>>>>>        try.
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > If it generates a stub for your current wsdl file,>
   > and> if you want to
   >
   > >>>>>>>        use it in production, please carefully test v1.15.8>
   > with> your existing
   >
   > >>>>>>>        stub modules. I am pretty sure that your old stub
   > modulesworkwith
   >
   > >>>>>>>        1.15.8, but we all know Murphy's Law.
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Regards,
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Thomas.
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > Am 15.07.2013 23:52, schrieb Gupta, Gaurav
   > (GECapital,non-ge):
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      Hi Thomas,
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      I am trying to consume a WSDL file published>
   > from IBMMaximo
   >
   > >>>>>>>        using
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      WSDL2RPG command. Current version is V1.6.
   > Iamgetting the
   >
   > >>>>>>>        below
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      error.
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      WSDL2RPG URL('file:/gaurav/cars.wsdl')
   >
   > >>>>>>>        SRCFILE(TEST#N28/QMAXIMO)
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      SRCMBR(WS
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      1852)
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      WSDL2RPG/WSDL2R01.cbElementStart (Stmt:
   > 231000)> :> Type must be
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      'anyType'..
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      Message file WSDL2RPG in *LIBL not
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      found.
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      The call to main ended in error (C G D
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      F).
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      D
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      The call to main ended in error (C G D
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      F).
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      D
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      Library RBTCONLIB not found.
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      Application error.  CPF2407 unmonitored by
   BASICS1at
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      statement
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>        0000054300, instruction
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      X'0000'.
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      Can you please suggest.
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      Thanks,
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>      Gaurav
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   ---------------------------------------------------------------
   >
   > >>>>>>> ---
   >
   > >>>>>>> --
   >
   > >>>>>>> -
   >
   > >
   >
   > >>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >> -
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >> - This is the FTPAPI mailing list.  To
   > unsubscribe,> pleasego to:
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>> [14][105]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   ---------------------------------------------------------------
   >
   > >>>>>>> ---
   >
   > >>>>>>> --
   >
   > >>>>>>> -
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >> -
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >> -
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   ---------------------------------------------------------------
   >
   > >>>>>>> ---
   >
   > >>>>>>> --
   >
   > >>>>>>> -
   >
   > >>>>>>> -
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > - This is the FTPAPI mailing list.  To
   > unsubscribe,pleasego to:
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   [15][106]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   ---------------------------------------------------------------
   >
   > >>>>>>> ---
   >
   > >>>>>>> --
   >
   > >>>>>>> -
   >
   > >>>>>>> -
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > -
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   ---------------------------------------------------------------
   >
   > >>>>>>> ---
   >
   > >>>>>>> --
   >
   > >>>>>>> -
   >
   > >>>>>>> -
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > - This is the FTPAPI mailing list.  To
   > unsubscribe,pleasego to:
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   [16][107]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   ---------------------------------------------------------------
   >
   > >>>>>>> ---
   >
   > >>>>>>> --
   >
   > >>>>>>> -
   >
   > >>>>>>> -
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > -
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   ---------------------------------------------------------------
   >
   > >>>>>>> ---
   >
   > >>>>>>> --
   >
   > >>>>>>> -
   >
   > >>>>>>> -
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > - This is the FTPAPI mailing list.  To
   > unsubscribe,pleasego to:
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   [17][108]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   ---------------------------------------------------------------
   >
   > >>>>>>> ---
   >
   > >>>>>>> --
   > >>>>>>> -
   >
   > >>>>>>> -
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > -
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   ---------------------------------------------------------------
   >
   > >>>>>>> ---
   >
   > >>>>>>> --
   >
   > >>>>>>> -
   >
   > >>>>>>> -
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > - This is the FTPAPI mailing list.  To
   > unsubscribe,pleasego to:
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   [18][109]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   ---------------------------------------------------------------
   >
   > >>>>>>> ---
   >
   > >>>>>>> --
   >
   > >>>>>>> -
   >
   > >>>>>>> -
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        > -
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        >
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   ---------------------------------------------------------------
   >
   > >>>>>>> ---
   >
   > >>>>>>> --
   >
   > >>>>>>> -
   >
   > >>>>>>> -
   >
   > >>>>>>> -
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>        This is the FTPAPI mailing list.  To unsubscribe,
   pleasegoto:
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   [19][110]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   ---------------------------------------------------------------
   >
   > >>>>>>> ---
   >
   > >>>>>>> --
   >
   > >>>>>>> -
   >
   > >>>>>>> -
   >
   > >>>>>>> -
   >
   > >>>>>>>
   >
   > >>>>>>> References
   >
   > >>>>>>>
   >
   > >>>>>>>        1. [111]cid:image003.jpg@01CE823E.633C1BF0
   >
   > >>>>>>>        2. [112]mailto:gaurav.gupta3@xxxxxx
   >
   > >>>>>>>        3. [113]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >
   > >>>>>>>        4. [114]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >
   > >>>>>>>        5. [115]http://www.tools400.de/English/english.html
   >
   > >>>>>>>        6.
   [116]mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx
   >
   > >>>>>>>        7.
   [117]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%<<
   > [118]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%25%3c>
   >
   > >> [119]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%25>
   >
   > >>>> 3cmailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >
   > >>>>>>>        8. [120]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >
   > >>>>>>>        9.
   [121]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%<<
   > [122]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%25%3c>
   >
   > >> [123]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%25>
   >
   > >>>> 3cmailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >
   > >>>>>>>       10. [124]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >
   > >>>>>>>       11.
   [125]mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx
   >
   > >>>>>>>       12.
   [126]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%<<
   > [127]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%25%3c>
   >
   > >> [128]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%25>
   >
   > >>>> 3cmailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >
   > >>>>>>>       13. [129]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >
   > >>>>>>>       14.
   [130]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>>>>       15.
   [131]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>>>>       16.
   [132]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>>>>       17.
   [133]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>>>>       18.
   [134]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>>>>       19.
   [135]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   >
   > >>>>>>>
   ---------------------------------------------------------------
   >
   > >>>>>>> ---
   >
   > >>>>>>> --
   >
   > >>>>>>> -
   >
   > >>>>>>> -
   >
   > >>>>>>> - This is the FTPAPI mailing list.  To unsubscribe, please go
   to:
   >
   > >>>>>>> [136]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>>>>
   ---------------------------------------------------------------
   >
   > >>>>>>> ---
   >
   > >>>>>>> --
   >
   > >>>>>>> -
   >
   > >>>>>>> -
   >
   > >>>>>>> -
   >
   > >>>>>>>
   >
   > >>>>>>
   ----------------------------------------------------------------
   >
   > >>>>>> ---
   >
   > >>>>>> --
   >
   > >>>>>> -
   >
   > >>>>>> - This is the FTPAPI mailing list.  To unsubscribe, please go
   to:
   >
   > >>>>>> [137]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>>>
   ----------------------------------------------------------------
   >
   > >>>>>> ---
   >
   > >>>>>> --
   >
   > >>>>>> -
   >
   > >>>>>> -
   >
   > >>>>>>
   >
   > >>>>>>
   >
   > >>>>>>
   >
   > >>>>>>
   ----------------------------------------------------------------
   >
   > >>>>>> ---
   >
   > >>>>>> --
   >
   > >>>>>> -
   >
   > >>>>>> - This is the FTPAPI mailing list.  To unsubscribe, please go
   to:
   >
   > >>>>>> [138]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>>>
   ----------------------------------------------------------------
   >
   > >>>>>> ---
   >
   > >>>>>> --
   >
   > >>>>>> -
   >
   > >>>>>> -
   >
   > >>>>>>
   >
   > >>>>>
   -----------------------------------------------------------------
   >
   > >>>>> ---
   >
   > >>>>> --
   >
   > >>>>> - This is the FTPAPI mailing list.  To unsubscribe, please go
   to:
   >
   > >>>>> [139]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>>
   -----------------------------------------------------------------
   >
   > >>>>> ---
   >
   > >>>>> --
   >
   > >>>>> -
   >
   > >>>>>
   >
   > >>>>>
   >
   > >>>>>
   >
   > >>>>>
   -----------------------------------------------------------------
   >
   > >>>>> ---
   >
   > >>>>> --
   >
   > >>>>> - This is the FTPAPI mailing list.  To unsubscribe, please go
   to:
   >
   > >>>>> [140]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>>
   -----------------------------------------------------------------
   >
   > >>>>> ---
   >
   > >>>>> --
   >
   > >>>>> -
   >
   > >>>>>
   >
   > >>>>
   -------------------------------------------------------------------
   >
   > >>>> ---
   >
   > >>>> - This is the FTPAPI mailing list.  To unsubscribe, please go
   to:
   >
   > >>>> [141]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>
   -------------------------------------------------------------------
   >
   > >>>> ---
   >
   > >>>> -
   >
   > >>>>
   -------------------------------------------------------------------
   >
   > >>>> ---
   >
   > >>>> - This is the FTPAPI mailing list.  To unsubscribe, please go
   to:
   >
   > >>>> [142]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >>>>
   -------------------------------------------------------------------
   >
   > >>>> ---
   >
   > >>>> - [Anhang "SecureZIP Attachments.zip" gelöscht von Thomas
   >
   > >>>> Raddatz/OBI/
   >
   > >>>>
   DE]----------------------------------------------------------------
   >
   > >>>> ---
   >
   > >>>> ---- This is the FTPAPI mailing list.  To unsubscribe, please go
   to:
   >
   > >>>> [143]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.
   >
   > >> [Anhang "SecureZIP Attachments.zip" gelöscht von Thomas
   Raddatz/OBI/
   >
   > >>
   DE]------------------------------------------------------------------
   >
   > >> -
   >
   > >> ---- This is the FTPAPI mailing list.  To unsubscribe, please go
   to:
   >
   > >> [144]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:
   >
   > > [145]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   > >
   ----------------------------------------------------------------------
   >
   > > -
   >
   > >
   >
   >
   -----------------------------------------------------------------------
   >
   > This is the FTPAPI mailing list.  To unsubscribe, please go to:
   >
   > [146]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   >
   -----------------------------------------------------------------------
   > [Anhang "SecureZIP Attachments.zip" gelöscht von Thomas Raddatz/OBI/
   > DE]
   -----------------------------------------------------------------------
   > This is the FTPAPI mailing list.  To unsubscribe, please go to:
   > [147]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-
   2. mailto:gaurav.gupta3@xxxxxx
   3. mailto:ftpapi-
   4. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   5. mailto:thomas.raddatz@xxxxxx
   6. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   7. mailto:ftpapi-
   8. mailto:gaurav.gupta3@xxxxxx
   9. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  10. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  11. mailto:gaurav.gupta3@xxxxxx
  12. mailto:ftpapi-
  13. mailto:ftpapi-
  14. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx
  15. mailto:thomas.raddatz@xxxxxx
  16. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  17. mailto:ftpapi-
  18. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-
  19. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx
  20. mailto:gaurav.gupta3@xxxxxx
  21. mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx
  22. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  23. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  24. mailto:ftpapi-
  25. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-
  26. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx
  27. mailto:gaurav.gupta3@xxxxxx
  28. mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx
  29. mailto:gaurav.gupta3@xxxxxx
  30. mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx
  31. mailto:ftpapi-
  32. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-
  33. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx
  34. mailto:ftpapi-
  35. mailto:bounces@xxxxxxxxxxxxxxxxxxxxx
  36. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:bounces@xxxxxxxxxxxxxxxxxxxxx
  37. mailto:ftpapi-
  38. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-
  39. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx
  40. mailto:ftpapi-
  41. mailto:bounces@xxxxxxxxxxxxxxxxxxxxx
  42. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:bounces@xxxxxxxxxxxxxxxxxxxxx
  43. mailto:gaurav.gupta3@xxxxxx
  44. mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx
  45. mailto:ftpapi-
  46. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-
  47. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx
  48. mailto:ftpapi-
  49. mailto:bounces@xxxxxxxxxxxxxxxxxxxxx
  50. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:bounces@xxxxxxxxxxxxxxxxxxxxx
  51. http://www.tools400.de/English/Freeware/WSDL2RPG/wsdl2rpg.html
  52. mailto:gaurav.gupta3@xxxxxx
  53. mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx
  54. mailto:ftpapi-
  55. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-
  56. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx
  57. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  58. mailto:gaurav.gupta3@xxxxxx
  59. mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx
  60. mailto:gaurav.gupta3@xxxxxx
  61. mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx
  62. mailto:ftpapi-
  63. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-
  64. mailto:bounces@xxxxxxxxxxxxxxxxxxxxxx
  65. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  66. http://www.tools400.de/Downloads/Freeware/Tools/wsdl2rpg.zip
  67. http://www.tools400.de/Downloads/Freeware/Tools/wsdl2rpg_v1.15.8
  68. cid:image003.jpg@01CE8249.3BDB14C0
  69. mailto:gaurav.gupta3@xxxxxx
  70. mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx
  71. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3c
  72. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  73. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  74. cid:image003.jpg@01CE823E.633C1BF0
  75. mailto:gaurav.gupta3@xxxxxx
  76. mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx
  77. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3c
  78. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  79. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  80. http://www.tools400.de/English/english.html
  81. mailto:gaurav.gupta3@xxxxxx
  82. mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx%3c
  83. mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx
  84. mailto:ftpapi-
  85. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-%3c
  86. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-
  87. mailto:bounces@xxxxxxxx
  88. mailto:bounces@xxxxxxxx%3cmailto:bounces@xxxxxxxx
  89. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  90. mailto:ftpapi-
  91. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-%3c
  92. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-
  93. mailto:bounces@xxxxxxxx
  94. mailto:bounces@xxxxxxxx%3cmailto:bounces@xxxxxxxx
  95. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  96. mailto:gaurav.gupta3@xxxxxx
  97. mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx%3c
  98. mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx
  99. mailto:ftpapi-
 100. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-%3c
 101. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-
 102. mailto:bounces@lists.s
 103. mailto:bounces@lists.s%
 104. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 105. http://www.scottklement.com/mailman/listinfo/ftpapi
 106. http://www.scottklement.com/mailman/listinfo/ftpapi
 107. http://www.scottklement.com/mailman/listinfo/ftpapi
 108. http://www.scottklement.com/mailman/listinfo/ftpapi
 109. http://www.scottklement.com/mailman/listinfo/ftpapi
 110. http://www.scottklement.com/mailman/listinfo/ftpapi
 111. cid:image003.jpg@01CE823E.633C1BF0
 112. mailto:gaurav.gupta3@xxxxxx
 113. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 114. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 115. http://www.tools400.de/English/english.html
 116. mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx
 117. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%
 118. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%25%3c
 119. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%25
 120. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 121. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%
 122. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%25%3c
 123. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%25
 124. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 125. mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx
 126. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%
 127. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%25%3c
 128. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%25
 129. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 130. http://www.scottklement.com/mailman/listinfo/ftpapi
 131. http://www.scottklement.com/mailman/listinfo/ftpapi
 132. http://www.scottklement.com/mailman/listinfo/ftpapi
 133. http://www.scottklement.com/mailman/listinfo/ftpapi
 134. http://www.scottklement.com/mailman/listinfo/ftpapi
 135. http://www.scottklement.com/mailman/listinfo/ftpapi
 136. http://www.scottklement.com/mailman/listinfo/ftpapi
 137. http://www.scottklement.com/mailman/listinfo/ftpapi
 138. http://www.scottklement.com/mailman/listinfo/ftpapi
 139. http://www.scottklement.com/mailman/listinfo/ftpapi
 140. http://www.scottklement.com/mailman/listinfo/ftpapi
 141. http://www.scottklement.com/mailman/listinfo/ftpapi
 142. http://www.scottklement.com/mailman/listinfo/ftpapi
 143. http://www.scottklement.com/mailman/listinfo/ftpapi
 144. http://www.scottklement.com/mailman/listinfo/ftpapi
 145. http://www.scottklement.com/mailman/listinfo/ftpapi
 146. http://www.scottklement.com/mailman/listinfo/ftpapi
 147. 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
-----------------------------------------------------------------------