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

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 

161 N Clark St.
Chicago, IL  - 60601, USA

-----Original Message-----
From: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx [mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] 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 [mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] 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

161 N Clark St.
Chicago, IL  - 60601, USA

-----Original Message-----
From: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx [mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] 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:

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
>
> 161 N Clark St.
> Chicago, IL  - 60601, USA
>
>
> -----Original Message-----
> From: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
> [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 light on 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
>>
>> 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
>>
>> 161 N Clark St.
>> Chicago, IL  - 60601, USA
>>
>>
>> -----Original Message-----
>> From: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> [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 old copy.
>>
>> Please try the following direct links to download both files:
>>
>> http://www.tools400.de/Downloads/Freeware/Tools/wsdl2rpg.zip
>> http://www.tools400.de/Downloads/Freeware/Tools/wsdl2rpg_v1.15.8.zip
>>
>> 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.
>>>
>>>       [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
>>>
>>>
>>>       161 N Clark St.
>>>
>>>       Chicago, IL  - 60601, USA
>>>
>>>
>>>
>>>       -----Original Message-----
>>>       From: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>>>       [mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of Gupta,
>>>       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 the latest version.
>>>
>>>
>>>       [[1]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
>>>
>>>
>>>
>>>
>>>       161 N Clark St.
>>>
>>>
>>>       Chicago, IL  - 60601, USA
>>>
>>>
>>>
>>>
>>>
>>>
>>>       -----Original Message-----
>>>
>>>       From: [3]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>>>       [[4]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, so it should 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 is Ctrl+R.
>>>
>>>
>>>
>>>
>>>       Regards,
>>>
>>>
>>>
>>>
>>>       Thomas.
>>>
>>>
>>>
>>>
>>>       Am 16.07.2013 20:26, schrieb Gupta, Gaurav (GE Capital, 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]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<mailto:gaurav.gupta3@xxxxxx>
>>>
>>>
>>>       >
>>>
>>>
>>>       > 161 N Clark St.
>>>
>>>
>>>       > Chicago, IL  - 60601, USA
>>>
>>>
>>>       >
>>>
>>>
>>>       >
>>>
>>>
>>>       > -----Original Message-----
>>>
>>>
>>>       > From:
>>>       [7]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<mailto:ftpapi-bounces@xxxxxxxx
>>>       ottklement.com>
>>>
>>>
>>>       > [[8]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<mailto:ftpapi-bounces@xxxxxxxx
>>>       ottklement.com>
>>>
>>>
>>>       > [[10]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of
>>>       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 to uninstall the
>>>       current version and install the latest version or can both version
>>>       reside. One more thing does WSDL2RPG has any impact on OS upgrade.
>>>       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<mailto:gaurav.gupta3@xxxxxx>
>>>
>>>
>>>       >
>>>
>>>
>>>       > 161 N Clark St.
>>>
>>>
>>>       > Chicago, IL  - 60601, USA
>>>
>>>
>>>       >
>>>
>>>
>>>       > -----Original Message-----
>>>
>>>
>>>       > From:
>>>       [12]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx<mailto:ftpapi-bounces@lists.s
>>>       cottklement.com>
>>>
>>>
>>>       > [[13]mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of
>>>       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 been fixed with
>>>       v1.7.2, but I would not go with that version. It is also far to 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 modules work with
>>>       1.15.8, but we all know Murphy's Law.
>>>
>>>
>>>       >
>>>
>>>
>>>       > Regards,
>>>
>>>
>>>       >
>>>
>>>
>>>       > Thomas.
>>>
>>>
>>>       >
>>>
>>>
>>>       > Am 15.07.2013 23:52, schrieb Gupta, Gaurav (GE Capital, non-ge):
>>>
>>>
>>>       >>      Hi Thomas,
>>>
>>>
>>>       >>
>>>
>>>
>>>       >>      I am trying to consume a WSDL file published from IBM Maximo
>>>       using
>>>
>>>
>>>       >>      WSDL2RPG command. Current version is V1.6. I am getting 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 BASICS1 at
>>>
>>>
>>>       >>      statement
>>>
>>>
>>>       >>
>>>
>>>
>>>       >>        0000054300, instruction
>>>
>>>
>>>       >>      X'0000'.
>>>
>>>
>>>       >>
>>>
>>>
>>>       >>
>>>
>>>
>>>       >>      Can you please suggest.
>>>
>>>
>>>       >>
>>>
>>>
>>>       >>
>>>
>>>
>>>       >>      Thanks,
>>>
>>>
>>>       >>
>>>
>>>
>>>       >>      Gaurav
>>>
>>>
>>>       >>
>>>
>>>
>>>       >>
>>>
>>>
>>>       >>
>>>
>>>
>>>       >>
>>>
>>> --------------------------------------------------------------------
>>> -
>>>
>>>
>>>       >> -
>>>
>>>
>>>       >> - This is the FTPAPI mailing list.  To unsubscribe, please go to:
>>>
>>>
>>>       >> [14]http://www.scottklement.com/mailman/listinfo/ftpapi
>>>
>>>
>>>       >>
>>>
>>> --------------------------------------------------------------------
>>> -
>>>
>>>
>>>       >> -
>>>
>>>
>>>       >> -
>>>
>>>
>>>       >>
>>>
>>>
>>>       >
>>>
>>> --------------------------------------------------------------------
>>> -
>>> -
>>>
>>>
>>>       > - This is the FTPAPI mailing list.  To unsubscribe, please go to:
>>>
>>>
>>>       > [15]http://www.scottklement.com/mailman/listinfo/ftpapi
>>>
>>>
>>>       >
>>>
>>> --------------------------------------------------------------------
>>> -
>>> -
>>>
>>>
>>>       > -
>>>
>>>
>>>       >
>>>
>>> --------------------------------------------------------------------
>>> -
>>> -
>>>
>>>
>>>       > - This is the FTPAPI mailing list.  To unsubscribe, please go to:
>>>
>>>
>>>       > [16]http://www.scottklement.com/mailman/listinfo/ftpapi
>>>
>>>
>>>       >
>>>
>>> --------------------------------------------------------------------
>>> -
>>> -
>>>
>>>
>>>       > -
>>>
>>>
>>>       >
>>>
>>> --------------------------------------------------------------------
>>> -
>>> -
>>>
>>>
>>>       > - This is the FTPAPI mailing list.  To unsubscribe, please go to:
>>>
>>>
>>>       > [17]http://www.scottklement.com/mailman/listinfo/ftpapi
>>>
>>>
>>>       >
>>>
>>> --------------------------------------------------------------------
>>> -
>>> -
>>>
>>>
>>>       > -
>>>
>>>
>>>       >
>>>
>>> --------------------------------------------------------------------
>>> -
>>> -
>>>
>>>
>>>       > - This is the FTPAPI mailing list.  To unsubscribe, please go to:
>>>
>>>
>>>       > [18]http://www.scottklement.com/mailman/listinfo/ftpapi
>>>
>>>
>>>       >
>>>
>>> --------------------------------------------------------------------
>>> -
>>> -
>>>
>>>
>>>       > -
>>>
>>>
>>>       >
>>>
>>>
>>>
>>> --------------------------------------------------------------------
>>> -
>>> -
>>> -
>>>
>>>
>>>       This is the FTPAPI mailing list.  To unsubscribe, please go to:
>>>
>>>
>>>       [19]http://www.scottklement.com/mailman/listinfo/ftpapi
>>>
>>>
>>>
>>> --------------------------------------------------------------------
>>> -
>>> -
>>> -
>>>
>>> References
>>>
>>>       1. cid:image003.jpg@01CE823E.633C1BF0
>>>       2. mailto:gaurav.gupta3@xxxxxx
>>>       3. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>>>       4. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>>>       5. http://www.tools400.de/English/english.html
>>>       6. mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx
>>>       7. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>>>       8. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>>>       9. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>>>      10. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>>>      11. mailto:gaurav.gupta3@xxxxxx%3cmailto:gaurav.gupta3@xxxxxx
>>>      12. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx%3cmailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>>>      13. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>>>      14. http://www.scottklement.com/mailman/listinfo/ftpapi
>>>      15. http://www.scottklement.com/mailman/listinfo/ftpapi
>>>      16. http://www.scottklement.com/mailman/listinfo/ftpapi
>>>      17. http://www.scottklement.com/mailman/listinfo/ftpapi
>>>      18. http://www.scottklement.com/mailman/listinfo/ftpapi
>>>      19. 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
> ----------------------------------------------------------------------
> -
>
-----------------------------------------------------------------------
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
-----------------------------------------------------------------------