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

RE Ftpapi Digest, Vol 81, Issue 10



   hi
   ok i correct and it is working well
   thanks for your help
   regards
   Gilles Renne
   Inactive hide details for ftpapi-request---05/07/2013
   09:26:06---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   ftpapi-request---05/07/2013
   09:26:06---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx

   ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
       Envoyé par : ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
       05/07/2013 08:51


            Veuillez répondre à
       ftpapi@xxxxxxxxxxxxxxxxxxxxxx


   A

        ftpapi@xxxxxxxxxxxxxxxxxxxxxx

   cc

   Objet

        Ftpapi Digest, Vol 81, Issue 10

   Réf.

   Send Ftpapi mailing list submissions to
   ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   To subscribe or unsubscribe via the World Wide Web, visit
   [1]http://scottklement.com/mailman/listinfo/ftpapi
   or, via email, send a message with subject or body 'help' to
   ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   You can reach the person managing the list at
   ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
   When replying, please edit your Subject line so it is more specific
   than "Re: Contents of Ftpapi digest..."
   Today's Topics:
     1. Re: RE Ftpapi Digest, Vol 81, Issue 8 (thomas.raddatz@xxxxxx)
   ----------------------------------------------------------------------
   Message: 1
   Date: Fri, 5 Jul 2013 08:51:26 +0200
   From: thomas.raddatz@xxxxxx
   To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   Subject: Re: RE Ftpapi Digest, Vol 81, Issue 8
   Message-ID:
   <OF2E88874F.0D62CB35-ONC1257B9F.002146A6-C1257B9F.0025AAE0@xxxxxx>
   Content-Type: text/plain; charset="iso-8859-1"
   Gilles,
   For now I do not have any idea how to handle you chineese '&'
   correctly.
   Therefore all I can do is to let you decide whether or not you need to
   encode your string values. This way WSDL2RPG works the same as HTTP API
   does. Therefore you need to set 'g_doEncodeXmlEntities' to 'cFalse' (=
   *OFF).
   When 'g_doEncodeXmlEntities' is set to 'cFalse', string values are not
   automatically encoded and, for example, your '&' is not changed to
   '&amp;'. If you need to encode your string values, you need to call
   XmlEntityEncoder_encode() before you assign the value to the input data
   structure (= SOAP request message).
   Usually (with 'g_doEncodeXmlEntities = cTrue') you can directly assign
   the
   value to the data structure and WSDL2RPG will enocde the value under
   the
   cover:
     // 'Jill & Joe' is encoded to 'Jill &amp; Joe'
     requestMsg.whatever.aField = 'Jill & Joe';
   With 'g_doEncodeXmlEntities = cFalse' WSDL2RPG will not encode the
   value:
     // 'Jill & Joe' is not changed
     requestMsg.whatever.aField = 'Jill & Joe';
     // 'Jill & Joe' is encoded to 'Jill &amp; Joe'
     requestMsg.whatever.aField = XmlEntityEncoder_encode('Jill & Joe');
   > now i have the same error than you
   > -1: Failed unmarshalling value '*N' of field '*N'.
   Did you replace WSDL2R98 with the latest version that I posted,
   yesterday?
   Please double check the procedure GenericStream_write() looks like
   this:
    if (i_buflen = 0); // These 3 lines
       return 0;       // have been added!
    endif;
    size = Generic_write(i_fd: i_pBuffer: i_buflen);
    if (size = -1);
       clear USR5018;
       USR50181 = f_errno();
       USR50182 = f_strerror(f_errno());
       AppMsg_sendEscMsgAndDump(AppMsg_new('USR5018': USR5018));
    endif;
   Regards,
   Thomas.
   ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 04.07.2013 14:40:07:
   > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   > Kopie: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   > Datum: 04.07.2013 14:51
   > Betreff: RE Ftpapi Digest, Vol 81, Issue 8
   > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >
   >
   > hi
   >
   > in fact i do not understand that i need to put g_doEncodeXmlEntities
   value
   > to cfalse
   > now i have the same error than you
   > -1: Failed unmarshalling value '*N' of field '*N'.
   >
   >
   > regards
   >
   > Gilles Renne
   >
   >
   >
   >
   >
   >              ftpapi-request@li
   >              sts.scottklement.
   >              com A
   >              Envoy? par :              ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >              ftpapi-bounces@li cc
   >              sts.scottklement.
   >              com Objet
   >                                        Ftpapi Digest, Vol 81, Issue 8
   > R?f.
   >              04/07/2013 12:03
   >
   >
   >              Veuillez r?pondre
   >                      ?
   >              ftpapi@xxxxxxxxxx
   >                tklement.com
   >
   >
   >
   >
   >
   >
   > Send Ftpapi mailing list submissions to
   >        ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >
   > To subscribe or unsubscribe via the World Wide Web, visit
   >        [2]http://scottklement.com/mailman/listinfo/ftpapi
   > or, via email, send a message with subject or body 'help' to
   >        ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   >
   > You can reach the person managing the list at
   >        ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
   >
   > When replying, please edit your Subject line so it is more specific
   > than "Re: Contents of Ftpapi digest..."
   >
   >
   > Today's Topics:
   >
   >    1. Re: Problem to send DB characters - Remove Escape characters
   >       (thomas.raddatz@xxxxxx)
   >
   >
   >
   ----------------------------------------------------------------------
   >
   > Message: 1
   > Date: Thu, 4 Jul 2013 12:03:45 +0200
   > From: thomas.raddatz@xxxxxx
   > To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > Subject: Re: Problem to send DB characters - Remove Escape characters
   > Message-ID:
   >
   > <OF2645C1E1.03B11DE5-ONC1257B9E.00361690-C1257B9E.003746B7@xxxxxx>
   > Content-Type: text/plain; charset="iso-8859-1"
   >
   >
   > Gilles,
   >
   > My integration test found an error for elements with no data. For
   these
   > elements the following messages showed up in the job log and the HTTP
   API
   > debug log:
   >
   > Job log:
   > --------
   >
   > The length requested for storage allocation is out of range.
   > Failed unmarshalling value '*N' of field '*N'.
   >
   >
   > HTTP API debug log:
   > -------------------
   >
   > WSDL2RPG: call stack frames:
   > Program      Library      Act.Group    Statement    Procedure
   > QCMD         QSYS         *DFTACTGRP        /04F8
   > START#RZ     RADDATZ      *DFTACTGRP                _CL_PEP
   > START#RZ     RADDATZ      *DFTACTGRP   6000         START#RZ
   > QUOCPP       QPDA         *DFTACTGRP        /079D
   > QUOMAIN      QPDA         *DFTACTGRP        /1139
   > QUOCMD       QSYS         *DFTACTGRP        /03B3
   > WSDLIPMR17   RADDATZ      *NEW
   _QRNP_PEP_WSDLIPMR17
   > WSDLIPMR17   RADDATZ      *NEW         37600        WSDLIPMR17
   > WSDLIPMR17   RADDATZ      *NEW         178700       MAIN
   > WSDLIPMR17   RADDATZ      *NEW         159000
   > FARMACLICK2005001FCKRICHIESTADOCUMENTO_FCKRICHIESTADOCUMENTO
   > PMR017A      RADDATZ      *NEW         728
   > Farmaclick2005001FCKRichiestaDocumento_FCKRichiestaDocumento
   > WSDL2RPGRT   RADDATZ      *NEW         354200
   > WSDL2R98_Marshaller_toStringV6
   > WSDL2RPGRT   RADDATZ      *NEW         35200
   > WSDL2R90_AppMsg_sendEscMsgAndDump
   > WSDL2RPGRT   RADDATZ      *NEW         39300
   > WSDL2R71_http_DebugLog_dumpCallStack
   > WSDL2RPGRT   RADDATZ      *NEW         20200 WSDL2R80_CallStack_dump
   >
   >
   > WSDL2RPG: USR5023: Failed unmarshalling value '*N' of field '*N'.
   >                    Cause . . . . . :   The following error message
   > prevented the value of field '*N' from being retrieved from XPath
   '*N/*N'.
   > Message text  . :   The length requested for storage allocation is
   out
   of
   > range.
   >           received from procedure: BASICS1R1_f_sndPgmMsg
   >                     and statement: 54400
   > ** 2013-07-04-11.49.56.091000: Leaving
   > Farmaclick2005001FCKRichiestaDocumento_FCKRichiestaDocumento()
   >
   >
   >
   > Since your debug log is empty, there must be a different problem on
   your
   > side. Nevertheless, you should replace WSDL2R98 with the attached
   member.
   >
   > Did you have time to debug WSDL2R98 at your side? What is the result?
   >
   > Regards,
   >
   > Thomas.
   >
   >
   >
   >
   > ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 03.07.2013 22:44:22:
   >
   > > Von: thomas.raddatz@xxxxxxxxxxx
   > > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   > > Datum: 03.07.2013 22:59
   > > Betreff: Re: Problem to send DB characters - Remove Escape
   characters
   > > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   > >
   > > Gilles,
   > >
   > > It is hard to believe that it does not work for you. It is true
   that I
   > did
   > > not run a complete integration test but I tested the new
   functionality
   > with
   > > an extensive RPGUnit test. The procedures I tested are:
   > >
   > >     Marshaller_toString()
   > >     Marshaller_toStringV6()
   > >     XmlEntityEncoder_encode()
   > >     XmlEntityEncoder_encodeLarge()
   > >     XmlEntityEncoder_encodeV6()
   > >
   > > May you please start the debugger for service program WSDL2RPGRT
   and
   > module
   > > WSDL2R98 and add a breakpoint to the marshaller that your stub
   uses.
   For
   >
   > > example, starting at Marshaller_toString(), the program flow is
   like
   > this:
   > >
   > >     Marshaller_toString()
   > >     -> encodeXmlEntityToFieldV6() // adapter procedure
   > >        -> encodeXmlEntityToStream()
   > >           -> GenericStream_write()
   > >
   > > And for the V6 counterpart it is:
   > >
   > >     Marshaller_toStringV6()
   > >        -> encodeXmlEntityToStream()
   > >           -> GenericStream_write()
   > >
   > > So if the entity encoder is disabled the program should go through
   > > encodeXmlEntityToStream() in both cases. From
   encodeXmlEntityToStream()
   > it
   > > should directly call GenericStream_write() without going through
   > > encodeXmlEntityToStreamInternally().
   > >
   > > GenericStream_write() either writes the data to the output field or
   for
   > the
   > > new V6 procedures directly appends the data to a
   > "ManagedMemoryDataSource".
   > >
   > > For the "old" non V6 procedures the data of the output field is
   > indirectly
   > > appended to a "ManagedMemoryDataSource". First it is returned to
   the
   > stub
   > > module and added to the "request" field. Then the "request" field
   is
   > > periodically appended to the "ManagedMemoryDataSource".
   > >
   > > Eventually the data of the "ManagedMemoryDataSource" is passed as
   POST
   > data
   > > to HTTPAPI. That is easier than it first appears to be. Just as a
   side
   > note
   > > the "ManagedMemoryDataSource" is a combined memory and IFS file
   buffer.
   > It
   > > uses the memory buffer as long as there is memory available. As
   soon
   as
   > > there is no more memory left, it switches to the slower file
   buffer.
   > That
   > > way there is no limit for the POST data.
   > >
   > > Important to know: You do not need to look at the
   > > "ManagedMemoryDataSource". I told you about it, to let you know,
   how
   > your
   > > input data flows from the input data structure through the
   Marshallers,
   > the
   > > Xml entity encoder and the "ManagedMemoryDataSource" until it ends
   up
   as
   >
   > > the POST data in HTTP API.
   > >
   > > So if your data goes through GenericStream_write(), it must be
   added
   to
   > the
   > > POST data of your request message.
   > >
   > > I am going to run my complete test suite tomorrow and for sure I
   let
   you
   >
   > > know the result.
   > >
   > > Regards,
   > >
   > > Thomas.
   > >
   > >
   > >
   > > Am 03.07.2013 15:17, schrieb gilles.renne@xxxxxxxxxxxxxxxxx:
   > > >     Hi
   > > >     i receive Bad request  now
   > > >     and i have nothing in httpapi_debug file
   > > >     regards
   > > >     Gilles Renne
   > > >     Inactive hide details for ftpapi-request---02/07/2013
   > > >     13:45:29---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   > > >     ftpapi-request---02/07/2013
   > > >     13:45:29---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   > > >
   > > >     ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   > > >         Envoy? par : ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   > > >         02/07/2013 13:14
   > > >
   > > >
   > > >              Veuillez r?pondre ?
   > > >         ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >
   > > >
   > > >     A
   > > >
   > > >          ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >
   > > >     cc
   > > >
   > > >     Objet
   > > >
   > > >          Ftpapi Digest, Vol 81, Issue 4
   > > >
   > > >     R?f.
   > > >
   > > >     Send Ftpapi mailing list submissions to
   > > >     ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >     To subscribe or unsubscribe via the World Wide Web, visit
   > > >     [1][3]http://scottklement.com/mailman/listinfo/ftpapi
   > > >     or, via email, send a message with subject or body 'help' to
   > > >     ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   > > >     You can reach the person managing the list at
   > > >     ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
   > > >     When replying, please edit your Subject line so it is more
   > specific
   > > >     than "Re: Contents of Ftpapi digest..."
   > > >     Today's Topics:
   > > >       1. RE Ftpapi Digest, Vol 81, Issue 3
   > (gilles.renne@xxxxxxxxxxxxxxxxx)
   > > >       2. Re: RE Ftpapi Digest, Vol 81, Issue 3
   (thomas.raddatz@xxxxxx)
   > > >
   ----------------------------------------------------------------------
   > > >     Message: 1
   > > >     Date: Tue, 2 Jul 2013 12:56:21 +0200
   > > >     From: gilles.renne@xxxxxxxxxxxxxxxxx
   > > >     To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >     Cc: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   > > >     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   > > >     Subject: RE Ftpapi Digest, Vol 81, Issue 3
   > > >     Message-ID:
   > > >
   >
   <OF58795E0F.39BA6186-ONC1257B9C.003BEBEC-C1257B9C.003C1783@LocalDomain>
   > > >     Content-Type: text/plain; charset="iso-8859-1"
   > > >     hi
   > > >     i have a compilation error
   > > >     USR50203 is not find
   > > >     regards
   > > >     Gilles Renne
   > > >
   > > >
   > > >                 ftpapi-request@li
   > > >
   > > >                 sts.scottklement.
   > > >
   > > >                 com
   > > >     A
   > > >                 Envoy? par : ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >
   > > >                 ftpapi-bounces@li
   > > >     cc
   > > >                 sts.scottklement.
   > > >
   > > >                 com
   > > >     Objet
   > > >                                           Ftpapi Digest, Vol 81,
   Issue
   > 3
   > > >
   > > >
   > > >     R?f.
   > > >                 02/07/2013 11:12
   > > >
   > > >
   > > >
   > > >
   > > >
   > > >                 Veuillez r?pondre
   > > >
   > > >                         ?
   > > >
   > > >                 ftpapi@xxxxxxxxxx
   > > >
   > > >                   tklement.com
   > > >
   > > >
   > > >
   > > >
   > > >
   > > >     Send Ftpapi mailing list submissions to
   > > >      ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >     To subscribe or unsubscribe via the World Wide Web, visit
   > > >      [2][4]http://scottklement.com/mailman/listinfo/ftpapi
   > > >     or, via email, send a message with subject or body 'help' to
   > > >      ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   > > >     You can reach the person managing the list at
   > > >      ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
   > > >     When replying, please edit your Subject line so it is more
   > specific
   > > >     than "Re: Contents of Ftpapi digest..."
   > > >     Today's Topics:
   > > >       1. Re: Problem to send DB characters - Remove Escape
   characters
   > > >          (thomas.raddatz@xxxxxx)
   > > >
   ----------------------------------------------------------------------
   > > >     Message: 1
   > > >     Date: Tue, 2 Jul 2013 11:12:41 +0200
   > > >     From: thomas.raddatz@xxxxxx
   > > >     To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >     Subject: Re: Problem to send DB characters - Remove Escape
   > characters
   > > >     Message-ID:
   > > >
   <OF93CBA716.D3999555-ONC1257B9C.00312B7E-C1257B9C.003299DF@xxxxxx>
   > > >     Content-Type: text/plain; charset="us-ascii"
   > > >     Gilles,
   > > >     I added some procedures to module WSDL2R98 of service program
   > > >     WSDL2RPGRT
   > > >     to control the integrated XML entity encoder. Replace the
   existing
   > > >     source
   > > >     members and reinstall WSDL2RPG if you want to use the new
   > procedures:
   > > >      //  Enables/disables the integrated XML entity encode.
   > > >      XmlEntityEncoder_setEnabled(isEnabled)
   > > >      //  Returns the enabled status of the integrated XML entity
   > encoder.
   > > >      isEnabled = XmlEntityEncoder_isEnabled()
   > > >      //  Encodes XML entities up to 64k (V5R4 and lower).
   > > >      encoded = XmlEntityEncoder_encode(i_value)
   > > >      //  Encodes XML entities up to 1MB (V6R1 or higher).
   > > >      encoded = XmlEntityEncoder_encodeLarge(i_value)
   > > >      //  Encodes XML entities up to 16MB (V6R1 or higher).
   > > >      XmlEntityEncoder_encodeV6(
   > > >         i_value: %addr(encoded): %addr(encoded: *DATA):
   > %size(encoded));
   > > >     Regards,
   > > >     Thomas.
   > > >     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 01.07.2013
   > 14:33:34:
   > > >     > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   > > >     > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   > > >     > Datum: 01.07.2013 14:41
   > > >     > Betreff: Problem to send DB characters - Remove Escape
   > characters
   > > >     > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   > > >     >
   > > >     >
   > > >     > Hi,
   > > >     >
   > > >     > I try to send chineese characters like
   > > >     >
   > > >     > when i view this on Iseries
   > > >     > i see
   > > >     >
   > > >     >
   > > >     >
   > > >     > So chineese characters 5075
   > > >     >
   > > >     > has a & , then this characters is remove for escape
   characters
   > > >     function
   > > >     > ( XmlEntityEncoder_encodeToStream)
   > > >     >
   > > >     > and then after the i_conv  function is wrong because a db
   > character
   > > >     lost
   > > >     > one hexa decimal value.
   > > >     >
   > > >     > what can i do do prevent this ?????
   > > >     >
   > > >     > regards
   > > >     >
   > > >     > Gilles Renne
   > > >     > This message contains confidential information. To know
   more,
   > please
   > > >     > click on the following link: [3]
   > [5]http://disclaimer.bureauveritas.com
   > > >     > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
   entfernt]
   > > >     > [Bild entfernt]
   > > >     >
   > > >
   >
   -----------------------------------------------------------------------
   > > >     > This is the FTPAPI mailing list.  To unsubscribe, please go
   to:
   > > >     > [4][6]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.
   > > >     -------------- next part --------------
   > > >       Gilles,
   > > >       I added some procedures to module WSDL2R98 of service
   program
   > > >       WSDL2RPGRT to control the integrated XML entity encoder.
   Replace
   > the
   > > >       existing source members and reinstall WSDL2RPG if you want
   to
   > use the
   > > >       new procedures:
   > > >         //  Enables/disables the integrated XML entity encode.
   > > >         XmlEntityEncoder_setEnabled(isEnabled)
   > > >         //  Returns the enabled status of the integrated XML
   entity
   > > >     encoder.
   > > >         isEnabled = XmlEntityEncoder_isEnabled()
   > > >         //  Encodes XML entities up to 64k (V5R4 and lower).
   > > >         encoded = XmlEntityEncoder_encode(i_value)
   > > >         //  Encodes XML entities up to 1MB (V6R1 or higher).
   > > >         encoded = XmlEntityEncoder_encodeLarge(i_value)
   > > >         //  Encodes XML entities up to 16MB (V6R1 or higher).
   > > >         XmlEntityEncoder_encodeV6(
   > > >            i_value: %addr(encoded): %addr(encoded: *DATA):
   > %size(encoded));
   > > >       Regards,
   > > >       Thomas.
   > > >       ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 01.07.2013
   > 14:33:34:
   > > >       > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   > > >       > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   > > >       > Datum: 01.07.2013 14:41
   > > >       > Betreff: Problem to send DB characters - Remove Escape
   > characters
   > > >       > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   > > >       >
   > > >       >
   > > >       > Hi,
   > > >       >
   > > >       > I try to send chineese characters like
   > > >       >
   > > >       > when i view this on Iseries
   > > >       > i see
   > > >       >
   > > >       >
   > > >       >
   > > >       > So chineese characters 5075
   > > >       >
   > > >       > has a & , then this characters is remove for escape
   characters
   > > >       function
   > > >       > ( XmlEntityEncoder_encodeToStream)
   > > >       >
   > > >       > and then after the i_conv  function is wrong because a db
   > character
   > > >       lost
   > > >       > one hexa decimal value.
   > > >       >
   > > >       > what can i do do prevent this ?????
   > > >       >
   > > >       > regards
   > > >       >
   > > >       > Gilles Renne
   > > >       > This message contains confidential information. To know
   more,
   > > >     please
   > > >       > click on the following link:
   > > >     [1][5][7]http://disclaimer.bureauveritas.com
   > > >       > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
   > entfernt]
   > > >       > [Bild entfernt]
   > > >       >
   > > >
   > > >
   >
   -----------------------------------------------------------------------
   > > >       > This is the FTPAPI mailing list.  To unsubscribe, please
   go
   > to:
   > > >       >
   [2][6][8]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. [7][9]http://disclaimer.bureauveritas.com/
   > > >       2.
   [8][10]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >     -------------- next part --------------
   > > >     A non-text attachment was scrubbed...
   > > >     Name: Patch_XmlEncoder_for_v1.15.5+.zip
   > > >     Type: application/zip
   > > >     Size: 31638 bytes
   > > >     Desc: not available
   > > >     URL: <
   > > >     [9]
   >
   [11]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
   d
   > > >     e9/attachment.zip
   > > >     >
   > > >     ------------------------------
   > > >
   >
   -----------------------------------------------------------------------
   > > >     This is the FTPAPI mailing list digest.  To unsubscribe, go
   to:
   > > >     [10][12]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >
   >
   -----------------------------------------------------------------------
   > > >     End of Ftpapi Digest, Vol 81, Issue 3
   > > >     *************************************
   > > >     This message contains confidential information. To know more,
   > please
   > > >     click on the following link: [11]
   > [13]http://disclaimer.bureauveritas.com
   > > >     -------------- next part --------------
   > > >       hi
   > > >       i have a compilation error
   > > >       USR50203 is not find
   > > >       regards
   > > >       Gilles Renne
   > > >       Inactive hide details for ftpapi-request---02/07/2013
   > > >       11:39:55---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   > > >       ftpapi-request---02/07/2013
   > > >       11:39:55---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   > > >       ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   > > >           Envoy? par : ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   > > >           02/07/2013 11:12
   > > >                Veuillez r?pondre ?
   > > >           ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >       A
   > > >            ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >       cc
   > > >       Objet
   > > >            Ftpapi Digest, Vol 81, Issue 3
   > > >       R?f.
   > > >       Send Ftpapi mailing list submissions to
   > > >       ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >       To subscribe or unsubscribe via the World Wide Web, visit
   > > >       [1][12][14]http://scottklement.com/mailman/listinfo/ftpapi
   > > >       or, via email, send a message with subject or body 'help'
   to
   > > >       ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   > > >       You can reach the person managing the list at
   > > >       ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
   > > >       When replying, please edit your Subject line so it is more
   > specific
   > > >       than "Re: Contents of Ftpapi digest..."
   > > >       Today's Topics:
   > > >         1. Re: Problem to send DB characters - Remove Escape
   > characters
   > > >            (thomas.raddatz@xxxxxx)
   > > >
   > > >
   ----------------------------------------------------------------------
   > > >       Message: 1
   > > >       Date: Tue, 2 Jul 2013 11:12:41 +0200
   > > >       From: thomas.raddatz@xxxxxx
   > > >       To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >       Subject: Re: Problem to send DB characters - Remove Escape
   > characters
   > > >       Message-ID:
   > > >
   <OF93CBA716.D3999555-ONC1257B9C.00312B7E-C1257B9C.003299DF@xxxxxx>
   > > >       Content-Type: text/plain; charset="us-ascii"
   > > >       Gilles,
   > > > &nbs p;     I added some procedures to module WSDL2R98 of service
   program
   > > >       WSDL2RPGRT
   > > >       to control the integrated XML entity encoder. Replace the
   > existing
   > > >       source
   > > >       members and reinstall WSDL2RPG if you want to use the new
   > procedures:
   > > >        //  Enables/disables the integrated XML entity encode.
   > > >        XmlEntityEncoder_setEnabled(isEnabled)
   > > >        //  Returns the enabled status of the integrated XML
   entity
   > encoder.
   > > >        isEnabled = XmlEntityEncoder_isEnabled()
   > > >        //  Encodes XML entities up to 64k (V5R4 and lower).
   > > >        encoded = XmlEntityEncoder_encode(i_value)
   > > >        //  Encodes XML entities up to 1MB (V6R1 or higher).
   > > >        encoded = XmlEntityEncoder_encodeLarge(i_value)
   > > >        //  Encodes XML entities up to 16MB (V6R1 or higher).
   > > >        XmlEntityEncoder_encodeV6(
   > > >           i_value: %addr(encoded): %addr(encoded: *DATA):
   > %size(encoded));
   > > >       Regards,
   > > >       Thomas.
   > > >       ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 01.07.2013
   > 14:33:34:
   > > >       > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   > > >       > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   > > >       > Datum: 01.07.2013 14:41
   > > >       > Betreff: Problem to send DB characters - Remove Escape
   > characters
   > > >       > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   > > >       >
   > > >       >
   > > >       > Hi,
   > > >       >
   > > >       > I try to send chineese characters like
   > > >       >
   > > >       > when i view this on Iseries
   > > >       > i see
   > > >       >
   > > >       >
   > > >       >
   > > >       > So chineese characters 5075
   > > >       >
   > > >       > has a & , then this characters is remove for escape
   characters
   > > >       function
   > > >       > ( XmlEntityEncoder_encodeToStream)
   > > >       >
   > > >       > and then after the i_conv  function is wrong because a db
   > character
   > > >       lost
   > > >       > one hexa decimal value.
   > > >       >
   > > >       > what can i do do prevent this ?????
   > > >       >
   > > >       > regards
   > > >       >
   > > >       > Gilles Renne
   > > >       > This message contains confidential information. To know
   more,
   > > >     please
   > > >       > click on the following link:
   > > >     [2][13][15]http://disclaimer.bureauveritas.com
   > > >       > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
   > entfernt]
   > > >       > [Bild entfernt]
   > > >       >
   > > >
   > > >
   >
   -----------------------------------------------------------------------
   > > >       > This is the FTPAPI mailing list.  To unsubscribe, please
   go
   > to:
   > > >       >
   [3][14][16]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.
   > > >       -------------- next part --------------
   > > >         Gilles,
   > > >         I added some procedures to module WSDL2R98 of service
   program
   > > >         WSDL2RPGRT to control the integrated XML entity encoder.
   > Replace
   > > >     the
   > > >         existing source members and reinstall WSDL2RPG if you
   want
   to
   > use
   > > >     the
   > > >         new procedures:
   > > >           //  Enables/disables the integrated XML entity encode.
   > > >           XmlEntityEncoder_setEnabled(isEnabled)
   > > >           //  Returns the enabled status of the integrated XML
   entity
   > > >       encoder.
   > > >           isEnabled = XmlEntityEncoder_isEnabled()
   > > >           //  Encodes XML entities up to 64k (V5R4 and lower).
   > > >           encoded = XmlEntityEncoder_encode(i_value)
   > > >           //  Encodes XML entities up to 1MB (V6R1 or higher).
   > > >           encoded = XmlEntityEncoder_encodeLarge(i_value)
   > > >           //  Encodes XML entities up to 16MB (V6R1 or higher).
   > > >           XmlEntityEncoder_encodeV6(
   > > >              i_value: %addr(encoded): %addr(encoded: *DATA):
   > > >     %size(encoded));
   > > >         Regards,
   > > >         Thomas.
   > > >         ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   01.07.2013
   > > >     14:33:34:
   > > >         > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   > > >         > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   > > >         > Datum: 01.07.2013 14:41
   > > >         > Betreff: Problem to send DB characters - Remove Escape
   > characters
   > > >         > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   > > >         >
   > > >         >
   > > >         > Hi,
   > > >         >
   > > >         > I try to send chineese characters like
   > > >         >
   > > >         > when i view this on Iseries
   > > >         > i see
   > > >         >
   > > >         >
   > > >         >
   > > >         > So chineese characters 5075
   > > >         >
   > > >         > has a & , then this characters is remove for escape
   > characters
   > > >         function
   > > >         > ( XmlEntityEncoder_encodeToStream)
   > > >         >
   > > >         > and then after the i_conv  function is wrong because a
   db
   > > >     character
   > > >         lost
   > > >         > one hexa decimal value.
   > > >         >
   > > >         > what can i do do prevent this ?????
   > > >         >
   > > >         > regards
   > > >         >
   > > >         > Gilles Renne
   > > >         > This message contains confidential information. To know
   > more,
   > > >       please
   > > >         > click on the following link:
   > > >       [1][4][15][17]http://disclaimer.bureauveritas.com
   > > >         > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
   > entfernt]
   > > >         > [Bild entfernt]
   > > >         >
   > > >
   > > >
   >
   -----------------------------------------------------------------------
   > > >         > This is the FTPAPI mailing list.  To unsubscribe,
   please
   go
   > to:
   > > >         > [2][5][16]
   > [18]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. [6][17][19]http://disclaimer.bureauveritas.com/
   > > >         2. [7][18]
   [20]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >       -------------- next part --------------
   > > >       A non-text attachment was scrubbed...
   > > >       Name: Patch_XmlEncoder_for_v1.15.5+.zip
   > > >       Type: application/zip
   > > >       Size: 31638 bytes
   > > >       Desc: not available
   > > >       URL:
   > > >
   > > >     <[8][19]
   > [21]http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
   > > >     ea97
   > > >       de9/attachment.zip>
   > > >       ------------------------------
   > > >
   > > >
   >
   -----------------------------------------------------------------------
   > > >       This is the FTPAPI mailing list digest.  To unsubscribe, go
   to:
   > > >
   [9][20][22]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >
   > > >
   >
   -----------------------------------------------------------------------
   > > >       End of Ftpapi Digest, Vol 81, Issue 3
   > > >       *************************************
   > > >       This message contains confidential information. To know
   more,
   > please
   > > >       click on the following link: [21]
   > [23]http://disclaimer.bureauveritas.com
   > > >     References
   > > >       1. [22][24]http://scottklement.com/mailman/listinfo/ftpapi
   > > >       2. [23][25]http://disclaimer.bureauveritas.com/
   > > >       3.
   [24][26]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >       4. [25][27]http://disclaimer.bureauveritas.com/
   > > >       5.
   [26][28]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >       6. [27][29]http://disclaimer.bureauveritas.com/
   > > >       7.
   [28][30]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >       8.
   > > >     [29]
   >
   [31]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
   > > >     de9/attachment.zip
   > > >       9.
   [30][32]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >     -------------- next part --------------
   > > >     A non-text attachment was scrubbed...
   > > >     Name: graycol.gif
   > > >     Type: image/gif
   > > >     Size: 105 bytes
   > > >     Desc: not available
   > > >     URL:
   > > >     <[31]
   >
   [33]http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
   > > >     210e/attachment.gif>
   > > >     -------------- next part --------------
   > > >     A non-text attachment was scrubbed...
   > > >     Name: pic06064.gif
   > > >     Type: image/gif
   > > >     Size: 1255 bytes
   > > >     Desc: not available
   > > >     URL:
   > > >     <[32]
   >
   [34]http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
   > > >     210e/attachment-0001.gif>
   > > >     -------------- next part --------------
   > > >     A non-text attachment was scrubbed...
   > > >     Name: ecblank.gif
   > > >     Type: image/gif
   > > >     Size: 45 bytes
   > > >     Desc: not available
   > > >     URL:
   > > >     <[33]
   >
   [35]http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
   > > >     210e/attachment-0002.gif>
   > > >     ------------------------------
   > > >     Message: 2
   > > >     Date: Tue, 2 Jul 2013 13:14:33 +0200
   > > >     From: thomas.raddatz@xxxxxx
   > > >     To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >     Subject: Re: RE Ftpapi Digest, Vol 81, Issue 3
   > > >     Message-ID:
   > > >
   <OFE220083F.9F11B05A-ONC1257B9C.003D4C5B-C1257B9C.003DC1F8@xxxxxx>
   > > >     Content-Type: text/plain; charset="iso-8859-1"
   > > >     OK. That means that you have WSDL2RPG v1.15.5 or lower,
   because
   > message
   > > >     description USR5020 has been changed with 1.15.6, right?
   > > >     Please replace member USR5020 with the attached one and try
   to
   > compile
   > > >     again.
   > > >     Thomas.
   > > >     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 02.07.2013
   > 12:56:21:
   > > >     > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   > > >     > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   > > >     > Kopie: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   > > >     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   > > >     > Datum: 02.07.2013 13:05
   > > >     > Betreff: RE Ftpapi Digest, Vol 81, Issue 3
   > > >     > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   > > >     >
   > > >     >
   > > >     > hi
   > > >     >
   > > >     > i have a compilation error
   > > >     > USR50203 is not find
   > > >     >
   > > >     >
   > > >     > regards
   > > >     >
   > > >     > Gilles Renne
   > > >     >
   > > >     >
   > > >     >
   > > >     >
   > > >     >
   > > >     >              ftpapi-request@li
   > > >     >              sts.scottklement.
   > > >     >              com A
   > > >     >              Envoy? par : ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >     >              ftpapi-bounces@li cc
   > > >     >              sts.scottklement.
   > > >     >              com Objet
   > > >     >                                        Ftpapi Digest, Vol
   81,
   > Issue 3
   > > >     > R?f.
   > > >     >              02/07/2013 11:12
   > > >     >
   > > >     >
   > > >     >              Veuillez r?pondre
   > > >     >                      ?
   > > >     >              ftpapi@xxxxxxxxxx
   > > >     >                tklement.com
   > > >     >
   > > >     >
   > > >     >
   > > >     >
   > > >     >
   > > >     >
   > > >     > Send Ftpapi mailing list submissions to
   > > >     >        ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >     >
   > > >     > To subscribe or unsubscribe via the World Wide Web, visit
   > > >     >
   [34][36]http://scottklement.com/mailman/listinfo/ftpapi
   > > >     > or, via email, send a message with subject or body 'help'
   to
   > > >     >        ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   > > >     >
   > > >     > You can reach the person managing the list at
   > > >     >        ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
   > > >     >
   > > >     > When replying, please edit your Subject line so it is more
   > specific
   > > >     > than "Re: Contents of Ftpapi digest..."
   > > >     >
   > > >     >
   > > >     > Today's Topics:
   > > >     >
   > > >     >    1. Re: Problem to send DB characters - Remove Escape
   > characters
   > > >     >       (thomas.raddatz@xxxxxx)
   > > >     >
   > > >     >
   > > >     >
   > > >
   ----------------------------------------------------------------------
   > > >     >
   > > >     > Message: 1
   > > >     > Date: Tue, 2 Jul 2013 11:12:41 +0200
   > > >     > From: thomas.raddatz@xxxxxx
   > > >     > To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >     > Subject: Re: Problem to send DB characters - Remove Escape
   > characters
   > > >     > Message-ID:
   > > >     >
   > > >     >
   > <OF93CBA716.D3999555-ONC1257B9C.00312B7E-C1257B9C.003299DF@xxxxxx>
   > > >     > Content-Type: text/plain; charset="us-ascii"
   > > >     >
   > > >     >
   > > >     > Gilles,
   > > >     >
   > > >     > I added some procedures to module WSDL2R98 of service
   program
   > > >     WSDL2RPGRT
   > > >     > to control the integrated XML entity encoder. Replace the
   > existing
   > > >     source
   > > >     > members and reinstall WSDL2RPG if you want to use the new
   > procedures:
   > > >     >
   > > >     >
   > > >     >   //  Enables/disables the integrated XML entity encode.
   > > >     >   XmlEntityEncoder_setEnabled(isEnabled)
   > > >     >
   > > >     >
   > > >     >   //  Returns the enabled status of the integrated XML
   entity
   > > >     encoder.
   > > >     >   isEnabled = XmlEntityEncoder_isEnabled()
   > > >     >
   > > >     >
   > > >     >   //  Encodes XML entities up to 64k (V5R4 and lower).
   > > >     >   encoded = XmlEntityEncoder_encode(i_value)
   > > >     >
   > > >     >
   > > >     >   //  Encodes XML entities up to 1MB (V6R1 or higher).
   > > >     >   encoded = XmlEntityEncoder_encodeLarge(i_value)
   > > >     >
   > > >     >
   > > >     >   //  Encodes XML entities up to 16MB (V6R1 or higher).
   > > >     >   XmlEntityEncoder_encodeV6(
   > > >     >      i_value: %addr(encoded): %addr(encoded: *DATA):
   > %size(encoded));
   > > >     >
   > > >     >
   > > >     > Regards,
   > > >     >
   > > >     >
   > > >     > Thomas.
   > > >     >
   > > >     >
   > > >     >
   > > >     > ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 01.07.2013
   > 14:33:34:
   > > >     >
   > > >     > > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   > > >     > > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   > > >     > > Datum: 01.07.2013 14:41
   > > >     > > Betreff: Problem to send DB characters - Remove Escape
   > characters
   > > >     > > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   > > >     > >
   > > >     > >
   > > >     > > Hi,
   > > >     > >
   > > >     > > I try to send chineese characters like
   > > >     > >
   > > >     > > when i view this on Iseries
   > > >     > > i see
   > > >     > >
   > > >     > >
   > > >     > >
   > > >     > > So chineese characters 5075
   > > >     > >
   > > >     > > has a & , then this characters is remove for escape
   characters
   > > >     function
   > > >     > > ( XmlEntityEncoder_encodeToStream)
   > > >     > >
   > > >     > > and then after the i_conv  function is wrong because a db
   > character
   > > >     lost
   > > >     > > one hexa decimal value.
   > > >     > >
   > > >     > > what can i do do prevent this ?????
   > > >     > >
   > > >     > > regards
   > > >     > >
   > > >     > > Gilles Renne
   > > >     > > This message contains confidential information. To know
   more,
   > > >     please
   > > >     > > click on the following link:
   > > >     [35][37]http://disclaimer.bureauveritas.com
   > > >     > > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
   > entfernt]
   > > >     > > [Bild entfernt]
   > > >     > >
   > > >
   >
   -----------------------------------------------------------------------
   > > >     > > This is the FTPAPI mailing list.  To unsubscribe, please
   go
   > to:
   > > >     > >
   [36][38]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.
   > > >     > -------------- next part --------------
   > > >     >    Gilles,
   > > >     >    I added some procedures to module WSDL2R98 of service
   program
   > > >     >    WSDL2RPGRT to control the integrated XML entity encoder.
   > Replace
   > > >     the
   > > >     >    existing source members and reinstall WSDL2RPG if you
   want
   to
   > use
   > > >     the
   > > >     >    new procedures:
   > > >     >      //  Enables/disables the integrated XML entity encode.
   > > >     >      XmlEntityEncoder_setEnabled(isEnabled)
   > > >     >      //  Returns the enabled status of the integrated XML
   entity
   > > >     encoder.
   > > >     >      isEnabled = XmlEntityEncoder_isEnabled()
   > > >     >      //  Encodes XML entities up to 64k (V5R4 and lower).
   > > >     >      encoded = XmlEntityEncoder_encode(i_value)
   > > >     >      //  Encodes XML entities up to 1MB (V6R1 or highe r).
   > > >     >      encoded = XmlEntityEncoder_encodeLarge(i_value)
   > > >     >      //  Encodes XML entities up to 16MB (V6R1 or higher).
   > > >     >      XmlEntityEncoder_encodeV6(
   > > >     >         i_value: %addr(encoded): %addr(encoded: *DATA):
   > > >     %size(encoded));
   > > >     >    Regards,
   > > >     >    Thomas.
   > > >     >    ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   01.07.2013
   > > >     14:33:34:
   > > >     >    > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   > > >     >    > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   > > >     >    > Datum: 01.07.2013 14:41
   > > >     >    > Betreff: Problem to send DB characters - Remove Escape
   > > >     characters
   > > >     >    > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   > > >     >    >
   > > >     >    >
   > > >     >    > Hi,
   > > >     >    >
   > > >     >    > I try to send chineese characters like
   > > >     >    >
   > > >     >    > when i view this on Iseries
   > > >     >    > i see
   > > >     >    >
   > > >     >    >
   > > >     >    >
   > > >     >    > So chineese characters 5075
   > > >     >    >
   > > >     >    > has a & , then this characters is remove for escape
   > characters
   > > >     >    function
   > > >     >    > ( XmlEntityEncoder_encodeToStream)
   > > >     >    >
   > > >     >    > and then after the i_conv  function is wrong because a
   db
   > > >     character
   > > >     >    lost
   > > >     >    > one hexa decimal value.
   > > >     >    >
   > > >     >    > what can i do do prevent this ?????
   > > >     >    >
   > > >     >    > regards
   > > >     >    >
   > > >     >    > Gilles Renne
   > > >     >    > This message contains confidential information. To
   know
   > more,
   > > >     please
   > > >     >    > click on the following link:
   > > >     [1][37][39]http://disclaimer.bureauveritas.com
   > > >     >    > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
   > entfernt]
   > > >     >    > [Bild entfernt]
   > > >     >    >
   > > >     >
   > > >
   >
   -----------------------------------------------------------------------
   > > >     >    > This is the FTPAPI mailing list.  To unsubscribe,
   please
   go
   > to:
   > > >     >    > [2][38]
   [40]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. [39][41]http://disclaimer.bureauveritas.com/
   > > >     >    2.
   [40][42]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >     > -------------- next part --------------
   > > >     > A non-text attachment was scrubbed...
   > > >     > Name: Patch_XmlEncoder_for_v1.15.5+.zip
   > > >     > Type: application/zip
   > > >     > Size: 31638 bytes
   > > >     > Desc: not available
   > > >     > URL: <
   > > >     > [41]
   > [43]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   > > >     > fea97de9/attachment.zip
   > > >     > >
   > > >     >
   > > >     > ------------------------------
   > > >     >
   > > >     >
   > > >
   >
   -----------------------------------------------------------------------
   > > >     > This is the FTPAPI mailing list digest.  To unsubscribe, go
   to:
   > > >     > [42][44]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >     >
   > > >
   >
   -----------------------------------------------------------------------
   > > >     >
   > > >     >
   > > >     > End of Ftpapi Digest, Vol 81, Issue 3
   > > >     > *************************************
   > > >     > This message contains confidential information. To know
   more,
   > please
   > > >     > click on the following link: [43]
   > [45]http://disclaimer.bureauveritas.com
   > > >     > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   > > >     >
   > > >
   >
   -----------------------------------------------------------------------
   > > >     > This is the FTPAPI mailing list.  To unsubscribe, please go
   to:
   > > >     > [44][46]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.
   > > >     -------------- next part --------------
   > > >       OK. That means that you have WSDL2RPG v1.15.5 or lower,
   because
   > > >     message
   > > >       description USR5020 has been changed with 1.15.6, right?
   > > >       Please replace member USR5020 with the attached one and try
   to
   > > >     compile
   > > >       again.
   > > >       Thomas.
   > > >       ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 02.07.2013
   > 12:56:21:
   > > >       > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   > > >       > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   > > >       > Kopie: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   > > >       ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   > > >       > Datum: 02.07.2013 13:05
   > > >       > Betreff: RE Ftpapi Digest, Vol 81, Issue 3
   > > >       > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   > > >       >
   > > >       >
   > > >       > hi
   > > >       >
   > > >       > i have a compilation error
   > > >       > USR50203 is not find
   > > >       >
   > > >       >
   > > >       > regards
   > > >       >
   > > >       > Gilles Renne
   > > >       >
   > > >       >
   > > >       >
   > > >       >
   > > >       >
   > > >       >              ftpapi-request@li
   > > >       >              sts.scottklement.
   > > >       >              com
   > > >           A
   > > >       >              Envoy? par :
   > > >     ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >       >              ftpapi-bounces@li
   > > >          cc
   > > >       >              sts.scottklement.
   > > >       >              com
   > > >       Objet
   > > >       >                                        Ftpapi Digest, Vol
   81,
   > Issue
   > > >     3
   > > >       >
   > > >       R?f.
   > > >       >              02/07/2013 11:12
   > > >       >
   > > >       >
   > > >       >              Veuillez r?pondre
   > > >       >                      ?
   > > >       >              ftpapi@xxxxxxxxxx
   > > >       >                tklement.com
   > > >       >
   > > >       >
   > > >       >
   > > >       >
   > > >       >
   > > >       >
   > > >       > Send Ftpapi mailing list submissions to
   > > >       >        ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >       >
   > > >       > To subscribe or unsubscribe via the World Wide Web, visit
   > > >       >        [1][45]
   [47]http://scottklement.com/mailman/listinfo/ftpapi
   > > >       > or, via email, send a message with subject or body 'help'
   to
   > > >       >        ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   > > >       >
   > > >       > You can reach the person managing the list at
   > > >       >        ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
   > > >       >
   > > >       > When replying, please edit your Subject line so it is
   more
   > specific
   > > >       > than "Re: Contents of Ftpapi digest..."
   > > >       >
   > > >       >
   > > >       > Today's Topics:
   > > >       >
   > > >       >    1. Re: Problem to send DB characters - Remove Escape
   > characters
   > > >       >       (thomas.raddatz@xxxxxx)
   > > >       >
   > > >       >
   > > >       >
   > > >
   > > >
   ----------------------------------------------------------------------
   > > >       >
   > > >       > Message: 1
   > > >       > Date: Tue, 2 Jul 2013 11:12:41 +0200
   > > >       > From: thomas.raddatz@xxxxxx
   > > >       > To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   > > >       > Subject: Re: Problem to send DB characters - Remove
   Escape
   > > >     characters
   > > >       > Message-ID:
   > > >       >
   > > >       >
   > <OF93CBA716.D3999555-ONC1257B9C.00312B7E-C1257B9C.003299DF@xxxxxx>
   > > >       > Content-Type: text/plain; charset="us-ascii"
   > > >       >
   > > >       >
   > > >       > Gilles,
   > > >       >
   > > >       > I added some procedures to module WSDL2R98 of service
   program
   > > >       WSDL2RPGRT
   > > >       > to control the integrated XML entity encoder. Replace the
   > existing
   > > >       source
   > > >       > members and reinstall WSDL2RPG if you want to use the new
   > > >     procedures:
   > > >       >
   > > >       >
   > > >       >   //  Enables/disables the integrated XML entity encode.
   > > >       >   XmlEntityEncoder_setEnabled(isEnabled)
   > > >       >
   > > >       >
   > > >       >   //  Returns the enabled status of the integrated XML
   entity
   > > >       encoder.
   > > >       >   isEnabled = XmlEntityEncoder_isEnabled()
   > > >       >
   > > >       >
   > > >       >   //  Encodes XML entities up to 64k (V5R4 and lower).
   > > >       >   encoded = XmlEntityEncoder_encode(i_value)
   > > >       >
   > > >       >
   > > >       >   //  Encodes XML entities up to 1MB (V6R1 or higher).
   > > >       >   encoded = XmlEntityEncoder_encodeLarge(i_value)
   > > >       >
   > > >       >
   > > >       >   //  Encodes XML entities up to 16MB (V6R1 or higher).
   > > >       >   XmlEntityEncoder_encodeV6(
   > > >       >      i_value: %addr(encoded): %addr(encoded: *DATA):
   > > >     %size(encoded));
   > > >       >
   > > >       >
   > > >       > Regards,
   > > >       >
   > > >       >
   > > >       > Thomas.
   > > >       >
   > > >       >
   > > >       >
   > > >       > ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   01.07.2013
   > > >     14:33:34:
   > > >       >
   > > >       > > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   > > >       > > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   > > >       > > Datum: 01.07.2013 14:41
   > > >       > > Betreff: Problem to send DB characters - Remove Escape
   > characters
   > > >       > > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   > > >       > >
   > > >       > >
   > > >       > > Hi,
   > > >       > >
   > > >       > > I try to send chineese characters like
   > > >       > >
   > > >       > > when i view this on Iseries
   > > >       > > i see
   > > >       > >
   > > >       > >
   > > >       > >
   > > >       > > So chineese characters 5075
   > > >       > >
   > > >       > > has a & , then this characters is remove for escape
   > characters
   > > >       function
   > > >       > > ( XmlEntityEncoder_encodeToStream)
   > > >       > >
   > > >       > > and then after the i_conv  function is wrong because a
   db
   > > >     character
   > > >       lost
   > > >       > > one hexa decimal value.
   > > >       > >
   > > >       > > what can i do do prevent this ?????
   > > >       > >
   > > >       > > regards
   > > >       > >
   > > >       > > Gilles Renne
   > > >       > > This message contains confidential information. To know
   > more,
   > > >       please
   > > >       > > click on the following link:
   > > >     [2][46][48]http://disclaimer.bureauveritas.com
   > > >       > > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
   > entfernt]
   > > >       > > [Bild entfernt]
   > > >       > >
   > > >
   > > >
   >
   -----------------------------------------------------------------------
   > > >       > > This is the FTPAPI mailing list.  To unsubscribe,
   please
   go
   > to:
   > > >       > >
   [3][47][49]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.
   > > >       > -------------- next part --------------
   > > >       >    Gilles,
   > > >       >    I added some procedures to module WSDL2R98 of service
   > program
   > > >       >    WSDL2RPGRT to control the integrated XML entity
   encoder.
   > Replace
   > > >       the
   > > >       >    existing source members and reinstall WSDL2RPG if you
   want
   > to
   > > >     use
   > > >       the
   > > >       >    new procedures:
   > > >       >      //  Enables/disables the integrated XML entity
   encode.
   > > >       >      XmlEntityEncoder_setEnabled(isEnabled)
   > > >       >      //  Returns the enabled status of the integrated XML
   > entity
   > > >       encoder.
   > > >       >      isEnabled = XmlEntityEncoder_isEnabled()
   > > >       >      //  Encodes XML entities up to 64k (V5R4 and lower).
   > > >       >      encoded = XmlEntityEncoder_encode(i_value)
   > > >       >      //  Encodes XML entities up to 1MB (V6R1 or higher).
   > > >       >      encoded = XmlEntityEncoder_encodeLarge(i_value)
   > > >       >      //  Encodes XML entities up to 16MB (V6R1 or
   higher).
   > > >       >      XmlEntityEncoder_encodeV6(
   > > >       >         i_value: %addr(encoded): %addr(encoded: *DATA):
   > > >       %size(encoded));
   > > >       >    Regards,
   > > >       >    Thomas.
   > > >       >    ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   01.07.2013
   > > >       14:33:34:
   > > >       >    > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   > > >       >    > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   > > >       >    > Datum: 01.07.2013 14:41
   > > >       >    > Betreff: Problem to send DB characters - Remove
   Escape
   > > >       characters
   > > >       >    > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   > > >       >    >
   > > >       >    >
   > > >       >    > Hi,
   > > >       >    >
   > > >       >    > I try to send chineese characters like
   > > >       >    >
   > > >       >    > when i view this on Iseries
   > > >       >    > i see
   > > >       >    >
   > > >       >    >
   > > >       >    >
   > > >       >    > So chineese characters 5075
   > > >       >    >
   > > >       >    > has a & , then this characters is remove for escape
   > characters
   > > >       >    function
   > > >       >    > ( XmlEntityEncoder_encodeToStream)
   > > >       >    >
   > > >       >    > and then after the i_conv  function is wrong because
   a
   db
   > > >       character
   > > >       >    lost
   > > >       >    > one hexa decimal value.
   > > >       >    >
   > > >       >    > what can i do do prevent this ?????
   > > >       >    >
   > > >       >    > regards
   > > >       >    >
   > > >       >    > Gilles Renne
   > > >       >    > This message contains confidential information. To
   know
   > more,
   > > >       please
   > > >       >    > click on the following link:
   > > >       [1][4][48][50]http://disclaimer.bureauveritas.com
   > > >       >    > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   [Bild
   > > >     entfernt]
   > > >       >    > [Bild entfernt]
   > > >       >    >
   > > >       >
   > > >
   > > >
   >
   -----------------------------------------------------------------------
   > > >       >    > This is the FTPAPI mailing list.  To unsubscribe,
   please
   > go
   > > >     to:
   > > >       >    > [2][5][49]
   > [51]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. [6][50][52]http://disclaimer.bureauveritas.com/
   > > >       >    2. [7][51]
   > [53]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >       > -------------- next part --------------
   > > >       > A non-text attachment was scrubbed...
   > > >       > Name: Patch_XmlEncoder_for_v1.15.5+.zip
   > > >       > Type: application/zip
   > > >       > Size: 31638 bytes
   > > >       > Desc: not available
   > > >       > URL: <
   > > >       >
   > > >     [8][52]
   > [54]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   > > >       > fea97de9/attachment.zip
   > > >       > >
   > > >       >
   > > >       > ------------------------------
   > > >       >
   > > >       >
   > > >
   > > >
   >
   -----------------------------------------------------------------------
   > > >       > This is the FTPAPI mailing list digest.  To unsubscribe,
   go
   > to:
   > > >       >
   [9][53][55]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >       >
   > > >
   > > >
   >
   -----------------------------------------------------------------------
   > > >       >
   > > >       >
   > > >       > End of Ftpapi Digest, Vol 81, Issue 3
   > > >       > *************************************
   > > >       > This message contains confidential information. To know
   more,
   > > >     please
   > > >       > click on the following link:
   > > >     [10][54][56]http://disclaimer.bureauveritas.com
   > > >       > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   > > >       >
   > > >
   > > >
   >
   -----------------------------------------------------------------------
   > > >       > This is the FTPAPI mailing list.  To unsubscribe, please
   go
   > to:
   > > >       >
   [11][55][57]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. [56][58]http://scottklement.com/mailman/listinfo/ftpapi
   > > >       2. [57][59]http://disclaimer.bureauveritas.com/
   > > >       3.
   [58][60]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >       4. [59][61]http://disclaimer.bureauveritas.com/
   > > >       5.
   [60][62]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >       6. [61][63]http://disclaimer.bureauveritas.com/
   > > >       7.
   [62][64]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >       8. [63]
   > [65]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   > > >       9.
   [64][66]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >      10. [65][67]http://disclaimer.bureauveritas.com/
   > > >      11.
   [66][68]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >     -------------- next part --------------
   > > >     A non-text attachment was scrubbed...
   > > >     Name: USR5020.rpgle
   > > >     Type: application/octet-stream
   > > >     Size: 468 bytes
   > > >     Desc: not available
   > > >     URL:
   > > >     <[67]
   >
   [69]http://scottklement.com/pipermail/ftpapi/attachments/20130702/26ba
   > > >     65e4/attachment.obj>
   > > >     ------------------------------
   > > >
   >
   -----------------------------------------------------------------------
   > > >     This is the FTPAPI mailing list digest.  To unsubscribe, go
   to:
   > > >     [68][70]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >
   >
   -----------------------------------------------------------------------
   > > >     End of Ftpapi Digest, Vol 81, Issue 4
   > > >     *************************************
   > > >     This message contains confidential information. To know more,
   > please
   > > >     click on the following link:
   [71]http://disclaimer.bureauveritas.com
   > > >
   > > > References
   > > >
   > > >     1. [72]http://scottklement.com/mailman/listinfo/ftpapi
   > > >     2. [73]http://scottklement.com/mailman/listinfo/ftpapi
   > > >     3. [74]http://disclaimer.bureauveritas.com/
   > > >     4. [75]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >     5. [76]http://disclaimer.bureauveritas.com/
   > > >     6. [77]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >     7. [78]http://disclaimer.bureauveritas.com/
   > > >     8. [79]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >     9. [80]http://scottklement.com/pipermail/ftpapi/attachments/
   > > 20130702/fea97de9/attachment.zip
   > > >    10. [81]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    11. [82]http://disclaimer.bureauveritas.com/
   > > >    12. [83]http://scottklement.com/mailman/listinfo/ftpapi
   > > >    13. [84]http://disclaimer.bureauveritas.com/
   > > >    14. [85]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    15. [86]http://disclaimer.bureauveritas.com/
   > > >    16. [87]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    17. [88]http://disclaimer.bureauveritas.com/
   > > >    18. [89]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    19.
   >
   [90]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
   > > >    20. [91]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    21. [92]http://disclaimer.bureauveritas.com/
   > > >    22. [93]http://scottklement.com/mailman/listinfo/ftpapi
   > > >    23. [94]http://disclaimer.bureauveritas.com/
   > > >    24. [95]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    25. [96]http://disclaimer.bureauveritas.com/
   > > >    26. [97]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    27. [98]http://disclaimer.bureauveritas.com/
   > > >    28. [99]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    29. [100]http://scottklement.com/pipermail/ftpapi/attachments/
   > > 20130702/fea97de9/attachment.zip
   > > >    30. [101]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    31. [102]http://scottklement.com/pipermail/ftpapi/attachments/
   > > 20130702/9279210e/attachment.gif
   > > >    32. [103]http://scottklement.com/pipermail/ftpapi/attachments/
   > > 20130702/9279210e/attachment-0001.gif
   > > >    33. [104]http://scottklement.com/pipermail/ftpapi/attachments/
   > > 20130702/9279210e/attachment-0002.gif
   > > >    34. [105]http://scottklement.com/mailman/listinfo/ftpapi
   > > >    35. [106]http://disclaimer.bureauveritas.com/
   > > >    36. [107]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    37. [108]http://disclaimer.bureauveritas.com/
   > > >    38. [109]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    39. [110]http://disclaimer.bureauveritas.com/
   > > >    40. [111]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    41.
   [112]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   > > >    42. [113]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    43. [114]http://disclaimer.bureauveritas.com/
   > > >    44. [115]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    45. [116]http://scottklement.com/mailman/listinfo/ftpapi
   > > >    46. [117]http://disclaimer.bureauveritas.com/
   > > >    47. [118]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    48. [119]http://disclaimer.bureauveritas.com/
   > > >    49. [120]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    50. [121]http://disclaimer.bureauveritas.com/
   > > >    51. [122]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    52.
   [123]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   > > >    53. [124]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    54. [125]http://disclaimer.bureauveritas.com/
   > > >    55. [126]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    56. [127]http://scottklement.com/mailman/listinfo/ftpapi
   > > >    57. [128]http://disclaimer.b ureauveritas.com/
   > > >    58. [129]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    59. [130]http://disclaimer.bureauveritas.com/
   > > >    60. [131]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    61. [132]http://disclaimer.bureauveritas.com/
   > > >    62. [133]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    63.
   [134]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   > > >    64. [135]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    65. [136]http://disclaimer.bureauveritas.com/
   > > >    66. [137]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    67. [138]http://scottklement.com/pipermail/ftpapi/attachments/
   > > 20130702/26ba65e4/attachment.obj
   > > >    68. [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
   > >
   -----------------------------------------------------------------------
   >
   >
   > --
   > 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.
   > -------------- next part --------------
   >    Gilles,
   >    My integration test found an error for elements with no data. For
   these
   >    elements the following messages showed up in the job log and the
   HTTP
   >    API debug log:
   >    Job log:
   >    --------
   >    The length requested for storage allocation is out of range.
   >    Failed unmarshalling value '*N' of field '*N'.
   >    HTTP API debug log:
   >    -------------------
   >    WSDL2RPG: call stack frames:
   >    Program      Library      Act.Group    Statement    Procedure
   >    QCMD         QSYS         *DFTACTGRP        /04F8
   >    START#RZ     RADDATZ      *DFTACTGRP                _CL_PEP
   >    START#RZ     RADDATZ      *DFTACTGRP   6000         START#RZ
   >    QUOCPP       QPDA         *DFTACTGRP        /079D
   >    QUOMAIN      QPDA         *DFTACTGRP        /1139
   >    QUOCMD       QSYS         *DFTACTGRP        /03B3
   >    WSDLIPMR17   RADDATZ      *NEW
   >    _QRNP_PEP_WSDLIPMR17
   >    WSDLIPMR17   RADDATZ      *NEW         37600        WSDLIPMR17
   >    WSDLIPMR17   RADDATZ      *NEW         178700       MAIN
   >    WSDLIPMR17   RADDATZ      *NEW         159000
   >    FARMACLICK2005001FCKRICHIESTADOCUMENTO_FCKRICHIESTADOCUMENTO
   >    PMR017A      RADDATZ      *NEW         728
   >    Farmaclick2005001FCKRichiestaDocumento_FCKRichiestaDocumento
   >    WSDL2RPGRT   RADDATZ      *NEW         354200
   >    WSDL2R98_Marshaller_toStringV6
   >    WSDL2RPGRT   RADDATZ      *NEW         35200
   >    WSDL2R90_AppMsg_sendEscMsgAndDump
   >    WSDL2RPGRT   RADDATZ      *NEW         39300
   >    WSDL2R71_http_DebugLog_dumpCallStack
   >    WSDL2RPGRT   RADDATZ      *NEW         20200
   >    WSDL2R80_CallStack_dump
   >    WSDL2RPG: USR5023: Failed unmarshalling value '*N' of field '*N'.
   >                       Cause . . . . . :   The following error message
   >    prevented the value of field '*N' from being retrieved from XPath
   >    '*N/*N'. Message text  . :   The length requested for storage
   >    allocation is out of range.
   >              received from procedure: BASICS1R1_f_sndPgmMsg
   >                        and statement: 54400
   >    ** 2013-07-04-11.49.56.091000: Leaving
   >    Farmaclick2005001FCKRichiestaDocumento_FCKRichiestaDocumento()
   >    Since your debug log is empty, there must be a different problem
   on
   >    your side. Nevertheless, you should replace WSDL2R98 with the
   attached
   >    member.
   >    Did you have time to debug WSDL2R98 at your side? What is the
   result?
   >    Regards,
   >    Thomas.
   >    ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 03.07.2013
   22:44:22:
   >    > Von: thomas.raddatz@xxxxxxxxxxx
   >    > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   >    > Datum: 03.07.2013 22:59
   >    > Betreff: Re: Problem to send DB characters - Remove Escape
   characters
   >    > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >    >
   >    > Gilles,
   >    >
   >    > It is hard to believe that it does not work for you. It is true
   that
   >    I did
   >    > not run a complete integration test but I tested the new
   >    functionality with
   >    > an extensive RPGUnit test. The procedures I tested are:
   >    >
   >    >     Marshaller_toString()
   >    >     Marshaller_toStringV6()
   >    >     XmlEntityEncoder_encode()
   >    >     XmlEntityEncoder_encodeLarge()
   >    >     XmlEntityEncoder_encodeV6()
   >    >
   >    > May you please start the debugger for service program WSDL2RPGRT
   and
   >    module
   >    > WSDL2R98 and add a breakpoint to the marshaller that your stub
   uses.
   >    For
   >    > example, starting at Marshaller_toString(), the program flow is
   like
   >    this:
   >    >
   >    >     Marshaller_toString()
   >    >     -> encodeXmlEntityToFieldV6() // adapter procedure
   >    >        -> encodeXmlEntityToStream()
   >    >           -> GenericStream_write()
   >    >
   >    > And for the V6 counterpart it is:
   >    >
   >    >     Marshaller_toStringV6()
   >    >        -> encodeXmlEntityToStream()
   >    >           -> GenericStream_write()
   >    >
   >    > So if the entity encoder is disabled the program should go
   through
   >    > encodeXmlEntityToStream() in both cases. From
   >    encodeXmlEntityToStream() it
   >    > should directly call GenericStream_write() without going through
   >    > encodeXmlEntityToStreamInternally().
   >    >
   >    > GenericStream_write() either writes the data to the output field
   or
   >    for the
   >    > new V6 procedures directly appends the data to a
   >    "ManagedMemoryDataSource".
   >    >
   >    > For the "old" non V6 procedures the data of the output field is
   >    indirectly
   >    > appended to a "ManagedMemoryDataSource". First it is returned to
   the
   >    stub
   >    > module and added to the "request" field. Then the "request"
   field
   is
   >    > periodically appended to the "ManagedMemoryDataSource".
   >    >
   >    > Eventually the data of the "ManagedMemoryDataSource" is passed
   as
   >    POST data
   >    > to HTTPAPI. That is easier than it first appears to be. Just as
   a
   >    side note
   >    > the "ManagedMemoryDataSource" is a combined memory and IFS file
   >    buffer. It
   >    > uses the memory buffer as long as there is memory available. As
   soon
   >    as
   >    > there is no more memory left, it switches to the slower file
   buffer.
   >    That
   >    > way there is no limit for the POST data.
   >    >
   >    > Important to know: You do not need to look at the
   >    > "ManagedMemoryDataSource". I told you about it, to let you know,
   how
   >    your
   >    > input data flows from the input data structure through the
   >    Marshallers, the
   >    > Xml entity encoder and the "ManagedMemoryDataSource" until it
   ends
   up
   >    as
   >    > the POST data in HTTP API.
   >    >
   >    > So if your data goes through GenericStream_write(), it must be
   added
   >    to the
   >    > POST data of your request message.
   >    >
   >    > I am going to run my complete test suite tomorrow and for sure I
   let
   >    you
   >    > know the result.
   >    >
   >    > Regards,
   >    >
   >    > Thomas.
   >    >
   >    >
   >    >
   >    > Am 03.07.2013 15:17, schrieb gilles.renne@xxxxxxxxxxxxxxxxx:
   >    > >     Hi
   >    > >     i receive Bad request  now
   >    > >     and i have nothing in httpapi_debug file
   >    > >     regards
   >    > >     Gilles Renne
   >    > >     Inactive hide details for ftpapi-request---02/07/2013
   >    > >     13:45:29---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     ftpapi-request---02/07/2013
   >    > >     13:45:29---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   >    > >
   >    > >     ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   >    > >         Envoy? par : ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >    > >         02/07/2013 13:14
   >    > >
   >    > >
   >    > >              Veuillez r?pondre ?
   >    > >         ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >
   >    > >
   >    > >     A
   >    > >
   >    > >          ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >
   >    > >     cc
   >    > >
   >    > >     Objet
   >    > >
   >    > >          Ftpapi Digest, Vol 81, Issue 4
   >    > >
   >    > >     R?f.
   >    > >
   >    > >     Send Ftpapi mailing list submissions to
   >    > >     ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     To subscribe or unsubscribe via the World Wide Web, visit
   >    > >     [1][1][142]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >     or, via email, send a message with subject or body 'help'
   to
   >    > >     ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     You can reach the person managing the list at
   >    > >     ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     When replying, please edit your Subject line so it is more
   >    specific
   >    > >     than "Re: Contents of Ftpapi digest..."
   >    > >     Today's Topics:
   >    > >       1. RE Ftpapi Digest, Vol 81, Issue 3
   >    (gilles.renne@xxxxxxxxxxxxxxxxx)
   >    > >       2. Re: RE Ftpapi Digest, Vol 81, Issue 3
   >    (thomas.raddatz@xxxxxx)
   >    > >
   >
   ----------------------------------------------------------------------
   >    > >     Message: 1
   >    > >     Date: Tue, 2 Jul 2013 12:56:21 +0200
   >    > >     From: gilles.renne@xxxxxxxxxxxxxxxxx
   >    > >     To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     Cc: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   >    > >     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     Subject: RE Ftpapi Digest, Vol 81, Issue 3
   >    > >     Message-ID:
   >    > >
   >
   <OF58795E0F.39BA6186-ONC1257B9C.003BEBEC-C1257B9C.003C1783@LocalDomain>
   >    > >     Content-Type: text/plain; charset="iso-8859-1"
   >    > >     hi
   >    > >     i have a compilation error
   >    > >     USR50203 is not find
   >    > >     regards
   >    > >     Gilles Renne
   >    > >
   >    > >
   >    > >                 ftpapi-request@li
   >    > >
   >    > >                 sts.scottklement.
   >    > >
   >    > >                 com
   >    > >     A
   >    > >                 Envoy? par :
   >    ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >
   >    > >                 ftpapi-bounces@li
   >    > >     cc
   >    > >                 sts.scottklement.
   >    > >
   >    > >                 com
   >    > >     Objet
   >    > >                                           Ftpapi Digest, Vol
   81,
   >    Issue 3
   >    > >
   >    > >
   >    > >     R?f.
   >    > >                 02/07/2013 11:12
   >    > >
   >    > >
   >    > >
   >    > >
   >    > >
   >    > >                 Veuillez r?pondre
   >    > >
   >    > >                         ?
   >    > >
   >    > >                 ftpapi@xxxxxxxxxx
   >    > >
   >    > >                   tklement.com
   >    > >
   >    > >
   >    > >
   >    > >
   >    > >
   >    > >     Send Ftpapi mailing list submissions to
   >    > >      ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     To subscribe or unsubscribe via the World Wide Web, visit
   >    > >
   [2][2][143]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >     or, via email, send a message with subject or body 'help'
   to
   >    > >      ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     You can reach the person managing the list at
   >    > >      ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     When replying, please edit your Subject line so it is more
   >    specific
   >    > >     than "Re: Contents of Ftpapi digest..."
   >    > >     Today's Topics:
   >    > >       1. Re: Problem to send DB characters - Remove Escape
   >    characters
   >    > >          (thomas.raddatz@xxxxxx)
   >    > >
   >
   ----------------------------------------------------------------------
   >    > >     Message: 1
   >    > >     Date: Tue, 2 Jul 2013 11:12:41 +0200
   >    > >     From: thomas.raddatz@xxxxxx
   >    > >     To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     Subject: Re: Problem to send DB characters - Remove Escape
   >    characters
   >    > >     Message-ID:
   >    > >
   >    <OF93CBA716.D3999555-ONC1257B9C.00312B7E-C1257B9C.003299DF@xxxxxx>
   >    > >     Content-Type: text/plain; charset="us-ascii"
   >    > >     Gilles,
   >    > >     I added some procedures to module WSDL2R98 of service
   program
   >    > >     WSDL2RPGRT
   >    > >     to control the integrated XML entity encoder. Replace the
   >    existing
   >    > >     source
   >    > >     members and reinstall WSDL2RPG if you want to use the new
   >    procedures:
   >    > >      //  Enables/disables the integrated XML entity encode.
   >    > >      XmlEntityEncoder_setEnabled(isEnabled)
   >    > >      //  Returns the enabled status of the integrated XML
   entity
   >    encoder.
   >    > >      isEnabled = XmlEntityEncoder_isEnabled()
   >    > >      //  Encodes XML entities up to 64k (V5R4 and lower).
   >    > >      encoded = XmlEntityEncoder_encode(i_value)
   >    > >      //  Encodes XML entities up to 1MB (V6R1 or higher).
   >    > >      encoded = XmlEntityEncoder_encodeLarge(i_value)
   >    > >      //  Encodes XML entities up to 16MB (V6R1 or higher).
   >    > >      XmlEntityEncoder_encodeV6(
   >    > >         i_value: %addr(encoded): %addr(encoded: *DATA):
   >    %size(encoded));
   >    > >     Regards,
   >    > >     Thomas.
   >    > >     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   01.07.2013
   >    14:33:34:
   >    > >     > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   >    > >     > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   >    > >     > Datum: 01.07.2013 14:41
   >    > >     > Betreff: Problem to send DB characters - Remove Escape
   >    characters
   >    > >     > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     >
   >    > >     >
   >    > >     > Hi,
   >    > >     >
   >    > >     > I try to send chineese characters like
   >    > >     >
   >    > >     > when i view this on Iseries
   >    > >     > i see
   >    > >     >
   >    > >     >
   >    > >     >
   >    > >     > So chineese characters 5075
   >    > >     >
   >    > >     > has a & , then this characters is remove for escape
   >    characters
   >    > >     function
   >    > >     > ( XmlEntityEncoder_encodeToStream)
   >    > >     >
   >    > >     > and then after the i_conv  function is wrong because a
   db
   >    character
   >    > >     lost
   >    > >     > one hexa decimal value.
   >    > >     >
   >    > >     > what can i do do prevent this ?????
   >    > >     >
   >    > >     > regards
   >    > >     >
   >    > >     > Gilles Renne
   >    > >     > This message contains confidential information. To know
   more,
   >    please
   >    > >     > click on the following link:
   >    [3][3][144]http://disclaimer.bureauveritas.com
   >    > >     > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
   >    entfernt]
   >    > >     > [Bild entfernt]
   >    > >     >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >     > This is the FTPAPI mailing list.  To unsubscribe, please
   go
   >    to:
   >    > >     >
   [4][4][145]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.
   >    > >     -------------- next part --------------
   >    > >       Gilles,
   >    > >       I added some procedures to module WSDL2R98 of service
   program
   >    > >       WSDL2RPGRT to control the integrated XML entity encoder.
   >    Replace the
   >    > >       existing source members and reinstall WSDL2RPG if you
   want
   to
   >    use the
   >    > >       new procedures:
   >    > >         //  Enables/disables the integrated XML entity encode.
   >    > >         XmlEntityEncoder_setEnabled(isEnabled)
   >    > >         //  Returns the enabled status of the integrated XML
   entity
   >    > >     encoder.
   >    > >         isEnabled = XmlEntityEncoder_isEnabled()
   >    > >         //  Encodes XML entities up to 64k (V5R4 and lower).
   >    > >         encoded = XmlEntityEncoder_encode(i_value)
   >    > >         //  Encodes XML entities up to 1MB (V6R1 or higher).
   >    > >         encoded = XmlEntityEncoder_encodeLarge(i_value)
   >    > >         //  Encodes XML entities up to 16MB (V6R1 or higher).
   >    > >         XmlEntityEncoder_encodeV6(
   >    > >            i_value: %addr(encoded): %addr(encoded: *DATA):
   >    %size(encoded));
   >    > >       Regards,
   >    > >       Thomas.
   >    > >       ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   01.07.2013
   >    14:33:34:
   >    > >       > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   >    > >       > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   >    > >       > Datum: 01.07.2013 14:41
   >    > >       > Betreff: Problem to send DB characters - Remove Escape
   >    characters
   >    > >       > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       >
   >    > >       >
   >    > >       > Hi,
   >    > >       >
   >    > >       > I try to send chineese characters like
   >    > >       >
   >    > >       > when i view this on Iseries
   >    > >       > i see
   >    > >       >
   >    > >       >
   >    > >       >
   >    > >       > So chineese characters 5075
   >    > >       >
   >    > >       > has a & , then this characters is remove for escape
   >    characters
   >    > >       function
   >    > >       > ( XmlEntityEncoder_encodeToStream)
   >    > >       >
   >    > >       > and then after the i_conv  function is wrong because a
   db
   >    character
   >    > >       lost
   >    > >       > one hexa decimal value.
   >    > >       >
   >    > >       > what can i do do prevent this ?????
   >    > >       >
   >    > >       > regards
   >    > >       >
   >    > >       > Gilles Renne
   >    > >       > This message contains confidential information. To
   know
   >    more,
   >    > >     please
   >    > >       > click on the following link:
   >    > >     [1][5][5][146]http://disclaimer.bureauveritas.com
   >    > >       > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
   >    entfernt]
   >    > >       > [Bild entfernt]
   >    > >       >
   >    > >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >       > This is the FTPAPI mailing list.  To unsubscribe,
   please
   go
   >    to:
   >    > >       >
   >    [2][6][6][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. [7][7][148]http://disclaimer.bureauveritas.com/
   >    > >       2. [8][8]
   [149]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >     -------------- next part --------------
   >    > >     A non-text attachment was scrubbed...
   >    > >     Name: Patch_XmlEncoder_for_v1.15.5+.zip
   >    > >     Type: application/zip
   >    > >     Size: 31638 bytes
   >    > >     Desc: not available
   >    > >     URL: <
   >    > >
   >    [9][9]
   [150]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea
   >    97d
   >    > >     e9/attachment.zip
   >    > >     >
   >    > >     ------------------------------
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >     This is the FTPAPI mailing list digest.  To unsubscribe,
   go
   to:
   >    > >
   [10][10][151]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >     End of Ftpapi Digest, Vol 81, Issue 3
   >    > >     *************************************
   >    > >     This message contains confidential information. To know
   more,
   >    please
   >    > >     click on the following link:
   >    [11][11][152]http://disclaimer.bureauveritas.com
   >    > >     -------------- next part --------------
   >    > >       hi
   >    > >       i have a compilation error
   >    > >       USR50203 is not find
   >    > >       regards
   >    > >       Gilles Renne
   >    > >       Inactive hide details for ftpapi-request---02/07/2013
   >    > >       11:39:55---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       ftpapi-request---02/07/2013
   >    > >       11:39:55---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   >    > >           Envoy? par : ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >    > >           02/07/2013 11:12
   >    > >                Veuillez r?pondre ?
   >    > >           ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       A
   >    > >            ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       cc
   >    > >       Objet
   >    > >            Ftpapi Digest, Vol 81, Issue 3
   >    > >       R?f.
   >    > >       Send Ftpapi mailing list submissions to
   >    > >       ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       To subscribe or unsubscribe via the World Wide Web,
   visit
   >    > >
   [1][12][12][153]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >       or, via email, send a message with subject or body
   'help'
   to
   >    > >       ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       You can reach the person managing the list at
   >    > >       ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       When replying, please edit your Subject line so it is
   more
   >    specific
   >    > >       than "Re: Contents of Ftpapi digest..."
   >    > >       Today's Topics:
   >    > >         1. Re: Problem to send DB characters - Remove Escape
   >    characters
   >    > >            (thomas.raddatz@xxxxxx)
   >    > >
   >    > >
   >
   ----------------------------------------------------------------------
   >    > >       Message: 1
   >    > >       Date: Tue, 2 Jul 2013 11:12:41 +0200
   >    > >       From: thomas.raddatz@xxxxxx
   >    > >       To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       Subject: Re: Problem to send DB characters - Remove
   Escape
   >    characters
   >    > >       Message-ID:
   >    > >
   >    <OF93CBA716.D3999555-ONC1257B9C.00312B7E-C1257B9C.003299DF@xxxxxx>
   >    > >       Content-Type: text/plain; charset="us-ascii"
   >    > >     &nb sp; Gilles,
   >    > >       I added some procedures to module WSDL2R98 of service
   program
   >    > >       WSDL2RPGRT
   >    > >       to control the integrated XML entity encoder. Replace
   the
   >    existing
   >    > >       source
   >    > >       members and reinstall WSDL2RPG if you want to use the
   new
   >    procedures:
   >    > >        //  Enables/disables the integrated XML entity encode.
   >    > >        XmlEntityEncoder_setEnabled(isEnabled)
   >    > >        //  Returns the enabled status of the integrated XML
   entity
   >    encoder.
   >    > >        isEnabled = XmlEntityEncoder_isEnabled()
   >    > >        //  Encodes XML entities up to 64k (V5R4 and lower).
   >    > >        encoded = XmlEntityEncoder_encode(i_value)
   >    > >        //  Encodes XML entities up to 1MB (V6R1 or higher).
   >    > >        encoded = XmlEntityEncoder_encodeLarge(i_value)
   >    > >        //  Encodes XML entities up to 16MB (V6R1 or higher).
   >    > >        XmlEntityEncoder_encodeV6(
   >    > >           i_value: %addr(encoded): %addr(encoded: *DATA):
   >    %size(encoded));
   >    > >       Regards,
   >    > >       Thomas.
   >    > >       ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   01.07.2013
   >    14:33:34:
   >    > >       > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   >    > >       > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   >    > >       > Datum: 01.07.2013 14:41
   >    > >       > Betreff: Problem to send DB characters - Remove Escape
   >    characters
   >    > >       > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       >
   >    > >       >
   >    > >       > Hi,
   >    > >       >
   >    > >       > I try to send chineese characters like
   >    > >       >
   >    > >       > when i view this on Iseries
   >    > >       > i see
   >    > >       >
   >    > >       >
   >    > >       >
   >    > >       > So chineese characters 5075
   >    > >       >
   >    > >       > has a & , then this characters is remove for escape
   >    characters
   >    > >       function
   >    > >       > ( XmlEntityEncoder_encodeToStream)
   >    > >       >
   >    > >       > and then after the i_conv  function is wrong because a
   db
   >    character
   >    > >       lost
   >    > >       > one hexa decimal value.
   >    > >       >
   >    > >       > what can i do do prevent this ?????
   >    > >       >
   >    > >       > regards
   >    > >       >
   >    > >       > Gilles Renne
   >    > >       > This message contains confidential information. To
   know
   >    more,
   >    > >     please
   >    > >       > click on the following link:
   >    > >     [2][13][13][154]http://disclaimer.bureauveritas.com
   >    > >       > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
   >    entfernt]
   >    > >       > [Bild entfernt]
   >    > >       >
   >    > >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >       > This is the FTPAPI mailing list.  To unsubscribe,
   please
   go
   >    to:
   >    > >       >
   >
   [3][14][14][155]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.
   >    > >       -------------- next part --------------
   >    > >         Gilles,
   >    > >         I added some procedures to module WSDL2R98 of service
   >    program
   >    > >         WSDL2RPGRT to control the integrated XML entity
   encoder.
   >    Replace
   >    > >     the
   >    > >         existing source members and reinstall WSDL2RPG if you
   want
   >    to use
   >    > >     the
   >    > >         new procedures:
   >    > >           //  Enables/disables the integrated XML entity
   encode.
   >    > >           XmlEntityEncoder_setEnabled(isEnabled)
   >    > >           //  Returns the enabled status of the integrated XML
   >    entity
   >    > >       encoder.
   >    > >           isEnabled = XmlEntityEncoder_isEnabled()
   >    > >           //  Encodes XML entities up to 64k (V5R4 and lower).
   >    > >           encoded = XmlEntityEncoder_encode(i_value)
   >    > >           //  Encodes XML entities up to 1MB (V6R1 or higher).
   >    > >           encoded = XmlEntityEncoder_encodeLarge(i_value)
   >    > >           //  Encodes XML entities up to 16MB (V6R1 or
   higher).
   >    > >           XmlEntityEncoder_encodeV6(
   >    > >              i_value: %addr(encoded): %addr(encoded: *DATA):
   >    > >     %size(encoded));
   >    > >         Regards,
   >    > >         Thomas.
   >    > >         ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   01.07.2013
   >    > >     14:33:34:
   >    > >         > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   >    > >         > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   >    > >         > Datum: 01.07.2013 14:41
   >    > >         > Betreff: Problem to send DB characters - Remove
   Escape
   >    characters
   >    > >         > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >    > >         >
   >    > >         >
   >    > >         > Hi,
   >    > >         >
   >    > >         > I try to send chineese characters like
   >    > >         >
   >    > >         > when i view this on Iseries
   >    > >         > i see
   >    > >         >
   >    > >         >
   >    > >         >
   >    > >         > So chineese characters 5075
   >    > >         >
   >    > >         > has a & , then this characters is remove for escape
   >    characters
   >    > >         function
   >    > >         > ( XmlEntityEncoder_encodeToStream)
   >    > >         >
   >    > >         > and then after the i_conv  function is wrong because
   a
   db
   >    > >     character
   >    > >         lost
   >    > >         > one hexa decimal value.
   >    > >         >
   >    > >         > what can i do do prevent this ?????
   >    > >         >
   >    > >         > regards
   >    > >         >
   >    > >         > Gilles Renne
   >    > >         > This message contains confidential information. To
   know
   >    more,
   >    > >       please
   >    > >         > click on the following link:
   >    > >       [1][4][15][15][156]http://disclaimer.bureauveritas.com
   >    > >         > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   [Bild
   >    entfernt]
   >    > >         > [Bild entfernt]
   >    > >         >
   >    > >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >         > This is the FTPAPI mailing list.  To unsubscribe,
   please
   >    go to:
   >    > >         >
   >
   [2][5][16][16][157]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.
   [6][17][17][158]http://disclaimer.bureauveritas.com/
   >    > >         2.
   >
   [7][18][18][159]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >       -------------- next part --------------
   >    > >       A non-text attachment was scrubbed...
   >    > >       Name: Patch_XmlEncoder_for_v1.15.5+.zip
   >    > >       Type: application/zip
   >    > >       Size: 31638 bytes
   >    > >       Desc: not available
   >    > >       URL:
   >    > >
   >    > >
   >    <[8][19][19]
   [160]http://scottklement.com/pipermail/ftpapi/attachments/201307
   >    02/f
   >    > >     ea97
   >    > >       de9/attachment.zip>
   >    > >       ------------------------------
   >    > >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >       This is the FTPAPI mailing list digest.  To unsubscribe,
   go
   >    to:
   >    > >
   >
   [9][20][20][161]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >       End of Ftpapi Digest, Vol 81, Issue 3
   >    > >       *************************************
   >    > >       This message contains confidential information. To know
   more,
   >    please
   >    > >       click on the following link:
   >    [21][21][162]http://disclaimer.bureauveritas.com
   >    > >     References
   >    > >       1.
   [22][22][163]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >       2. [23][23][164]http://disclaimer.bureauveritas.com/
   >    > >       3.
   >    [24][24][165]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >       4. [25][25][166]http://disclaimer.bureauveritas.com/
   >    > >       5.
   >    [26][26][167]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >       6. [27][27][168]http://disclaimer.bureauveritas.com/
   >    > >       7.
   >    [28][28][169]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >       8.
   >    > >
   >    [29][29]
   [170]http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
   >    ea97
   >    > >     de9/attachment.zip
   >    > >       9.
   >    [30][30][171]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >     -------------- next part --------------
   >    > >     A non-text attachment was scrubbed...
   >    > >     Name: graycol.gif
   >    > >     Type: image/gif
   >    > >     Size: 105 bytes
   >    > >     Desc: not available
   >    > >     URL:
   >    > >
   >    <[31][31]
   [172]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >    9279
   >    > >     210e/attachment.gif>
   >    > >     -------------- next part --------------
   >    > >     A non-text attachment was scrubbed...
   >    > >     Name: pic06064.gif
   >    > >     Type: image/gif
   >    > >     Size: 1255 bytes
   >    > >     Desc: not available
   >    > >     URL:
   >    > >
   >    <[32][32]
   [173]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >    9279
   >    > >     210e/attachment-0001.gif>
   >    > >     -------------- next part --------------
   >    > >     A non-text attachment was scrubbed...
   >    > >     Name: ecblank.gif
   >    > >     Type: image/gif
   >    > >     Size: 45 bytes
   >    > >     Desc: not available
   >    > >     URL:
   >    > >
   >    <[33][33]
   [174]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >    9279
   >    > >     210e/attachment-0002.gif>
   >    > >     ------------------------------
   >    > >     Message: 2
   >    > >     Date: Tue, 2 Jul 2013 13:14:33 +0200
   >    > >     From: thomas.raddatz@xxxxxx
   >    > >     To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     Subject: Re: RE Ftpapi Digest, Vol 81, Issue 3
   >    > >     Message-ID:
   >    > >
   >    <OFE220083F.9F11B05A-ONC1257B9C.003D4C5B-C1257B9C.003DC1F8@xxxxxx>
   >    > >     Content-Type: text/plain; charset="iso-8859-1"
   >    > >     OK. That means that you have WSDL2RPG v1.15.5 or lower,
   because
   >    message
   >    > >     description USR5020 has been changed with 1.15.6, right?
   >    > >     Please replace member USR5020 with the attached one and
   try
   to
   >    compile
   >    > >     again.
   >    > >     Thomas.
   >    > >     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   02.07.2013
   >    12:56:21:
   >    > >     > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   >    > >     > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   >    > >     > Kopie: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   >    > >     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     > Datum: 02.07.2013 13:05
   >    > >     > Betreff: RE Ftpapi Digest, Vol 81, Issue 3
   >    > >     > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     >
   >    > >     >
   >    > >     > hi
   >    > >     >
   >    > >     > i have a compilation error
   >    > >     > USR50203 is not find
   >    > >     >
   >    > >     >
   >    > >     > regards
   >    > >     >
   >    > >     > Gilles Renne
   >    > >     >
   >    > >     >
   >    > >     >
   >    > >     >
   >    > >     >
   >    > >     >              ftpapi-request@li
   >    > >     >              sts.scottklement.
   >    > >     >              com A
   >    > >     >              Envoy? par :
   >    ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     >              ftpapi-bounces@li cc
   >    > >     >              sts.scottklement.
   >    > >     >              com Objet
   >    > >     >                                        Ftpapi Digest,
   Vol
   81,
   >    Issue 3
   >    > >     > R?f.
   >    > >     >              02/07/2013 11:12
   >    > >     >
   >    > >     >
   >    > >     >              Veuillez r?pondre
   >    > >     >                      ?
   >    > >     >              ftpapi@xxxxxxxxxx
   >    > >     >                tklement.com
   >    > >     >
   >    > >     >
   >    > >     >
   >    > >     >
   >    > >     >
   >    > >     >
   >    > >     > Send Ftpapi mailing list submissions to
   >    > >     >        ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     >
   >    > >     > To subscribe or unsubscribe via the World Wide Web,
   visit
   >    > >     >
   >    [34][34][175]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >     > or, via email, send a message with subject or body
   'help'
   to
   >    > >     >        ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     >
   >    > >     > You can reach the person managing the list at
   >    > >     >        ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     >
   >    > >     > When replying, please edit your Subject line so it is
   more
   >    specific
   >    > >     > than "Re: Contents of Ftpapi digest..."
   >    > >     >
   >    > >     >
   >    > >     > Today's Topics:
   >    > >     >
   >    > >     >    1. Re: Problem to send DB characters - Remove Escape
   >    characters
   >    > >     >       (thomas.raddatz@xxxxxx)
   >    > >     >
   >    > >     >
   >    > >     >
   >    > >
   >
   ----------------------------------------------------------------------
   >    > >     >
   >    > >     > Message: 1
   >    > >     > Date: Tue, 2 Jul 2013 11:12:41 +0200
   >    > >     > From: thomas.raddatz@xxxxxx
   >    > >     > To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     > Subject: Re: Problem to send DB characters - Remove
   Escape
   >    characters
   >    > >     > Message-ID:
   >    > >     >
   >    > >     >
   >    <OF93CBA716.D3999555-ONC1257B9C.00312B7E-C1257B9C.003299DF@xxxxxx>
   >    > >     > Content-Type: text/plain; charset="us-ascii"
   >    > >     >
   >    > >     >
   >    > >     > Gilles,
   >    > >     >
   >    > >     > I added some procedures to module WSDL2R98 of service
   program
   >    > >     WSDL2RPGRT
   >    > >     > to control the integrated XML entity encoder. Replace
   the
   >    existing
   >    > >     source
   >    > >     > members and reinstall WSDL2RPG if you want to use the
   new
   >    procedures:
   >    > >     >
   >    > >     >
   >    > >     >   //  Enables/disables the integrated XML entity encode.
   >    > >     >   XmlEntityEncoder_setEnabled(isEnabled)
   >    > >     >
   >    > >     >
   >    > >     >   //  Returns the enabled status of the integrated XML
   entity
   >    > >     encoder.
   >    > >     >   isEnabled = XmlEntityEncoder_isEnabled()
   >    > >     >
   >    > >     >
   >    > >     >   //  Encodes XML entities up to 64k (V5R4 and lower).
   >    > >     >   encoded = XmlEntityEncoder_encode(i_value)
   >    > >     >
   >    > >     >
   >    > >     >   //  Encodes XML entities up to 1MB (V6R1 or higher).
   >    > >     >   encoded = XmlEntityEncoder_encodeLarge(i_value)
   >    > >     >
   >    > >     >
   >    > >     >   //  Encodes XML entities up to 16MB (V6R1 or higher).
   >    > >     >   XmlEntityEncoder_encodeV6(
   >    > >     >      i_value: %addr(encoded): %addr(encoded: *DATA):
   >    %size(encoded));
   >    > >     >
   >    > >     >
   >    > >     > Regards,
   >    > >     >
   >    > >     >
   >    > >     > Thomas.
   >    > >     >
   >    > >     >
   >    > >     >
   >    > >     > ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   01.07.2013
   >    14:33:34:
   >    > >     >
   >    > >     > > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   >    > >     > > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   >    > >     > > Datum: 01.07.2013 14:41
   >    > >     > > Betreff: Problem to send DB characters - Remove Escape
   >    characters
   >    > >     > > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     > >
   >    > >     > >
   >    > >     > > Hi,
   >    > >     > >
   >    > >     > > I try to send chineese characters like
   >    > >     > >
   >    > >     > > when i view this on Iseries
   >    > >     > > i see
   >    > >     > >
   >    > >     > >
   >    > >     > >
   >    > >     > > So chineese characters 5075
   >    > >     > >
   >    > >     > > has a & , then this characters is remove for escape
   >    characters
   >    > >     function
   >    > >     > > ( XmlEntityEncoder_encodeToStream)
   >    > >     > >
   >    > >     > > and then after the i_conv  function is wrong because a
   db
   >    character
   >    > >     lost
   >    > >     > > one hexa decimal value.
   >    > >     > >
   >    > >     > > what can i do do prevent this ?????
   >    > >     > >
   >    > >     > > regards
   >    > >     > >
   >    > >     > > Gilles Renne
   >    > >     > > This message contains confidential information. To
   know
   >    more,
   >    > >     please
   >    > >     > > click on the following link:
   >    > >     [35][35][176]http://disclaimer.bureauveritas.com
   >    > >     > > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
   >    entfernt]
   >    > >     > > [Bild entfernt]
   >    > >     > >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >     > > This is the FTPAPI mailing list.  To unsubscribe,
   please
   go
   >    to:
   >    > >     > > [36][36]
   [177]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.
   >    > >     > -------------- next part --------------
   >    > >     >    Gilles,
   >    > >     >    I added some procedures to module WSDL2R98 of service
   >    program
   >    > >     >    WSDL2RPGRT to control the integrated XML entity
   encoder.
   >    Replace
   >    > >     the
   >    > >     >    existing source members and reinstall WSDL2RPG if you
   want
   >    to use
   >    > >     the
   >    > >     >    new procedures:
   >    > >     >      //  Enables/disables the integrated XML entity
   encode.
   >    > >     >      XmlEntityEncoder_setEnabled(isEnabled)
   >    > >     >      //  Returns the enabled status of the integrated
   XML
   >    entity
   >    > >     encoder.
   >    > >     >      isEnabled = XmlEntityEncoder_isEnabled()
   >    > >     >      //  Encodes XML entities up to 64k (V5R4 and
   lower).
   >    > >     >      encoded = XmlEntityEncoder_encode(i_value)
   >    > >     >      //  Encodes XML entities up to 1MB (V6R1 or highe
   r).
   >    > >     >      encoded = XmlEntityEncoder_encodeLarge(i_value)
   >    > >     >      //  Encodes XML entities up to 16MB (V6R1 or
   higher).
   >    > >     >      XmlEntityEncoder_encodeV6(
   >    > >     >         i_value: %addr(encoded): %addr(encoded: *DATA):
   >    > >     %size(encoded));
   >    > >     >    Regards,
   >    > >     >    Thomas.
   >    > >     >    ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   >    01.07.2013
   >    > >     14:33:34:
   >    > >     >    > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   >    > >     >    > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   >    > >     >    > Datum: 01.07.2013 14:41
   >    > >     >    > Betreff: Problem to send DB characters - Remove
   Escape
   >    > >     characters
   >    > >     >    > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >    > >     >    >
   >    > >     >    >
   >    > >     >    > Hi,
   >    > >     >    >
   >    > >     >    > I try to send chineese characters like
   >    > >     >    >
   >    > >     >    > when i view this on Iseries
   >    > >     >    > i see
   >    > >     >    >
   >    > >     >    >
   >    > >     >    >
   >    > >     >    > So chineese characters 5075
   >    > >     >    >
   >    > >     >    > has a &am p; , then this characters is remove for
   escape
   >    characters
   >    > >     >    function
   >    > >     >    > ( XmlEntityEncoder_encodeToStream)
   >    > >     >    >
   >    > >     >    > and then after the i_conv  function is wrong
   because a
   >    db
   >    > >     character
   >    > >     >    lost
   >    > >     >    > one hexa decimal value.
   >    > >     >    >
   >    > >     >    > what can i do do prevent this ?????
   >    > >     >    >
   >    > >     >    > regards
   >    > >     >    >
   >    > >     >    > Gilles Renne
   >    > >     >    > This message contains confidential information. To
   know
   >    more,
   >    > >     please
   >    > >     >    > click on the following link:
   >    > >     [1][37][37][178]http://disclaimer.bureauveritas.com
   >    > >     >    > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   [Bild
   >    entfernt]
   >    > >     >    > [Bild entfernt]
   >    > >     >    >
   >    > >     >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >     >    > This is the FTPAPI mailing list.  To unsubscribe,
   please
   >    go to:
   >    > >     >    >
   >
   [2][38][38][179]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. [39][39][180]http://disclaimer.bureauveritas.com/
   >    > >     >    2.
   >    [40][40][181]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >     > -------------- next part --------------
   >    > >     > A non-text attachment was scrubbed...
   >    > >     > Name: Patch_XmlEncoder_for_v1.15.5+.zip
   >    > >     > Type: application/zip
   >    > >     > Size: 31638 bytes
   >    > >     > Desc: not available
   >    > >     > URL: <
   >    > >     >
   >    [41][41]
   [182]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >    > >     > fea97de9/attachment.zip
   >    > >     > >
   >    > >     >
   >    > >     > ------------------------------
   >    > >     >
   >    > >     >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >     > This is the FTPAPI mailing list digest.  To unsubscribe,
   go
   >    to:
   >    > >     >
   [42][42][183]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >     >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >     >
   >    > >     >
   >    > >     > End of Ftpapi Digest, Vol 81, Issue 3
   >    > >     > *************************************
   >    > >     > This message contains confidential information. To know
   more,
   >    please
   >    > >     > click on the following link:
   >    [43][43][184]http://disclaimer.bureauveritas.com
   >    > >     > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   >    > >     >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >     > This is the FTPAPI mailing list.  To unsubscribe, please
   go
   >    to:
   >    > >     >
   [44][44][185]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.
   >    > >     -------------- next part --------------
   >    > >       OK. That means that you have WSDL2RPG v1.15.5 or lower,
   >    because
   >    > >     message
   >    > >       description USR5020 has been changed with 1.15.6, right?
   >    > >       Please replace member USR5020 with the attached one and
   try
   >    to
   >    > >     compile
   >    > >       again.
   >    > >       Thomas.
   >    > >       ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   02.07.2013
   >    12:56:21:
   >    > >       > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   >    > >       > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   >    > >       > Kopie: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   >    > >       ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       > Datum: 02.07.2013 13:05
   >    > >       > Betreff: RE Ftpapi Digest, Vol 81, Issue 3
   >    > >       > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       >
   >    > >       >
   >    > >       > hi
   >    > >       >
   >    > >       > i have a compilation error
   >    > >       > USR50203 is not find
   >    > >       >
   >    > >       >
   >    > >       > regards
   >    > >       >
   >    > >       > Gilles Renne
   >    > >       >
   >    > >       >
   >    > >       >
   >    > >       >
   >    > >       >
   >    > >       >              ftpapi-request@li
   >    > >       >              sts.scottklement.
   >    > >       >              com
   >    > >           A
   >    > >       >              Envoy? par :
   >    > >     ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       >              ftpapi-bounces@li
   >    > >          cc
   >    > >       >              sts.scottklement.
   >    > >       >              com
   >    > >       Objet
   >    > >       >                                        Ftpapi Digest,
   Vol
   >    81, Issue
   >    > >     3
   >    > >       >
   >    > >       R?f.
   >    > >       >              02/07/2013 11:12
   >    > >       >
   >    > >       >
   >    > >       >              Veuillez r?pondre
   >    > >       >                      ?
   >    > >       >              ftpapi@xxxxxxxxxx
   >    > >       >                tklement.com
   >    > >       >
   >    > >       >
   >    > >       >
   >    > >       >
   >    > >       >
   >    > >       >
   >    > >       > Send Ftpapi mailing list submissions to
   >    > >       >        ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       >
   >    > >       > To subscribe or unsubscribe via the World Wide Web,
   visit
   >    > >       >
   >    [1][45][45][186]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >       > or, via email, send a message with subject or body
   'help'
   >    to
   >    > >       >        ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       >
   >    > >       > You can reach the person managing the list at
   >    > >       >        ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       >
   >    > >       > When replying, please edit your Subject line so it is
   more
   >    specific
   >    > >       > than "Re: Contents of Ftpapi digest..."
   >    > >       >
   >    > >       >
   >    > >       > Today's Topics:
   >    > >       >
   >    > >       >    1. Re: Problem to send DB characters - Remove
   Escape
   >    characters
   >    > >       >       (thomas.raddatz@xxxxxx)
   >    > >       >
   >    > >       >
   >    > >       >
   >    > >
   >    > >
   >
   ----------------------------------------------------------------------
   >    > >       >
   >    > >       > Message: 1
   >    > >       > Date: Tue, 2 Jul 2013 11:12:41 +0200
   >    > >       > From: thomas.raddatz@xxxxxx
   >    > >       > To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       > Subject: Re: Problem to send DB characters - Remove
   Escape
   >    > >     characters
   >    > >       > Message-ID:
   >    > >       >
   >    > >       >
   >    <OF93CBA716.D3999555-ONC1257B9C.00312B7E-C1257B9C.003299DF@xxxxxx>
   >    > >       > Content-Type: text/plain; charset="us-ascii"
   >    > >       >
   >    > >       >
   >    > >       > Gilles,
   >    > >       >
   >    > >       > I added some procedures to module WSDL2R98 of service
   >    program
   >    > >       WSDL2RPGRT
   >    > >       > to control the integrated XML entity encoder. Replace
   the
   >    existing
   >    > >       source
   >    > >       > members and reinstall WSDL2RPG if you want to use the
   new
   >    > >     procedures:
   >    > >       >
   >    > >       >
   >    > >       >   //  Enables/disables the integrated XML entity
   encode.
   >    > >       >   XmlEntityEncoder_setEnabled(isEnabled)
   >    > >       >
   >    > >       >
   >    > >       >   //  Returns the enabled status of the integrated XML
   >    entity
   >    > >       encoder.
   >    > >       >   isEnabled = XmlEntityEncoder_isEnabled()
   >    > >       >
   >    > >       >
   >    > >       >   //  Encodes XML entities up to 64k (V5R4 and lower).
   >    > >       >   encoded = XmlEntityEncoder_encode(i_value)
   >    > >       >
   >    > >       >
   >    > >       >   //  Encodes XML entities up to 1MB (V6R1 or higher).
   >    > >       >   encoded = XmlEntityEncoder_encodeLarge(i_value)
   >    > >       >
   >    > >       >
   >    > >       >   //  Encodes XML entities up to 16MB (V6R1 or
   higher).
   >    > >       >   XmlEntityEncoder_encodeV6(
   >    > >       >      i_value: %addr(encoded): %addr(encoded: *DATA):
   >    > >     %size(encoded));
   >    > >       >
   >    > >       >
   >    > >       > Regards,
   >    > >       >
   >    > >       >
   >    > >       > Thomas.
   >    > >       >
   >    > >       >
   >    > >       >
   >    > >       > ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   01.07.2013
   >    > >     14:33:34:
   >    > >       >
   >    > >       > > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   >    > >       > > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   >    > >       > > Datum: 01.07.2013 14:41
   >    > >       > > Betreff: Problem to send DB characters - Remove
   Escape
   >    characters
   >    > >       > > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       > >
   >    > >       > >
   >    > >       > > Hi,
   >    > >       > >
   >    > >       > > I try to send chineese characters like
   >    > >       > >
   >    > >       > > when i view this on Iseries
   >    > >       > > i see
   >    > >       > >
   >    > >       > >
   >    > >       > >
   >    > >       > > So chineese characters 5075
   >    > >       > >
   >    > >       > > has a & , then this characters is remove for escape
   >    characters
   >    > >       function
   >    > >       > > ( XmlEntityEncoder_encodeToStream)
   >    > >       > >
   >    > >       > > and then after the i_conv  function is wrong because
   a
   db
   >    > >     character
   >    > >       lost
   >    > >       > > one hexa decimal value.
   >    > >       > >
   >    > >       > > what can i do do prevent this ?????
   >    > >       > >
   >    > >       > > regards
   >    > >       > >
   >    > >       > > Gilles Renne
   >    > >       > > This message contains confidential information. To
   know
   >    more,
   >    > >       please
   >    > >       > > click on the following link:
   >    > >     [2][46][46][187]http://disclaimer.bureauveritas.com
   >    > >       > > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   [Bild
   >    entfernt]
   >    > >       > > [Bild entfernt]
   >    > >       > >
   >    > >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >       > > This is the FTPAPI mailing list.  To unsubscribe,
   please
   >    go to:
   >    > >       > >
   >
   [3][47][47][188]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.
   >    > >       > -------------- next part --------------
   >    > >       >    Gilles,
   >    > >       >    I added some procedures to module WSDL2R98 of
   service
   >    program
   >    > >       >    WSDL2RPGRT to control the integrated XML entity
   encoder.
   >    Replace
   >    > >       the
   >    > >       >    existing source members and reinstall WSDL2RPG if
   you
   >    want to
   >    > >     use
   >    > >       the
   >    > >       >    new procedures:
   >    > >       >      //  Enables/disables the integrated XML entity
   encode.
   >    > >       >      XmlEntityEncoder_setEnabled(isEnabled)
   >    > >       >      //  Returns the enabled status of the integrated
   XML
   >    entity
   >    > >       encoder.
   >    > >       >      isEnabled = XmlEntityEncoder_isEnabled()
   >    > >       >      //  Encodes XML entities up to 64k (V5R4 and
   lower).
   >    > >       >      encoded = XmlEntityEncoder_encode(i_value)
   >    > >       >      //  Encodes XML entities up to 1MB (V6R1 or
   higher).
   >    > >       >      encoded = XmlEntityEncoder_encodeLarge(i_value)
   >    > >       >      //  Encodes XML entities up to 16MB (V6R1 or
   higher).
   >    > >       >      XmlEntityEncoder_encodeV6(
   >    > >       >         i_value: %addr(encoded): %addr(encoded:
   *DATA):
   >    > >       %size(encoded));
   >    > >       >    Regards,
   >    > >       >    Thomas.
   >    > >       >    ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   >    01.07.2013
   >    > >       14:33:34:
   >    > >       >    > Von: gilles.renne@xxxxxxxxxxxxxxxxx
   >    > >       >    > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
   >    > >       >    > Datum: 01.07.2013 14:41
   >    > >       >    > Betreff: Problem to send DB characters - Remove
   Escape
   >    > >       characters
   >    > >       >    > Gesendet von:
   ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   >    > >       >    >
   >    > >       >    >
   >    > >       >    > Hi,
   >    > >       >    >
   >    > >       >    > I try to send chineese characters like
   >    > >       >    >
   >    > >       >    > when i view this on Iseries
   >    > >       >    > i see
   >    > >       >    >
   >    > >       >    >
   >    > >       >    >
   >    > >       >    > So chineese characters 5075
   >    > >       >    >
   >    > >       >    > has a & , then this characters is remove for
   escape
   >    characters
   >    > >       >    function
   >    > >       >    > ( XmlEntityEncoder_encodeToStream)
   >    > >       >    >
   >    > >       >    > and then after the i_conv  function is wrong
   because
   a
   >    db
   >    > >       character
   >    > >       >    lost
   >    > >       >    > one hexa decimal value.
   >    > >       >    >
   >    > >       >    > what can i do do prevent this ?????
   >    > >       >    >
   >    > >       >    > regards
   >    > >       >    >
   >    > >       >    > Gilles Renne
   >    > >       >    > This message contains confidential information.
   To
   >    know more,
   >    > >       please
   >    > >       >    > click on the following link:
   >    > >       [1][4][48][48][189]http://disclaimer.bureauveritas.com
   >    > >       >    > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   [Bild
   >    > >     entfernt]
   >    > >       >    > [Bild entfernt]
   >    > >       >    >
   >    > >       >
   >    > >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >       >    > This is the FTPAPI mailing list.  To unsubscribe,
   >    please go
   >    > >     to:
   >    > >       >    >
   >
   [2][5][49][49][190]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.
   [6][50][50][191]http://disclaimer.bureauveritas.com/
   >    > >       >    2.
   >
   [7][51][51][192]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >       > -------------- next part --------------
   >    > >       > A non-text attachment was scrubbed...
   >    > >       > Name: Patch_XmlEncoder_for_v1.15.5+.zip
   >    > >       > Type: application/zip
   >    > >       > Size: 31638 bytes
   >    > >       > Desc: not available
   >    > >       > URL: <
   >    > >       >
   >    > >
   >    [8][52][52]
   [193]http://scottklement.com/pipermail/ftpapi/attachments/2013070
   >    2/
   >    > >       > fea97de9/attachment.zip
   >    > >       > >
   >    > >       >
   >    > >       > ------------------------------
   >    > >       >
   >    > >       >
   >    > >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >       > This is the FTPAPI mailing list digest.  To
   unsubscribe,
   go
   >    to:
   >    > >       >
   >
   [9][53][53][194]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >       >
   >    > >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >       >
   >    > >       >
   >    > >       > End of Ftpapi Digest, Vol 81, Issue 3
   >    > >       > *************************************
   >    > >       > This message contains confidential information. To
   know
   >    more,
   >    > >     please
   >    > >       > click on the following link:
   >    > >     [10][54][54][195]http://disclaimer.bureauveritas.com
   >    > >       > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   >    > >       >
   >    > >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >       > This is the FTPAPI mailing list.  To unsubscribe,
   please
   go
   >    to:
   >    > >       >
   >
   [11][55][55][196]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.
   [56][56][197]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >       2. [57][57][198]http://disclaimer.bureauveritas.com/
   >    > >       3.
   >    [58][58][199]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >       4. [59][59][200]http://disclaimer.bureauveritas.com/
   >    > >       5.
   >    [60][60][201]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >       6. [61][61][202]http://disclaimer.bureauveritas.com/
   >    > >       7.
   >    [62][62][203]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >       8.
   >    [63][63]
   [204]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >    > >       9.
   >    [64][64][205]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >      10. [65][65][206]http://disclaimer.bure auveritas.com/
   >    > >      11.
   >    [66][66][207]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >     -------------- next part --------------
   >    > >     A non-text attachment was scrubbed...
   >    > >     Name: USR5020.rpgle
   >    > >     Type: application/octet-stream
   >    > >     Size: 468 bytes
   >    > >     Desc: not available
   >    > >     URL:
   >    > >
   >    <[67][67]
   [208]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >    26ba
   >    > >     65e4/attachment.obj>
   >    > >     ------------------------------
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >     This is the FTPAPI mailing list digest.  To unsubscribe,
   go
   to:
   >    > >
   [68][68][209]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >     End of Ftpapi Digest, Vol 81, Issue 4
   >    > >     *************************************
   >    > >     This message contains confidential information. To know
   more,
   >    please
   >    > >     click on the following link:
   >    [69][210]http://disclaimer.bureauveritas.com
   >    > >
   >    > > References
   >    > >
   >    > >     1.
   [70][211]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >     2.
   [71][212]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >     3. [72][213]http://disclaimer.bureauveritas.com/
   >    > >     4.
   [73][214]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >     5. [74][215]http://disclaimer.bureauveritas.com/
   >    > >     6.
   [75][216]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >     7. [76][217]http://disclaimer.bureauveritas.com/
   >    > >     8.
   [77][218]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >     9.
   [78][219]http://scottklement.com/pipermail/ftpapi/attachments/
   >    > 20130702/fea97de9/attachment.zip
   >    > >    10.
   [79][220]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    11. [80][221]http://disclaimer.bureauveritas.com/
   >    > >    12.
   [81][222]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >    13. [82][223]http://disclaimer.bureauveritas.com/
   >    > >    14.
   [83][224]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    15. [84][225]http://disclaimer.bureauveritas.com/
   >    > >    16.
   [85][226]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    17. [86][227]http://disclaimer.bureauveritas.com/
   >    > >    18.
   [87][228]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    19.
   >    [88]
   [229]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea9
   7
   >    > >    20.
   [89][230]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    21. [90][231]http://disclaimer.bureauveritas.com/
   >    > >    22.
   [91][232]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >    23. [92][233]http://disclaimer.bureauveritas.com/
   >    > >    24.
   [93][234]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    25. [94][235]http://disclaimer.bureauveritas.com/
   >    > >    26.
   [95][236]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    27. [96][237]http://disclaimer.bureauveritas.com/
   >    > >    28.
   [97][238]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    29.
   [98][239]http://scottklement.com/pipermail/ftpapi/attachments/
   >    > 20130702/fea97de9/attachment.zip
   >    > >    30.
   [99][240]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    31.
   [100][241]http://scottklement.com/pipermail/ftpapi/attachments/
   >    > 20130702/9279210e/attachment.gif
   >    > >    32.
   [101][242]http://scottklement.com/pipermail/ftpapi/attachments/
   >    > 20130702/9279210e/attachment-0001.gif
   >    > >    33.
   [102][243]http://scottklement.com/pipermail/ftpapi/attachments/
   >    > 20130702/9279210e/attachment-0002.gif
   >    > >    34.
   [103][244]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >    35. [104][245]http://disclaimer.bureauveritas.com/
   >    > >    36.
   [105][246]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    37. [106][247]http://disclaimer.bureauveritas.com/
   >    > >    38.
   [107][248]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    39. [108][249]http://disclaimer.bureauveritas.com/
   >    > >    40.
   [109][250]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    41.
   >
   [110][251]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /
   >    > >    42.
   [111][252]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    43. [112][253]http://disclaimer.bureauveritas.com/
   >    > >    44.
   [113][254]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    45.
   [114][255]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >    46. [115][256]http://disclaimer.bureauveritas.com/
   >    > >    47.
   [116][257]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    48. [117][258]http://disclaimer.bureauveritas.com/
   >    > >    49.
   [118][259]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    50. [119][260]http://disclaimer.bureauveritas.com/
   >    > >    51.
   [120][261]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    52.
   >
   [121][262]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /
   >    > >    53.
   [122][263]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    54. [123][264]http://disclaimer.bureauveritas.com/
   >    > >    55.
   [124][265]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    56.
   [125][266]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >    57. [126][267]http://disclaimer.bureauveritas.com/
   >    > >    58.
   [127][268]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    59. [128][269]http://disclaimer.bureauveritas.com/
   >    > >    60.
   [129][270]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    61. [130][271]http://disclaimer.bureauveritas.com/
   >    > >    62.
   [131][272]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    63.
   >
   [132][273]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /
   >    > >    64.
   [133][274]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    65. [134][275]http://disclaimer.bureauveritas.com/
   >    > >    66.
   [135][276]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    67.
   [136][277]http://scottklement.com/pipermail/ftpapi/attachments/
   >    > 20130702/26ba65e4/attachment.obj
   >    > >    68.
   [137][278]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >
   >    > >
   >    > >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > > This is the FTPAPI mailing list.  To unsubscribe, please go
   to:
   >    > > [138][279]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >
   >    >
   >
   -----------------------------------------------------------------------
   >    > This is the FTPAPI mailing list.  To unsubscribe, please go to:
   >    > [139][280]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. [281]http://scottklement.com/mailman/listinfo/ftpapi
   >    2. [282]http://scottklement.com/mailman/listinfo/ftpapi
   >    3. [283]http://disclaimer.bureauveritas.com/
   >    4. [284]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    5. [285]http://disclaimer.bureauveritas.com/
   >    6. [286]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    7. [287]http://disclaimer.bureauveritas.com/
   >    8. [288]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    9.
   [289]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea9
   7d
   >   10. [290]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   11. [291]http://disclaimer.bureauveritas.com/
   >   12. [292]http://scottklement.com/mailman/listinfo/ftpapi
   >   13. [293]http://disclaimer.bureauveritas.com/
   >   14. [294]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   15. [295]http://disclaimer.bureauveritas.com/
   >   16. [296]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   17. [297]http://disclaimer.bureauveritas.com/
   >   18. [298]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   19.
   [299]http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
   >   20. [300]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   21. [301]http://disclaimer.bureauveritas.com/
   >   22. [302]http://scottklement.com/mailman/listinfo/ftpapi
   >   23. [303]http://disclaimer.bureauveritas.com/
   >   24. [304]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   25. [305]http://disclaimer.bureauveritas.com/
   >   26. [306]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   27. [307]http://disclaimer.bureauveritas.com/
   >   28. [308]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   29.
   [309]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea9
   7
   >   30. [310]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   31.
   [311]http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
   >   32.
   [312]http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
   >   33.
   [313]http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
   >   34. [314]http://scottklement.com/mailman/listinfo/ftpapi
   >   35. [315]http://disclaimer.bureauveritas.com/
   >   36. [316]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   37. [317]http://disclaimer.bureauveritas.com/
   >   38. [318]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   39. [319]http://disclaimer.bureauveritas.com/
   >   40. [320]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   41.
   [321]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >   42. [322]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   43. [323]http://disclaimer.bureauveritas.com/
   >   44. [324]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   45. [325]http://scottklement.com/mailman/listinfo/ftpapi
   >   46. [326]http://disclaimer.bureauveritas.com/
   >   47. [327]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   48. [328]http://disclaimer.bureauveritas.com/
   >   49. [329]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   50. [330]http://disclaimer.bureauveritas.com/
   >   51. [331]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   52.
   [332]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >   53. [333]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   54. [334]http://disclaimer.bureauveritas.com/
   >   55. [335]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   56. [336]http://scottklement.com/mailman/listinfo/ftpapi
   >   57. [337]http://disclaimer.bureauveritas.com/
   >   58. [338]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   59. [339]http://disclaimer.bureauveritas.com/
   >   60. [340]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   61. [341]http://disclaimer.bureauveritas.com/
   >   62. [342]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   63.
   [343]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >   64. [344]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   65. [345]http://disclaimer.bureauveritas.com/
   >   66. [346]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   67.
   [347]http://scottklement.com/pipermail/ftpapi/attachments/20130702/26ba
   >   68. [348]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   69. [349]http://disclaimer.bureauveritas.com/
   >   70. [350]http://scottklement.com/mailman/listinfo/ftpapi
   >   71. [351]http://scottklement.com/mailman/listinfo/ftpapi
   >   72. [352]http://disclaimer.bureauveritas.com/
   >   73. [353]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   74. [354]http://disclaimer.bureauveritas.com/
   >   75. [355]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   76. [356]http://disclaimer.bureauveritas.com/
   >   77. [357]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   78. [358]http://scottklement.com/pipermail/ftpapi/attachments/
   >   79. [359]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   80. [360]http://disclaimer.bureauveritas.com/
   >   81. [361]http://scottklement.com/mailman/listinfo/ftpapi
   >   82. [362]http://disclaimer.bureauveritas.com/
   >   83. [363]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   84. [364]http://disclaimer.bureauveritas.com/
   >   85. [365]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   86. [366]http://disclaimer.bureauveritas.com/
   >   87. [367]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   88.
   [368]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea9
   7
   >   89. [369]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   90. [370]http://disclaimer.bureauveritas.com/
   >   91. [371]http://scottklement.com/mailman/listinfo/ftpapi
   >   92. [372]http://disclaimer.bureauveritas.com/
   >   93. [373]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   94. [374]http://disclaimer.bureauveritas.com/
   >   95. [375]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   96. [376]http://disclaimer.bureauveritas.com/
   >   97. [377]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   98. [378]http://scottklement.com/pipermail/ftpapi/attachments/
   >   99. [379]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  100. [380]http://scottklement.com/pipermail/ftpapi/attachments/
   >  101. [381]http://scottklement.com/pipermail/ftpapi/attachments/
   >  102. [382]http://scottklement.com/pipermail/ftpapi/attachments/
   >  103. [383]http://scottklement.com/mailman/listinfo/ftpapi
   >  104. [384]http://disclaimer.bureauveritas.com/
   >  105. [385]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  106. [386]http://disclaimer.bureauveritas.com/
   >  107. [387]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  108. [388]http://disclaimer.bureauveritas.com/
   >  109. [389]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  110.
   [390]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >  111. [391]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  112. [392]http://disclaimer.bureauveritas.com/
   >  113. [393]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  114. [394]http://scottklement.com/mailman/listinfo/ftpapi
   >  115. [395]http://disclaimer.bureauveritas.com/
   >  116. [396]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  117. [397]http://disclaimer.bureauveritas.com/
   >  118. [398]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  119. [399]http://disclaimer.bureauveritas.com/
   >  120. [400]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  121.
   [401]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >  122. [402]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  123. [403]http://disclaimer.bureauveritas.com/
   >  124. [404]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  125. [405]http://scottklement.com/mailman/listinfo/ftpapi
   >  126. [406]http://disclaimer.bureauveritas.com/
   >  127. [407]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  128. [408]http://disclaimer.bureauveritas.com/
   >  129. [409]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  130. [410]http://disclaimer.bureauveritas.com/
   >  131. [411]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  132.
   [412]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >  133. [413]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  134. [414]http://disclaimer.bureauveritas.com/
   >  135. [415]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  136. [416]http://scottklement.com/pipermail/ftpapi/attachments/
   >  137. [417]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  138. [418]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  139. [419]http://www.scottklement.com/mailman/listinfo/ftpapi
   > -------------- next part --------------
   > A non-text attachment was scrubbed...
   > Name: WSDL2R98.rpgle
   > Type: application/octet-stream
   > Size: 291731 bytes
   > Desc: not available
   > URL: <
   > [420]http://scottklement.com/pipermail/ftpapi/attachments/20130704/
   > b179b67e/attachment.obj
   > >
   >
   > ------------------------------
   >
   >
   -----------------------------------------------------------------------
   > This is the FTPAPI mailing list digest.  To unsubscribe, go to:
   > [421]http://www.scottklement.com/mailman/listinfo/ftpapi
   >
   -----------------------------------------------------------------------
   >
   >
   > End of Ftpapi Digest, Vol 81, Issue 8
   > *************************************
   >
   >
   > This message contains confidential information. To know more, please
   > click on the following link: [422]http://disclaimer.bureauveritas.com
   > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   >
   -----------------------------------------------------------------------
   > This is the FTPAPI mailing list.  To unsubscribe, please go to:
   > [423]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.
   -------------- next part --------------
     Gilles,
     For now I do not have any idea how to handle you chineese '&'
     correctly. Therefore all I can do is to let you decide whether or not
     you need to encode your string values. This way WSDL2RPG works the
   same
     as HTTP API does. Therefore you need to set 'g_doEncodeXmlEntities'
   to
     'cFalse' (= *OFF).
     When 'g_doEncodeXmlEntities' is set to 'cFalse', string values are
   not
     automatically encoded and, for example, your '&' is not changed to
     '&amp;'. If you need to encode your string values, you need to call
     XmlEntityEncoder_encode() before you assign the value to the input
   data
     structure (= SOAP request message).
     Usually (with 'g_doEncodeXmlEntities = cTrue') you can directly
   assign
     the value to the data structure and WSDL2RPG will enocde the value
     under the cover:
        // 'Jill & Joe' is encoded to 'Jill &amp; Joe'
        requestMsg.whatever.aField = 'Jill & Joe';
     With 'g_doEncodeXmlEntities = cFalse' WSDL2RPG will not encode the
     value:
        // 'Jill & Joe' is not changed
        requestMsg.whatever.aField = 'Jill & Joe';
        // 'Jill & Joe' is encoded to 'Jill &amp; Joe'
        requestMsg.whatever.aField = XmlEntityEncoder_encode('Jill &
   Joe');
     > now i have the same error than you
     > -1: Failed unmarshalling value '*N' of field '*N'.
     Did you replace WSDL2R98 with the latest version that I posted,
     yesterday? Please double check the procedure GenericStream_write()
     looks like this:
       if (i_buflen = 0); // These 3 lines
          return 0;       // have been added!
       endif;
       size = Generic_write(i_fd: i_pBuffer: i_buflen);
       if (size = -1);
          clear USR5018;
          USR50181 = f_errno();
          USR50182 = f_strerror(f_errno());
          AppMsg_sendEscMsgAndDump(AppMsg_new('USR5018': USR5018));
       endif;
     Regards,
     Thomas.
     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 04.07.2013 14:40:07:
     > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     > Kopie: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > Datum: 04.07.2013 14:51
     > Betreff: RE Ftpapi Digest, Vol 81, Issue 8
     > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >
     >
     > hi
     >
     > in fact i do not understand that i need to put
   g_doEncodeXmlEntities
     value
     > to cfalse
     > now i have the same error than you
     > -1: Failed unmarshalling value '*N' of field '*N'.
     >
     >
     > regards
     >
     > Gilles Renne
     >
     >
     >
     >
     >
     >              ftpapi-request@li
     >              sts.scottklement.
     >              com
         A
     >              Envoy? par :
   ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >              ftpapi-bounces@li
        cc
     >              sts.scottklement.
     >              com
     Objet
     >                                        Ftpapi Digest, Vol 81, Issue
   8
     >
     R?f.
     >              04/07/2013 12:03
     >
     >
     >              Veuillez r?pondre
     >                      ?
     >              ftpapi@xxxxxxxxxx
     >                tklement.com
     >
     >
     >
     >
     >
     >
     > Send Ftpapi mailing list submissions to
     >        ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >
     > To subscribe or unsubscribe via the World Wide Web, visit
     >        [1][424]http://scottklement.com/mailman/listinfo/ftpapi
     > or, via email, send a message with subject or body 'help' to
     >        ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     >
     > You can reach the person managing the list at
     >        ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
     >
     > When replying, please edit your Subject line so it is more specific
     > than "Re: Contents of Ftpapi digest..."
     >
     >
     > Today's Topics:
     >
     >    1. Re: Problem to send DB characters - Remove Escape characters
     >       (thomas.raddatz@xxxxxx)
     >
     >
     >

   ----------------------------------------------------------------------
     >
     > Message: 1
     > Date: Thu, 4 Jul 2013 12:03:45 +0200
     > From: thomas.raddatz@xxxxxx
     > To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > Subject: Re: Problem to send DB characters - Remove Escape
   characters
     > Message-ID:
     >
     > <OF2645C1E1.03B11DE5-ONC1257B9E.00361690-C1257B9E.003746B7@xxxxxx>
     > Content-Type: text/plain; charset="iso-8859-1"
     >
     >
     > Gilles,
     >
     > My integration test found an error for elements with no data. For
     these
     > elements the following messages showed up in the job log and the
   HTTP
     API
     > debug log:
     >
     > Job log:
     > --------
     >
     > The length requested for storage allocation is out of range.
     > Failed unmarshalling value '*N' of field '*N'.
     >
     >
     > HTTP API debug log:
     > -------------------
     >
     > WSDL2RPG: call stack frames:
     > Program      Library      Act.Group    Statement    Procedure
     > QCMD         QSYS         *DFTACTGRP        /04F8
     > START#RZ     RADDATZ      *DFTACTGRP                _CL_PEP
     > START#RZ     RADDATZ      *DFTACTGRP   6000         START#RZ
     > QUOCPP       QPDA         *DFTACTGRP        /079D
     > QUOMAIN      QPDA         *DFTACTGRP        /1139
     > QUOCMD       QSYS         *DFTACTGRP        /03B3
     > WSDLIPMR17   RADDATZ      *NEW
     _QRNP_PEP_WSDLIPMR17
     > WSDLIPMR17   RADDATZ      *NEW         37600        WSDLIPMR17
     > WSDLIPMR17   RADDATZ      *NEW         178700       MAIN
     > WSDLIPMR17   RADDATZ      *NEW         159000
     > FARMACLICK2005001FCKRICHIESTADOCUMENTO_FCKRICHIESTADOCUMENTO
     > PMR017A      RADDATZ      *NEW         728
     > Farmaclick2005001FCKRichiestaDocumento_FCKRichiestaDocumento
     > WSDL2RPGRT   RADDATZ      *NEW         354200
     > WSDL2R98_Marshaller_toStringV6
     > WSDL2RPGRT   RADDATZ      *NEW         35200
     > WSDL2R90_AppMsg_sendEscMsgAndDump
     > WSDL2RPGRT   RADDATZ      *NEW         39300
     > WSDL2R71_http_DebugLog_dumpCallStack
     > WSDL2RPGRT   RADDATZ      *NEW         20200
   WSDL2R80_CallStack_dump
     >
     >
     > WSDL2RPG: USR5023: Failed unmarshalling value '*N' of field '*N'.
     >                    Cause . . . . . :   The following error message
     > prevented the value of field '*N' from being retrieved from XPath
     '*N/*N'.
     > Message text  . :   The length requested for storage allocation is
     out of
     > range.
     >           received from procedure: BASICS1R1_f_sndPgmMsg
     >                     and statement: 54400
     > ** 2013-07-04-11.49.56.091000: Leaving
     > Farmaclick2005001FCKRichiestaDocumento_FCKRichiestaDocumento()
     >
     >
     >
     > Since your debug log is empty, there must be a different problem on
     your
     > side. Nevertheless, you should replace WSDL2R98 with the attached
     member.
     >
     > Did you have time to debug WSDL2R98 at your side? What is the
   result?
     >
     > Regards,
     >
     > Thomas.
     >
     >
     >
     >
     > ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 03.07.2013
   22:44:22:
     >
     > > Von: thomas.raddatz@xxxxxxxxxxx
     > > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     > > Datum: 03.07.2013 22:59
     > > Betreff: Re: Problem to send DB characters - Remove Escape
     characters
     > > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > >
     > > Gilles,
     > >
     > > It is hard to believe that it does not work for you. It is true
     that I
     > did
     > > not run a complete integration test but I tested the new
     functionality
     > with
     > > an extensive RPGUnit test. The procedures I tested are:
     > >
     > >     Marshaller_toString()
     > >     Marshaller_toStringV6()
     > >     XmlEntityEncoder_encode()
     > >     XmlEntityEncoder_encodeLarge()
     > >     XmlEntityEncoder_encodeV6()
     > >
     > > May you please start the debugger for service program WSDL2RPGRT
     and
     > module
     > > WSDL2R98 and add a breakpoint to the marshaller that your stub
     uses. For
     >
     > > example, starting at Marshaller_toString(), the program flow is
     like
     > this:
     > >
     > >     Marshaller_toString()
     > >     -> encodeXmlEntityToFieldV6() // adapter procedure
     > >        -> encodeXmlEntityToStream()
     > >           -> GenericStream_write()
     > >
     > > And for the V6 counterpart it is:
     > >
     > >     Marshaller_toStringV6()
     > >        -> encodeXmlEntityToStream()
     > >           -> GenericStream_write()
     > >
     > > So if the entity encoder is disabled the program should go
   through
     > > encodeXmlEntityToStream() in both cases. From
     encodeXmlEntityToStream()
     > it
     > > should directly call GenericStream_write() without going through
     > > encodeXmlEntityToStreamInternally().
     > >
     > > GenericStream_write() either writes the data to the output field
   or
     for
     > the
     > > new V6 procedures directly appends the data to a
     > "ManagedMemoryDataSource".
     > >
     > > For the "old" non V6 procedures the data of the output field is
     > indirectly
     > > appended to a "ManagedMemoryDataSource". First it is returned to
     the
     > stub
     > > module and added to the "request" field. Then the "request" field
     is
     > > periodically appended to the "ManagedMemoryDataSource".
     > >
     > > Eventually the data of the "ManagedMemoryDataSource" is passed as
     POST
     > data
     > > to HTTPAPI. That is easier than it first appears to be. Just as a
      side
     > note
     > > the "ManagedMemoryDataSource" is a combined memory and IFS file
     buffer.
     > It
     > > uses the memory buffer as long as there is memory available. As
     soon as
     > > there is no more memory left, it switches to the slower file
     buffer.
     > That
     > > way there is no limit for the POST data.
     > >
     > > Important to know: You do not need to look at the
     > > "ManagedMemoryDataSource". I told you about it, to let you know,
     how
     > your
     > > input data flows from the input data structure through the
     Marshallers,
     > the
     > > Xml entity encoder and the "ManagedMemoryDataSource" until it
   ends
     up as
     >
     > > the POST data in HTTP API.
     > >
     > > So if your data goes through GenericStream_write(), it must be
     added to
     > the
     > > POST data of your request message.
     > >
     > > I am going to run my complete test suite tomorrow and for sure I
     let you
     >
     > > know the result.
     > >
     > > Regards,
     > >
     > > Thomas.
     > >
     > >
     > >
     > > Am 03.07.2013 15:17, schrieb gilles.renne@xxxxxxxxxxxxxxxxx:
     > > >     Hi
     > > >     i receive Bad request  now
     > > >     and i have nothing in httpapi_debug file
     > > >     regards
     > > >     Gilles Renne
     > > >     Inactive hide details for ftpapi-request---02/07/2013
     > > >     13:45:29---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     > > >     ftpapi-request---02/07/2013
     > > >     13:45:29---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     > > >
     > > >     ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     > > >         Envoy? par : ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > > >         02/07/2013 13:14
     > > >
     > > >
     > > >              Veuillez r?pondre ?
     > > >         ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >
     > > >
     > > >     A
     > > >
     > > >          ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >
     > > >     cc
     > > >
     > > >     Objet
     > > >
     > > >          Ftpapi Digest, Vol 81, Issue 4
     > > >
     > > >     R?f.
     > > >
     > > >     Send Ftpapi mailing list submissions to
     > > >     ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >     To subscribe or unsubscribe via the World Wide Web, visit
     > > >     [1][2][425]http://scottklement.com/mailman/listinfo/ftpapi
     > > >     or, via email, send a message with subject or body 'help'
   to
     > > >     ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     > > >     You can reach the person managing the list at
     > > >     ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
     > > >     When replying, please edit your Subject line so it is more
     > specific
     > > >     than "Re: Contents of Ftpapi digest..."
     > > >     Today's Topics:
     > > >       1. RE Ftpapi Digest, Vol 81, Issue 3
     > (gilles.renne@xxxxxxxxxxxxxxxxx)
     > > >       2. Re: RE Ftpapi Digest, Vol 81, Issue 3
     (thomas.raddatz@xxxxxx)
     > > >

   ----------------------------------------------------------------------
     > > >     Message: 1
     > > >     Date: Tue, 2 Jul 2013 12:56:21 +0200
     > > >     From: gilles.renne@xxxxxxxxxxxxxxxxx
     > > >     To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >     Cc: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     > > >     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > > >     Subject: RE Ftpapi Digest, Vol 81, Issue 3
     > > >     Message-ID:
     > > >
     >

   <OF58795E0F.39BA6186-ONC1257B9C.003BEBEC-C1257B9C.003C1783@LocalDomain>
     > > >     Content-Type: text/plain; charset="iso-8859-1"
     > > >     hi
     > > >     i have a compilation error
     > > >     USR50203 is not find
     > > >     regards
     > > >     Gilles Renne
     > > >
     > > >
     > > >                 ftpapi-request@li
     > > >
     > > >                 sts.scottklement.
     > > >
     > > >                 com
     > > >     A
     > > >                 Envoy? par : ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >
     > > >                 ftpapi-bounces@li
     > > >     cc
     > > >                 sts.scottklement.
     > > >
     > > >                 com
     > > >     Objet
     > > >                                           Ftpapi Digest, Vol
   81,
     Issue
     > 3
     > > >
     > > >
     > > >     R?f.
     > > >                 02/07/2013 11:12
     > > >
     > > >
     > > >
     > > >
     > > >
     > > >                 Veuillez r?pondre
     > > >
     > > >                         ?
     > > >
     > > >                 ftpapi@xxxxxxxxxx
     > > >
     > > >                   tklement.com
     > > >
     > > >
     > > >
     > > >
     > > >
     > > >     Send Ftpapi mailing list submissions to
     > > >      ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >     To subscribe or unsubscribe via the World Wide Web, visit
     > > >      [2][3][426]http://scottklement.com/mailman/listinfo/ftpapi
     > > >     or, via email, send a message with subject or body 'help'
   to
     > > >      ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     > > >     You can reach the person managing the list at
     > > >      ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
     > > >     When replying, please edit your Subject line so it is more
     > specific
     > > >     than "Re: Contents of Ftpapi digest..."
     > > >     Today's Topics:
     > > >       1. Re: Problem to send DB characters - Remove Escape
     characters
     > > >          (thomas.raddatz@xxxxxx)
     > > >

   ----------------------------------------------------------------------
     > > >     Message: 1
     > > >     Date: Tue, 2 Jul 2013 11:12:41 +0200
     > > >     From: thomas.raddatz@xxxxxx
     > > >     To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >     Subject: Re: Problem to send DB characters - Remove Escape
     > characters
     > > >     Message-ID:
     > > >
     <OF93CBA716.D3999555-ONC1257B9C.00312B7E-C1257B9C.003299DF@xxxxxx>
     > > >     Content-Type: text/plain; charset="us-ascii"
     > > >     Gilles,
     > > >     I added some procedures to module WSDL2R98 of service
   program
     > > >     WSDL2RPGRT
     > > >     to control the integrated XML entity encoder. Replace the
     existing
     > > >     source
     > > >     members and reinstall WSDL2RPG if you want to use the new
     > procedures:
     > > >      //  Enables/disables the integrated XML entity encode.
     > > >      XmlEntityEncoder_setEnabled(isEnabled)
     > > >      //  Returns the enabled status of the integrated XML
   entity
     > encoder.
     > > >      isEnabled = XmlEntityEncoder_isEnabled()
     > > >      //  Encodes XML entities up to 64k (V5R4 and lower).
     > > >      encoded = XmlEntityEncoder_encode(i_value)
     > > >      //  Encodes XML entities up to 1MB (V6R1 or higher).
     > > >      encoded = XmlEntityEncoder_encodeLarge(i_value)
     > > >      //  Encodes XML entities up to 16MB (V6R1 or higher).
     > > >      XmlEntityEncoder_encodeV6(
     > > >         i_value: %addr(encoded): %addr(encoded: *DATA):
     > %size(encoded));
     > > >     Regards,
     > > >     Thomas.
     > > >     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 01.07.2013
     > 14:33:34:
     > > >     > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     > > >     > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     > > >     > Datum: 01.07.2013 14:41
     > > >     > Betreff: Problem to send DB characters - Remove Escape
     > characters
     > > >     > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > > >     >
     > > >     >
     > > >     > Hi,
     > > >     >
     > > >     > I try to send chineese characters like
     > > >     >
     > > >     > when i view this on Iseries
     > > >     > i see
     > > >     >
     > > >     >
     > > >     >
     > > >     > So chineese characters 5075
     > > >     >
     > > >     > has a & , then this characters is remove for escape
     characters
     > > >     function
     > > >     > ( XmlEntityEncoder_encodeToStream)
     > > >     >
     > > >     > and then after the i_conv  function is wrong because a db
     > character
     > > >     lost
     > > >     > one hexa decimal value.
     > > >     >
     > > >     > what can i do do prevent this ?????
     > > >     >
     > > >     > regards
     > > >     >
     > > >     > Gilles Renne
     > > >     > This message contains confidential information. To know
     more,
     > please
     > > >     > click on the following link: [3]
     > [4][427]http://disclaimer.bureauveritas.com
     > > >     > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
     entfernt]
     > > >     > [Bild entfernt]
     > > >     >
     > > >
     >

   -----------------------------------------------------------------------
     > > >     > This is the FTPAPI mailing list.  To unsubscribe, please
   go
     to:
     > > >     >
   [4][5][428]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.
     > > >     -------------- next part --------------
     > > >       Gilles,
     > > >       I added some procedures to module WSDL2R98 of service
     program
     > > >       WSDL2RPGRT to control the integrated XML entity encoder.
     Replace
     > the
     > > >       existing source members and reinstall WSDL2RPG if you
   want
     to
     > use the
     > > >       new procedures:
     > > >         //  Enables/disables the integrated XML entity encode.
     > > >         XmlEntityEncoder_setEnabled(isEnabled)
     > > >         //  Returns the enabled status of the integrated XML
     entity
     > > >     encoder.
     > > >         isEnabled = XmlEntityEncoder_isEnabled()
     > > >         //  Encodes XML entities up to 64k (V5R4 and lower).
     > > >         encoded = XmlEntityEncoder_encode(i_value)
     > > >         //  Encodes XML entities up to 1MB (V6R1 or higher).
     > > >         encoded = XmlEntityEncoder_encodeLarge(i_value)
     > > >         //  Encodes XML entities up to 16MB (V6R1 or higher).
     > > >         XmlEntityEncoder_encodeV6(
     > > >            i_value: %addr(encoded): %addr(encoded: *DATA):
     > %size(encoded));
     > > >       Regards,
     > > >       Thomas.
     > > >       ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   01.07.2013
     > 14:33:34:
     > > >       > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     > > >       > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     > > >       > Datum: 01.07.2013 14:41
     > > >       > Betreff: Problem to send DB characters - Remove Escape
     > characters
     > > >       > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > > >       >
     > > >       >
     > > >       > Hi,
     > > >       >
     > > >       > I try to send chineese characters like
     > > >       >
     > > >       > when i view this on Iseries
     > > >       > i see
     > > >       >
     > > >       >
     > > >       >
     > > >       > So chineese characters 5075
     > > >       >
     > > >       > has a & , then this characters is remove for escape
     characters
     > > >       function
     > > >       > ( XmlEntityEncoder_encodeToStream)
     > > >       >
     > > >       > and then after the i_conv  function is wrong because a
   db
     > character
     > > >       lost
     > > >       > one hexa decimal value.
     > > >       >
     > > >       > what can i do do prevent this ?????
     > > >       >
     > > >       > regards
     > > >       >
     > > >       > Gilles Renne
     > > >       > This message contains confidential information. To know
     more,
     > > >     please
     > > >       > click on the following link:
     > > >     [1][5][6][429]http://disclaimer.bureauveritas.com
     > > >       > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
     > entfernt]
     > > >       > [Bild entfernt]
     > > >       >
     > > >
     > > >
     >

   -----------------------------------------------------------------------
     > > >       > This is the FTPAPI mailing list.  To unsubscribe,
   please
     go
     > to:
     > > >       >
     [2][6][7][430]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
     > > >       offe nce. Please delete if obtained in error and email
     > confirmation to
     > > >       the sender.
     > > >     References
     > > >       1. [7][8][431]http://disclaimer.bureauveritas.com/
     > > >       2.
     [8][9][432]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >     -------------- next part --------------
     > > >     A non-text attachment was scrubbed...
     > > >     Name: Patch_XmlEncoder_for_v1.15.5+.zip
     > > >     Type: application/zip
     > > >     Size: 31638 bytes
     > > >     Desc: not available
     > > >     URL: <
     > > >     [9]
     >

   [10][433]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   fea97
     d
     > > >     e9/attachment.zip
     > > >     >
     > > >     ------------------------------
     > > >
     >

   -----------------------------------------------------------------------
     > > >     This is the FTPAPI mailing list digest.  To unsubscribe, go
     to:
     > > >
   [10][11][434]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >
     >

   -----------------------------------------------------------------------
     > > >     End of Ftpapi Digest, Vol 81, Issue 3
     > > >     *************************************
     > > >     This message contains confidential information. To know
   more,
     > please
     > > >     click on the following link: [11]
     > [12][435]http://disclaimer.bureauveritas.com
     > > >     -------------- next part --------------
     > > >       hi
     > > >       i have a compilation error
     > > >       USR50203 is not find
     > > >       regards
     > > >       Gilles Renne
     > > >       Inactive hide details for ftpapi-request---02/07/2013
     > > >       11:39:55---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     > > >       ftpapi-request---02/07/2013
     > > >       11:39:55---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     > > >       ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     > > >           Envoy? par : ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > > >           02/07/2013 11:12
     > > >                Veuillez r?pondre ?
     > > >           ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >       A
     > > >            ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >       cc
     > > >       Objet
     > > >            Ftpapi Digest, Vol 81, Issue 3
     > > >       R?f.
     > > >       Send Ftpapi mailing list submissions to
     > > >       ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >       To subscribe or unsubscribe via the World Wide Web, visit
     > > >
   [1][12][13][436]http://scottklement.com/mailman/listinfo/ftpapi
     > > >       or, via email, send a message with subject or body 'help'
     to
     > > >       ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     > > >       You can reach the person managing the list at
     > > >       ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
     > > >       When replying, please edit your Subject line so it is
   more
     > specific
     > > >       than "Re: Contents of Ftpapi digest..."
     > > >       Today's Topics:
     > > >         1. Re: Problem to send DB characters - Remove Escape
     > characters
     > > >            (thomas.raddatz@xxxxxx)
     > > >
     > > >

   ----------------------------------------------------------------------
     > > >       Message: 1
     > > >       Date: Tue, 2 Jul 2013 11:12:41 +0200
     > > >       From: thomas.raddatz@xxxxxx
     > > >       To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >       Subject: Re: Problem to send DB characters - Remove
   Escape
     > characters
     > > >       Message-ID:
     > > >
     <OF93CBA716.D3999555-ONC1257B9C.00312B7E-C1257B9C.003299DF@xxxxxx>
     > > >       Content-Type: text/plain; charset="us-ascii"
     > > >       Gilles,
     > > >       I added some procedures to module WSDL2R98 of service
     program
     > > >       WSDL2RPGRT
     > > >       to control the integrated XML entity encoder. Replace the
     > existing
     > > >       source
     > > >       members and reinstall WSDL2RPG if you want to use the new
     > procedures:
     > > >        //  Enables/disables the integrated XML entity encode.
     > > >        XmlEntityEncoder_setEnabled(isEnabled)
     > > >        //  Returns the enabled status of the integrated XML
     entity
     > encoder.
     > > >        isEnabled = XmlEntityEncoder_isEnabled()
     > > >        //  Encodes XML entities up to 64k (V5R4 and lower).
     > > >        encoded = XmlEntityEncoder_encode(i_value)
     > > >        //  Encodes XML entities up to 1MB (V6R1 or higher).
     > > >        encoded = XmlEntityEncoder_encodeLarge(i_value)
     > > >        //  Encodes XML entities up to 16MB (V6R1 or higher).
     > > >        XmlEntityEncoder_encodeV6(
     > > >           i_value: %addr(encoded): %addr(encoded: *DATA):
     > %size(encoded));
     > > >       Regards,
     > > >       Thomas.
     > > >       ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   01.07.2013
     > 14:33:34:
     > > >       > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     > > >       > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     > > >       > Datum: 01.07.2013 14:41
     > > >       > Betreff: Problem to send DB characters - Remove Escape
     > characters
     > > >       > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > > >       >
     > > >       >
     > > >       > Hi,
     > > >       >
     > > >       > I try to send chineese characters like
     > > >       >
     > > >       > when i view this on Iseries
     > > >       > i see
     > > >       >
     > > >       >
     > > >       >
     > > >       > So chineese characters 5075
     > > >       >
     > > >       > has a & , then this characters is remove for escape
     characters
     > > >       function
     > > >       > ( XmlEntityEncoder_encodeToStream)
     > > >       >
     > > >       > and then after the i_conv  function is wrong because a
   db
     > character
     > > >       lost
     > > >       > one hexa decimal value.
     > > >       >
     > > >       > what can i do do prevent this ?????
     > > >       >
     > > >       > regards
     > > >       >
     > > >       > Gilles Renne
     > > >       > This message contains confidential information. To know
     more,
     > > >     please
     > > >       > click on the following link:
     > > >     [2][13][14][437]http://disclaimer.bureauveritas.com
     > > >       > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
     > entfernt]
     > > >       > [Bild entfernt]
     > > >       >
     > > >
     > > >
     >

   -----------------------------------------------------------------------
     > > >       > This is the FTPAPI mailing list.  To unsubscribe,
   please
     go
     > to:
     > > >       >
     [3][14][15][438]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.
     > > >       -------------- next part --------------
     > > >         Gilles,
     > > >         I added some procedures to module WSDL2R98 of service
     program
     > > >         WSDL2RPGRT to control the integrated XML entity
   encoder.
     > Replace
     > > >     the
     > > >         existing source members and reinstall WSDL2RPG if you
     want to
     > use
     > > >     the
     > > >         new procedures:
     > > >           //  Enables/disables the integrated XML entity
   encode.
     > > >           XmlEntityEncoder_setEnabled(isEnabled)
     > > >           //  Returns the enabled status of the integrated XML
     entity
     > > >       encoder.
     > > >           isEnabled = XmlEntityEncoder_isEnabled()
     > > >           //  Encodes XML entities up to 64k (V5R4 and lower).
     > > >           encoded = XmlEntityEncoder_encode(i_value)
     > > >           //  Encodes XML entities up to 1MB (V6R1 or higher).
     > > >           encoded = XmlEntityEncoder_encodeLarge(i_value)
     > > >           //  Encodes XML entities up to 16MB (V6R1 or higher).
     > > >           XmlEntityEncoder_encodeV6(
     > > >              i_value: %addr(encoded): %addr(encoded: *DATA):
     > > >     %size(encoded));
     > > >         Regards,
     > > >         Thomas.
     > > >         ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
     01.07.2013
     > > >     14:33:34:
     > > >         > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     > > >         > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     > > >         > Datum: 01.07.2013 14:41
     > > >         > Betreff: Problem to send DB characters - Remove
   Escape
     > characters
     > > >         > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > > >         >
     > > >         >
     > > >         > Hi,
     > > >         >
     > > >         > I try to send chineese characters like
     > > >         >
     > > >         > when i view this on Iseries
     > > >         > i see
     > > >         >
     > > >         >
     > > >         >
     > > >         > So chineese characters 5075
     > > >         >
     > > >         > has a & , then this characters is remove for escape
     > characters
      > > >         function
     > > >         > ( XmlEntityEncoder_encodeToStream)
     > > >         >
     > > >         > and then after the i_conv  function is wrong because
   a
     db
     > > >     character
     > > >         lost
     > > >         > one hexa decimal value.
     > > >         >
     > > >         > what can i do do prevent this ?????
     > > >         >
     > > >         > regards
     > > >         >
     > > >         > Gilles Renne
     > > >         > This message contains confidential information. To
   know
     > more,
     > > >       please
     > > >         > click on the following link:
     > > >       [1][4][15][16][439]http://disclaimer.bureauveritas.com
     > > >         > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
     > entfernt]
     > > >         > [Bild entfernt]
     > > >         >
     > > >
     > > >
     >

   -----------------------------------------------------------------------
     > > >         > This is the FTPAPI mailing list.  To unsubscribe,
     please go
     > to:
     > > >         > [2][5][16]
     > [17][440]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. [6][17][18][441]http://disclaimer.bureauveritas.com/
     > > >         2.
     [7][18][19][442]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >       -------------- next part --------------
     > > >       A non-text attachment was scrubbed...
     > > >       Name: Patch_XmlEncoder_for_v1.15.5+.zip
     > > >       Type: application/zip
     > > >       Size: 31638 bytes
     > > >       Desc: not available
     > > >       URL:
     > > >
     > > >     <[8][19]
     >
   [20][443]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   f
     > > >     ea97
     > > >       de9/attachment.zip>
     > > >       ------------------------------
     > > >
     > > >
     >

   -----------------------------------------------------------------------
     > > >       This is the FTPAPI mailing list digest.  To unsubscribe,
   go
     to:
     > > >
     [9][20][21][444]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >
     > > >
     >

   -----------------------------------------------------------------------
     > > >       End of Ftpapi Digest, Vol 81, Issue 3
     > > >       *************************************
     > > >       This message contains confidential information. To know
     more,
     > please
     > > >       click on the following link: [21]
     > [22][445]http://disclaimer.bureauveritas.com
     > > >     References
     > > >       1.
   [22][23][446]http://scottklement.com/mailman/listinfo/ftpapi
     > > >       2. [23][24][447]http://disclaimer.bureauveritas.com/
     > > >       3.
     [24][25][448]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >       4. [25][26][449]http://disclaimer.bureauveritas.com/
     > > >       5.
     [26][27][450]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >       6. [27][28][451]http://disclaimer.bureauveritas.com/
     > > >       7.
     [28][29][452]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >       8.
     > > >     [29]
     >

   [30][453]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   fea97
     > > >     de9/attachment.zip
     > > >       9.
     [30][31][454]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >     -------------- next part --------------
     > > >     A non-text attachment was scrubbed...
     > > >     Name: graycol.gif
     > > >     Type: image/gif
     > > >     Size: 105 bytes
     > > >     Desc: not available
     > > >     URL:
     > > >     <[31]
     >

   [32][455]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   9279
     > > >     210e/attachment.gif>
     > > >     -------------- next part --------------
     > > >     A non-text attachment was scrubbed...
     > > >     Name: pic06064.gif
     > > >     Type: image/gif
     > > >     Size: 1255 bytes
     > > >     Desc: not available
     > > >     URL:
     > > >     <[32]
     >

   [33][456]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   9279
     > > >     210e/attachment-0001.gif>
     > > >     -------------- next part --------------
     > > >     A non-text attachment was scrubbed...
     > > >     Name: ecblank.gif
     > > >     Type: image/gif
     > > >     Size: 45 bytes
     > > >     Desc: not available
     > > >     URL:
     > > >     <[33]
     >

   [34][457]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   9279
     > > >     210e/attachment-0002.gif>
     > > >     ------------------------------
     > > >     Message: 2
     > > >     Date: Tue, 2 Jul 2013 13:14:33 +0200
     > > >     From: thomas.raddatz@xxxxxx
     > > >     To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >     Subject: Re: RE Ftpapi Digest, Vol 81, Issue 3
     > > >     Message-ID:
     > > >
     <OFE220083F.9F11B05A-ONC1257B9C.003D4C5B-C1257B9C.003DC1F8@xxxxxx>
     > > >     Content-Type: text/plain; charset="iso-8859-1"
     > > >     OK. That means that you have WSDL2RPG v1.15.5 or lower,
     because
     > message
     > > >     description USR5020 has been changed with 1.15.6, right?
     > > >     Please replace member USR5020 with the attached one and try
     to
     > compile
     > > >     again.
     > > >     Thomas.
     > > >     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 02.07.2013
     > 12:56:21:
     > > >     > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     > > >     > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     > > >     > Kopie: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     > > >     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > > >     > Datum: 02.07.2013 13:05
     > > >     > Betreff: RE Ftpapi Digest, Vol 81, Issue 3
     > > >     > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > > >     >
     > > >     >
     > > >     > hi
     > > >     >
     > > >     > i have a compilation error
     > > >     > USR50203 is not find
     > > >     >
     > > >     >
     > > >     > regards
     > > >     >
     > > >     > Gilles Renne
     > > >     >
     > > >     >
     > > >     >
     > > >     >
     > > >     >
     > > >     >              ftpapi-request@li
     > > >     >              sts.scottklement.
     > > >     >              com A
     > > >     >              Envoy? par : ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >     >              ftpapi-bounces@li cc
     > > >     >              sts.scottklement.
     > > >     >              com Objet
     > > >     >                                        Ftpapi Digest, Vol
     81,
     > Issue 3
     > > >     > R?f.
     > > >     >              02/07/2013 11:12
     > > >     >
     > > >     >
     > > >     >              Veuillez r?pondre
     > > >     >                      ?
     > > >     >              ftpapi@xxxxxxxxxx
     > > >     >                tklement.com
     > > >     >
     > > >     >
     > > >     >
     > > >     >
     > > >     >
     > > >     >
     > > >     > Send Ftpapi mailing list submissions to
     > > >     >        ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >     >
     > > >     > To subscribe or unsubscribe via the World Wide Web, visit
     > > >     >
     [34][35][458]http://scottklement.com/mailman/listinfo/ftpapi
     > > >     > or, via email, send a message with subject or body 'help'
     to
     > > >     >        ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     > > >     >
     > > >     > You can reach the person managing the list at
     > > >     >        ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
     > > >     >
     > > >     > When replying, please edit your Subject line so it is
   more
     > specific
     > > >     > than "Re: Contents of Ftpapi digest..."
     > > >     >
     > > >     >
     > > >     > Today's Topics:
     > > >     >
     > > >     >    1. Re: Problem to send DB characters - Remove Escape
     > characters
     > > >     >       (thomas.raddatz@xxxxxx)
     > > >     >
     > > >     >
     > > >     >
     > > >

   ----------------------------------------------------------------------
     > > >     >
     > > >     > Message: 1
     > > >     > Date: Tue, 2 Jul 2013 11:12:41 +0200
     > > >     > From: thomas.raddatz@xxxxxx
     > > >     > To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >     > Subject: Re: Problem to send DB characters - Remove
   Escape
     > characters
     > > >     > Message-ID:
     > > >     >
     > > >     >
     > <OF93CBA716.D3999555-ONC1257B9C.00312B7E-C1257B9C.003299DF@xxxxxx>
     > > >     > Content-Type: text/plain; charset="us-ascii"
     > > >     >
     > > >     >
     > > >     > Gilles,
     > > >     >
     > > >     > I added some procedures to module WSDL2R98 of service
     program
     > > >     WSDL2RPGRT
     > > >     > to control the integrated XML entity encoder. Replace the
     > existing
     > > >     source
     > > >     > members and reinstall WSDL2RPG if you want to use the new
     > procedures:
     > > >     >
     > > >     >
     > > >     >   //  Enables/disables the integrated XML entity encode.
     > > >     >   XmlEntityEncoder_setEnabled(isEnabled)
     > > >     >
     > > >     >
     > > >     >   //  Returns the enabled status of the integrated XML
     entity
     > > >     encoder.
     > > >     >   isEnabled = XmlEntityEncoder_isEnabled()
     > > >     >
     > > >     >
     > > >     >   //  Encodes XML entities up to 64k (V5R4 and lower).
     > > >     >   encoded = XmlEntityEncoder_encode(i_value)
     > > >     >
     > > >     >
     > > >     >   //  Encodes XML entities up to 1MB (V6R1 or higher).
     > > >     >   encoded = XmlEntityEncoder_encodeLarge(i_value)
     > > >     >
     > > >     >
     > > >     >   //  Encodes XML entities up to 16MB (V6R1 or higher).
     > > >     >   XmlEntityEncoder_encodeV6(
     > > >     >      i_value: %addr(encoded): %addr(encoded: *DATA):
     > %size(encoded));
     > > >     >
     > > >     >
     > > >     > Regards,
     > > >     >
     > > >     >
     > > >     > Thomas.
     > > >     >
     > > >     >
     > > >     >
     > > >     > ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   01.07.2013
     > 14:33:34:
     > > >     >
     > > >     > > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     > > >     > > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     > > >     > > Datum: 01.07.2013 14:41
     > > >     > > Betreff: Problem to send DB characters - Remove Escape
     > characters
     > > >     > > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > > >     > >
     > > >     > >
     > > >     > > Hi,
     > > >     > >
     > > >     > > I try to send chineese characters like
     > > >     > >
     > > >     > > when i view this on Iseries
     > > >     > > i see
     > > >     > >
     > > >     > >
     > > >     > >
     > > >     > > So chineese characters 5075
     > > >     > >
     > > >     > > has a & , then this characters is remove for escape
     characters
     > > >     function
     > > >     > > ( XmlEntityEncoder_encodeToStream)
     > > >     > >
     > > >     > > and then after the i_conv  function is wrong because a
   db
     > character
     > > >     lost
     > > >     > > one hexa decimal value.
     > > >     > >
     > > >     > > what can i do do prevent this ?????
     > > >     > >
     > > >     > > regards
     > > >     > >
     > > >     > > Gilles Renne
     > > >     > > This message contains confidential information. To know
     more,
     > > >     please
     > > >     > > click on the following link:
     > > >     [35][36][459]http://disclaimer.bureauveritas.com
     > > >     > > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
     > entfernt]
     > > >     > > [Bild entfernt]
     > > >     > >
     > > >
     >

   -----------------------------------------------------------------------
     > > >     > > This is the FTPAPI mailing list.  To unsubscribe,
   please
     go
     > to:
     > > >     > >
     [36][37][460]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
     > > >     crimin al
     > > >     > offence. Please delete if obtained in error and email
     > confirmation to
     > > >     the
     > > >     > sender.
     > > >     > -------------- next part --------------
     > > >     >    Gilles,
     > > >     >    I added some procedures to module WSDL2R98 of service
     program
     > > >     >    WSDL2RPGRT to control the integrated XML entity
   encoder.
     > Replace
     > > >     the
     > > >     >    existing source members and reinstall WSDL2RPG if you
     want to
     > use
     > > >     the
     > > >     >    new procedures:
     > > >     >      //  Enables/disables the integrated XML entity
   encode.
     > > >     >      XmlEntityEncoder_setEnabled(isEnabled)
     > > >     >      //  Returns the enabled status of the integrated XML
     entity
     > > >     encoder.
     > > >     >      isEnabled = XmlEntityEncoder_isEnabled()
     > > >     >      //  Encodes XML entities up to 64k (V5R4 and lower).
     > > >     >      encoded = XmlEntityEncoder_encode(i_value)
     > > >     >      //  Encodes XML entities up to 1MB (V6R1 or highe
   r).
     > > >     >      encoded = XmlEntityEncoder_encodeLarge(i_value)
     > > >     >      //  Encodes XML entities up to 16MB (V6R1 or
   higher).
     > > >     >      XmlEntityEncoder_encodeV6(
     > > >     >         i_value: %addr(encoded): %addr(encoded: *DATA):
     > > >     %size(encoded));
     > > >     >    Regards,
     > > >     >    Thomas.
     > > >     >    ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
     01.07.2013
     > > >     14:33:34:
     > > >     >    > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     > > >     >    > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     > > >     >    > Datum: 01.07.2013 14:41
     > > >     >    > Betreff: Problem to send DB characters - Remove
   Escape
     > > >     characters
     > > >     >    > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > > >     >    >
     > > >     >    >
     > > >     >    > Hi,
     > > >     >    >
     > > >     >    > I try to send chineese characters like
     > > >     >    >
     > > >     >    > when i view this on Iseries
     > > >     >    > i see
     > > >     >    >
     > > >     >    >
     > > >     >    >
     > > >     >    > So chineese characters 5075
     > > >     >    >
     > > >     >    > has a & , then this characters is remove for escape
     > characters
     > > >     >    function
     > > >     >    > ( XmlEntityEncoder_encodeToStream)
     > > >     >    >
     > > >     >    > and then after the i_conv  function is wrong because
   a
     db
     > > >     character
     > > >     >    lost
     > > >     >    > one hexa decimal value.
     > > >     >    >
     > > >     >    > what can i do do prevent this ?????
     > > >     >    >
     > > >     >    > regards
     > > >     >    >
     > > >     >    > Gilles Renne
     > > >     >    > This message contains confidential information. To
     know
     > more,
     > > >     please
     > > >     >    > click on the following link:
     > > >     [1][37][38][461]http://disclaimer.bureauveritas.com
     > > >     >    > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   [Bild
     > entfernt]
     > > >     >    > [Bild entfernt]
     > > >     >    >
     > > >     >
     > > >
     >

   -----------------------------------------------------------------------
     > > >     >    > This is the FTPAPI mailing list.  To unsubscribe,
     please go
     > to:
     > > >     >    >
     [2][38][39][462]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. [39][40][463]http://disclaimer.bureauveritas.com/
     > > >     >    2.
     [40][41][464]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >     > -------------- next part --------------
     > > >     > A non-text attachment was scrubbed...
     > > >     > Name: Patch_XmlEncoder_for_v1.15.5+.zip
     > > >     > Type: application/zip
     > > >     > Size: 31638 bytes
     > > >     > Desc: not available
     > > >     > URL: <
     > > >     > [41]
     >
   [42][465]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
     > > >     > fea97de9/attachment.zip
     > > >     > >
     > > >     >
     > > >     > ------------------------------
     > > >     >
     > > >     >
     > > >
     >

   -----------------------------------------------------------------------
     > > >     > This is the FTPAPI mailing list digest.  To unsubscribe,
   go
     to:
     > > >     >
   [42][43][466]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >     >
     > > >
     >

   -----------------------------------------------------------------------
     > > >     >
     > > >     >
     > > >     > End of Ftpapi Digest, Vol 81, Issue 3
     > > >     > *************************************
     > > >     > This message contains confidential information. To know
     more,
     > please
     > > >     > click on the following link: [43]
     > [44][467]http://disclaimer.bureauveritas.com
     > > >     > [Bild entfernt] [Bild entfernt] [Bild entfernt]
     > > >     >
     > > >
     >

   -----------------------------------------------------------------------
     > > >     > This is the FTPAPI mailing list.  To unsubscribe, please
   go
     to:
     > > >     >
   [44][45][468]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.
     > > >     -------------- next part --------------
     > > >       OK. That means that you have WSDL2RPG v1.15.5 or lower,
     because
     > > >     message
     > > >       description USR5020 has been changed with 1.15.6, right?
     > > >       Please replace member USR5020 with the attached one and
   try
     to
     > > >     compile
     > > >       again.
     > > >       Thomas.
     > > >       ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
   02.07.2013
     > 12:56:21:
     > > >       > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     > > >       > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     > > >       > Kopie: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     > > >       ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > > >       > Datum: 02.07.2013 13:05
     > > >       > Betreff: RE Ftpapi Digest, Vol 81, Issue 3
     > > >       > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > > >       >
     > > >       >
     > > >       > hi
     > > >       >
     > > >       > i have a compilation error
     > > >       > USR50203 is not find
     > > >       >
     > > >       >
     > > >       > regards
     > > >       >
     > > >       > Gilles Renne
     > > >       >
     > > >       >
     > > >       >
     > > >       >
     > > >       >
     > > >       >              ftpapi-request@li
     > > >       >              sts.scottklement.
     > > >       >              com
     > > >           A
     > > >       >              Envoy? par :
     > > >     ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >       >              ftpapi-bounces@li
     > > >          cc
     > > >       >              sts.scottklement.
     > > >       >              com
     > > >       Objet
     > > >       >                                        Ftpapi Digest,
   Vol
     81,
     > Issue
     > > >     3
     > > >       >
     > > >       R?f.
     > > >       >              02/07/2013 11:12
     > > >       >
     > > >       >
     > > >       >              Veuillez r?pondre
     > > >       >                      ?
      > > >       >              ftpapi@xxxxxxxxxx
     > > >       >                tklement.com
     > > >       >
     > > >       >
     > > >       >
     > > >       >
     > > >       >
     > > >       >
     > > >       > Send Ftpapi mailing list submissions to
     > > >       >        ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >       >
     > > >       > To subscribe or unsubscribe via the World Wide Web,
   visit
     > > >       >
     [1][45][46][469]http://scottklement.com/mailman/listinfo/ftpapi
     > > >       > or, via email, send a message with subject or body
   'help'
     to
     > > >       >        ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     > > >       >
     > > >       > You can reach the person managing the list at
     > > >       >        ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
     > > >       >
     > > >       > When replying, please edit your Subject line so it is
     more
     > specific
     > > >       > than "Re: Contents of Ftpapi digest..."
     > > >       >
     > > >       >
     > > >       > Today's Topics:
     > > >       >
     > > >       >    1. Re: Problem to send DB characters - Remove Escape
     > characters
     > > >       >       (thomas.raddatz@xxxxxx)
     > > >       >
     > > >       >
     > > >       >
     > > >
     > > >

   ----------------------------------------------------------------------
     > > >       >
     > > >       > Message: 1
     > > >       > Date: Tue, 2 Jul 2013 11:12:41 +0200
     > > >       > From: thomas.raddatz@xxxxxx
     > > >       > To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > > >       > Subject: Re: Problem to send DB characters - Remove
     Escape
     > > >     characters
     > > >       > Message-ID:
     > > >       >
     > > >       >
     > <OF93CBA716.D3999555-ONC1257B9C.00312B7E-C1257B9C.003299DF@xxxxxx>
     > > >       > Content-Type: text/plain; charset="us-ascii"
     > > >       >
     > > >       >
     > > >       > Gilles,
     > > >       >
     > > >       > I added some procedures to module WSDL2R98 of service
     program
     > > >       WSDL2RPGRT
     > > >       > to control the integrated XML entity encoder. Replace
   the
     > existing
     > > >       source
     > > >       > members and reinstall WSDL2RPG if you want to use the
   new
     > > >     procedures:
     > > >       >
     > > >       >
     > > >       >   //  Enables/disables the integrated XML entity
   encode.
     > > >       >   XmlEntityEncoder_setEnabled(isEnabled)
     > > >       >
     > > >       >
     > > >       >   //  Returns the enabled status of the integrated XML
     entity
     > > >       encoder.
     > > >       >   isEnabled = XmlEntityEncoder_isEnabled()
     > > >       >
     > > >       >
     > > >       >   //  Encodes XML entities up to 64k (V5R4 and lower).
     > > >       >   encoded = XmlEntityEncoder_encode(i_value)
     > > >       >
     > > >       >
     > > >       >   //  Encodes XML entities up to 1MB (V6R1 or higher).
     > > >       >   encoded = XmlEntityEncoder_encodeLarge(i_value)
     > > >       >
     > > >       >
     > > >       >   //  Encodes XML entities up to 16MB (V6R1 or higher).
     > > >       >   XmlEntityEncoder_encodeV6(
     > > >       >      i_value: %addr(encoded): %addr(encoded: *DATA):
     > > >     %size(encoded));
     > > >       >
     > > >       >
     > > >       > Regards,
     > > >       >
     > > >       >
     > > >       > Thomas.
     > > >       >
     > > >       >
     > > >       >
     > > >       > ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
     01.07.2013
     > > >     14:33:34:
     > > >       >
     > > >       > > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     > > >       > > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     > > >       > > Datum: 01.07.2013 14:41
     > > >       > > Betreff: Problem to send DB characters - Remove
   Escape
     > characters
     > > >       > > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > > >       > >
     > > >       > >
     > > >       > > Hi,
     > > >       > >
     > > >       > > I try to send chineese characters like
     > > >       > >
     > > >       > > when i view this on Iseries
     > > >       > > i see
     > > >       > >
     > > >       > >
     > > >       > >
     > > >       > > So chineese characters 5075
     > > >       > >
     > > >       > > has a & , then this characters is remove for escape
     > characters
     > > >       function
     > > >       > > ( XmlEntityEncoder_encodeToStream)
     > > >       > >
     > > >       > > and then after the i_conv  function is wrong because
   a
     db
     > > >     character
     > > >       lost
     > > >       > > one hexa decimal value.
     > > >       > >
     > > >       > > what can i do do prevent this ?????
     > > >       > >
     > > >       > > regards
     > > >       > >
     > > >       > > Gilles Renne
     > > >       > > This message contains confidential information. To
   know
     > more,
     > > >       please
     > > >       > > click on the following link:
     > > >     [2][46][47][470]http://disclaimer.bureauveritas.com
     > > >       > > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
     > entfernt]
     > > >       > > [Bild entfernt]
     > > >       > >
     > > >
     > > >
     >

   -----------------------------------------------------------------------
     > > >       > > This is the FTPAPI mailing list.  To unsubscribe,
     please go
     > to:
     > > >       > >
     [3][47][48][471]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.
     > > >       > -------------- next part --------------
     > > >       >    Gilles,
     > > >       >    I added some procedures to module WSDL2R98 of
   service
     > program
     > > >       >    WSDL2RPGRT to control the integrated XML entity
     encoder.
     > Replace
     > > >       the
     > > >       >    existing source members and reinstall WSDL2RPG if
   you
     want
     > to
     > > >     use
     > > >       the
     > > >       >    new procedures:
     > > >       >      //  Enables/disables the integrated XML entity
     encode.
     > > >       >      XmlEntityEncoder_setEnabled(isEnabled)
     > > >       >      //  Returns the enabled status of the integrated
   XML
     > entity
     > > >       encoder.
     > > >       >      isEnabled = XmlEntityEncoder_isEnabled()
     > > >       >      //  Encodes XML entities up to 64k (V5R4 and
   lower).
     > > >       >      encoded = XmlEntityEncoder_encode(i_value)
     > > >       >      //  Encodes XML entities up to 1MB (V6R1 or
   higher).
     > > >       >      encoded = XmlEntityEncoder_encodeLarge(i_value)
     > > >       >      //  Encodes XML entities up to 16MB (V6R1 or
     higher).
     > > >       >      XmlEntityEncoder_encodeV6(
     > > >       >         i_value: %addr(encoded): %addr(encoded: *DATA):
     > > >       %size(encoded));
     > > >       >    Regards,
     > > >       >    Thomas.
     > > >       >    ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
     01.07.2013
     > > >       14:33:34:
     > > >       >    > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     > > >       >    > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     > > >       >    > Datum: 01.07.2013 14:41
     > > >       >    > Betreff: Problem to send DB characters - Remove
     Escape
     > > >       characters
     > > >       >    > Gesendet von:
   ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > > >       >    >
     > > >       >    >
     > > >       >    > Hi,
     > > >       >    >
     > > >       >    > I try to send chineese characters like
     > > >       >    >
     > > >       >    > when i view this on Iseries
     > > >       >    > i see
     > > >       >    >
     > > >       >    >
     > > >       >    >
     > > >       >    > So chineese characters 5075
     > > >       >    >
     > > >       >    > has a & , then this characters is remove for
   escape
     > characters
     > > >       >    function
     > > >       >    > ( XmlEntityEncoder_encodeToStream)
     > > >       >    >
     > > >       >    > and then after the i_conv  function is wrong
   because
     a db
     > > >       character
     > > >       >    lost
     > > >       >    > one hexa decimal value.
     > > >       >    >
     > > >       >    > what can i do do prevent this ?????
     > > >       >    >
     > > >       >    > regards
     > > >       >    >
     > > >       >    > Gilles Renne
     > > >       >    > This message contains confidential information. To
     know
     > more,
     > > >       please
     > > >       >    > click on the following link:
     > > >       [1][4][48][49][472]http://disclaimer.bureauveritas.com
     > > >       >    > [Bild entfernt] [Bild entfernt] [Bild entfernt]
     [Bild
     > > >     entfernt]
     > > >       >    > [Bild entfernt]
     > > >       >    >
     > > >       >
     > > >
     > > >
     >

   -----------------------------------------------------------------------
     > > >       >    > This is the FTPAPI mailing list.  To unsubscribe,
     please
     > go
     > > >     to:
     > > >       >    > [2][5][49]
     > [50][473]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.
   [6][50][51][474]http://disclaimer.bureauveritas.com/
     > > >       >    2. [7][51]
     > [52][475]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >       > -------------- next part --------------
     > > >       > A non-text attachment was scrubbed...
     > > >       > Name: Patch_XmlEncoder_for_v1.15.5+.zip
     > > >       > Type: application/zip
     > > >       > Size: 31638 bytes
     > > >       > Desc: not available
     > > >       > URL: <
     > > >       >
     > > >     [8][52]
     >
   [53][476]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
     > > >       > fea97de9/attachment.zip
     > > >       > >
     > > >       >
     > > >       > ------------------------------
     > > >       >
     > > >       >
     > > >
     > > >
     >

   -----------------------------------------------------------------------
     > > >       > This is the FTPAPI mailing list digest.  To
   unsubscribe,
     go
     > to:
     > > >       >
     [9][53][54][477]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >       >
     > > >
     > > >
     >

   -----------------------------------------------------------------------
     > > >       >
     > > >       >
     > > >       > End of Ftpapi Digest, Vol 81, Issue 3
     > > >       > *************************************
     > > >       > This message contains confidential information. To know
     more,
     > > >     please
     > > >       > click on the following link:
     > > >     [10][54][55][478]http://disclaimer.bureauveritas.com
     > > >       > [Bild entfernt] [Bild entfernt] [Bild entfernt]
     > > >       >
     > > >
     > > >
     >

   -----------------------------------------------------------------------
     > > >       > This is the FTPAPI mailing list.  To unsubscribe,
   please
     go
     > to:
     > > >       >
     [11][55][56][479]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.
   [56][57][480]http://scottklement.com/mailman/listinfo/ftpapi
     > > >       2. [57][58][481]http://disclaimer.bureauveritas.com/
     > > >       3.
     [58][59][482]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >       4. [59][60][483]http://disclaimer.bureauveritas.com/
     > > >       5.
     [60][61][484]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >       6. [61][62][485]http://disclaimer.bureauveritas.com/
     > > >       7.
     [62][63][486]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >       8. [63]
     >
   [64][487]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
     > > >       9.
     [64][65][488]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >      10. [65][66][489]http://disclaimer.bureauveritas.com/
     > > >      11.
     [66][67][490]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >     -------------- next part --------------
     > > >     A non-text attachment was scrubbed...
     > > >     Name: USR5020.rpgle
     > > >     Type: application/octet-stream
     > > >     Size: 468 bytes
     > > >     Desc: not available
     > > >     URL:
     > > >     <[67]
     >

   [68][491]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   26ba
     > > >     65e4/attachment.obj>
     > > >     ------------------------------
     > > >
     >

   -----------------------------------------------------------------------
     > > >     This is the FTPAPI mailing list digest.  To unsubscribe, go
     to:
     > > >
   [68][69][492]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >
     >

   -----------------------------------------------------------------------
     > > >     End of Ftpapi Digest, Vol 81, Issue 4
     > > >     *************************************
     > > >     This message contains confidential information. To know
   more,
     > please
     > > >     click on the following link:
     [70][493]http://disclaimer.bureauveritas.com
     > > >
     > > > References
     > > >
     > > >     1. [71][494]http://scottklement.com/mailman/listinfo/ftpapi
     > > >     2. [72][495]http://scottklement.com/mailman/listinfo/ftpapi
     > > >     3. [73][496]http://disclaimer.bureauveritas.com/
     > > >     4.
   [74][497]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >     5. [75][498]http://disclaimer.bureauveritas.com/
     > > >     6.
   [76][499]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >     7. [77][500]http://disclaimer.bureauveritas.com/
     > > >     8.
   [78][501]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >     9.
   [79][502]http://scottklement.com/pipermail/ftpapi/attachments/
     > > 20130702/fea97de9/attachment.zip
     > > >    10.
   [80][503]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    11. [81][504]http://disclaimer.bureauveritas.com/
     > > >    12. [82][505]http://scottklement.com/mailman/listinfo/ftpapi
     > > >    13. [83][506]http://disclaimer.bureauveritas.com/
     > > >    14.
   [84][507]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    15. [85][508]http://disclaimer.bureauveritas.com/
     > > >    16.
   [86][509]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    17. [87][510]http://disclaimer.bureauveritas.com/
     > > >    18.
   [88][511]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    19.
     >

   [89][512]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   fea97
     > > >    20.
   [90][513]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    21. [91][514]http://disclaimer.bureauveritas.com/
     > > >    22. [92][515]http://scottklement.com/mailman/listinfo/ftpapi
     > > >    23. [93][516]http://disclaimer.bureauveritas.com/
     > > >    24.
   [94][517]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    25. [95][518]http://disclaimer.bureauveritas.com/
     > > >    26.
   [96][519]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    27. [97][520]http://disclaimer.bureauveritas.com/
     > > >    28.
   [98][521]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    29.
   [99][522]http://scottklement.com/pipermail/ftpapi/attachments/
     > > 20130702/fea97de9/attachment.zip
     > > >    30.
   [100][523]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    31.
   [101][524]http://scottklement.com/pipermail/ftpapi/attachments/
     > > 20130702/9279210e/attachment.gif
     > > >    32.
   [102][525]http://scottklement.com/pipermail/ftpapi/attachments/
     > > 20130702/9279210e/attachment-0001.gif
     > > >    33.
   [103][526]http://scottklement.com/pipermail/ftpapi/attachments/
     > > 20130702/9279210e/attachment-0002.gif
     > > >    34.
   [104][527]http://scottklement.com/mailman/listinfo/ftpapi
     > > >    35. [105][528]http://disclaimer.bureauveritas.com/
     > > >    36.
   [106][529]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    37. [107][530]http://disclaimer.bureauveritas.com/
     > > >    38.
   [108][531]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    39. [109][532]http://disclaimer.bureauveritas.com/
     > > >    40.
   [110][533]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    41.

   [111][534]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /
     > > >    42.
   [112][535]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    43. [113][536]http://disclaimer.bureauveritas.com/
     > > >    44.
   [114][537]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    45.
   [115][538]http://scottklement.com/mailman/listinfo/ftpapi
     > > >    46. [116][539]http://disclaimer.bureauveritas.com/
     > > >    47.
   [117][540]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    48. [118][541]http://disclaimer.bureauveritas.com/
     > > >    49.
   [119][542]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    50. [120][543]http://disclaimer.bureauveritas.com/
     > > >    51.
   [121][544]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    52.

   [122][545]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /
     > > >    53.
   [123][546]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    54. [124][547]http://disclaimer.bureauveritas.com/
     > > >    55.
   [125][548]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    56.
   [126][549]http://scottklement.com/mailman/listinfo/ftpapi
     > > >    57. [127][550]http://disclaimer.bureauveritas.com/
     > > >    58.
   [128][551]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    59. [129][552]http://disclaimer.bureauveritas.com/
     > > >    60.
   [130][553]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    61. [131][554]http://disclaimer.bureauveritas.com/
     > > >    62.
   [132][555]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    63.

   [133][556]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /
     > > >    64.
   [134][557]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    65. [135][558]http://disclaimer.bureauveritas.com/
     > > >    66.
   [136][559]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >    67.
   [137][560]http://scottklement.com/pipermail/ftpapi/attachments/
     > > 20130702/26ba65e4/attachment.obj
     > > >    68.
   [138][561]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >
     > > >
     > > >
     > > >
     >

   -----------------------------------------------------------------------
     > > > This is the FTPAPI mailing list.  To unsubscribe, please go to:
     > > > [139][562]http://www.scottklement.com/mailman/listinfo/ftpapi
     > > >
     >

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

   -----------------------------------------------------------------------
     > > This is the FTPAPI mailing list.  To unsubscribe, please go to:
     > > [140][563]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.
     > -------------- next part --------------
     >    Gilles,
     >    My integration test found an error for elements with no data.
   For
     these
     >    elements the following messages showed up in the job log and the
     HTTP
     >    API debug log:
     >    Job log:
     >    --------
     >    The length requested for storage allocation is out of range.
     >    Failed unmarshalling value '*N' of field '*N'.
     >    HTTP API debug log:
     >    -------------------
     >    WSDL2RPG: call stack frames:
     >    Program      Library      Act.Group    Statement    Procedure
     >    QCMD         QSYS         *DFTACTGRP        /04F8
     >    START#RZ     RADDATZ      *DFTACTGRP                _CL_PEP
     >    START#RZ     RADDATZ      *DFTACTGRP   6000         START#RZ
     >    QUOCPP       QPDA         *DFTACTGRP        /079D
     >    QUOMAIN      QPDA         *DFTACTGRP        /1139
     >    QUOCMD       QSYS         *DFTACTGRP        /03B3
     >    WSDLIPMR17   RADDATZ      *NEW
     >    _QRNP_PEP_WSDLIPMR17
     >    WSDLIPMR17   RADDATZ      *NEW         37600        WSDLIPMR17
     >    WSDLIPMR17   RADDATZ      *NEW         178700       MAIN
     >    WSDLIPMR17   RADDATZ      *NEW         159000
     >    FARMACLICK2005001FCKRICHIESTADOCUMENTO_FCKRICHIESTADOCUMENTO
     >    PMR017A      RADDATZ      *NEW         728
     >    Farmaclick2005001FCKRichiestaDocumento_FCKRichiestaDocumento
     >    WSDL2RPGRT   RADDATZ      *NEW         354200
     >    WSDL2R98_Marshaller_toStringV6
     >    WSDL2RPGRT   RADDATZ      *NEW         35200
     >    WSDL2R90_AppMsg_sendEscMsgAndDump
     >    WSDL2RPGRT   RADDATZ      *NEW         39300
     >    WSDL2R71_http_DebugLog_dumpCallStack
     >    WSDL2RPGRT   RADDATZ      *NEW         20200
     >    WSDL2R80_CallStack_dump
     >    WSDL2RPG: USR5023: Failed unmarshalling value '*N' of field
   '*N'.
     >                       Cause . . . . . :   The following error
   message
     >    prevented the value of field '*N' from being retrieved from
   XPath
     >    '*N/*N'. Message text  . :   The length requested for storage
     >    allocation is out of range.
     >              received from procedure: BASICS1R1_f_sndPgmMsg
     >                        and statement: 54400
     >    ** 2013-07-04-11.49.56.091000: Leaving
     >    Farmaclick2005001FCKRichiestaDocumento_FCKRichiestaDocumento()
     >    Since your debug log is empty, there must be a different problem
     on
     >    your side. Nevertheless, you should replace WSDL2R98 with the
     attached
     >    member.
     >    Did you have time to debug WSDL2R98 at your side? What is the
     result?
     >    Regards,
     >    Thomas.
     >    ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 03.07.2013
     22:44:22:
     >    > Von: thomas.raddatz@xxxxxxxxxxx
     >    > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     >    > Datum: 03.07.2013 22:59
     >    > Betreff: Re: Problem to send DB characters - Remove Escape
     characters
     >    > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >    >
     >    > Gilles,
     >    >
     >    > It is hard to believe that it does not work for you. It is
   true
     that
     >    I did
     >    > not run a complete integration test but I tested the new
     >    functionality with
     >    > an extensive RPGUnit test. The procedures I tested are:
     >    >
      >    >     Marshaller_toString()
     >    >     Marshaller_toStringV6()
     >    >     XmlEntityEncoder_encode()
     >    >     XmlEntityEncoder_encodeLarge()
     >    >     XmlEntityEncoder_encodeV6()
     >    >
     >    > May you please start the debugger for service program
   WSDL2RPGRT
     and
     >    module
     >    > WSDL2R98 and add a breakpoint to the marshaller that your stub
     uses.
     >    For
     >    > example, starting at Marshaller_toString(), the program flow
   is
     like
     >    this:
     >    >
     >    >     Marshaller_toString()
     >    >     -> encodeXmlEntityToFieldV6() // adapter procedure
     >    >        -> encodeXmlEntityToStream()
     >    >           -> GenericStream_write()
     >    >
     >    > And for the V6 counterpart it is:
     >    >
     >    >     Marshaller_toStringV6()
     >    >        -> encodeXmlEntityToStream()
     >    >           -> GenericStream_write()
     >    >
     >    > So if the entity encoder is disabled the program should go
     through
     >    > encodeXmlEntityToStream() in both cases. From
     >    encodeXmlEntityToStream() it
     >    > should directly call GenericStream_write() without going
   through
     >    > encodeXmlEntityToStreamInternally().
     >    >
     >    > GenericStream_write() either writes the data to the output
   field
     or
     >    for the
     >    > new V6 procedures directly appends the data to a
     >    "ManagedMemoryDataSource".
     >    >
     >    > For the "old" non V6 procedures the data of the output field
   is
     >    indirectly
     >    > appended to a "ManagedMemoryDataSource". First it is returned
   to
     the
     >    stub
     >    > module and added to the "request" field. Then the "request"
     field is
     >    > periodically appended to the "ManagedMemoryDataSource".
     >    >
     >    > Eventually the data of the "ManagedMemoryDataSource" is passed
     as
     >    POST data
     >    > to HTTPAPI. That is easier than it first appears to be. Just
   as
     a
     >    side note
     >    > the "ManagedMemoryDataSource" is a combined memory and IFS
   file
     >    buffer. It
     >    > uses the memory buffer as long as there is memory available.
   As
     soon
     >    as
     >    > there is no more memory left, it switches to the slower file
     buffer.
     >    That
     >    > way there is no limit for the POST data.
     >    >
     >    > Important to know: You do not need to look at the
     >    > "ManagedMemoryDataSource". I told you about it, to let you
   know,
     how
     >    your
     >    > input data flows from the input data structure through the
     >    Marshallers, the
     >    > Xml entity encoder and the "ManagedMemoryDataSource" until it
     ends up
     >    as
     >    > the POST data in HTTP API.
     >    >
     >    > So if your data goes through GenericStream_write(), it must be
     added
     >    to the
     >    > POST data of your request message.
     >    >
     >    > I am going to run my complete test suite tomorrow and for sure
   I
     let
     >    you
     >    > know the result.
     >    >
     >    > Regards,
     >    >
     >    > Thomas.
     >    >
     >    >
     >    >
     >    > Am 03.07.2013 15:17, schrieb gilles.renne@xxxxxxxxxxxxxxxxx:
     >    > >     Hi
     >    > >     i receive Bad request  now
     >    > >     and i have nothing in httpapi_debug file
     >    > >     regards
     >    > >     Gilles Renne
     >    > >     Inactive hide details for ftpapi-request---02/07/2013
     >    > >     13:45:29---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     ftpapi-request---02/07/2013
     >    > >     13:45:29---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     >    > >
     >    > >     ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     >    > >         Envoy? par : ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >    > >         02/07/2013 13:14
     >    > >
     >    > >
     >    > >              Veuillez r?pondre ?
     >    > >         ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >
     >    > >
     >    > >     A
     >    > >
     >    > >          ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >
     >    > >     cc
     >    > >
     >    > >     Objet
     >    > >
     >    > >          Ftpapi Digest, Vol 81, Issue 4
     >    > >
     >    > >     R?f.
     >    > >
     >    > >     Send Ftpapi mailing list submissions to
     >    > >     ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     To subscribe or unsubscribe via the World Wide Web,
   visit
     >    > >
   [1][1][141][564]http://scottklement.com/mailman/listinfo/ftpapi
     >    > >     or, via email, send a message with subject or body
   'help'
     to
     >    > >     ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     You can reach the person managing the list at
     >    > >     ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     When replying, please edit your Subject line so it is
   more
     >    specific
     >    > >     than "Re: Contents of Ftpapi digest..."
     >    > >     Today's Topics:
     >    > >       1. RE Ftpapi Digest, Vol 81, Issue 3
     >    (gilles.renne@xxxxxxxxxxxxxxxxx)
     >    > >       2. Re: RE Ftpapi Digest, Vol 81, Issue 3
     >    (thomas.raddatz@xxxxxx)
     >    > >
     >

   ----------------------------------------------------------------------
     >    > >     Message: 1
     >    > >     Date: Tue, 2 Jul 2013 12:56:21 +0200
     >    > >     From: gilles.renne@xxxxxxxxxxxxxxxxx
     >    > >     To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     Cc: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     >    > >     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     Subject: RE Ftpapi Digest, Vol 81, Issue 3
     >    > >     Message-ID:
     >    > >
     >

   <OF58795E0F.39BA6186-ONC1257B9C.003BEBEC-C1257B9C.003C1783@LocalDomain>
     >    > >     Content-Type: text/plain; charset="iso-8859-1"
     >    > >     hi
     >    > >     i have a compilation error
     >    > >     USR50203 is not find
     >    > >     regards
     >    > >     Gilles Renne
     >    > >
     >    > >
     >    > >                 ftpapi-request@li
     >    > >
     >    > >                 sts.scottklement.
     >    > >
     >    > >                 com
     >    > >     A
     >    > >                 Envoy? par :
     >    ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >
     >    > >                 ftpapi-bounces@li
     >    > >     cc
     >    > >                 sts.scottklement.
     >    > >
     >    > >                 com
     >    > >     Objet
     >    > >                                           Ftpapi Digest, Vol
     81,
     >    Issue 3
     >    > >
     >    > >
     >    > >     R?f.
     >    > >                 02/07/2013 11:12
     >    > >
     >    > >
     >    > >
     >    > >
     >    > >
     >    > >                 Veuillez r?pondre
     >    > >
     >    > >                         ?
     >    > >
     >    > >                 ftpapi@xxxxxxxxxx
     >    > >
     >    > >                   tklement.com
     >    > >
     >    > >
     >    > >
     >    > >
     >    > >
     >    > >     Send Ftpapi mailing list submissions to
     >    > >      ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     To subscribe or unsubscribe via the World Wide Web,
   visit
     >    > >
     [2][2][142][565]http://scottklement.com/mailman/listinfo/ftpapi
     >    > >     or, via email, send a message with subject or body
   'help'
     to
     >    > >      ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     You can reach the person managing the list at
     >    > >      ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     When replying, please edit your Subject line so it is
   more
     >    specific
     >    > >     than "Re: Contents of Ftpapi digest..."
     >    > >     Today's Topics:
     >    > >       1. Re: Problem to send DB characters - Remove Escape
     >    characters
     >    > >          (thomas.raddatz@xxxxxx)
     >    > >
     >

   ----------------------------------------------------------------------
     >    > >     Message: 1
     >    > >     Date: Tue, 2 Jul 2013 11:12:41 +0200
     >    > >     From: thomas.raddatz@xxxxxx
     >    > >     To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     Subject: Re: Problem to send DB characters - Remove
   Escape
     >    characters
     >    > >     Message-ID:
     >    > >
     >
   <OF93CBA716.D3999555-ONC1257B9C.00312B7E-C1257B9C.003299DF@xxxxxx>
     >    > >     Content-Type: text/plain; charset="us-ascii"
     >    > >   & nbsp; Gilles,
     >    > >     I added some procedures to module WSDL2R98 of service
     program
     >    > >     WSDL2RPGRT
     >    > >     to control the integrated XML entity encoder. Replace
   the
     >    existing
     >    > >     source
     >    > >     members and reinstall WSDL2RPG if you want to use the
   new
     >    procedures:
     >    > >      //  Enables/disables the integrated XML entity encode.
     >    > >      XmlEntityEncoder_setEnabled(isEnabled)
     >    > >      //  Returns the enabled status of the integrated XML
     entity
     >    encoder.
     >    > >      isEnabled = XmlEntityEncoder_isEnabled()
     >    > >      //  Encodes XML entities up to 64k (V5R4 and lower).
     >    > >      encoded = XmlEntityEncoder_encode(i_value)
     >    > >      //  Encodes XML entities up to 1MB (V6R1 or higher).
     >    > >      encoded = XmlEntityEncoder_encodeLarge(i_value)
     >    > >      //  Encodes XML entities up to 16MB (V6R1 or higher).
     >    > >      XmlEntityEncoder_encodeV6(
     >    > >         i_value: %addr(encoded): %addr(encoded: *DATA):
     >    %size(encoded));
     >    > >     Regards,
     >    > >     Thomas.
     >    > >     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
     01.07.2013
     >    14:33:34:
     >    > >     > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     >    > >     > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     >    > >     > Datum: 01.07.2013 14:41
     >    > >     > Betreff: Problem to send DB characters - Remove Escape
     >    characters
     >    > >     > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     >
     >    > >     >
     >    > >     > Hi,
     >    > >     >
     >    > >     > I try to send chineese characters like
     >    > >     >
     >    > >     > when i view this on Iseries
     >    > >     > i see
     >    > >     >
     >    > >     >
     >    > >     >
     >    > >     > So chineese characters 5075
     >    > >     >
     >    > >     > has a & , then this characters is remove for escape
     >    characters
     >    > >     function
     >    > >     > ( XmlEntityEncoder_encodeToStream)
     >    > >     >
     >    > >     > and then after the i_conv  function is wrong because a
     db
     >    character
     >    > >     lost
     >    > >     > one hexa decimal value.
     >    > >     >
     >    > >     > what can i do do prevent this ?????
     >    > >     >
     >    > >     > regards
     >    > >     >
     >    > >     > Gilles Renne
     >    > >     > This message contains confidential information. To
   know
     more,
     >    please
     >    > >     > click on the following link:
     >    [3][3][143][566]http://disclaimer.bureauveritas.com
     >    > >     > [Bild entfernt] [Bild entfernt] [Bild entfernt] [Bild
     >    entfernt]
     >    > >     > [Bild entfernt]
     >    > >     >
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >     > This is the FTPAPI mailing list.  To unsubscribe,
   please
     go
     >    to:
     >    > >     >
     [4][4][144][567]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.
     >    > >     -------------- next part --------------
     >    > >       Gilles,
     >    > >       I added some procedures to module WSDL2R98 of service
     program
     >    > >       WSDL2RPGRT to control the integrated XML entity
   encoder.
     >    Replace the
     >    > >       existing source members and reinstall WSDL2RPG if you
     want to
     >    use the
     >    > >       new procedures:
     >    > >         //  Enables/disables the integrated XML entity
   encode.
     >    > >         XmlEntityEncoder_setEnabled(isEnabled)
     >    > >         //  Returns the enabled status of the integrated XML
     entity
     >    > >     encoder.
     >    > >         isEnabled = XmlEntityEncoder_isEnabled()
     >    > >         //  Encodes XML entities up to 64k (V5R4 and lower).
     >    > >         encoded = XmlEntityEncoder_encode(i_value)
     >    > >         //  Encodes XML entities up to 1MB (V6R1 or higher).
     >    > >         encoded = XmlEntityEncoder_encodeLarge(i_value)
     >    > >         //  Encodes XML entities up to 16MB (V6R1 or
   higher).
     >    > >         XmlEntityEncoder_encodeV6(
     >    > >            i_value: %addr(encoded): %addr(encoded: *DATA):
     >    %size(encoded));
     >    > >       Regards,
     >    > >       Thomas.
     >    > >       ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
     01.07.2013
     >    14:33:34:
     >    > >       > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     >    > >       > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     >    > >       > Datum: 01.07.2013 14:41
     >    > >       > Betreff: Problem to send DB characters - Remove
   Escape
     >    characters
     >    > >       > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       >
     >    > >       >
     >    > >       > Hi,
     >    > >       >
     >    > >       > I try to send chineese characters like
     >    > >       >
     >    > >       > when i view this on Iseries
     >    > >       > i see
     >    > >       >
     >    > >       >
     >    > >       >
     >    > >       > So chineese characters 5075
     >    > >       >
     >    > >       > has a & , then this characters is remove for escape
     >    characters
     >    > >       function
     >    > >       > ( XmlEntityEncoder_encodeToStream)
     >    > >       >
     >    > >       > and then after the i_conv  function is wrong because
   a
     db
     >    character
     >    > >       lost
     >    > >       > one hexa decimal value.
     >    > >       >
     >    > >       > what can i do do prevent this ?????
     >    > >       >
     >    > >       > regards
     >    > >       >
     >    > >       > Gilles Renne
     >    > >       > This message contains confidential information. To
     know
     >    more,
     >    > >     please
     >    > >       > click on the following link:
     >    > >     [1][5][5][145][568]http://disclaimer.bureauveritas.com
     >    > >       > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   [Bild
     >    entfernt]
     >    > >       > [Bild entfernt]
     >    > >       >
     >    > >
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >       > This is the FTPAPI mailing list.  To unsubscribe,
     please go
     >    to:
     >    > >       >
     >
   [2][6][6][146][569]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.
   [7][7][147][570]http://disclaimer.bureauveritas.com/
     >    > >       2.
     [8][8][148][571]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >     -------------- next part --------------
     >    > >     A non-text attachment was scrubbed...
     >    > >     Name: Patch_XmlEncoder_for_v1.15.5+.zip
     >    > >     Type: application/zip
     >    > >     Size: 31638 bytes
     >    > >     Desc: not available
     >    > >     URL: <
     >    > >
     >

   [9][9][149][572]http://scottklement.com/pipermail/ftpapi/attachments/20
   13070
     2/fea
     >    97d
     >    > >     e9/attachment.zip
     >    > >     >
     >    > >     ------------------------------
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >     This is the FTPAPI mailing list digest.  To unsubscribe,
     go to:
     >    > >
     [10][10][150][573]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >     End of Ftpapi Digest, Vol 81, Issue 3
     >    > >     *************************************
     >    > >     This message contains confidential information. To know
     more,
     >    please
     >    > >     click on the following link:
     >    [11][11][151][574]http://disclaimer.bureauveritas.com
     >    > >     -------------- next part --------------
     >    > >       hi
     >    > >       i have a compilation error
     >    > >       USR50203 is not find
     >    > >       regards
     >    > >       Gilles Renne
     >    > >       Inactive hide details for ftpapi-request---02/07/2013
     >    > >       11:39:55---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       ftpapi-request---02/07/2013
     >    > >       11:39:55---ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     >    > >           Envoy? par : ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >    > >           02/07/2013 11:12
     >    > >                Veuillez r?pondre ?
     >    > >           ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       A
     >    > >            ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       cc
     >    > >       Objet
     >    > >            Ftpapi Digest, Vol 81, Issue 3
     >    > >       R?f.
     >    > >       Send Ftpapi mailing list submissions to
     >    > >       ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       To subscribe or unsubscribe via the World Wide Web,
     visit
     >    > >
     [1][12][12][152][575]http://scottklement.com/mailman/listinfo/ftpapi
     >    > >       or, via email, send a message with subject or body
     'help' to
     >    > >       ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       You can reach the person managing the list at
     >    > >       ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       When replying, please edit your Subject line so it is
     more
     >    specific
     >    > >       than "Re: Contents of Ftpapi digest..."
     >    > >       Today's Topics:
     >    > >         1. Re: Problem to send DB characters - Remove Escape
     >    characters
     >    > >            (thomas.raddatz@xxxxxx)
     >    > >
     >    > >
     >

   ----------------------------------------------------------------------
     >    > >       Message: 1
     >    > >       Date: Tue, 2 Jul 2013 11:12:41 +0200
     >    > >       From: thomas.raddatz@xxxxxx
     >    > >       To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       Subject: Re: Problem to send DB characters - Remove
     Escape
     >    characters
     >    > >       Message-ID:
     >    > >
     >
   <OF93CBA716.D3999555-ONC1257B9C.00312B7E-C1257B9C.003299DF@xxxxxx>
     >    > >       Content-Type: text/plain; charset="us-ascii"
     >    > >       Gilles,
     >    > >       I added some procedures to module WSDL2R98 of service
     program
     >    > >       WSDL2RPGRT
     >    > >       to control the integrated XML entity encoder. Replace
     the
     >    existing
     >    > >       source
     >    > >       members and reinstall WSDL2RPG if you want to use the
     new
     >    procedures:
     >    > >        //  Enables/disables the integrated XML entity
   encode.
     >    > >        XmlEntityEncoder_setEnabled(isEnabled)
     >    > >        //  Returns the enabled status of the integrated XML
     entity
     >    encoder.
     >    > >        isEnabled = XmlEntityEncoder_isEnabled()
     >    > >        //  Encodes XML entities up to 64k (V5R4 and lower).
     >    > >        encoded = XmlEntityEncoder_encode(i_value)
     >    > >        //  Encodes XML entities up to 1MB (V6R1 or higher).
     >    > >        encoded = XmlEntityEncoder_encodeLarge(i_value)
     >    > >        //  Encodes XML entities up to 16MB (V6R1 or higher).
     >    > >        XmlEntityEncoder_encodeV6(
     >    > >           i_value: %addr(encoded): %addr(encoded: *DATA):
     >    %size(encoded));
     >    > >       Regards,
     >    > >       Thomas.
     >    > >       ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
     01.07.2013
     >    14:33:34:
     >    > >       > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     >    > >       > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     >    > >       > Datum: 01.07.2013 14:41
     >    > >       > Betreff: Problem to send DB characters - Remove
   Escape
     >    characters
     >    > >       > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       >
     >    > >       >
     >    > >       > Hi,
     >    > >       >
     >    > >       > I try to send chineese characters like
     >    > >       >
     >    > >       > when i view this on Iseries
     >    > >       > i see
     >    > >       >
     >    > >       >
     >    > >       >
     >    > >       > So chineese characters 5075
     >    > >       >
     >    > >       > has a & , then this characters is remove for escape
     >    characters
     >    > >       function
     >    > >       > ( XmlEntityEncoder_encodeToStream)
     >    > >       >
     >    > >       > and then after the i_conv  function is wrong because
   a
     db
     >    character
     >    > >       lost
     >    > >       > one hexa decimal value.
     >    > >       >
     >    > >       > what can i do do prevent this ?????
     >    > >       >
     >    > >       > regards
     >    > >       >
     >    > >       > Gilles Renne
     >    > >       > This message contains confidential information. To
     know
     >    more,
     >    > >     please
     >    > >       > click on the following link:
     >    > >     [2][13][13][153][576]http://disclaimer.bureauveritas.com
     >    > >       > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   [Bild
     >    entfernt]
     >    > >       > [Bild entfernt]
     >    > >       >
     >    > >
      >    > >
     >

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

   [3][14][14][154][577]http://www.scottklement.com/mailman/listinfo/ftpap
   i
     >    > >       >
     >    > >
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >       --
     >    > >       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.
     >    > >       -------------- next part --------------
     >    > >         Gilles,
     >    > >         I added some procedures to module WSDL2R98 of
   service
     >    program
     >    > >         WSDL2RPGRT to control the integrated XML entity
     encoder.
     >    Replace
     >    > >     the
     >    > >         existing source members and reinstall WSDL2RPG if
   you
     want
     >    to use
     >    > >     the
     >    > >         new procedures:
     >    > >           //  Enables/disables the integrated XML entity
     encode.
     >    > >           XmlEntityEncoder_setEnabled(isEnabled)
     >    > >           //  Returns the enabled status of the integrated
   XML
     >    entity
     >    > >       encoder.
     >    > >           isEnabled = XmlEntityEncoder_isEnabled()
     >    > >           //  Encodes XML entities up to 64k (V5R4 and
   lower).
     >    > >           encoded = XmlEntityEncoder_encode(i_value)
     >    > >           //  Encodes XML entities up to 1MB (V6R1 or
   higher).
     >    > >           encoded = XmlEntityEncoder_encodeLarge(i_value)
     >    > >           //  Encodes XML entities up to 16MB (V6R1 or
     higher).
     >    > >           XmlEntityEncoder_encodeV6(
     >    > >              i_value: %addr(encoded): %addr(encoded: *DATA):
     >    > >     %size(encoded));
     >    > >         Regards,
     >    > >         Thomas.
     >    > >         ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
     01.07.2013
     >    > >     14:33:34:
     >    > >         > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     >    > >         > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     >    > >         > Datum: 01.07.2013 14:41
     >    > >         > Betreff: Problem to send DB characters - Remove
     Escape
     >    characters
     >    > >         > Gesendet von:
   ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >    > >         >
     >    > >         >
     >    > >         > Hi,
     >    > >         >
     >    > >         > I try to send chineese characters like
     >    > >         >
     >    > >         > when i view this on Iseries
     >    > >         > i see
     >    > >         >
     >    > >         >
     >    > >         >
     >    > >         > So chineese characters 5075
     >    > >         >
     >    > >         > has a & , then this characters is remove for
   escape
     >    characters
     >    > >         function
     >    > >         > ( XmlEntityEncoder_encodeToStream)
     >    > >         >
     >    > >         > and then after the i_conv  function is wrong
   because
     a db
     >    > >     character
     >    > >         lost
     >    > >         > one hexa decimal value.
     >    > >         >
     >    > >         > what can i do do prevent this ?????
     >    > >         >
     >    > >         > regards
     >    > >         >
     >    > >         > Gilles Renne
     >    > >         > This message contains confidential information. To
     know
     >    more,
     >    > >       please
     >    > >         > click on the following link:
     >    > >
   [1][4][15][15][155][578]http://disclaimer.bureauveritas.com
     >    > >         > [Bild entfernt] [Bild entfernt] [Bild entfernt]
     [Bild
     >    entfernt]
     >    > >         > [Bild entfernt]
     >    > >         >
     >    > >
     >    > >
     >

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

   [2][5][16][16][156][579]http://www.scottklement.com/mailman/listinfo/ft
   papi
     >    > >         >
     >    > >
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >         --
     >    > >         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.
     [6][17][17][157][580]http://disclaimer.bureauveritas.com/
     >    > >         2.
     >

   [7][18][18][158][581]http://www.scottklement.com/mailman/listinfo/ftpap
   i
     >    > >       -------------- next part --------------
     >    > >       A non-text attachment was scrubbed...
     >    > >       Name: Patch_XmlEncoder_for_v1.15.5+.zip
     >    > >       Type: application/zip
     >    > >       Size: 31638 bytes
     >    > >       Desc: not available
     >    > >       URL:
     >    > >
     >    > >
     >

   <[8][19][19][159][582]http://scottklement.com/pipermail/ftpapi/attachme
   nts/2
     01307
     >    02/f
     >    > >     ea97
     >    > >       de9/attachment.zip>
     >    > >       ------------------------------
     >    > >
     >    > >
     >

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

   [9][20][20][160][583]http://www.scottklement.com/mailman/listinfo/ftpap
   i
     >    > >
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >       End of Ftpapi Digest, Vol 81, Issue 3
     >    > >       *************************************
     >    > >       This message contains confidential information. To
   know
     more,
     >    please
     >    > >       click on the following link:
     >    [21][21][161][584]http://disclaimer.bureauveritas.com
     >    > >     References
     >    > >       1.
     [22][22][162][585]http://scottklement.com/mailman/listinfo/ftpapi
     >    > >       2.
   [23][23][163][586]http://disclaimer.bureauveritas.com/
     > &nb sp;  > >       3.
     >
   [24][24][164][587]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >       4.
   [25][25][165][588]http://disclaimer.bureauveritas.com/
     >    > >       5.
     >
   [26][26][166][589]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >       6.
   [27][27][167][590]http://disclaimer.bureauveritas.com/
     >    > >       7.
     >
   [28][28][168][591]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >       8.
     >    > >
     >

   [29][29][169][592]http://scottklement.com/pipermail/ftpapi/attachments/
   20130
     702/f
     >    ea97
     >    > >     de9/attachment.zip
     >    > >       9.
     >
   [30][30][170][593]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >     -------------- next part --------------
     >    > >     A non-text attachment was scrubbed...
     >    > >     Name: graycol.gif
     >    > >     Type: image/gif
     >    > >     Size: 105 bytes
     >    > >     Desc: not available
     >    > >     URL:
     >    > >
     >

   <[31][31][171][594]http://scottklement.com/pipermail/ftpapi/attachments
   /2013
     0702/
     >    9279
     >    > >     210e/attachment.gif>
     >    > >     -------------- next part --------------
     >    > >     A non-text attachment was scrubbed...
     >    > >     Name: pic06064.gif
     >    > >     Type: image/gif
     >    > >     Size: 1255 bytes
     >    > >     Desc: not available
     >    > >     URL:
     >    > >
     >

   <[32][32][172][595]http://scottklement.com/pipermail/ftpapi/attachments
   /2013
     0702/
     >    9279
     >    > >     210e/attachment-0001.gif>
     >    > >     -------------- next part --------------
     >    > >     A non-text attachment was scrubbed...
     >    > >     Name: ecblank.gif
     >    > >     Type: image/gif
     >    > >     Size: 45 bytes
     >    > >     Desc: not available
     >    > >     URL:
     >    > >
     >

   <[33][33][173][596]http://scottklement.com/pipermail/ftpapi/attachments
   /2013
     0702/
     >    9279
     >    > >     210e/attachment-0002.gif>
     >    > >     ------------------------------
     >    > >     Message: 2
     >    > >     Date: Tue, 2 Jul 2013 13:14:33 +0200
     >    > >     From: thomas.raddatz@xxxxxx
     >    > >     To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     Subject: Re: RE Ftpapi Digest, Vol 81, Issue 3
     >    > >     Message-ID:
     >    > >
     >
   <OFE220083F.9F11B05A-ONC1257B9C.003D4C5B-C1257B9C.003DC1F8@xxxxxx>
     >    > >     Content-Type: text/plain; charset="iso-8859-1"
     >    > >     OK. That means that you have WSDL2RPG v1.15.5 or lower,
     because
     >    message
     >    > >     description USR5020 has been changed with 1.15.6, right?
     >    > >     Please replace member USR5020 with the attached one and
     try to
     >    compile
     >    > >     again.
     >    > >     Thomas.
     >    > >     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
     02.07.2013
     >    12:56:21:
     >    > >     > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     >    > >     > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     >    > >     > Kopie: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     >    > >     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     > Datum: 02.07.2013 13:05
     >    > >     > Betreff: RE Ftpapi Digest, Vol 81, Issue 3
     >    > >     > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     >
     >    > >     >
     >    > >     > hi
     >    > >     >
     >    > >     > i have a compilation error
     >    > >     > USR50203 is not find
     >    > >     >
     >    > >     >
     >    > >     > regards
     >    > >     >
     >    > >     > Gilles Renne
     >    > >     >
     >    > >     >
     >    > >     >
     >    > >     >
     >    > >     >
     >    > >     >              ftpapi-request@li
     >    > >     >              sts.scottklement.
     >    > >     >              com A
     >    > >     >              Envoy? par :
     >    ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     >              ftpapi-bounces@li cc
     >    > >     >              sts.scottklement.
     >    > >     >              com Objet
     >    > >     >                                        Ftpapi Digest,
     Vol 81,
     >    Issue 3
     >    > >     > R?f.
     >    > >     >              02/07/2013 11:12
     >    > >     >
     >    > >     >
     >    > >     >              Veuillez r?pondre
     >    > >     >                      ?
     >    > >     >              ftpapi@xxxxxxxxxx
     >    > >     >                tklement.com
     >    > >     >
     >    > >     >
     >    > >     >
     >    > >     >
     >    > >     >
     >    > >     >
     >    > >     > Send Ftpapi mailing list submissions to
     >    > >     >        ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     >
     >    > >     > To subscribe or unsubscribe via the World Wide Web,
     visit
     >    > >     >
     >
   [34][34][174][597]http://scottklement.com/mailman/listinfo/ftpapi
     >    > >     > or, via email, send a message with subject or body
     'help' to
     >    > >     >        ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     >
     >    > >     > You can reach the person managing the list at
     >    > >     >        ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     >
     >    > >     > When replying, please edit your Subject line so it is
     more
     >    specific
     >    > >     > than "Re: Contents of Ftpapi digest..."
     >    > >     >
     >    > >     >
     >    > >     > Today's Topics:
     >    > >     >
     >    > >     >    1. Re: Problem to send DB characters - Remove
   Escape
     >    characters
     >    > >     >       (thomas.raddatz@xxxxxx)
     >    > >     >
     >    > >     >
     >    > >     >
     >    > >
     >

   ----------------------------------------------------------------------
     >    > >     >
     >    > >     > Message: 1
     >    > >     > Date: Tue, 2 Jul 2013 11:12:41 +0200
     >    > >     > From: thomas.raddatz@xxxxxx
     >    > >     > To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     > Subject: Re: Problem to send DB characters - Remove
     Escape
     >    characters
     >    > >     > Message-ID:
     >    > >     >
     >    > >     >
     >
   <OF93CBA716.D3999555-ONC1257B9C.00312B7E-C1257B9C.003299DF@xxxxxx>
     >    > >     > Content-Type: text/plain; charset="us-ascii"
     >    > >     >
     >    > >     >
     >    > >     > Gilles,
     >    > >     >
     >    > >     > I added some procedures to module WSDL2R98 of service
     program
     >    > >     WSDL2RPGRT
     >    > >     > to control the integrated XML entity encoder. Replace
     the
     >    existing
     >    > >     source
     >    > >     > members and reinstall WSDL2RPG if you want to use the
     new
     >    procedures:
     >    > >     >
     >    > >     >
     >    > >     >   //  Enables/disables the integrated XML entity
   encode.
     >    > >     >   XmlEntityEncoder_setEnabled(isEnabled)
     >    > >     >
     >    > >     >
     >    > >     >   //  Returns the enabled status of the integrated XML
     entity
     >    > >     encoder.
     >    > >     >   isEnabled = XmlEntityEncoder_isEnabled()
     >    > >     >
     >    > >     >
     >    > >     >   //  Encodes XML entities up to 64k (V5R4 and lower).
     >    > >     >   encoded = XmlEntityEncoder_encode(i_value)
     >    > >     >
     >    > >     >
     >    > >     >   //  Encodes XML entities up to 1MB (V6R1 or higher).
     >    > >     >   encoded = XmlEntityEncoder_encodeLarge(i_value)
     >    > >     >
     >    > >     >
     >    > >     >   //  Encodes XML entities up to 16MB (V6R1 or
   higher).
     >    > >     >   XmlEntityEncoder_encodeV6(
     >    > >     >      i_value: %addr(encoded): %addr(encoded: *DATA):
     >    %size(encoded));
     >    > >     >
     >    > >     >
     >    > >     > Regards,
     >    > >     >
     >    > >     >
     >    > >     > Thomas.
     >    > >     >
     >    > >     >
     >    > >     >
     >    > >     > ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
     01.07.2013
     >    14:33:34:
     >    > >     >
     >    > >     > > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     >    > >     > > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     >    > >     > > Datum: 01.07.2013 14:41
     >    > >     > > Betreff: Problem to send DB characters - Remove
   Escape
     >    characters
     >    > >     > > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     > >
     >    > >     > >
     >    > >     > > Hi,
     >    > >     > >
     >    > >     > > I try to send chineese characters like
     >    > >     > >
     >    > >     > > when i view this on Iseries
     >    > >     > > i see
     >    > >     > >
     >    > >     > >
     >    > >     > >
     >    > >     > > So chineese characters 5075
     >    > >     > >
     >    > >     > > has a & , then this characters is remove for escape
     >    characters
     >    > >     function
     >    > >     > > ( XmlEntityEncoder_encodeToStream)
     >    > >     > >
     >    > >     > > and then after the i_conv  function is wrong because
   a
     db
     >    character
     >    > >     lost
     >    > >     > > one hexa decimal value.
     >    > >     > >
     >    > >     > > what can i do do prevent this ?????
     >    > >     > >
     >    > >     > > regards
     >    > >     > >
     >    > >     > > Gilles Renne
     >    > >     > > This message contains confidential information. To
     know
     >    more,
     >    > >     please
     >    > >     > > click on the following link:
     >    > >     [35][35][175][598]http://disclaimer.bureauveritas.com
     >    > >     > > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   [Bild
     >    entfernt]
     >    > >     > > [Bild entfernt]
     >    > >     > >
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >     > > This is the FTPAPI mailing list.  To unsubscribe,
     please go
     >    to:
     >    > >     > >
     [36][36][176][599]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.
     >    > >     > -------------- next part --------------
     >    > >     >    Gilles,
     >    > >     >    I added some procedures to module WSDL2R98 of
   service
     >    program
     >    > >     >    WSDL2RPGRT to control the integrated XML entity
     encoder.
     >    Replace
     >    > >     the
     >    > >     >    existing source members and reinstall WSDL2RPG if
   you
     want
     >    to use
     >    > >     the
     >    > >     >    new procedures:
     >    > >     >      //  Enables/disables the integrated XML entity
     encode.
     >    > >     >      XmlEntityEncoder_setEnabled(isEnabled)
     >    > >     >      //  Returns the enabled status of the integrated
     XML
     >    entity
     >    > >     encoder.
     >    > >     >      isEnabled = XmlEntityEncoder_isEnabled()
     >    > >     >      //  Encodes XML entities up to 64k (V5R4 and
     lower).
     >    > >     >      encoded = XmlEntityEncoder_encode(i_value)
     >    > >     >      //  Encodes XML entities up to 1MB (V6R1 or highe
     r).
     >    > >     >      encoded = XmlEntityEncoder_encodeLarge(i_value)
     >    > >     >      //  Encodes XML entities up to 16MB (V6R1 or
     higher).
     >    > >     >      XmlEntityEncoder_encodeV6(
     >    > >     >         i_value: %addr(encoded): %addr(encoded:
   *DATA):
     >    > >     %size(encoded));
     >    > >     >    Regards,
     >    > >     >    Thomas.
     >    > >     >    ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
     >    01.07.2013
     >    > >     14:33:34:
     >    > >     >    > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     >    > >     >    > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     >    > >     >    > Datum: 01.07.2013 14:41
     >    > >     >    > Betreff: Problem to send DB characters - Remove
     Escape
     >    > >     characters
     >    > >     >    > Gesendet von:
   ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >    > >     >    >
     >    > >     >    >
     >    > >     >    > Hi,
     >    > >     >    >
     >    > >     >    > I try to send chineese characters like
     >    > >     >    >
     >    > >     >    > when i view this on Iseries
     >    > >     >    > i see
     >    > >     >    >
     >    > >     >    >
     >    > >     >    >
     >    > >     >    > So chineese characters 5075
     >    > >     >    >
     >    > >     >    > has a & , then this characters is remove for
   escape
     >    characters
     >    > >     >    function
     >    > >     >    > ( XmlEntityEncoder_encodeToStream)
     >    > >     >    >
     >    > >     >    > and then after the i_conv  function is wrong
     because a
     >    db
     >    > >     character
     >    > >     >    lost
     >    > >     >    > one hexa decimal value.
     >    > >     >    >
     >    > >     >    > what can i do do prevent this ?????
     >    > >     >    >
     >    > >     >    > regards
     >    > >     >    >
     >    > >     >    > Gilles Renne
     >    > >     >    > This message contains confidential information.
   To
     know
     >    more,
     >    > >     please
     >    > >     >    > click on the following link:
     >    > >     [1][37][37][177][600]http://disclaimer.bureauveritas.com
     >    > >     >    > [Bild entfernt] [Bild entfernt] [Bild entfernt]
     [Bild
     >    entfernt]
     >    > >     >    > [Bild entfernt]
     >    > >     >    >
     >    > >     >
     >    > >
     >

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

   [2][38][38][178][601]http://www.scottklement.com/mailman/listinfo/ftpap
   i
     >    > >     >    >
     >    > >     >
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >     >
     >    > >     >    --
     >    > >     >    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.
   [39][39][179][602]http://disclaimer.bureauveritas.com/
     >    > >     >    2.
     >
   [40][40][180][603]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >     > -------------- next part --------------
     >    > >     > A non-text attachment was scrubbed...
     >    > >     > Name: Patch_XmlEncoder_for_v1.15.5+.zip
     >    > >     > Type: application/zip
     >    > >     > Size: 31638 bytes
     >    > >     > Desc: not available
     >    > >     > URL: <
     >    > >     >
     >

   [41][41][181][604]http://scottklement.com/pipermail/ftpapi/attachments/
   20130
     702/
     >    > >     > fea97de9/attachment.zip
     >    > >     > >
     >    > >     >
     >    > >     > ------------------------------
     >    > >     >
     >    > >     >
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >     > This is the FTPAPI mailing list digest.  To
   unsubscribe,
     go
     >    to:
     >    > >     >
     [42][42][182][605]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >     >
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >     >
     >    > >     >
     >    > >     > End of Ftpapi Digest, Vol 81, Issue 3
     >    > >     > *************************************
     >    > >     > This message contains confidential information. To
   know
     more,
     >    please
     >    > >     > click on the following link:
     >    [43][43][183][606]http://disclaimer.bureauveritas.com
     >    > >     > [Bild entfernt] [Bild entfernt] [Bild entfernt]
     >    > >     >
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >     > This is the FTPAPI mailing list.  To unsubscribe,
   please
     go
     >    to:
     >    > >     >
     [44][44][184][607]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.
     >    > >     -------------- next part --------------
     >    > >       OK. That means that you have WSDL2RPG v1.15.5 or
   lower,
     >    because
     >    > >     message
     >    > >       description USR5020 has been changed with 1.15.6,
   right?
     >    > >       Please replace member USR5020 with the attached one
   and
     try
     >    to
     >    > >     compile
     >    > >       again.
     >    > >       Thomas.
     >    > >       ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
     02.07.2013
     >    12:56:21:
     >    > >       > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     >    > >       > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     >    > >       > Kopie: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     >    > >       ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       > Datum: 02.07.2013 13:05
     >    > >       > Betreff: RE Ftpapi Digest, Vol 81, Issue 3
     >    > >       > Gesendet von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       >
     >    > >       >
     >    > >       > hi
     >    > >       >
     >    > >       > i have a compilation error
     >    > >       > USR50203 is not find
     >    > >       >
     >    > >       >
     >    > >       > regards
     >    > >       >
     >    > >       > Gilles Renne
     >    > >       >
     >    > >       >
     >    > >       >
     >    > >       >
     >    > >       >
     >    > >       >              ftpapi-request@li
     >    > >       >              sts.scottklement.
     >    > >       >              com
     >    > >           A
     >    > >       >              Envoy? par :
     >    > >     ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       >              ftpapi-bounces@li
     >    > >          cc
     >    > >       >              sts.scottklement.
     >    > >       >              com
     >    > >       Objet
     >    > >       >                                        Ftpapi
   Digest,
     Vol
     >    81, Issue
     >    > >     3
     >    > >       >
     >    > >       R?f.
     >    > >       >              02/07/2013 11:12
     >    > >       >
     >    > >       >
     >    > >       >              Veuillez r?pondre
     >    > >       >                      ?
     >    > >       >              ftpapi@xxxxxxxxxx
     >    > >       >                tklement.com
     >    > >       >
     >    > >       >
     >    > >       >
     >    > > &n bsp;     >
     >    > >       >
     >    > >       >
     >    > >       > Send Ftpapi mailing list submissions to
     >    > >       >        ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       >
     >    > >       > To subscribe or unsubscribe via the World Wide Web,
     visit
     >    > >       >
     >
   [1][45][45][185][608]http://scottklement.com/mailman/listinfo/ftpapi
     >    > >       > or, via email, send a message with subject or body
     'help'
     >    to
     >    > >       >        ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       >
     >    > >       > You can reach the person managing the list at
     >    > >       >        ftpapi-owner@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       >
     >    > >       > When replying, please edit your Subject line so it
   is
     more
     >    specific
     >    > >       > than "Re: Contents of Ftpapi digest..."
     >    > >       >
     >    > >       >
     >    > >       > Today's Topics:
     >    > >       >
     >    > >       >    1. Re: Problem to send DB characters - Remove
     Escape
     >    characters
     >    > >       >       (thomas.raddatz@xxxxxx)
     >    > >       >
     >    > >       >
     >    > >       >
     >    > >
     >    > >
     >

   ----------------------------------------------------------------------
     >    > >       >
     >    > >       > Message: 1
     >    > >       > Date: Tue, 2 Jul 2013 11:12:41 +0200
     >    > >       > From: thomas.raddatz@xxxxxx
     >    > >       > To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       > Subject: Re: Problem to send DB characters - Remove
     Escape
     >    > >     characters
     >    > >       > Message-ID:
     >    > >       >
     >    > >       >
     >
   <OF93CBA716.D3999555-ONC1257B9C.00312B7E-C1257B9C.003299DF@xxxxxx>
     >    > >       > Content-Type: text/plain; charset="us-ascii"
     >    > >       >
     >    > >       >
     >    > >       > Gilles,
     >    > >       >
     >    > >       > I added some procedures to module WSDL2R98 of
   service
     >    program
     >    > >       WSDL2RPGRT
     >    > >       > to control the integrated XML entity encoder.
   Replace
     the
     >    existing
     >    > >       source
     >    > >       > members and reinstall WSDL2RPG if you want to use
   the
     new
     >    > >     procedures:
     >    > >       >
     >    > >       >
     >    > >       >   //  Enables/disables the integrated XML entity
     encode.
     >    > >       >   XmlEntityEncoder_setEnabled(isEnabled)
     >    > >       >
     >    > >       >
     >    > >       >   //  Returns the enabled status of the integrated
   XML
     >    entity
     >    > >       encoder.
     >    > >       >   isEnabled = XmlEntityEncoder_isEnabled()
     >    > >       >
     >    > >       >
     >    > >       >   //  Encodes XML entities up to 64k (V5R4 and
   lower).
     >    > >       >   encoded = XmlEntityEncoder_encode(i_value)
     >    > >       >
     >    > >       >
     >    > >       >   //  Encodes XML entities up to 1MB (V6R1 or
   higher).
     >    > >       >   encoded = XmlEntityEncoder_encodeLarge(i_value)
     >    > >       >
     >    > >       >
     >    > >       >   //  Encodes XML entities up to 16MB (V6R1 or
     higher).
     >    > >       >   XmlEntityEncoder_encodeV6(
     >    > >       >      i_value: %addr(encoded): %addr(encoded: *DATA):
     >    > >     %size(encoded));
     >    > >       >
     >    > >       >
     >    > >       > Regards,
     >    > >       >
     >    > >       >
     >    > >       > Thomas.
     >    > >       >
     >    > >       >
     >    > >       >
     >    > >       > ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
     01.07.2013
     >    > >     14:33:34:
     >    > >       >
     >    > >       > > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     >    > >       > > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     >    > >       > > Datum: 01.07.2013 14:41
     >    > >       > > Betreff: Problem to send DB characters - Remove
     Escape
     >    characters
     >    > >       > > Gesendet von:
   ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       > >
     >    > >       > >
     >    > >       > > Hi,
     >    > >       > >
     >    > >       > > I try to send chineese characters like
     >    > >       > >
     >    > >       > > when i view this on Iseries
     >    > >       > > i see
     >    > >       > >
     >    > >       > >
     >    > >       > >
     >    > >       > > So chineese characters 5075
     >    > >       > >
     >    > >       > > has a & , then this characters is remove for
   escape
     >    characters
     >    > >       function
     >    > >       > > ( XmlEntityEncoder_encodeToStream)
     >    > >       > >
     >    > >       > > and then after the i_conv  function is wrong
   because
     a db
     >    > >     character
     >    > >       lost
     >    > >       > > one hexa decimal value.
     >    > >       > >
     >    > >       > > what can i do do prevent this ?????
     >    > >       > >
     >    > >       > > regards
     >    > >       > >
     >    > >       > > Gilles Renne
     >    > >       > > This message contains confidential information. To
     know
     >    more,
     >    > >       please
     >    > >       > > click on the following link:
     >    > >     [2][46][46][186][609]http://disclaimer.bureauveritas.com
     >    > >       > > [Bild entfernt] [Bild entfernt] [Bild entfernt]
     [Bild
     >    entfernt]
     >    > >       > > [Bild entfernt]
     >    > >       > >
     >    > >
     >    > >
     >

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

   [3][47][47][187][610]http://www.scottklement.com/mailman/listinfo/ftpap
   i
     >    > >       > >
     >    > >
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >       >
     >    > >       >
     >    > >       > --
     >    > >       > 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.
     >    > >       > -------------- next part --------------
     >    > >       >    Gilles,
     >    > >       >    I added some procedures to module WSDL2R98 of
     service
     >    program
     >    > >       >    WSDL2RPGRT to control the integrated XML entity
     encoder.
     >    Replace
     >    > >       the
     >    > >       >    existing source members and reinstall WSDL2RPG if
     you
     >    want to
     >    > >     use
     >    > >       the
     >    > >       >    new procedures:
     >    > >       >      //  Enables/disables the integrated XML entity
     encode.
     >    > >       >      XmlEntityEncoder_setEnabled(isEnabled)
     >    > >       >      //  Returns the enabled status of the
   integrated
     XML
     >    entity
     >    > >       encoder.
     >    > >       >      isEnabled = XmlEntityEncoder_isEnabled()
     >    > >       >      //  Encodes XML entities up to 64k (V5R4 and
     lower).
     >    > >       >      encoded = XmlEntityEncoder_encode(i_value)
     >    > >       >      //  Encodes XML entities up to 1MB (V6R1 or
     higher).
     >    > >       >      encoded = XmlEntityEncoder_encodeLarge(i_value)
     >    > >       >      //  Encodes XML entities up to 16MB (V6R1 or
     higher).
     >    > >       >      XmlEntityEncoder_encodeV6(
     >    > >       >         i_value: %addr(encoded): %addr(encoded:
     *DATA):
     >    > >       %size(encoded));
     >    > >       >    Regards,
     >    > >       >    Thomas.
     >    > >       >    ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
     >    01.07.2013
     >    > >       14:33:34:
     >    > >       >    > Von: gilles.renne@xxxxxxxxxxxxxxxxx
     >    > >       >    > An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
     >    > >       >    > Datum: 01.07.2013 14:41
     >    > >       >    > Betreff: Problem to send DB characters - Remove
     Escape
     >    > >       characters
     >    > >       >    > Gesendet von:
     ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >    > >       >    >
     >    > >       >    >
     >    > >       >    > Hi,
     >    > >       >    >
     >    > >       >    > I try to send chineese characters like
     >    > >       >    >
     >    > >       >    > when i view this on Iseries
     >    > >       >    > i see
     >    > >       >    >
     >    > >       >    >
     >    > >       >    >
     >    > >       >    > So chineese characters 5075
     >    > >       >    >
     >    > >       >    > has a & , then this characters is remove for
     escape
     >    characters
     >    > >       >    function
     >    > >       >    > ( XmlEntityEncoder_encodeToStream)
     >    > >       >    >
     >    > >       >    > and then after the i_conv  function is wrong
     because a
     >    db
     >    > >       character
     >    > >       >    lost
     >    > >       >    > one hexa decimal value.
     >    > >       >    >
     >    > >       >    > what can i do do prevent this ?????
     >    > >       >    >
     >    > >       >    > regards
     >    > >       >    >
     >    > >       >    > Gilles Renne
     >    > >       >    > This message contains confidential information.
     To
     >    know more,
     >    > >       please
     >    > >       >    > click on the following link:
     >    > >
   [1][4][48][48][188][611]http://disclaimer.bureauveritas.com
     >    > >       >    > [Bild entfernt] [Bild entfernt] [Bild entfernt]
     [Bild
     >    > >     entfernt]
     >    > >       >    > [Bild entfernt]
     >    > >       >    >
     >    > >       >
     >    > >
     >    > >
     >

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

   [2][5][49][49][189][612]http://www.scottklement.com/mailman/listinfo/ft
   papi
     >    > >       >    >
     >    > >       >
     >    > >
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >       >
     >    > >       >    --
     >    > >       >    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.
     [6][50][50][190][613]http://disclaimer.bureauveritas.com/
     >    > >       >    2.
     >

   [7][51][51][191][614]http://www.scottklement.com/mailman/listinfo/ftpap
   i
     >    > >       > -------------- next part --------------
     >    > >       > A non-text attachment was scrubbed...
     >    > >       > Name: Patch_XmlEncoder_for_v1.15.5+.zip
     >    > >       > Type: application/zip
     >    > >       > Size: 31638 bytes
     >    > >       > Desc: not available
     >    > >       > URL: <
     >    > >       >
     >    > >
     >

   [8][52][52][192][615]http://scottklement.com/pipermail/ftpapi/attachmen
   ts/20
     13070
     >    2/
     >    > >       > fea97de9/attachment.zip
     >    > >       > >
     >    > >       >
     >    > >       > ------------------------------
     >    > >       >
     >    > >       >
     >    > >
     >    > >
     >

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

   [9][53][53][193][616]http://www.scottklement.com/mailman/listinfo/ftpap
   i
     >    > >       >
     >    > >
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >       >
     >    > >       >
     >    > >       > End of Ftpapi Digest, Vol 81, Issue 3
     >    > >       > *************************************
     >    > >       > This message contains confidential information. To
     know
     >    more,
     >    > >     please
     >    > >       > click on the following link:
     >    > >
   [10][54][54][194][617]http://disclaimer.bureauveritas.com
     >    > >       > [Bild entfernt] [Bild entfernt] [Bild entfernt]
     >    > >       >
     >    > >
     >    > >
     >

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

   [11][55][55][195][618]http://www.scottklement.com/mailman/listinfo/ftpa
   pi
     >    > >       >
     >    > >
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >       --
     >    > >       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.
     [56][56][196][619]http://scottklement.com/mailman/listinfo/ftpapi
     >    > >       2.
   [57][57][197][620]http://disclaimer.bureauveritas.com/
     >    > >       3.
     >
   [58][58][198][621]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >       4.
   [59][59][199][622]http://disclaimer.bureauveritas.com/
     >    > >       5.
     >
   [60][60][200][623]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >       6.
   [61][61][201][624]http://disclaimer.bureauveritas.com/
     >    > >       7.
     >
   [62][62][202][625]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >       8.
     >

   [63][63][203][626]http://scottklement.com/pipermail/ftpapi/attachments/
   20130
     702/
     >    > >       9.
     >
   [64][64][204][627]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >      10.
   [65][65][205][628]http://disclaimer.bureauveritas.com/
     >    > >      11.
     >
   [66][66][206][629]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >     -------------- next part --------------
     >    > >     A non-text attachment was scrubbed...
     >    > >     Name: USR5020.rpgle
     >    > >     Type: application/octet-stream
     >    > >     Size: 468 bytes
     >    > >     Desc: not available
     >    > >     URL:
     >    > >
     >

   <[67][67][207][630]http://scottklement.com/pipermail/ftpapi/attachments
   /2013
     0702/
     >    26ba
     >    > >     65e4/attachment.obj>
     >    > >     ------------------------------
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >     This is the FTPAPI mailing list digest.  To unsubscribe,
     go to:
     >    > >
     [68][68][208][631]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >
     >

   -----------------------------------------------------------------------
     >    > >     End of Ftpapi Digest, Vol 81, Issue 4
     >    > >     *************************************
     >    > >     This message contains confidential information. To know
     more,
     >    please
     >    > >     click on the following link:
     >    [69][209][632]http://disclaimer.bureauveritas.com
     >    > >
     >    > > References
     >    > >
     >    > >     1.
     [70][210][633]http://scottklement.com/mailman/listinfo/ftpapi
     >    > >     2.
     [71][211][634]http://scottklement.com/mailman/listinfo/ftpapi
     >    > >     3. [72][212][635]http://disclaimer.bureauveritas.com/
     >    > >     4.
     [73][213][636]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >     5. [74][214][637]http://disclaimer.bureauveritas.com/
     >    > >     6.
     [75][215][638]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >     7. [76][216][639]http://disclaimer.bureauveritas.com/
      >    > >     8.
     [77][217][640]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >     9.
     [78][218][641]http://scottklement.com/pipermail/ftpapi/attachments/
     >    > 20130702/fea97de9/attachment.zip
     >    > >    10.
     [79][219][642]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    11. [80][220][643]http://disclaimer.bureauveritas.com/
     >    > >    12.
     [81][221][644]http://scottklement.com/mailman/listinfo/ftpapi
     >    > >    13. [82][222][645]http://disclaimer.bureauveritas.com/
     >    > >    14.
     [83][223][646]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    15. [84][224][647]http://disclaimer.bureauveritas.com/
     >    > >    16.
     [85][225][648]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    17. [86][226][649]http://disclaimer.bureauveritas.com/
     >    > >    18.
     [87][227][650]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    19.
     >

   [88][228][651]http://scottklement.com/pipermail/ftpapi/attachments/2013
   0702/
     fea97
     >    > >    20.
     [89][229][652]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    21. [90][230][653]http://disclaimer.bureauveritas.com/
     >    > >    22.
     [91][231][654]http://scottklement.com/mailman/listinfo/ftpapi
     >    > >    23. [92][232][655]http://disclaimer.bureauveritas.com/
     >    > >    24.
     [93][233][656]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    25. [94][234][657]http://disclaimer.bureauveritas.com/
     >    > >    26.
     [95][235][658]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    27. [96][236][659]http://disclaimer.bureauveritas.com/
     >    > >    28.
     [97][237][660]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    29.
     [98][238][661]http://scottklement.com/pipermail/ftpapi/attachments/
     >    > 20130702/fea97de9/attachment.zip
     >    > >    30.
     [99][239][662]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >   &nbs p;31.
     [100][240][663]http://scottklement.com/pipermail/ftpapi/attachments/
     >    > 20130702/9279210e/attachment.gif
     >    > >    32.
     [101][241][664]http://scottklement.com/pipermail/ftpapi/attachments/
     >    > 20130702/9279210e/attachment-0001.gif
     >    > >    33.
     [102][242][665]http://scottklement.com/pipermail/ftpapi/attachments/
     >    > 20130702/9279210e/attachment-0002.gif
     >    > >    34.
     [103][243][666]http://scottklement.com/mailman/listinfo/ftpapi
     >    > >    35. [104][244][667]http://disclaimer.bureauveritas.com/
     >    > >    36.
     [105][245][668]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    37. [106][246][669]http://disclaimer.bureauveritas.com/
     >    > >    38.
     [107][247][670]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    39. [108][248][671]http://disclaimer.bureauveritas.com/
     >    > >    40.
     [109][249][672]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    41.
     >

   [110][250][673]http://scottklement.com/pipermail/ftpapi/attachments/201
   30702
     /
     >    > >    42.
     [111][251][674]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    43. [112][252][675]http://disclaimer.bureauveritas.com/
     >    > >    44.
     [113][253][676]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    45.
     [114][254][677]http://scottklement.com/mailman/listinfo/ftpapi
     >    > >    46. [115][255][678]http://disclaimer.bureauveritas.com/
     >    > >    47.
     [116][256][679]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    48. [117][257][680]http://disclaimer.bureauveritas.com/
     >    > >    49.
     [118][258][681]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    50. [119][259][682]http://disclaimer.bureauveritas.com/
     >    > >    51.
     [120][260][683]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    52.
     >

   [121][261][684]http://scottklement.com/pipermail/ftpapi/attachments/201
   30702
     /
     >    > >    53.
     [122][262][685]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    54. [123][263][686]http://disclaimer.bureauveritas.com/
     >    > >    55.
     [124][264][687]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    56.
     [125][265][688]http://scottklement.com/mailman/listinfo/ftpapi
     >    > >    57. [126][266][689]http://disclaimer.bureauveritas.com/
     >    > >    58.
     [127][267][690]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    59. [128][268][691]http://disclaimer.bureauveritas.com/
     >    > >    60.
     [129][269][692]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    61. [130][270][693]http://disclaimer.bureauveritas.com/
     >    > >    62.
     [131][271][694]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    63.
     >

   [132][272][695]http://scottklement.com/pipermail/ftpapi/attachments/201
   30702
     /
     >    > >    64.
     [133][273][696]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    65. [134][274][697]http://disclaimer.bureauveritas.com/
     >    > >    66.
     [135][275][698]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >    67.
     [136][276][699]http://scottklement.com/pipermail/ftpapi/attachments/
     >    > 20130702/26ba65e4/attachment.obj
     >    > >    68.
     [137][277][700]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >
     >    > >
     >    > >
     >    > >
     >

   -----------------------------------------------------------------------
     >    > > This is the FTPAPI mailing list.  To unsubscribe, please go
     to:
     >    > >
   [138][278][701]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    > >
     >

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

   -----------------------------------------------------------------------
     >    > This is the FTPAPI mailing list.  To unsubscribe, please go
   to:
     >    >
   [139][279][702]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. [280][703]http://scottklement.com/mailman/listinfo/ftpapi
     >    2. [281][704]http://scottklement.com/mailman/listinfo/ftpapi
     >    3. [282][705]http://disclaimer.bureauveritas.com/
     >    4. [283][706]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    5. [284][707]http://disclaimer.bureauveritas.com/
     >    6. [285][708]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    7. [286][709]http://disclaimer.bureauveritas.com/
     >    8. [287][710]http://www.scottklement.com/mailman/listinfo/ftpapi
     >    9.

   [288][711]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /fea9
     7d
     >   10. [289][712]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   11. [290][713]http://disclaimer.bureauveritas.com/
     >   12. [291][714]http://scottklement.com/mailman/listinfo/ftpapi
     >   13. [292][715]http://disclaimer.bureauveritas.com/
     >   14. [293][716]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   15. [294][717]http://disclaimer.bureauveritas.com/
     >   16. [295][718]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   17. [296][719]http://disclaimer.bureauveritas.com/
     >   18. [297][720]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   19.

   [298][721]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /f
     >   20. [299][722]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   21. [300][723]http://disclaimer.bureauveritas.com/
     >   22. [301][724]http://scottklement.com/mailman/listinfo/ftpapi
     >   23. [302][725]http://disclaimer.bureauveritas.com/
     >   24. [303][726]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   25. [304][727]http://disclaimer.bureauveritas.com/
     >   26. [305][728]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   27. [306][729]http://disclaimer.bureauveritas.com/
     >   28. [307][730]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   29.

   [308][731]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /fea9
     7
     >   30. [309][732]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   31.

   [310][733]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /9279
     >   32.

   [311][734]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /9279
     >   33.

   [312][735]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /9279
     >   34. [313][736]http://scottklement.com/mailman/listinfo/ftpapi
     >   35. [314][737]http://disclaimer.bureauveritas.com/
     >   36. [315][738]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   37. [316][739]http://disclaimer.bureauveritas.com/
     >   38. [317][740]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   39. [318][741]http://disclaimer.bureauveritas.com/
     >   40. [319][742]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   41.

   [320][743]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /
     >   42. [321][744]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   43. [322][745]http://disclaimer.bureauveritas.com/
     >   44. [323][746]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   45. [324][747]http://scottklement.com/mailman/listinfo/ftpapi
     >   46. [325][748]http://disclaimer.bureauveritas.com/
     >   47. [326][749]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   48. [327][750]http://disclaimer.bureauveritas.com/
     >   49. [328][751]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   50. [329][752]http://disclaimer.bureauveritas.com/
     >   51. [330][753]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   52.

   [331][754]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /
     >   53. [332][755]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   54. [333][756]http://disclaimer.bureauveritas.com/
     >   55. [334][757]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   56. [335][758]http://scottklement.com/mailman/listinfo/ftpapi
     >   57. [336][759]http://disclaimer.bureauveritas.com/
     >   58. [337][760]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   59. [338][761]http://disclaimer.bureauveritas.com/
     >   60. [339][762]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   61. [340][763]http://disclaimer.bureauveritas.com/
     >   62. [341][764]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   63.

   [342][765]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /
     >   64. [343][766]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   65. [344][767]http://disclaimer.bureauveritas.com/
     >   66. [345][768]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   67.

   [346][769]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /26ba
     >   68. [347][770]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   69. [348][771]http://disclaimer.bureauveritas.com/
     >   70. [349][772]http://scottklement.com/mailman/listinfo/ftpapi
     >   71. [350][773]http://scottklement.com/mailman/listinfo/ftpapi
     >   72. [351][774]http://disclaimer.bureauveritas.com/
     >   73. [352][775]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   74. [353][776]http://disclaimer.bureauveritas.com/
     >   75. [354][777]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   76. [355][778]http://disclaimer.bureauveritas.com/
     >   77. [356][779]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   78.
   [357][780]http://scottklement.com/pipermail/ftpapi/attachments/
     >   79. [358][781]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   80. [359][782]http://disclaimer.bureauveritas.com/
     >   81. [360][783]http://scottklement.com/mailman/listinfo/ftpapi
     >   82. [361][784]http://disclaimer.bureauveritas.com/
     >   83. [362][785]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   84. [363][786]http://disclaimer.bureauveritas.com/
     >   85. [364][787]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   86. [365][788]http://disclaimer.bureauveritas.com/
     >   87. [366][789]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   88.

   [367][790]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /fea9
     7
     >   89. [368][791]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   90. [369][792]http://disclaimer.bureauveritas.com/
     >   91. [370][793]http://scottklement.com/mailman/listinfo/ftpapi
     >   92. [371][794]http://disclaimer.bureauveritas.com/
     >   93. [372][795]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   94. [373][796]http://disclaimer.bureauveritas.com/
     >   95. [374][797]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   96. [375][798]http://disclaimer.bureauveritas.com/
     >   97. [376][799]http://www.scottklement.com/mailman/listinfo/ftpapi
     >   98.
   [377][800]http://scottklement.com/pipermail/ftpapi/attachments/
     >   99. [378][801]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  100.
   [379][802]http://scottklement.com/pipermail/ftpapi/attachments/
     >  101.
   [380][803]http://scottklement.com/pipermail/ftpapi/attachments/
     >  102.
   [381][804]http://scottklement.com/pipermail/ftpapi/attachments/
     >  103. [382][805]http://scottklement.com/mailman/listinfo/ftpapi
     >  104. [383][806]http://disclaimer.bureauveritas.com/
     >  105. [384][807]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  106. [385][808]http://disclaimer.bureauveritas.com/
     >  107. [386][809]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  108. [387][810]http://disclaimer.bureauveritas.com/
     >  109. [388][811]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  110.

   [389][812]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /
     >  111. [390][813]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  112. [391][814]http://disclaimer.bureauveritas.com/
     >  113. [392][815]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  114. [393][816]http://scottklement.com/mailman/listinfo/ftpapi
     >  115. [394][817]http://disclaimer.bureauveritas.com/
     >  116. [395][818]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  117. [396][819]http://disclaimer.bureauveritas.com/
     >  118. [397][820]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  119. [398][821]http://disclaimer.bureauveritas.com/
     >  120. [399][822]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  121.

   [400][823]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /
     >  122. [401][824]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  123. [402][825]http://disclaimer.bureauveritas.com/
     >  124. [403][826]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  125. [404][827]http://scottklement.com/mailman/listinfo/ftpapi
     >  126. [405][828]http://disclaimer.bureauveritas.com/
     >  127. [406][829]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  128. [407][830]http://disclaimer.bureauveritas.com/
     >  129. [408][831]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  130. [409][832]http://disclaimer.bureauveritas.com/
     >  131. [410][833]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  132.

   [411][834]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /
     >  133. [412][835]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  134. [413][836]http://disclaimer.bureauveritas.com/
     >  135. [414][837]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  136.
   [415][838]http://scottklement.com/pipermail/ftpapi/attachments/
     >  137. [416][839]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  138. [417][840]http://www.scottklement.com/mailman/listinfo/ftpapi
     >  139. [418][841]http://www.scottklement.com/mailman/listinfo/ftpapi
     > -------------- next part --------------
     > A non-text attachment was scrubbed...
     > Name: WSDL2R98.rpgle
     > Type: application/octet-stream
     > Size: 291731 bytes
     > Desc: not available
     > URL: <
     >
   [419][842]http://scottklement.com/pipermail/ftpapi/attachments/20130704
   /
     > b179b67e/attachment.obj
     > >
     >
     > ------------------------------
     >
     >

   -----------------------------------------------------------------------
     > This is the FTPAPI mailing list digest.  To unsubscribe, go to:
     > [420][843]http://www.scottklement.com/mailman/listinfo/ftpapi
     >

   -----------------------------------------------------------------------
     >
     >
     > End of Ftpapi Digest, Vol 81, Issue 8
     > *************************************
     >
     >
     > This message contains confidential information. To know more,
   please
     > click on the following link:
   [421][844]http://disclaimer.bureauveritas.com
     > [Bild entfernt] [Bild entfernt] [Bild entfernt]
     >

   -----------------------------------------------------------------------
     > This is the FTPAPI mailing list.  To unsubscribe, please go to:
     > [422][845]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. [846]http://scottklement.com/mailman/listinfo/ftpapi
     2. [847]http://scottklement.com/mailman/listinfo/ftpapi
     3. [848]http://scottklement.com/mailman/listinfo/ftpapi
     4. [849]http://disclaimer.bureauveritas.com/
     5. [850]http://www.scottklement.com/mailman/listinfo/ftpapi
     6. [851]http://disclaimer.bureauveritas.com/
     7. [852]http://www.scottklement.com/mailman/listinfo/ftpapi
     8. [853]http://disclaimer.bureauveritas.com/
     9. [854]http://www.scottklement.com/mailman/listinfo/ftpapi
    10.
   [855]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea9
   7d
    11. [856]http://www.scottklement.com/mailman/listinfo/ftpapi
    12. [857]http://disclaimer.bureauveritas.com/
    13. [858]http://scottklement.com/mailman/listinfo/ftpapi
    14. [859]http://disclaimer.bureauveritas.com/
    15. [860]http://www.scottklement.com/mailman/listinfo/ftpapi
    16. [861]http://disclaimer.bureauveritas.com/
    17. [862]http://www.scottklement.com/mailman/listinfo/ftpapi
    18. [863]http://disclaimer.bureauveritas.com/
    19. [864]http://www.scottklement.com/mailman/listinfo/ftpapi
    20.
   [865]http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
    21. [866]http://www.scottklement.com/mailman/listinfo/ftpapi
    22. [867]http://disclaimer.bureauveritas.com/
    23. [868]http://scottklement.com/mailman/listinfo/ftpapi
    24. [869]http://disclaimer.bureauveritas.com/
    25. [870]http://www.scottklement.com/mailman/listinfo/ftpapi
    26. [871]http://disclaimer.bureauveritas.com/
    27. [872]http://www.scottklement.com/mailman/listinfo/ftpapi
    28. [873]http://disclaimer.bureauveritas.com/
    29. [874]http://www.scottklement.com/mailman/listinfo/ftpapi
    30.
   [875]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea9
   7
    31. [876]http://www.scottklement.com/mailman/listinfo/ftpapi
    32.
   [877]http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
    33.
   [878]http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
    34.
   [879]http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
    35. [880]http://scottklement.com/mailman/listinfo/ftpapi
    36. [881]http://disclaimer.bureauveritas.com/
    37. [882]http://www.scottklement.com/mailman/listinfo/ftpapi
    38. [883]http://disclaimer.bureauveritas.com/
    39. [884]http://www.scottklement.com/mailman/listinfo/ftpapi
    40. [885]http://disclaimer.bureauveritas.com/
    41. [886]http://www.scottklement.com/mailman/listinfo/ftpapi
    42.
   [887]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
    43. [888]http://www.scottklement.com/mailman/listinfo/ftpapi
    44. [889]http://disclaimer.bureauveritas.com/
    45. [890]http://www.scottklement.com/mailman/listinfo/ftpapi
    46. [891]http://scottklement.com/mailman/listinfo/ftpapi
    47. [892]http://disclaimer.bureauveritas.com/
    48. [893]http://www.scottklement.com/mailman/listinfo/ftpapi
    49. [894]http://disclaimer.bureauveritas.com/
    50. [895]http://www.scottklement.com/mailman/listinfo/ftpapi
    51. [896]http://disclaimer.bureauveritas.com/
    52. [897]http://www.scottklement.com/mailman/listinfo/ftpapi
    53.
   [898]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
    54. [899]http://www.scottklement.com/mailman/listinfo/ftpapi
    55. [900]http://disclaimer.bureauveritas.com/
    56. [901]http://www.scottklement.com/mailman/listinfo/ftpapi
    57. [902]http://scottklement.com/mailman/listinfo/ftpapi
    58. [903]http://disclaimer.bureauveritas.com/
    59. [904]http://www.scottklement.com/mailman/listinfo/ftpapi
    60. [905]http://disclaimer.bureauveritas.com/
    61. [906]http://www.scottklement.com/mailman/listinfo/ftpapi
    62. [907]http://disclaimer.bureauveritas.com/
    63. [908]http://www.scottklement.com/mailman/listinfo/ftpapi
    64.
   [909]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
    65. [910]http://www.scottklement.com/mailman/listinfo/ftpapi
    66. [911]http://disclaimer.bureauveritas.com/
    67. [912]http://www.scottklement.com/mailman/listinfo/ftpapi
    68.
   [913]http://scottklement.com/pipermail/ftpapi/attachments/20130702/26ba
    69. [914]http://www.scottklement.com/mailman/listinfo/ftpapi
    70. [915]http://disclaimer.bureauveritas.com/
    71. [916]http://scottklement.com/mailman/listinfo/ftpapi
    72. [917]http://scottklement.com/mailman/listinfo/ftpapi
    73. [918]http://disclaimer.bureauveritas.com/
    74. [919]http://www.scottklement.com/mailman/listinfo/ftpapi
    75. [920]http://disclaimer.bureauveritas.com/
    76. [921]http://www.scottklement.com/mailman/listinfo/ftpapi
    77. [922]http://disclaimer.bureauveritas.com/
    78. [923]http://www.scottklement.com/mailman/listinfo/ftpapi
    79. [924]http://scottklement.com/pipermail/ftpapi/attachments/
    80. [925]http://www.scottklement.com/mailman/listinfo/ftpapi
    81. [926]http://disclaimer.bureauveritas.com/
    82. [927]http://scottklement.com/mailman/listinfo/ftpapi
    83. [928]http://disclaimer.bureauveritas.com/
    84. [929]http://www.scottklement.com/mailman/listinfo/ftpapi
    85. [930]http://disclaimer.bureauveritas.com/
    86. [931]http://www.scottklement.com/mailman/listinfo/ftpapi
    87. [932]http://disclaimer.bureauveritas.com/
    88. [933]http://www.scottklement.com/mailman/listinfo/ftpapi
    89.
   [934]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea9
   7
    90. [935]http://www.scottklement.com/mailman/listinfo/ftpapi
    91. [936]http://disclaimer.bureauveritas.com/
    92. [937]http://scottklement.com/mailman/listinfo/ftpapi
    93. [938]http://disclaimer.bureauveritas.com/
    94. [939]http://www.scottklement.com/mailman/listinfo/ftpapi
    95. [940]http://disclaimer.bureauveritas.com/
    96. [941]http://www.scottklement.com/mailman/listinfo/ftpapi
    97. [942]http://disclaimer.bureauveritas.com/
    98. [943]http://www.scottklement.com/mailman/listinfo/ftpapi
    99. [944]http://scottklement.com/pipermail/ftpapi/attachments/
   100. [945]http://www.scottklement.com/mailman/listinfo/ftpapi
   101. [946]http://scottklement.com/pipermail/ftpapi/attachments/
   102. [947]http://scottklement.com/pipermail/ftpapi/attachments/
   103. [948]http://scottklement.com/pipermail/ftpapi/attachments/
   104. [949]http://scottklement.com/mailman/listinfo/ftpapi
   105. [950]http://disclaimer.bureauveritas.com/
   106. [951]http://www.scottklement.com/mailman/listinfo/ftpapi
   107. [952]http://disclaimer.bureauveritas.com/
   108. [953]http://www.scottklement.com/mailman/listinfo/ftpapi
   109. [954]http://disclaimer.bureauveritas.com/
   110. [955]http://www.scottklement.com/mailman/listinfo/ftpapi
   111.
   [956]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   112. [957]http://www.scottklement.com/mailman/listinfo/ftpapi
   113. [958]http://disclaimer.bureauveritas.com/
   114. [959]http://www.scottklement.com/mailman/listinfo/ftpapi
   115. [960]http://scottklement.com/mailman/listinfo/ftpapi
   116. [961]http://disclaimer.bureauveritas.com/
   117. [962]http://www.scottklement.com/mailman/listinfo/ftpapi
   118. [963]http://disclaimer.bureauveritas.com/
   119. [964]http://www.scottklement.com/mailman/listinfo/ftpapi
   120. [965]http://disclaimer.bureauveritas.com/
   121. [966]http://www.scottklement.com/mailman/listinfo/ftpapi
   122.
   [967]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   123. [968]http://www.scottklement.com/mailman/listinfo/ftpapi
   124. [969]http://disclaimer.bureauveritas.com/
   125. [970]http://www.scottklement.com/mailman/listinfo/ftpapi
   126. [971]http://scottklement.com/mailman/listinfo/ftpapi
   127. [972]http://disclaimer.bureauveritas.com/
   128. [973]http://www.scottklement.com/mailman/listinfo/ftpapi
   129. [974]http://disclaimer.bureauveritas.com/
   130. [975]http://www.scottklement.com/mailman/listinfo/ftpapi
   131. [976]http://disclaimer.bureauveritas.com/
   132. [977]http://www.scottklement.com/mailman/listinfo/ftpapi
   133.
   [978]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   134. [979]http://www.scottklement.com/mailman/listinfo/ftpapi
   135. [980]http://disclaimer.bureauveritas.com/
   136. [981]http://www.scottkleme/
   137. [982]http://scottklement.com/pipermail/ftpapi/attachments/
   138. [983]http://www.scottklement.com/mailman/listinfo/ftpapi
   139. [984]http://www.scottklement.com/mailman/listinfo/ftpapi
   140. [985]http://www.scottklement.com/mailman/listinfo/ftpapi
   141. [986]http://scottklement.com/mailman/listinfo/ftpapi
   142. [987]http://scottklement.com/mailman/listinfo/ftpapi
   143. [988]http://disclaimer.bureauveritas.com/
   144. [989]http://www.scottklement.com/mailman/listinfo/ftpapi
   145. [990]http://disclaimer.bureauveritas.com/
   146. [991]http://www.scottklement.com/mailman/listinfo/ftpapi
   147. [992]http://disclaimer.bureauveritas.com/
   148. [993]http://www.scottklement.com/mailman/listinfo/ftpapi
   149.
   [994]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea
   150. [995]http://www.scottklement.com/mailman/listinfo/ftpapi
   151. [996]http://disclaimer.bureauveritas.com/
   152. [997]http://scottklement.com/mailman/listinfo/ftpapi
   153. [998]http://disclaimer.bureauveritas.com/
   154. [999]http://www.scottklement.com/mailman/listinfo/ftpapi
   155. [1000]http://disclaimer.bureauveritas.com/
   156. [1001]http://www.scottklement.com/mailman/listinfo/ftpapi
   157. [1002]http://disclaimer.bureauveritas.com/
   158. [1003]http://www.scottklement.com/mailman/listinfo/ftpapi
   159. [1004]http://scottklement.com/pipermail/ftpapi/attachments/201307
   160. [1005]http://www.scottklement.com/mailman/listinfo/ftpapi
   161. [1006]http://disclaimer.bureauveritas.com/
   162. [1007]http://scottklement.com/mailman/listinfo/ftpapi
   163. [1008]http://disclaimer.bureauveritas.com/
   164. [1009]http://www.scottklement.com/mailman/listinfo/ftpapi
   165. [1010]http://disclaimer.bureauveritas.com/
   166. [1011]http://www.scottklement.com/mailman/listinfo/ftpapi
   167. [1012]http://disclaimer.bureauveritas.com/
   168. [1013]http://www.scottklement.com/mailman/listinfo/ftpapi
   169.
   [1014]http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
   170. [1015]http://www.scottklement.com/mailman/listinfo/ftpapi
   171.
   [1016]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   172.
   [1017]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   173.
   [1018]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   174. [1019]http://scottklement.com/mailman/listinfo/ftpapi
   175. [1020]http://disclaimer.bureauveritas.com/
   176. [1021]http://www.scottklement.com/mailman/listinfo/ftpapi
   177. [1022]http://disclaimer.bureauveritas.com/
   178. [1023]http://www.scottklement.com/mailman/listinfo/ftpapi
   179. [1024]http://disclaimer.bureauveritas.com/
   180. [1025]http://www.scottklement.com/mailman/listinfo/ftpapi
   181.
   [1026]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   182. [1027]http://www.scottklement.com/mailman/listinfo/ftpapi
   183. [1028]http://disclaimer.bureauveritas.com/
   184. [1029]http://www.scottklement.com/mailman/listinfo/ftpapi
   185. [1030]http://scottklement.com/mailman/listinfo/ftpapi
   186. [1031]http://disclaimer.bureauveritas.com/
   187. [1032]http://www.scottklement.com/mailman/listinfo/ftpapi
   188. [1033]http://disclaimer.bureauveritas.com/
   189. [1034]http://www.scottklement.com/mailman/listinfo/ftpapi
   190. [1035]http://disclaimer.bureauveritas.com/
   191. [1036]http://www.scottklement.com/mailman/listinfo/ftpapi
   192. [1037]http://scottklement.com/pipermail/ftpapi/attachments/2013070
   193. [1038]http://www.scottklement.com/mailman/listinfo/ftpapi
   194. [1039]http://disclaimer.bureauveritas.com/
   195. [1040]http://www.scottklement.com/mailman/listinfo/ftpapi
   196. [1041]http://scottklement.com/mailman/listinfo/ftpapi
   197. [1042]http://disclaimer.bureauveritas.com/
   198. [1043]http://www.scottklement.com/mailman/listinfo/ftpapi
   199. [1044]http://disclaimer.bureauveritas.com/
   200. [1045]http://www.scottklement.com/mailman/listinfo/ftpapi
   201. [1046]http://disclaimer.bureauveritas.com/
   202. [1047]http://www.scottklement.com/mailman/listinfo/ftpapi
   203.
   [1048]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   204. [1049]http://www.scottklement.com/mailman/listinfo/ftpapi
   205. [1050]http://disclaimer.bureauveritas.com/
   206. [1051]http://www.scottklement.com/mailman/listinfo/ftpapi
   207.
   [1052]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   208. [1053]http://www.scottklement.com/mailman/listinfo/ftpapi
   209. [1054]http://disclaimer.bureauveritas.com/
   210. [1055]http://scottklement.com/mailman/listinfo/ftpapi
   211. [1056]http://scottklement.com/mailman/listinfo/ftpapi
   212. [1057]http://disclaimer.bureauveritas.com/
   213. [1058]http://www.scottklement.com/mailman/listinfo/ftpapi
   214. [1059]http://disclaimer.bureauveritas.com/
   215. [1060]http://www.scottklement.com/mailman/listinfo/ftpapi
   216. [1061]http://disclaimer.bureauveritas.com/
   217. [1062]http://www.scottklement.com/mailman/listinfo/ftpapi
   218. [1063]http://scottklement.com/pipermail/ftpapi/attachments/
   219. [1064]http://www.scottklement.com/mailman/listinfo/ftpapi
   220. [1065]http://disclaimer.bureauveritas.com/
   221. [1066]http://scottklement.com/mailman/listinfo/ftpapi
   222. [1067]http://disclaimer.bureauveritas.com/
   223. [1068]http://www.scottklement.com/mailman/listinfo/ftpapi
   224. [1069]http://disclaimer.bureauveritas.com/
   225. [1070]http://www.scottklement.com/mailman/listinfo/ftpapi
   226. [1071]http://disclaimer.bureauveritas.com/
   227. [1072]http://www.scottklement.com/mailman/listinfo/ftpapi
   228.
   [1073]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea
   97
   229. [1074]http://www.scottklement.com/mailman/listinfo/ftpapi
   230. [1075]http://disclaimer.bureauveritas.com/
   231. [1076]http://scottklement.com/mailman/listinfo/ftpapi
   232. [1077]http://disclaimer.bureauveritas.com/
   233. [1078]http://www.scottklement.com/mailman/listinfo/ftpapi
   234. [1079]http://disclaimer.bureauveritas.com/
   235. [1080]http://www.scottklement.com/mailman/listinfo/ftpapi
   236. [1081]http://disclaimer.bureauveritas.com/
   237. [1082]http://www.scottklement.com/mailman/listinfo/ftpapi
   238. [1083]http://scottklement.com/pipermail/ftpapi/attachments/
   239. [1084]http://www.scottklement.com/mailman/listinfo/ftpapi
   240. [1085]http://scottklement.com/pipermail/ftpapi/attachments/
   241. [1086]http://scottklement.com/pipermail/ftpapi/attachments/
   242. [1087]http://scottklement.com/pipermail/ftpapi/attachments/
   243. [1088]http://scottklement.com/mailman/listinfo/ftpapi
   244. [1089]http://disclaimer.bureauveritas.com/
   245. [1090]http://www.scottklement.com/mailman/listinfo/ftpapi
    246. [1091]http://disclaimer.bureauveritas.com/
   247. [1092]http://www.scottklement.com/mailman/listinfo/ftpapi
   248. [1093]http://disclaimer.bureauveritas.com/
   249. [1094]http://www.scottklement.com/mailman/listinfo/ftpapi
   250.
   [1095]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   251. [1096]http://www.scottklement.com/mailman/listinfo/ftpapi
   252. [1097]http://disclaimer.bureauveritas.com/
   253. [1098]http://www.scottklement.com/mailman/listinfo/ftpapi
   254. [1099]http://scottklement.com/mailman/listinfo/ftpapi
   255. [1100]http://disclaimer.bureauveritas.com/
   256. [1101]http://www.scottklement.com/mailman/listinfo/ftpapi
   257. [1102]http://disclaimer.bureauveritas.com/
   258. [1103]http://www.scottklement.com/mailman/listinfo/ftpapi
   259. [1104]http://disclaimer.bureauveritas.com/
   260. [1105]http://www.scottklement.com/mailman/listinfo/ftpapi
   261.
   [1106]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   262. [1107]http://www.scottklement.com/mailman/listinfo/ftpapi
   263. [1108]http://disclaimer.bureauveritas.com/
   264. [1109]http://www.scottklement.com/mailman/listinfo/ftpapi
   265. [1110]http://scottklement.com/mailman/listinfo/ftpapi
   266. [1111]http://disclaimer.bureauveritas.com/
   267. [1112]http://www.scottklement.com/mailman/listinfo/ftpapi
   268. [1113]http://disclaimer.bureauveritas.com/
   269. [1114]http://www.scottklement.com/mailman/listinfo/ftpapi
   270. [1115]http://disclaimer.bureauveritas.com/
   271. [1116]http://www.scottklement.com/mailman/listinfo/ftpapi
   272.
   [1117]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   273. [1118]http://www.scottklement.com/mailman/listinfo/ftpapi
   274. [1119]http://disclaimer.bureauveritas.com/
   275. [1120]http://www.scottklement.com/mailman/listinfo/ftpapi
   276. [1121]http://scottklement.com/pipermail/ftpapi/attachments/
   277. [1122]http://www.scottklement.com/mailman/listinfo/ftpapi
   278. [1123]http://www.scottklement.com/mailman/listinfo/ftpapi
   279. [1124]http://www.scottklement.com/mailman/listinfo/ftpapi
   280. [1125]http://scottklement.com/mailman/listinfo/ftpapi
   281. [1126]http://scottklement.com/mailman/listinfo/ftpapi
   282. [1127]http://disclaimer.bureauveritas.com/
   283. [1128]http://www.scottklement.com/mailman/listinfo/ftpapi
   284. [1129]http://disclaimer.bureauveritas.com/
   285. [1130]http://www.scottklement.com/mailman/listinfo/ftpapi
   286. [1131]http://disclaimer.bureauveritas.com/
   287. [1132]http://www.scottklement.com/mailman/listinfo/ftpapi
   288.
   [1133]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea
   97d
   289. [1134]http://www.scottklement.com/mailman/listinfo/ftpapi
   290. [1135]http://disclaimer.bureauveritas.com/
   291. [1136]http://scottklement.com/mailman/listinfo/ftpapi
   292. [1137]http://disclaimer.bureauveritas.com/
   293. [1138]http://www.scottklement.com/mailman/listinfo/ftpapi
   294. [1139]http://disclaimer.bureauveritas.com/
   295. [1140]http://www.scottklement.com/mailman/listinfo/ftpapi
   296. [1141]http://disclaimer.bureauveritas.com/
   297. [1142]http://www.scottklement.com/mailman/listinfo/ftpapi
   298.
   [1143]http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
   299. [1144]http://www.scottklement.com/mailman/listinfo/ftpapi
   300. [1145]http://disclaimer.bureauveritas.com/
   301. [1146]http://scottklement.com/mailman/listinfo/ftpapi
   302. [1147]http://disclaimer.bureauveritas.com/
   303. [1148]http://www.scottklement.com/mailman/listinfo/ftpapi
   304. [1149]http://disclaimer.bureauveritas.com/
   305. [1150]http://www.scottklement.com/mailman/listinfo/ftpapi
   306. [1151]http://disclaimer.bureauveritas.com/
   307. [1152]http://www.scottklement.com/mailman/listinfo/ftpapi
   308.
   [1153]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea
   97
   309. [1154]http://www.scottklement.com/mailman/listinfo/ftpapi
   310.
   [1155]http://scottklement.com/pipermail/ftpapi/attachments/20130702/927
   9
   311.
   [1156]http://scottklement.com/pipermail/ftpapi/attachments/20130702/927
   9
   312.
   [1157]http://scottklement.com/pipermail/ftpapi/attachments/20130702/927
   9
   313. [1158]http://scottklement.com/mailman/listinfo/ftpapi
   314. [1159]http://disclaimer.bureauveritas.com/
   315. [1160]http://www.scottklement.com/mailman/listinfo/ftpapi
   316. [1161]http://disclaimer.bureauveritas.com/
   317. [1162]http://www.scottklement.com/mailman/listinfo/ftpapi
   318. [1163]http://disclaimer.bureauveritas.com/
   319. [1164]http://www.scottklement.com/mailman/listinfo/ftpapi
   320.
   [1165]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   321. [1166]http://www.scottklement.com/mailman/listinfo/ftpapi
   322. [1167]http://disclaimer.bureauveritas.com/
   323. [1168]http://www.scottklement.com/mailman/listinfo/ftpapi
   324. [1169]http://scottklement.com/mailman/listinfo/ftpapi
   325. [1170]http://disclaimer.bureauveritas.com/
   326. [1171]http://www.scottklement.com/mailman/listinfo/ftpapi
   327. [1172]http://disclaimer.bureauveritas.com/
   328. [1173]http://www.scottklement.com/mailman/listinfo/ftpapi
   329. [1174]http://disclaimer.bureauveritas.com/
   330. [1175]http://www.scottklement.com/mailman/listinfo/ftpapi
   331.
   [1176]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   332. [1177]http://www.scottklement.com/mailman/listinfo/ftpapi
   333. [1178]http://disclaimer.bureauveritas.com/
   334. [1179]http://www.scottklement.com/mailman/listinfo/ftpapi
   335. [1180]http://scottklement.com/mailman/listinfo/ftpapi
   336. [1181]http://disclaimer.bureauveritas.com/
   337. [1182]http://www.scottklement.com/mailman/listinfo/ftpapi
   338. [1183]http://disclaimer.bureauveritas.com/
   339. [1184]http://www.scottklement.com/mailman/listinfo/ftpapi
   340. [1185]http://disclaimer.bureauveritas.com/
   341. [1186]http://www.scottklement.com/mailman/listinfo/ftpapi
   342.
   [1187]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   343. [1188]http://www.scottklement.com/mailman/listinfo/ftpapi
   344. [1189]http://disclaimer.bureauveritas.com/
   345. [1190]http://www.scottklement.com/mailman/listinfo/ftpapi
   346.
   [1191]http://scottklement.com/pipermail/ftpapi/attachments/20130702/26b
   a
   347. [1192]http://www.scottklement.com/mailman/listinfo/ftpapi
   348. [1193]http://disclaimer.bureauveritas.com/
   349. [1194]http://scottklement.com/mailman/listinfo/ftpapi
   350. [1195]http://scottklement.com/mailman/listinfo/ftpapi
   351. [1196]http://disclaimer.bureauveritas.com/
   352. [1197]http://www.scottklement.com/mailman/listinfo/ftpapi
   353. [1198]http://disclaimer.bureauveritas.com/
   354. [1199]http://www.scottklement.com/mailman/listinfo/ftpapi
   355. [1200]http://disclaimer.bureauveritas.com/
   356. [1201]http://www.scottklement.com/mailman/listinfo/ftpapi
   357. [1202]http://scottklement.com/pipermail/ftpapi/attachments/
   358. [1203]http://www.scottklement.com/mailman/listinfo/ftpapi
   359. [1204]http://disclaimer.bureauveritas.com/
   360. [1205]http://scottklement.com/mailman/listinfo/ftpapi
   361. [1206]http://disclaimer.bureauveritas.com/
   362. [1207]http://www.scottklement.com/mailman/listinfo/ftpapi
   363. [1208]http://disclaimer.bureauveritas.com/
   364. [1209]http://www.scottklement.com/mailman/listinfo/ftpapi
   365. [1210]http://disclaimer.bureauveritas.com/
   366. [1211]http://www.scottklement.com/mailman/listinfo/ftpapi
   367.
   [1212]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea
   97
   368. [1213]http://www.scottklement.com/mailman/listinfo/ftpapi
   369. [1214]http://disclaimer.bureauveritas.com/
   370. [1215]http://scottklement.com/mailman/listinfo/ftpapi
   371. [1216]http://disclaimer.bureauveritas.com/
   372. [1217]http://www.scottklement.com/mailman/listinfo/ftpapi
   373. [1218]http://disclaimer.bureauveritas.com/
   374. [1219]http://www.scottklement.com/mailman/listinfo/ftpapi
   375. [1220]http://disclaimer.bureauveritas.com/
   376. [1221]http://www.scottklement.com/mailman/listinfo/ftpapi
   377. [1222]http://scottklement.com/pipermail/ftpapi/attachments/
   378. [1223]http://www.scottklement.com/mailman/listinfo/ftpapi
   379. [1224]http://scottklement.com/pipermail/ftpapi/attachments/
   380. [1225]http://scottklement.com/pipermail/ftpapi/attachments/
   381. [1226]http://scottklement.com/pipermail/ftpapi/attachments/
   382. [1227]http://scottklement.com/mailman/listinfo/ftpapi
   383. [1228]http://disclaimer.bureauveritas.com/
   384. [1229]http://www.scottklement.com/mailman/listinfo/ftpapi
   385. [1230]http://disclaimer.bureauveritas.com/
   386. [1231]http://www.scottklement.com/mailman/listinfo/ftpapi
   387. [1232]http://disclaimer.bureauveritas.com/
   388. [1233]http://www.scottklement.com/mailman/listinfo/ftpapi
   389.
   [1234]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   390. [1235]http://www.scottklement.com/mailman/listinfo/ftpapi
   391. [1236]http://disclaimer.bureauveritas.com/
   392. [1237]http://www.scottklement.com/mailman/listinfo/ftpapi
   393. [1238]http://scottklement.com/mailman/listinfo/ftpapi
   394. [1239]http://disclaimer.bureauveritas.com/
   395. [1240]http://www.scottklement.com/mailman/listinfo/ftpapi
   396. [1241]http://disclaimer.bureauveritas.com/
   397. [1242]http://www.scottklement.com/mailman/listinfo/ftpapi
   398. [1243]http://disclaimer.bureauveritas.com/
   399. [1244]http://www.scottklement.com/mailman/listinfo/ftpapi
   400.
   [1245]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   401. [1246]http://www.scottklement.com/mailman/listinfo/ftpapi
   402. [1247]http://disclaimer.bureauveritas.com/
   403. [1248]http://www.scottklement.com/mailman/listinfo/ftpapi
   404. [1249]http://scottklement.com/mailman/listinfo/ftpapi
   405. [1250]http://disclaimer.bureauveritas.com/
   406. [1251]http://www.scottklement.com/mailman/listinfo/ftpapi
   407. [1252]http://disclaimer.bureauveritas.com/
   408. [1253]http://www.scottklement.com/mailman/listinfo/ftpapi
   409. [1254]http://disclaimer.bureauveritas.com/
   410. [1255]http://www.scottklement.com/mailman/listinfo/ftpapi
   411.
   [1256]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   412. [1257]http://www.scottklement.com/mailman/listinfo/ftpapi
   413. [1258]http://disclaimer.bureauveritas.com/
   414. [1259]http://www.scottklement.com/mailman/listinfo/ftpapi
   415. [1260]http://scottklement.com/pipermail/ftpapi/attachments/
   416. [1261]http://www.scottklement.com/mailman/listinfo/ftpapi
   417. [1262]http://www.scottklement.com/mailman/listinfo/ftpapi
   418. [1263]http://www.scottklement.com/mailman/listinfo/ftpapi
   419.
   [1264]http://scottklement.com/pipermail/ftpapi/attachments/20130704/
   420. [1265]http://www.scottklement.com/mailman/listinfo/ftpapi
   421. [1266]http://disclaimer.bureauveritas.com/
   422. [1267]http://www.scottklement.com/mailman/listinfo/ftpapi
   ------------------------------
   -----------------------------------------------------------------------
   This is the FTPAPI mailing list digest.  To unsubscribe, go to:
   [1268]http://www.scottklement.com/mailman/listinfo/ftpapi
   -----------------------------------------------------------------------
   End of Ftpapi Digest, Vol 81, Issue 10
   **************************************
   This message contains confidential information. To know more, please
   click on the following link: http://disclaimer.bureauveritas.com

References

   1. http://scottklement.com/mailman/listinfo/ftpapi
   2. http://scottklement.com/mailman/listinfo/ftpapi
   3. http://scottklement.com/mailman/listinfo/ftpapi
   4. http://scottklement.com/mailman/listinfo/ftpapi
   5. http://disclaimer.bureauveritas.com/
   6. http://www.scottklement.com/mailman/listinfo/ftpapi
   7. http://disclaimer.bureauveritas.com/
   8. http://www.scottklement.com/mailman/listinfo/ftpapi
   9. http://disclaimer.bureauveritas.com/
  10. http://www.scottklement.com/mailman/listinfo/ftpapi
  11. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97d
  12. http://www.scottklement.com/mailman/listinfo/ftpapi
  13. http://disclaimer.bureauveritas.com/
  14. http://scottklement.com/mailman/listinfo/ftpapi
  15. http://disclaimer.bureauveritas.com/
  16. http://www.scottklement.com/mailman/listinfo/ftpapi
  17. http://disclaimer.bureauveritas.com/
  18. http://www.scottklement.com/mailman/listinfo/ftpapi
  19. http://disclaimer.bureauveritas.com/
  20. http://www.scottklement.com/mailman/listinfo/ftpapi
  21. http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
  22. http://www.scottklement.com/mailman/listinfo/ftpapi
  23. http://disclaimer.bureauveritas.com/
  24. http://scottklement.com/mailman/listinfo/ftpapi
  25. http://disclaimer.bureauveritas.com/
  26. http://www.scottklement.com/mailman/listinfo/ftpapi
  27. http://disclaimer.bureauveritas.com/
  28. http://www.scottklement.com/mailman/listinfo/ftpapi
  29. http://disclaimer.bureauveritas.com/
  30. http://www.scottklement.com/mailman/listinfo/ftpapi
  31. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
  32. http://www.scottklement.com/mailman/listinfo/ftpapi
  33. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
  34. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
  35. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
  36. http://scottklement.com/mailman/listinfo/ftpapi
  37. http://disclaimer.bureauveritas.com/
  38. http://www.scottklement.com/mailman/listinfo/ftpapi
  39. http://disclaimer.bureauveritas.com/
  40. http://www.scottklement.com/mailman/listinfo/ftpapi
  41. http://disclaimer.bureauveritas.com/
  42. http://www.scottklement.com/mailman/listinfo/ftpapi
  43. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
  44. http://www.scottklement.com/mailman/listinfo/ftpapi
  45. http://disclaimer.bureauveritas.com/
  46. http://www.scottklement.com/mailman/listinfo/ftpapi
  47. http://scottklement.com/mailman/listinfo/ftpapi
  48. http://disclaimer.bureauveritas.com/
  49. http://www.scottklement.com/mailman/listinfo/ftpapi
  50. http://disclaimer.bureauveritas.com/
  51. http://www.scottklement.com/mailman/listinfo/ftpapi
  52. http://disclaimer.bureauveritas.com/
  53. http://www.scottklement.com/mailman/listinfo/ftpapi
  54. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
  55. http://www.scottklement.com/mailman/listinfo/ftpapi
  56. http://disclaimer.bureauveritas.com/
  57. http://www.scottklement.com/mailman/listinfo/ftpapi
  58. http://scottklement.com/mailman/listinfo/ftpapi
  59. http://disclaimer.bureauveritas.com/
  60. http://www.scottklement.com/mailman/listinfo/ftpapi
  61. http://disclaimer.bureauveritas.com/
  62. http://www.scottklement.com/mailman/listinfo/ftpapi
  63. http://disclaimer.bureauveritas.com/
  64. http://www.scottklement.com/mailman/listinfo/ftpapi
  65. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
  66. http://www.scottklement.com/mailman/listinfo/ftpapi
  67. http://disclaimer.bureauveritas.com/
  68. http://www.scottklement.com/mailman/listinfo/ftpapi
  69. http://scottklement.com/pipermail/ftpapi/attachments/20130702/26ba
  70. http://www.scottklement.com/mailman/listinfo/ftpapi
  71. http://disclaimer.bureauveritas.com/
  72. http://scottklement.com/mailman/listinfo/ftpapi
  73. http://scottklement.com/mailman/listinfo/ftpapi
  74. http://disclaimer.bureauveritas.com/
  75. http://www.scottklement.com/mailman/listinfo/ftpapi
  76. http://disclaimer.bureauveritas.com/
  77. http://www.scottklement.com/mailman/listinfo/ftpapi
  78. http://disclaimer.bureauveritas.com/
  79. http://www.scottklement.com/mailman/listinfo/ftpapi
  80. http://scottklement.com/pipermail/ftpapi/attachments/
  81. http://www.scottklement.com/mailman/listinfo/ftpapi
  82. http://disclaimer.bureauveritas.com/
  83. http://scottklement.com/mailman/listinfo/ftpapi
  84. http://disclaimer.bureauveritas.com/
  85. http://www.scottklement.com/mailman/listinfo/ftpapi
  86. http://disclaimer.bureauveritas.com/
  87. http://www.scottklement.com/mailman/listinfo/ftpapi
  88. http://disclaimer.bureauveritas.com/
  89. http://www.scottklement.com/mailman/listinfo/ftpapi
  90. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
  91. http://www.scottklement.com/mailman/listinfo/ftpapi
  92. http://disclaimer.bureauveritas.com/
  93. http://scottklement.com/mailman/listinfo/ftpapi
  94. http://disclaimer.bureauveritas.com/
  95. http://www.scottklement.com/mailman/listinfo/ftpapi
  96. http://disclaimer.bureauveritas.com/
  97. http://www.scottklement.com/mailman/listinfo/ftpapi
  98. http://disclaimer.bureauveritas.com/
  99. http://www.scottklement.com/mailman/listinfo/ftpapi
 100. http://scottklement.com/pipermail/ftpapi/attachments/
 101. http://www.scottklement.com/mailman/listinfo/ftpapi
 102. http://scottklement.com/pipermail/ftpapi/attachments/
 103. http://scottklement.com/pipermail/ftpapi/attachments/
 104. http://scottklement.com/pipermail/ftpapi/attachments/
 105. http://scottklement.com/mailman/listinfo/ftpapi
 106. http://disclaimer.bureauveritas.com/
 107. http://www.scottklement.com/mailman/listinfo/ftpapi
 108. http://disclaimer.bureauveritas.com/
 109. http://www.scottklement.com/mailman/listinfo/ftpapi
 110. http://disclaimer.bureauveritas.com/
 111. http://www.scottklement.com/mailman/listinfo/ftpapi
 112. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 113. http://www.scottklement.com/mailman/listinfo/ftpapi
 114. http://disclaimer.bureauveritas.com/
 115. http://www.scottklement.com/mailman/listinfo/ftpapi
 116. http://scottklement.com/mailman/listinfo/ftpapi
 117. http://disclaimer.bureauveritas.com/
 118. http://www.scottklement.com/mailman/listinfo/ftpapi
 119. http://disclaimer.bureauveritas.com/
 120. http://www.scottklement.com/mailman/listinfo/ftpapi
 121. http://disclaimer.bureauveritas.com/
 122. http://www.scottklement.com/mailman/listinfo/ftpapi
 123. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 124. http://www.scottklement.com/mailman/listinfo/ftpapi
 125. http://disclaimer.bureauveritas.com/
 126. http://www.scottklement.com/mailman/listinfo/ftpapi
 127. http://scottklement.com/mailman/listinfo/ftpapi
 128. http://disclaimer.bureauveritas.com/
 129. http://www.scottklement.com/mailman/listinfo/ftpapi
 130. http://disclaimer.bureauveritas.com/
 131. http://www.scottklement.com/mailman/listinfo/ftpapi
 132. http://disclaimer.bureauveritas.com/
 133. http://www.scottklement.com/mailman/listinfo/ftpapi
 134. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 135. http://www.scottklement.com/mailman/listinfo/ftpapi
 136. http://disclaimer.bureauveritas.com/
 137. http://www.scottklement.com/mailman/listinfo/ftpapi
 138. http://scottklement.com/pipermail/ftpapi/attachments/
 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://scottklement.com/mailman/listinfo/ftpapi
 143. http://scottklement.com/mailman/listinfo/ftpapi
 144. http://disclaimer.bureauveritas.com/
 145. http://www.scottklement.com/mailman/listinfo/ftpapi
 146. http://disclaimer.bureauveritas.com/
 147. http://www.scottklement.com/mailman/listinfo/ftpapi
 148. http://disclaimer.bureauveritas.com/
 149. http://www.scottklement.com/mailman/listinfo/ftpapi
 150. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea
 151. http://www.scottklement.com/mailman/listinfo/ftpapi
 152. http://disclaimer.bureauveritas.com/
 153. http://scottklement.com/mailman/listinfo/ftpapi
 154. http://disclaimer.bureauveritas.com/
 155. http://www.scottklement.com/mailman/listinfo/ftpapi
 156. http://disclaimer.bureauveritas.com/
 157. http://www.scottklement.com/mailman/listinfo/ftpapi
 158. http://disclaimer.bureauveritas.com/
 159. http://www.scottklement.com/mailman/listinfo/ftpapi
 160. http://scottklement.com/pipermail/ftpapi/attachments/201307
 161. http://www.scottklement.com/mailman/listinfo/ftpapi
 162. http://disclaimer.bureauveritas.com/
 163. http://scottklement.com/mailman/listinfo/ftpapi
 164. http://disclaimer.bureauveritas.com/
 165. http://www.scottklement.com/mailman/listinfo/ftpapi
 166. http://disclaimer.bureauveritas.com/
 167. http://www.scottklement.com/mailman/listinfo/ftpapi
 168. http://disclaimer.bureauveritas.com/
 169. http://www.scottklement.com/mailman/listinfo/ftpapi
 170. http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
 171. http://www.scottklement.com/mailman/listinfo/ftpapi
 172. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 173. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 174. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 175. http://scottklement.com/mailman/listinfo/ftpapi
 176. http://disclaimer.bureauveritas.com/
 177. http://www.scottklement.com/mailman/listinfo/ftpapi
 178. http://disclaimer.bureauveritas.com/
 179. http://www.scottklement.com/mailman/listinfo/ftpapi
 180. http://disclaimer.bureauveritas.com/
 181. http://www.scottklement.com/mailman/listinfo/ftpapi
 182. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 183. http://www.scottklement.com/mailman/listinfo/ftpapi
 184. http://disclaimer.bureauveritas.com/
 185. http://www.scottklement.com/mailman/listinfo/ftpapi
 186. http://scottklement.com/mailman/listinfo/ftpapi
 187. http://disclaimer.bureauveritas.com/
 188. http://www.scottklement.com/mailman/listinfo/ftpapi
 189. http://disclaimer.bureauveritas.com/
 190. http://www.scottklement.com/mailman/listinfo/ftpapi
 191. http://disclaimer.bureauveritas.com/
 192. http://www.scottklement.com/mailman/listinfo/ftpapi
 193. http://scottklement.com/pipermail/ftpapi/attachments/2013070
 194. http://www.scottklement.com/mailman/listinfo/ftpapi
 195. http://disclaimer.bureauveritas.com/
 196. http://www.scottklement.com/mailman/listinfo/ftpapi
 197. http://scottklement.com/mailman/listinfo/ftpapi
 198. http://disclaimer.bureauveritas.com/
 199. http://www.scottklement.com/mailman/listinfo/ftpapi
 200. http://disclaimer.bureauveritas.com/
 201. http://www.scottklement.com/mailman/listinfo/ftpapi
 202. http://disclaimer.bureauveritas.com/
 203. http://www.scottklement.com/mailman/listinfo/ftpapi
 204. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 205. http://www.scottklement.com/mailman/listinfo/ftpapi
 206. http://disclaimer.bureauveritas.com/
 207. http://www.scottklement.com/mailman/listinfo/ftpapi
 208. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 209. http://www.scottklement.com/mailman/listinfo/ftpapi
 210. http://disclaimer.bureauveritas.com/
 211. http://scottklement.com/mailman/listinfo/ftpapi
 212. http://scottklement.com/mailman/listinfo/ftpapi
 213. http://disclaimer.bureauveritas.com/
 214. http://www.scottklement.com/mailman/listinfo/ftpapi
 215. http://disclaimer.bureauveritas.com/
 216. http://www.scottklement.com/mailman/listinfo/ftpapi
 217. http://disclaimer.bureauveritas.com/
 218. http://www.scottklement.com/mailman/listinfo/ftpapi
 219. http://scottklement.com/pipermail/ftpapi/attachments/
 220. http://www.scottklement.com/mailman/listinfo/ftpapi
 221. http://disclaimer.bureauveritas.com/
 222. http://scottklement.com/mailman/listinfo/ftpapi
 223. http://disclaimer.bureauveritas.com/
 224. http://www.scottklement.com/mailman/listinfo/ftpapi
 225. http://disclaimer.bureauveritas.com/
 226. http://www.scottklement.com/mailman/listinfo/ftpapi
 227. http://disclaimer.bureauveritas.com/
 228. http://www.scottklement.com/mailman/listinfo/ftpapi
 229. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
 230. http://www.scottklement.com/mailman/listinfo/ftpapi
 231. http://disclaimer.bureauveritas.com/
 232. http://scottklement.com/mailman/listinfo/ftpapi
 233. http://disclaimer.bureauveritas.com/
 234. http://www.scottklement.com/mailman/listinfo/ftpapi
 235. http://disclaimer.bureauveritas.com/
 236. http://www.scottklement.com/mailman/listinfo/ftpapi
 237. http://disclaimer.bureauveritas.com/
 238. http://www.scottklement.com/mailman/listinfo/ftpapi
 239. http://scottklement.com/pipermail/ftpapi/attachments/
 240. http://www.scottklement.com/mailman/listinfo/ftpapi
 241. http://scottklement.com/pipermail/ftpapi/attachments/
 242. http://scottklement.com/pipermail/ftpapi/attachments/
 243. http://scottklement.com/pipermail/ftpapi/attachments/
 244. http://scottklement.com/mailman/listinfo/ftpapi
 245. http://disclaimer.bureauveritas.com/
 246. http://www.scottklement.com/mailman/listinfo/ftpapi
 247. http://disclaimer.bureauveritas.com/
 248. http://www.scottklement.com/mailman/listinfo/ftpapi
 249. http://disclaimer.bureauveritas.com/
 250. http://www.scottklement.com/mailman/listinfo/ftpapi
 251. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 252. http://www.scottklement.com/mailman/listinfo/ftpapi
 253. http://disclaimer.bureauveritas.com/
 254. http://www.scottklement.com/mailman/listinfo/ftpapi
 255. http://scottklement.com/mailman/listinfo/ftpapi
 256. http://disclaimer.bureauveritas.com/
 257. http://www.scottklement.com/mailman/listinfo/ftpapi
 258. http://disclaimer.bureauveritas.com/
 259. http://www.scottklement.com/mailman/listinfo/ftpapi
 260. http://disclaimer.bureauveritas.com/
 261. http://www.scottklement.com/mailman/listinfo/ftpapi
 262. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 263. http://www.scottklement.com/mailman/listinfo/ftpapi
 264. http://disclaimer.bureauveritas.com/
 265. http://www.scottklement.com/mailman/listinfo/ftpapi
 266. http://scottklement.com/mailman/listinfo/ftpapi
 267. http://disclaimer.bureauveritas.com/
 268. http://www.scottklement.com/mailman/listinfo/ftpapi
 269. http://disclaimer.bureauveritas.com/
 270. http://www.scottklement.com/mailman/listinfo/ftpapi
 271. http://disclaimer.bureauveritas.com/
 272. http://www.scottklement.com/mailman/listinfo/ftpapi
 273. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 274. http://www.scottklement.com/mailman/listinfo/ftpapi
 275. http://disclaimer.bureauveritas.com/
 276. http://www.scottklement.com/mailman/listinfo/ftpapi
 277. http://scottklement.com/pipermail/ftpapi/attachments/
 278. http://www.scottklement.com/mailman/listinfo/ftpapi
 279. http://www.scottklement.com/mailman/listinfo/ftpapi
 280. http://www.scottklement.com/mailman/listinfo/ftpapi
 281. http://scottklement.com/mailman/listinfo/ftpapi
 282. http://scottklement.com/mailman/listinfo/ftpapi
 283. http://disclaimer.bureauveritas.com/
 284. http://www.scottklement.com/mailman/listinfo/ftpapi
 285. http://disclaimer.bureauveritas.com/
 286. http://www.scottklement.com/mailman/listinfo/ftpapi
 287. http://disclaimer.bureauveritas.com/
 288. http://www.scottklement.com/mailman/listinfo/ftpapi
 289. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97d
 290. http://www.scottklement.com/mailman/listinfo/ftpapi
 291. http://disclaimer.bureauveritas.com/
 292. http://scottklement.com/mailman/listinfo/ftpapi
 293. http://disclaimer.bureauveritas.com/
 294. http://www.scottklement.com/mailman/listinfo/ftpapi
 295. http://disclaimer.bureauveritas.com/
 296. http://www.scottklement.com/mailman/listinfo/ftpapi
 297. http://disclaimer.bureauveritas.com/
 298. http://www.scottklement.com/mailman/listinfo/ftpapi
 299. http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
 300. http://www.scottklement.com/mailman/listinfo/ftpapi
 301. http://disclaimer.bureauveritas.com/
 302. http://scottklement.com/mailman/listinfo/ftpapi
 303. http://disclaimer.bureauveritas.com/
 304. http://www.scottklement.com/mailman/listinfo/ftpapi
 305. http://disclaimer.bureauveritas.com/
 306. http://www.scottklement.com/mailman/listinfo/ftpapi
 307. http://disclaimer.bureauveritas.com/
 308. http://www.scottklement.com/mailman/listinfo/ftpapi
 309. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
 310. http://www.scottklement.com/mailman/listinfo/ftpapi
 311. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
 312. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
 313. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
 314. http://scottklement.com/mailman/listinfo/ftpapi
 315. http://disclaimer.bureauveritas.com/
 316. http://www.scottklement.com/mailman/listinfo/ftpapi
 317. http://disclaimer.bureauveritas.com/
 318. http://www.scottklement.com/mailman/listinfo/ftpapi
 319. http://disclaimer.bureauveritas.com/
 320. http://www.scottklement.com/mailman/listinfo/ftpapi
 321. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 322. http://www.scottklement.com/mailman/listinfo/ftpapi
 323. http://disclaimer.bureauveritas.com/
 324. http://www.scottklement.com/mailman/listinfo/ftpapi
 325. http://scottklement.com/mailman/listinfo/ftpapi
 326. http://disclaimer.bureauveritas.com/
 327. http://www.scottklement.com/mailman/listinfo/ftpapi
 328. http://disclaimer.bureauveritas.com/
 329. http://www.scottklement.com/mailman/listinfo/ftpapi
 330. http://disclaimer.bureauveritas.com/
 331. http://www.scottklement.com/mailman/listinfo/ftpapi
 332. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 333. http://www.scottklement.com/mailman/listinfo/ftpapi
 334. http://disclaimer.bureauveritas.com/
 335. http://www.scottklement.com/mailman/listinfo/ftpapi
 336. http://scottklement.com/mailman/listinfo/ftpapi
 337. http://disclaimer.bureauveritas.com/
 338. http://www.scottklement.com/mailman/listinfo/ftpapi
 339. http://disclaimer.bureauveritas.com/
 340. http://www.scottklement.com/mailman/listinfo/ftpapi
 341. http://disclaimer.bureauveritas.com/
 342. http://www.scottklement.com/mailman/listinfo/ftpapi
 343. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 344. http://www.scottklement.com/mailman/listinfo/ftpapi
 345. http://disclaimer.bureauveritas.com/
 346. http://www.scottklement.com/mailman/listinfo/ftpapi
 347. http://scottklement.com/pipermail/ftpapi/attachments/20130702/26ba
 348. http://www.scottklement.com/mailman/listinfo/ftpapi
 349. http://disclaimer.bureauveritas.com/
 350. http://scottklement.com/mailman/listinfo/ftpapi
 351. http://scottklement.com/mailman/listinfo/ftpapi
 352. http://disclaimer.bureauveritas.com/
 353. http://www.scottklement.com/mailman/listinfo/ftpapi
 354. http://disclaimer.bureauveritas.com/
 355. http://www.scottklement.com/mailman/listinfo/ftpapi
 356. http://disclaimer.bureauveritas.com/
 357. http://www.scottklement.com/mailman/listinfo/ftpapi
 358. http://scottklement.com/pipermail/ftpapi/attachments/
 359. http://www.scottklement.com/mailman/listinfo/ftpapi
 360. http://disclaimer.bureauveritas.com/
 361. http://scottklement.com/mailman/listinfo/ftpapi
 362. http://disclaimer.bureauveritas.com/
 363. http://www.scottklement.com/mailman/listinfo/ftpapi
 364. http://disclaimer.bureauveritas.com/
 365. http://www.scottklement.com/mailman/listinfo/ftpapi
 366. http://disclaimer.bureauveritas.com/
 367. http://www.scottklement.com/mailman/listinfo/ftpapi
 368. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
 369. http://www.scottklement.com/mailman/listinfo/ftpapi
 370. http://disclaimer.bureauveritas.com/
 371. http://scottklement.com/mailman/listinfo/ftpapi
 372. http://disclaimer.bureauveritas.com/
 373. http://www.scottklement.com/mailman/listinfo/ftpapi
 374. http://disclaimer.bureauveritas.com/
 375. http://www.scottklement.com/mailman/listinfo/ftpapi
 376. http://disclaimer.bureauveritas.com/
 377. http://www.scottklement.com/mailman/listinfo/ftpapi
 378. http://scottklement.com/pipermail/ftpapi/attachments/
 379. http://www.scottklement.com/mailman/listinfo/ftpapi
 380. http://scottklement.com/pipermail/ftpapi/attachments/
 381. http://scottklement.com/pipermail/ftpapi/attachments/
 382. http://scottklement.com/pipermail/ftpapi/attachments/
 383. http://scottklement.com/mailman/listinfo/ftpapi
 384. http://disclaimer.bureauveritas.com/
 385. http://www.scottklement.com/mailman/listinfo/ftpapi
 386. http://disclaimer.bureauveritas.com/
 387. http://www.scottklement.com/mailman/listinfo/ftpapi
 388. http://disclaimer.bureauveritas.com/
 389. http://www.scottklement.com/mailman/listinfo/ftpapi
 390. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 391. http://www.scottklement.com/mailman/listinfo/ftpapi
 392. http://disclaimer.bureauveritas.com/
 393. http://www.scottklement.com/mailman/listinfo/ftpapi
 394. http://scottklement.com/mailman/listinfo/ftpapi
 395. http://disclaimer.bureauveritas.com/
 396. http://www.scottklement.com/mailman/listinfo/ftpapi
 397. http://disclaimer.bureauveritas.com/
 398. http://www.scottklement.com/mailman/listinfo/ftpapi
 399. http://disclaimer.bureauveritas.com/
 400. http://www.scottklement.com/mailman/listinfo/ftpapi
 401. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 402. http://www.scottklement.com/mailman/listinfo/ftpapi
 403. http://disclaimer.bureauveritas.com/
 404. http://www.scottklement.com/mailman/listinfo/ftpapi
 405. http://scottklement.com/mailman/listinfo/ftpapi
 406. http://disclaimer.bureauveritas.com/
 407. http://www.scottklement.com/mailman/listinfo/ftpapi
 408. http://disclaimer.bureauveritas.com/
 409. http://www.scottklement.com/mailman/listinfo/ftpapi
 410. http://disclaimer.bureauveritas.com/
 411. http://www.scottklement.com/mailman/listinfo/ftpapi
 412. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 413. http://www.scottklement.com/mailman/listinfo/ftpapi
 414. http://disclaimer.bureauveritas.com/
 415. http://www.scottklement.com/mailman/listinfo/ftpapi
 416. http://scottklement.com/pipermail/ftpapi/attachments/
 417. http://www.scottklement.com/mailman/listinfo/ftpapi
 418. http://www.scottklement.com/mailman/listinfo/ftpapi
 419. http://www.scottklement.com/mailman/listinfo/ftpapi
 420. http://scottklement.com/pipermail/ftpapi/attachments/20130704/
 421. http://www.scottklement.com/mailman/listinfo/ftpapi
 422. http://disclaimer.bureauveritas.com/
 423. http://www.scottklement.com/mailman/listinfo/ftpapi
 424. http://scottklement.com/mailman/listinfo/ftpapi
 425. http://scottklement.com/mailman/listinfo/ftpapi
 426. http://scottklement.com/mailman/listinfo/ftpapi
 427. http://disclaimer.bureauveritas.com/
 428. http://www.scottklement.com/mailman/listinfo/ftpapi
 429. http://disclaimer.bureauveritas.com/
 430. http://www.scottklement.com/mailman/listinfo/ftpapi
 431. http://disclaimer.bureauveritas.com/
 432. http://www.scottklement.com/mailman/listinfo/ftpapi
 433. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
 434. http://www.scottklement.com/mailman/listinfo/ftpapi
 435. http://disclaimer.bureauveritas.com/
 436. http://scottklement.com/mailman/listinfo/ftpapi
 437. http://disclaimer.bureauveritas.com/
 438. http://www.scottklement.com/mailman/listinfo/ftpapi
 439. http://disclaimer.bureauveritas.com/
 440. http://www.scottklement.com/mailman/listinfo/ftpapi
 441. http://disclaimer.bureauveritas.com/
 442. http://www.scottklement.com/mailman/listinfo/ftpapi
 443. http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
 444. http://www.scottklement.com/mailman/listinfo/ftpapi
 445. http://disclaimer.bureauveritas.com/
 446. http://scottklement.com/mailman/listinfo/ftpapi
 447. http://disclaimer.bureauveritas.com/
 448. http://www.scottklement.com/mailman/listinfo/ftpapi
 449. http://disclaimer.bureauveritas.com/
 450. http://www.scottklement.com/mailman/listinfo/ftpapi
 451. http://disclaimer.bureauveritas.com/
 452. http://www.scottklement.com/mailman/listinfo/ftpapi
 453. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
 454. http://www.scottklement.com/mailman/listinfo/ftpapi
 455. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
 456. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
 457. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
 458. http://scottklement.com/mailman/listinfo/ftpapi
 459. http://disclaimer.bureauveritas.com/
 460. http://www.scottklement.com/mailman/listinfo/ftpapi
 461. http://disclaimer.bureauveritas.com/
 462. http://www.scottklement.com/mailman/listinfo/ftpapi
 463. http://disclaimer.bureauveritas.com/
 464. http://www.scottklement.com/mailman/listinfo/ftpapi
 465. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 466. http://www.scottklement.com/mailman/listinfo/ftpapi
 467. http://disclaimer.bureauveritas.com/
 468. http://www.scottklement.com/mailman/listinfo/ftpapi
 469. http://scottklement.com/mailman/listinfo/ftpapi
 470. http://disclaimer.bureauveritas.com/
 471. http://www.scottklement.com/mailman/listinfo/ftpapi
 472. http://disclaimer.bureauveritas.com/
 473. http://www.scottklement.com/mailman/listinfo/ftpapi
 474. http://disclaimer.bureauveritas.com/
 475. http://www.scottklement.com/mailman/listinfo/ftpapi
 476. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 477. http://www.scottklement.com/mailman/listinfo/ftpapi
 478. http://disclaimer.bureauveritas.com/
 479. http://www.scottklement.com/mailman/listinfo/ftpapi
 480. http://scottklement.com/mailman/listinfo/ftpapi
 481. http://disclaimer.bureauveritas.com/
 482. http://www.scottklement.com/mailman/listinfo/ftpapi
 483. http://disclaimer.bureauveritas.com/
 484. http://www.scottklement.com/mailman/listinfo/ftpapi
 485. http://disclaimer.bureauveritas.com/
 486. http://www.scottklement.com/mailman/listinfo/ftpapi
 487. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 488. http://www.scottklement.com/mailman/listinfo/ftpapi
 489. http://disclaimer.bureauveritas.com/
 490. http://www.scottklement.com/mailman/listinfo/ftpapi
 491. http://scottklement.com/pipermail/ftpapi/attachments/20130702/26ba
 492. http://www.scottklement.com/mailman/listinfo/ftpapi
 493. http://disclaimer.bureauveritas.com/
 494. http://scottklement.com/mailman/listinfo/ftpapi
 495. http://scottklement.com/mailman/listinfo/ftpapi
 496. http://disclaimer.bureauveritas.com/
 497. http://www.scottklement.com/mailman/listinfo/ftpapi
 498. http://disclaimer.bureauveritas.com/
 499. http://www.scottklement.com/mailman/listinfo/ftpapi
 500. http://disclaimer.bureauveritas.com/
 501. http://www.scottklement.com/mailman/listinfo/ftpapi
 502. http://scottklement.com/pipermail/ftpapi/attachments/
 503. http://www.scottklement.com/mailman/listinfo/ftpapi
 504. http://disclaimer.bureauveritas.com/
 505. http://scottklement.com/mailman/listinfo/ftpapi
 506. http://disclaimer.bureauveritas.com/
 507. http://www.scottklement.com/mailman/listinfo/ftpapi
 508. http://disclaimer.bureauveritas.com/
 509. http://www.scottklement.com/mailman/listinfo/ftpapi
 510. http://disclaimer.bureauveritas.com/
 511. http://www.scottklement.com/mailman/listinfo/ftpapi
 512. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
 513. http://www.scottklement.com/mailman/listinfo/ftpapi
 514. http://disclaimer.bureauveritas.com/
 515. http://scottklement.com/mailman/listinfo/ftpapi
 516. http://disclaimer.bureauveritas.com/
 517. http://www.scottklement.com/mailman/listinfo/ftpapi
 518. http://disclaimer.bureauveritas.com/
 519. http://www.scottklement.com/mailman/listinfo/ftpapi
 520. http://disclaimer.bureauveritas.com/
 521. http://www.scottklement.com/mailman/listinfo/ftpapi
 522. http://scottklement.com/pipermail/ftpapi/attachments/
 523. http://www.scottklement.com/mailman/listinfo/ftpapi
 524. http://scottklement.com/pipermail/ftpapi/attachments/
 525. http://scottklement.com/pipermail/ftpapi/attachments/
 526. http://scottklement.com/pipermail/ftpapi/attachments/
 527. http://scottklement.com/mailman/listinfo/ftpapi
 528. http://disclaimer.bureauveritas.com/
 529. http://www.scottklement.com/mailman/listinfo/ftpapi
 530. http://disclaimer.bureauveritas.com/
 531. http://www.scottklement.com/mailman/listinfo/ftpapi
 532. http://disclaimer.bureauveritas.com/
 533. http://www.scottklement.com/mailman/listinfo/ftpapi
 534. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 535. http://www.scottklement.com/mailman/listinfo/ftpapi
 536. http://disclaimer.bureauveritas.com/
 537. http://www.scottklement.com/mailman/listinfo/ftpapi
 538. http://scottklement.com/mailman/listinfo/ftpapi
 539. http://disclaimer.bureauveritas.com/
 540. http://www.scottklement.com/mailman/listinfo/ftpapi
 541. http://disclaimer.bureauveritas.com/
 542. http://www.scottklement.com/mailman/listinfo/ftpapi
 543. http://disclaimer.bureauveritas.com/
 544. http://www.scottklement.com/mailman/listinfo/ftpapi
 545. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 546. http://www.scottklement.com/mailman/listinfo/ftpapi
 547. http://disclaimer.bureauveritas.com/
 548. http://www.scottklement.com/mailman/listinfo/ftpapi
 549. http://scottklement.com/mailman/listinfo/ftpapi
 550. http://disclaimer.bureauveritas.com/
 551. http://www.scottklement.com/mailman/listinfo/ftpapi
 552. http://disclaimer.bureauveritas.com/
 553. http://www.scottklement.com/mailman/listinfo/ftpapi
 554. http://disclaimer.bureauveritas.com/
 555. http://www.scottklement.com/mailman/listinfo/ftpapi
 556. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 557. http://www.scottklement.com/mailman/listinfo/ftpapi
 558. http://disclaimer.bureauveritas.com/
 559. http://www.scottklement.com/mailman/listinfo/ftpapi
 560. http://scottklement.com/pipermail/ftpapi/attachments/
 561. http://www.scottklement.com/mailman/listinfo/ftpapi
 562. http://www.scottklement.com/mailman/listinfo/ftpapi
 563. http://www.scottklement.com/mailman/listinfo/ftpapi
 564. http://scottklement.com/mailman/listinfo/ftpapi
 565. http://scottklement.com/mailman/listinfo/ftpapi
 566. http://disclaimer.bureauveritas.com/
 567. http://www.scottklement.com/mailman/listinfo/ftpapi
 568. http://disclaimer.bureauveritas.com/
 569. http://www.scottklement.com/mailman/listinfo/ftpapi
 570. http://disclaimer.bureauveritas.com/
 571. http://www.scottklement.com/mailman/listinfo/ftpapi
 572. http://scottklement.com/pipermail/ftpapi/attachments/2013070
 573. http://www.scottklement.com/mailman/listinfo/ftpapi
 574. http://disclaimer.bureauveritas.com/
 575. http://scottklement.com/mailman/listinfo/ftpapi
 576. http://disclaimer.bureauveritas.com/
 577. http://www.scottklement.com/mailman/listinfo/ftpapi
 578. http://disclaimer.bureauveritas.com/
 579. http://www.scottklement.com/mailman/listinfo/ftpapi
 580. http://disclaimer.bureauveritas.com/
 581. http://www.scottklement.com/mailman/listinfo/ftpapi
 582. http://scottklement.com/pipermail/ftpapi/attachments/2
 583. http://www.scottklement.com/mailman/listinfo/ftpapi
 584. http://disclaimer.bureauveritas.com/
 585. http://scottklement.com/mailman/listinfo/ftpapi
 586. http://disclaimer.bureauveritas.com/
 587. http://www.scottklement.com/mailman/listinfo/ftpapi
 588. http://disclaimer.bureauveritas.com/
 589. http://www.scottklement.com/mailman/listinfo/ftpapi
 590. http://disclaimer.bureauveritas.com/
 591. http://www.scottklement.com/mailman/listinfo/ftpapi
 592. http://scottklement.com/pipermail/ftpapi/attachments/20130
 593. http://www.scottklement.com/mailman/listinfo/ftpapi
 594. http://scottklement.com/pipermail/ftpapi/attachments/2013
 595. http://scottklement.com/pipermail/ftpapi/attachments/2013
 596. http://scottklement.com/pipermail/ftpapi/attachments/2013
 597. http://scottklement.com/mailman/listinfo/ftpapi
 598. http://disclaimer.bureauveritas.com/
 599. http://www.scottklement.com/mailman/listinfo/ftpapi
 600. http://disclaimer.bureauveritas.com/
 601. http://www.scottklement.com/mailman/listinfo/ftpapi
 602. http://disclaimer.bureauveritas.com/
 603. http://www.scottklement.com/mailman/listinfo/ftpapi
 604. http://scottklement.com/pipermail/ftpapi/attachments/20130
 605. http://www.scottklement.com/mailman/listinfo/ftpapi
 606. http://disclaimer.bureauveritas.com/
 607. http://www.scottklement.com/mailman/listinfo/ftpapi
 608. http://scottklement.com/mailman/listinfo/ftpapi
 609. http://disclaimer.bureauveritas.com/
 610. http://www.scottklement.com/mailman/listinfo/ftpapi
 611. http://disclaimer.bureauveritas.com/
 612. http://www.scottklement.com/mailman/listinfo/ftpapi
 613. http://disclaimer.bureauveritas.com/
 614. http://www.scottklement.com/mailman/listinfo/ftpapi
 615. http://scottklement.com/pipermail/ftpapi/attachments/20
 616. http://www.scottklement.com/mailman/listinfo/ftpapi
 617. http://disclaimer.bureauveritas.com/
 618. http://www.scottklement.com/mailman/listinfo/ftpapi
 619. http://scottklement.com/mailman/listinfo/ftpapi
 620. http://disclaimer.bureauveritas.com/
 621. http://www.scottklement.com/mailman/listinfo/ftpapi
 622. http://disclaimer.bureauveritas.com/
 623. http://www.scottklement.com/mailman/listinfo/ftpapi
 624. http://disclaimer.bureauveritas.com/
 625. http://www.scottklement.com/mailman/listinfo/ftpapi
 626. http://scottklement.com/pipermail/ftpapi/attachments/20130
 627. http://www.scottklement.com/mailman/listinfo/ftpapi
 628. http://disclaimer.bureauveritas.com/
 629. http://www.scottklement.com/mailman/listinfo/ftpapi
 630. http://scottklement.com/pipermail/ftpapi/attachments/2013
 631. http://www.scottklement.com/mailman/listinfo/ftpapi
 632. http://disclaimer.bureauveritas.com/
 633. http://scottklement.com/mailman/listinfo/ftpapi
 634. http://scottklement.com/mailman/listinfo/ftpapi
 635. http://disclaimer.bureauveritas.com/
 636. http://www.scottklement.com/mailman/listinfo/ftpapi
 637. http://disclaimer.bureauveritas.com/
 638. http://www.scottklement.com/mailman/listinfo/ftpapi
 639. http://disclaimer.bureauveritas.com/
 640. http://www.scottklement.com/mailman/listinfo/ftpapi
 641. http://scottklement.com/pipermail/ftpapi/attachments/
 642. http://www.scottklement.com/mailman/listinfo/ftpapi
 643. http://disclaimer.bureauveritas.com/
 644. http://scottklement.com/mailman/listinfo/ftpapi
 645. http://disclaimer.bureauveritas.com/
 646. http://www.scottklement.com/mailman/listinfo/ftpapi
 647. http://disclaimer.bureauveritas.com/
 648. http://www.scottklement.com/mailman/listinfo/ftpapi
 649. http://disclaimer.bureauveritas.com/
 650. http://www.scottklement.com/mailman/listinfo/ftpapi
 651. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 652. http://www.scottklement.com/mailman/listinfo/ftpapi
 653. http://disclaimer.bureauveritas.com/
 654. http://scottklement.com/mailman/listinfo/ftpapi
 655. http://disclaimer.bureauveritas.com/
 656. http://www.scottklement.com/mailman/listinfo/ftpapi
 657. http://disclaimer.bureauveritas.com/
 658. http://www.scottklement.com/mailman/listinfo/ftpapi
 659. http://disclaimer.bureauveritas.com/
 660. http://www.scottklement.com/mailman/listinfo/ftpapi
 661. http://scottklement.com/pipermail/ftpapi/attachments/
 662. http://www.scottklement.com/mailman/listinfo/ftpapi
 663. http://scottklement.com/pipermail/ftpapi/attachments/
 664. http://scottklement.com/pipermail/ftpapi/attachments/
 665. http://scottklement.com/pipermail/ftpapi/attachments/
 666. http://scottklement.com/mailman/listinfo/ftpapi
 667. http://disclaimer.bureauveritas.com/
 668. http://www.scottklement.com/mailman/listinfo/ftpapi
 669. http://disclaimer.bureauveritas.com/
 670. http://www.scottklement.com/mailman/listinfo/ftpapi
 671. http://disclaimer.bureauveritas.com/
 672. http://www.scottklement.com/mailman/listinfo/ftpapi
 673. http://scottklement.com/pipermail/ftpapi/attachments/20130702
 674. http://www.scottklement.com/mailman/listinfo/ftpapi
 675. http://disclaimer.bureauveritas.com/
 676. http://www.scottklement.com/mailman/listinfo/ftpapi
 677. http://scottklement.com/mailman/listinfo/ftpapi
 678. http://disclaimer.bureauveritas.com/
 679. http://www.scottklement.com/mailman/listinfo/ftpapi
 680. http://disclaimer.bureauveritas.com/
 681. http://www.scottklement.com/mailman/listinfo/ftpapi
 682. http://disclaimer.bureauveritas.com/
 683. http://www.scottklement.com/mailman/listinfo/ftpapi
 684. http://scottklement.com/pipermail/ftpapi/attachments/20130702
 685. http://www.scottklement.com/mailman/listinfo/ftpapi
 686. http://disclaimer.bureauveritas.com/
 687. http://www.scottklement.com/mailman/listinfo/ftpapi
 688. http://scottklement.com/mailman/listinfo/ftpapi
 689. http://disclaimer.bureauveritas.com/
 690. http://www.scottklement.com/mailman/listinfo/ftpapi
 691. http://disclaimer.bureauveritas.com/
 692. http://www.scottklement.com/mailman/listinfo/ftpapi
 693. http://disclaimer.bureauveritas.com/
 694. http://www.scottklement.com/mailman/listinfo/ftpapi
 695. http://scottklement.com/pipermail/ftpapi/attachments/20130702
 696. http://www.scottklement.com/mailman/listinfo/ftpapi
 697. http://disclaimer.bureauveritas.com/
 698. http://www.scottklement.com/mailman/listinfo/ftpapi
 699. http://scottklement.com/pipermail/ftpapi/attachments/
 700. http://www.scottklement.com/mailman/listinfo/ftpapi
 701. http://www.scottklement.com/mailman/listinfo/ftpapi
 702. http://www.scottklement.com/mailman/listinfo/ftpapi
 703. http://scottklement.com/mailman/listinfo/ftpapi
 704. http://scottklement.com/mailman/listinfo/ftpapi
 705. http://disclaimer.bureauveritas.com/
 706. http://www.scottklement.com/mailman/listinfo/ftpapi
 707. http://disclaimer.bureauveritas.com/
 708. http://www.scottklement.com/mailman/listinfo/ftpapi
 709. http://disclaimer.bureauveritas.com/
 710. http://www.scottklement.com/mailman/listinfo/ftpapi
 711. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea9
 712. http://www.scottklement.com/mailman/listinfo/ftpapi
 713. http://disclaimer.bureauveritas.com/
 714. http://scottklement.com/mailman/listinfo/ftpapi
 715. http://disclaimer.bureauveritas.com/
 716. http://www.scottklement.com/mailman/listinfo/ftpapi
 717. http://disclaimer.bureauveritas.com/
 718. http://www.scottklement.com/mailman/listinfo/ftpapi
 719. http://disclaimer.bureauveritas.com/
 720. http://www.scottklement.com/mailman/listinfo/ftpapi
 721. http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
 722. http://www.scottklement.com/mailman/listinfo/ftpapi
 723. http://disclaimer.bureauveritas.com/
 724. http://scottklement.com/mailman/listinfo/ftpapi
 725. http://disclaimer.bureauveritas.com/
 726. http://www.scottklement.com/mailman/listinfo/ftpapi
 727. http://disclaimer.bureauveritas.com/
 728. http://www.scottklement.com/mailman/listinfo/ftpapi
 729. http://disclaimer.bureauveritas.com/
 730. http://www.scottklement.com/mailman/listinfo/ftpapi
 731. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea9
 732. http://www.scottklement.com/mailman/listinfo/ftpapi
 733. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
 734. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
 735. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
 736. http://scottklement.com/mailman/listinfo/ftpapi
 737. http://disclaimer.bureauveritas.com/
 738. http://www.scottklement.com/mailman/listinfo/ftpapi
 739. http://disclaimer.bureauveritas.com/
 740. http://www.scottklement.com/mailman/listinfo/ftpapi
 741. http://disclaimer.bureauveritas.com/
 742. http://www.scottklement.com/mailman/listinfo/ftpapi
 743. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 744. http://www.scottklement.com/mailman/listinfo/ftpapi
 745. http://disclaimer.bureauveritas.com/
 746. http://www.scottklement.com/mailman/listinfo/ftpapi
 747. http://scottklement.com/mailman/listinfo/ftpapi
 748. http://disclaimer.bureauveritas.com/
 749. http://www.scottklement.com/mailman/listinfo/ftpapi
 750. http://disclaimer.bureauveritas.com/
 751. http://www.scottklement.com/mailman/listinfo/ftpapi
 752. http://disclaimer.bureauveritas.com/
 753. http://www.scottklement.com/mailman/listinfo/ftpapi
 754. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 755. http://www.scottklement.com/mailman/listinfo/ftpapi
 756. http://disclaimer.bureauveritas.com/
 757. http://www.scottklement.com/mailman/listinfo/ftpapi
 758. http://scottklement.com/mailman/listinfo/ftpapi
 759. http://disclaimer.bureauveritas.com/
 760. http://www.scottklement.com/mailman/listinfo/ftpapi
 761. http://disclaimer.bureauveritas.com/
 762. http://www.scottklement.com/mailman/listinfo/ftpapi
 763. http://disclaimer.bureauveritas.com/
 764. http://www.scottklement.com/mailman/listinfo/ftpapi
 765. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 766. http://www.scottklement.com/mailman/listinfo/ftpapi
 767. http://disclaimer.bureauveritas.com/
 768. http://www.scottklement.com/mailman/listinfo/ftpapi
 769. http://scottklement.com/pipermail/ftpapi/attachments/20130702/26ba
 770. http://www.scottklement.com/mailman/listinfo/ftpapi
 771. http://disclaimer.bureauveritas.com/
 772. http://scottklement.com/mailman/listinfo/ftpapi
 773. http://scottklement.com/mailman/listinfo/ftpapi
 774. http://disclaimer.bureauveritas.com/
 775. http://www.scottklement.com/mailman/listinfo/ftpapi
 776. http://disclaimer.bureauveritas.com/
 777. http://www.scottklement.com/mailman/listinfo/ftpapi
 778. http://disclaimer.bureauveritas.com/
 779. http://www.scottklement.com/mailman/listinfo/ftpapi
 780. http://scottklement.com/pipermail/ftpapi/attachments/
 781. http://www.scottklement.com/mailman/listinfo/ftpapi
 782. http://disclaimer.bureauveritas.com/
 783. http://scottklement.com/mailman/listinfo/ftpapi
 784. http://disclaimer.bureauveritas.com/
 785. http://www.scottklement.com/mailman/listinfo/ftpapi
 786. http://disclaimer.bureauveritas.com/
 787. http://www.scottklement.com/mailman/listinfo/ftpapi
 788. http://disclaimer.bureauveritas.com/
 789. http://www.scottklement.com/mailman/listinfo/ftpapi
 790. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea9
 791. http://www.scottklement.com/mailman/listinfo/ftpapi
 792. http://disclaimer.bureauveritas.com/
 793. http://scottklement.com/mailman/listinfo/ftpapi
 794. http://disclaimer.bureauveritas.com/
 795. http://www.scottklement.com/mailman/listinfo/ftpapi
 796. http://disclaimer.bureauveritas.com/
 797. http://www.scottklement.com/mailman/listinfo/ftpapi
 798. http://disclaimer.bureauveritas.com/
 799. http://www.scottklement.com/mailman/listinfo/ftpapi
 800. http://scottklement.com/pipermail/ftpapi/attachments/
 801. http://www.scottklement.com/mailman/listinfo/ftpapi
 802. http://scottklement.com/pipermail/ftpapi/attachments/
 803. http://scottklement.com/pipermail/ftpapi/attachments/
 804. http://scottklement.com/pipermail/ftpapi/attachments/
 805. http://scottklement.com/mailman/listinfo/ftpapi
 806. http://disclaimer.bureauveritas.com/
 807. http://www.scottklement.com/mailman/listinfo/ftpapi
 808. http://disclaimer.bureauveritas.com/
 809. http://www.scottklement.com/mailman/listinfo/ftpapi
 810. http://disclaimer.bureauveritas.com/
 811. http://www.scottklement.com/mailman/listinfo/ftpapi
 812. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 813. http://www.scottklement.com/mailman/listinfo/ftpapi
 814. http://disclaimer.bureauveritas.com/
 815. http://www.scottklement.com/mailman/listinfo/ftpapi
 816. http://scottklement.com/mailman/listinfo/ftpapi
 817. http://disclaimer.bureauveritas.com/
 818. http://www.scottklement.com/mailman/listinfo/ftpapi
 819. http://disclaimer.bureauveritas.com/
 820. http://www.scottklement.com/mailman/listinfo/ftpapi
 821. http://disclaimer.bureauveritas.com/
 822. http://www.scottklement.com/mailman/listinfo/ftpapi
 823. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 824. http://www.scottklement.com/mailman/listinfo/ftpapi
 825. http://disclaimer.bureauveritas.com/
 826. http://www.scottklement.com/mailman/listinfo/ftpapi
 827. http://scottklement.com/mailman/listinfo/ftpapi
 828. http://disclaimer.bureauveritas.com/
 829. http://www.scottklement.com/mailman/listinfo/ftpapi
 830. http://disclaimer.bureauveritas.com/
 831. http://www.scottklement.com/mailman/listinfo/ftpapi
 832. http://disclaimer.bureauveritas.com/
 833. http://www.scottklement.com/mailman/listinfo/ftpapi
 834. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 835. http://www.scottklement.com/mailman/listinfo/ftpapi
 836. http://disclaimer.bureauveritas.com/
 837. http://www.scottklement.com/mailman/listinfo/ftpapi
 838. http://scottklement.com/pipermail/ftpapi/attachments/
 839. http://www.scottklement.com/mailman/listinfo/ftpapi
 840. http://www.scottklement.com/mailman/listinfo/ftpapi
 841. http://www.scottklement.com/mailman/listinfo/ftpapi
 842. http://scottklement.com/pipermail/ftpapi/attachments/20130704/
 843. http://www.scottklement.com/mailman/listinfo/ftpapi
 844. http://disclaimer.bureauveritas.com/
 845. http://www.scottklement.com/mailman/listinfo/ftpapi
 846. http://scottklement.com/mailman/listinfo/ftpapi
 847. http://scottklement.com/mailman/listinfo/ftpapi
 848. http://scottklement.com/mailman/listinfo/ftpapi
 849. http://disclaimer.bureauveritas.com/
 850. http://www.scottklement.com/mailman/listinfo/ftpapi
 851. http://disclaimer.bureauveritas.com/
 852. http://www.scottklement.com/mailman/listinfo/ftpapi
 853. http://disclaimer.bureauveritas.com/
 854. http://www.scottklement.com/mailman/listinfo/ftpapi
 855. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97d
 856. http://www.scottklement.com/mailman/listinfo/ftpapi
 857. http://disclaimer.bureauveritas.com/
 858. http://scottklement.com/mailman/listinfo/ftpapi
 859. http://disclaimer.bureauveritas.com/
 860. http://www.scottklement.com/mailman/listinfo/ftpapi
 861. http://disclaimer.bureauveritas.com/
 862. http://www.scottklement.com/mailman/listinfo/ftpapi
 863. http://disclaimer.bureauveritas.com/
 864. http://www.scottklement.com/mailman/listinfo/ftpapi
 865. http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
 866. http://www.scottklement.com/mailman/listinfo/ftpapi
 867. http://disclaimer.bureauveritas.com/
 868. http://scottklement.com/mailman/listinfo/ftpapi
 869. http://disclaimer.bureauveritas.com/
 870. http://www.scottklement.com/mailman/listinfo/ftpapi
 871. http://disclaimer.bureauveritas.com/
 872. http://www.scottklement.com/mailman/listinfo/ftpapi
 873. http://disclaimer.bureauveritas.com/
 874. http://www.scottklement.com/mailman/listinfo/ftpapi
 875. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
 876. http://www.scottklement.com/mailman/listinfo/ftpapi
 877. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
 878. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
 879. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
 880. http://scottklement.com/mailman/listinfo/ftpapi
 881. http://disclaimer.bureauveritas.com/
 882. http://www.scottklement.com/mailman/listinfo/ftpapi
 883. http://disclaimer.bureauveritas.com/
 884. http://www.scottklement.com/mailman/listinfo/ftpapi
 885. http://disclaimer.bureauveritas.com/
 886. http://www.scottklement.com/mailman/listinfo/ftpapi
 887. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 888. http://www.scottklement.com/mailman/listinfo/ftpapi
 889. http://disclaimer.bureauveritas.com/
 890. http://www.scottklement.com/mailman/listinfo/ftpapi
 891. http://scottklement.com/mailman/listinfo/ftpapi
 892. http://disclaimer.bureauveritas.com/
 893. http://www.scottklement.com/mailman/listinfo/ftpapi
 894. http://disclaimer.bureauveritas.com/
 895. http://www.scottklement.com/mailman/listinfo/ftpapi
 896. http://disclaimer.bureauveritas.com/
 897. http://www.scottklement.com/mailman/listinfo/ftpapi
 898. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 899. http://www.scottklement.com/mailman/listinfo/ftpapi
 900. http://disclaimer.bureauveritas.com/
 901. http://www.scottklement.com/mailman/listinfo/ftpapi
 902. http://scottklement.com/mailman/listinfo/ftpapi
 903. http://disclaimer.bureauveritas.com/
 904. http://www.scottklement.com/mailman/listinfo/ftpapi
 905. http://disclaimer.bureauveritas.com/
 906. http://www.scottklement.com/mailman/listinfo/ftpapi
 907. http://disclaimer.bureauveritas.com/
 908. http://www.scottklement.com/mailman/listinfo/ftpapi
 909. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 910. http://www.scottklement.com/mailman/listinfo/ftpapi
 911. http://disclaimer.bureauveritas.com/
 912. http://www.scottklement.com/mailman/listinfo/ftpapi
 913. http://scottklement.com/pipermail/ftpapi/attachments/20130702/26ba
 914. http://www.scottklement.com/mailman/listinfo/ftpapi
 915. http://disclaimer.bureauveritas.com/
 916. http://scottklement.com/mailman/listinfo/ftpapi
 917. http://scottklement.com/mailman/listinfo/ftpapi
 918. http://disclaimer.bureauveritas.com/
 919. http://www.scottklement.com/mailman/listinfo/ftpapi
 920. http://disclaimer.bureauveritas.com/
 921. http://www.scottklement.com/mailman/listinfo/ftpapi
 922. http://disclaimer.bureauveritas.com/
 923. http://www.scottklement.com/mailman/listinfo/ftpapi
 924. http://scottklement.com/pipermail/ftpapi/attachments/
 925. http://www.scottklement.com/mailman/listinfo/ftpapi
 926. http://disclaimer.bureauveritas.com/
 927. http://scottklement.com/mailman/listinfo/ftpapi
 928. http://disclaimer.bureauveritas.com/
 929. http://www.scottklement.com/mailman/listinfo/ftpapi
 930. http://disclaimer.bureauveritas.com/
 931. http://www.scottklement.com/mailman/listinfo/ftpapi
 932. http://disclaimer.bureauveritas.com/
 933. http://www.scottklement.com/mailman/listinfo/ftpapi
 934. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
 935. http://www.scottklement.com/mailman/listinfo/ftpapi
 936. http://disclaimer.bureauveritas.com/
 937. http://scottklement.com/mailman/listinfo/ftpapi
 938. http://disclaimer.bureauveritas.com/
 939. http://www.scottklement.com/mailman/listinfo/ftpapi
 940. http://disclaimer.bureauveritas.com/
 941. http://www.scottklement.com/mailman/listinfo/ftpapi
 942. http://disclaimer.bureauveritas.com/
 943. http://www.scottklement.com/mailman/listinfo/ftpapi
 944. http://scottklement.com/pipermail/ftpapi/attachments/
 945. http://www.scottklement.com/mailman/listinfo/ftpapi
 946. http://scottklement.com/pipermail/ftpapi/attachments/
 947. http://scottklement.com/pipermail/ftpapi/attachments/
 948. http://scottklement.com/pipermail/ftpapi/attachments/
 949. http://scottklement.com/mailman/listinfo/ftpapi
 950. http://disclaimer.bureauveritas.com/
 951. http://www.scottklement.com/mailman/listinfo/ftpapi
 952. http://disclaimer.bureauveritas.com/
 953. http://www.scottklement.com/mailman/listinfo/ftpapi
 954. http://disclaimer.bureauveritas.com/
 955. http://www.scottklement.com/mailman/listinfo/ftpapi
 956. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 957. http://www.scottklement.com/mailman/listinfo/ftpapi
 958. http://disclaimer.bureauveritas.com/
 959. http://www.scottklement.com/mailman/listinfo/ftpapi
 960. http://scottklement.com/mailman/listinfo/ftpapi
 961. http://disclaimer.bureauveritas.com/
 962. http://www.scottklement.com/mailman/listinfo/ftpapi
 963. http://disclaimer.bureauveritas.com/
 964. http://www.scottklement.com/mailman/listinfo/ftpapi
 965. http://disclaimer.bureauveritas.com/
 966. http://www.scottklement.com/mailman/listinfo/ftpapi
 967. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 968. http://www.scottklement.com/mailman/listinfo/ftpapi
 969. http://disclaimer.bureauveritas.com/
 970. http://www.scottklement.com/mailman/listinfo/ftpapi
 971. http://scottklement.com/mailman/listinfo/ftpapi
 972. http://disclaimer.bureauveritas.com/
 973. http://www.scottklement.com/mailman/listinfo/ftpapi
 974. http://disclaimer.bureauveritas.com/
 975. http://www.scottklement.com/mailman/listinfo/ftpapi
 976. http://disclaimer.bureauveritas.com/
 977. http://www.scottklement.com/mailman/listinfo/ftpapi
 978. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 979. http://www.scottklement.com/mailman/listinfo/ftpapi
 980. http://disclaimer.bureauveritas.com/
 981. http://www.scottkleme/
 982. http://scottklement.com/pipermail/ftpapi/attachments/
 983. http://www.scottklement.com/mailman/listinfo/ftpapi
 984. http://www.scottklement.com/mailman/listinfo/ftpapi
 985. http://www.scottklement.com/mailman/listinfo/ftpapi
 986. http://scottklement.com/mailman/listinfo/ftpapi
 987. http://scottklement.com/mailman/listinfo/ftpapi
 988. http://disclaimer.bureauveritas.com/
 989. http://www.scottklement.com/mailman/listinfo/ftpapi
 990. http://disclaimer.bureauveritas.com/
 991. http://www.scottklement.com/mailman/listinfo/ftpapi
 992. http://disclaimer.bureauveritas.com/
 993. http://www.scottklement.com/mailman/listinfo/ftpapi
 994. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea
 995. http://www.scottklement.com/mailman/listinfo/ftpapi
 996. http://disclaimer.bureauveritas.com/
 997. http://scottklement.com/mailman/listinfo/ftpapi
 998. http://disclaimer.bureauveritas.com/
 999. http://www.scottklement.com/mailman/listinfo/ftpapi
1000. http://disclaimer.bureauveritas.com/
1001. http://www.scottklement.com/mailman/listinfo/ftpapi
1002. http://disclaimer.bureauveritas.com/
1003. http://www.scottklement.com/mailman/listinfo/ftpapi
1004. http://scottklement.com/pipermail/ftpapi/attachments/201307
1005. http://www.scottklement.com/mailman/listinfo/ftpapi
1006. http://disclaimer.bureauveritas.com/
1007. http://scottklement.com/mailman/listinfo/ftpapi
1008. http://disclaimer.bureauveritas.com/
1009. http://www.scottklement.com/mailman/listinfo/ftpapi
1010. http://disclaimer.bureauveritas.com/
1011. http://www.scottklement.com/mailman/listinfo/ftpapi
1012. http://disclaimer.bureauveritas.com/
1013. http://www.scottklement.com/mailman/listinfo/ftpapi
1014. http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
1015. http://www.scottklement.com/mailman/listinfo/ftpapi
1016. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
1017. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
1018. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
1019. http://scottklement.com/mailman/listinfo/ftpapi
1020. http://disclaimer.bureauveritas.com/
1021. http://www.scottklement.com/mailman/listinfo/ftpapi
1022. http://disclaimer.bureauveritas.com/
1023. http://www.scottklement.com/mailman/listinfo/ftpapi
1024. http://disclaimer.bureauveritas.com/
1025. http://www.scottklement.com/mailman/listinfo/ftpapi
1026. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
1027. http://www.scottklement.com/mailman/listinfo/ftpapi
1028. http://disclaimer.bureauveritas.com/
1029. http://www.scottklement.com/mailman/listinfo/ftpapi
1030. http://scottklement.com/mailman/listinfo/ftpapi
1031. http://disclaimer.bureauveritas.com/
1032. http://www.scottklement.com/mailman/listinfo/ftpapi
1033. http://disclaimer.bureauveritas.com/
1034. http://www.scottklement.com/mailman/listinfo/ftpapi
1035. http://disclaimer.bureauveritas.com/
1036. http://www.scottklement.com/mailman/listinfo/ftpapi
1037. http://scottklement.com/pipermail/ftpapi/attachments/2013070
1038. http://www.scottklement.com/mailman/listinfo/ftpapi
1039. http://disclaimer.bureauveritas.com/
1040. http://www.scottklement.com/mailman/listinfo/ftpapi
1041. http://scottklement.com/mailman/listinfo/ftpapi
1042. http://disclaimer.bureauveritas.com/
1043. http://www.scottklement.com/mailman/listinfo/ftpapi
1044. http://disclaimer.bureauveritas.com/
1045. http://www.scottklement.com/mailman/listinfo/ftpapi
1046. http://disclaimer.bureauveritas.com/
1047. http://www.scottklement.com/mailman/listinfo/ftpapi
1048. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
1049. http://www.scottklement.com/mailman/listinfo/ftpapi
1050. http://disclaimer.bureauveritas.com/
1051. http://www.scottklement.com/mailman/listinfo/ftpapi
1052. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
1053. http://www.scottklement.com/mailman/listinfo/ftpapi
1054. http://disclaimer.bureauveritas.com/
1055. http://scottklement.com/mailman/listinfo/ftpapi
1056. http://scottklement.com/mailman/listinfo/ftpapi
1057. http://disclaimer.bureauveritas.com/
1058. http://www.scottklement.com/mailman/listinfo/ftpapi
1059. http://disclaimer.bureauveritas.com/
1060. http://www.scottklement.com/mailman/listinfo/ftpapi
1061. http://disclaimer.bureauveritas.com/
1062. http://www.scottklement.com/mailman/listinfo/ftpapi
1063. http://scottklement.com/pipermail/ftpapi/attachments/
1064. http://www.scottklement.com/mailman/listinfo/ftpapi
1065. http://disclaimer.bureauveritas.com/
1066. http://scottklement.com/mailman/listinfo/ftpapi
1067. http://disclaimer.bureauveritas.com/
1068. http://www.scottklement.com/mailman/listinfo/ftpapi
1069. http://disclaimer.bureauveritas.com/
1070. http://www.scottklement.com/mailman/listinfo/ftpapi
1071. http://disclaimer.bureauveritas.com/
1072. http://www.scottklement.com/mailman/listinfo/ftpapi
1073. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
1074. http://www.scottklement.com/mailman/listinfo/ftpapi
1075. http://disclaimer.bureauveritas.com/
1076. http://scottklement.com/mailman/listinfo/ftpapi
1077. http://disclaimer.bureauveritas.com/
1078. http://www.scottklement.com/mailman/listinfo/ftpapi
1079. http://disclaimer.bureauveritas.com/
1080. http://www.scottklement.com/mailman/listinfo/ftpapi
1081. http://disclaimer.bureauveritas.com/
1082. http://www.scottklement.com/mailman/listinfo/ftpapi
1083. http://scottklement.com/pipermail/ftpapi/attachments/
1084. http://www.scottklement.com/mailman/listinfo/ftpapi
1085. http://scottklement.com/pipermail/ftpapi/attachments/
1086. http://scottklement.com/pipermail/ftpapi/attachments/
1087. http://scottklement.com/pipermail/ftpapi/attachments/
1088. http://scottklement.com/mailman/listinfo/ftpapi
1089. http://disclaimer.bureauveritas.com/
1090. http://www.scottklement.com/mailman/listinfo/ftpapi
1091. http://disclaimer.bureauveritas.com/
1092. http://www.scottklement.com/mailman/listinfo/ftpapi
1093. http://disclaimer.bureauveritas.com/
1094. http://www.scottklement.com/mailman/listinfo/ftpapi
1095. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
1096. http://www.scottklement.com/mailman/listinfo/ftpapi
1097. http://disclaimer.bureauveritas.com/
1098. http://www.scottklement.com/mailman/listinfo/ftpapi
1099. http://scottklement.com/mailman/listinfo/ftpapi
1100. http://disclaimer.bureauveritas.com/
1101. http://www.scottklement.com/mailman/listinfo/ftpapi
1102. http://disclaimer.bureauveritas.com/
1103. http://www.scottklement.com/mailman/listinfo/ftpapi
1104. http://disclaimer.bureauveritas.com/
1105. http://www.scottklement.com/mailman/listinfo/ftpapi
1106. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
1107. http://www.scottklement.com/mailman/listinfo/ftpapi
1108. http://disclaimer.bureauveritas.com/
1109. http://www.scottklement.com/mailman/listinfo/ftpapi
1110. http://scottklement.com/mailman/listinfo/ftpapi
1111. http://disclaimer.bureauveritas.com/
1112. http://www.scottklement.com/mailman/listinfo/ftpapi
1113. http://disclaimer.bureauveritas.com/
1114. http://www.scottklement.com/mailman/listinfo/ftpapi
1115. http://disclaimer.bureauveritas.com/
1116. http://www.scottklement.com/mailman/listinfo/ftpapi
1117. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
1118. http://www.scottklement.com/mailman/listinfo/ftpapi
1119. http://disclaimer.bureauveritas.com/
1120. http://www.scottklement.com/mailman/listinfo/ftpapi
1121. http://scottklement.com/pipermail/ftpapi/attachments/
1122. http://www.scottklement.com/mailman/listinfo/ftpapi
1123. http://www.scottklement.com/mailman/listinfo/ftpapi
1124. http://www.scottklement.com/mailman/listinfo/ftpapi
1125. http://scottklement.com/mailman/listinfo/ftpapi
1126. http://scottklement.com/mailman/listinfo/ftpapi
1127. http://disclaimer.bureauveritas.com/
1128. http://www.scottklement.com/mailman/listinfo/ftpapi
1129. http://disclaimer.bureauveritas.com/
1130. http://www.scottklement.com/mailman/listinfo/ftpapi
1131. http://disclaimer.bureauveritas.com/
1132. http://www.scottklement.com/mailman/listinfo/ftpapi
1133. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97d
1134. http://www.scottklement.com/mailman/listinfo/ftpapi
1135. http://disclaimer.bureauveritas.com/
1136. http://scottklement.com/mailman/listinfo/ftpapi
1137. http://disclaimer.bureauveritas.com/
1138. http://www.scottklement.com/mailman/listinfo/ftpapi
1139. http://disclaimer.bureauveritas.com/
1140. http://www.scottklement.com/mailman/listinfo/ftpapi
1141. http://disclaimer.bureauveritas.com/
1142. http://www.scottklement.com/mailman/listinfo/ftpapi
1143. http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
1144. http://www.scottklement.com/mailman/listinfo/ftpapi
1145. http://disclaimer.bureauveritas.com/
1146. http://scottklement.com/mailman/listinfo/ftpapi
1147. http://disclaimer.bureauveritas.com/
1148. http://www.scottklement.com/mailman/listinfo/ftpapi
1149. http://disclaimer.bureauveritas.com/
1150. http://www.scottklement.com/mailman/listinfo/ftpapi
1151. http://disclaimer.bureauveritas.com/
1152. http://www.scottklement.com/mailman/listinfo/ftpapi
1153. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
1154. http://www.scottklement.com/mailman/listinfo/ftpapi
1155. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
1156. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
1157. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
1158. http://scottklement.com/mailman/listinfo/ftpapi
1159. http://disclaimer.bureauveritas.com/
1160. http://www.scottklement.com/mailman/listinfo/ftpapi
1161. http://disclaimer.bureauveritas.com/
1162. http://www.scottklement.com/mailman/listinfo/ftpapi
1163. http://disclaimer.bureauveritas.com/
1164. http://www.scottklement.com/mailman/listinfo/ftpapi
1165. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
1166. http://www.scottklement.com/mailman/listinfo/ftpapi
1167. http://disclaimer.bureauveritas.com/
1168. http://www.scottklement.com/mailman/listinfo/ftpapi
1169. http://scottklement.com/mailman/listinfo/ftpapi
1170. http://disclaimer.bureauveritas.com/
1171. http://www.scottklement.com/mailman/listinfo/ftpapi
1172. http://disclaimer.bureauveritas.com/
1173. http://www.scottklement.com/mailman/listinfo/ftpapi
1174. http://disclaimer.bureauveritas.com/
1175. http://www.scottklement.com/mailman/listinfo/ftpapi
1176. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
1177. http://www.scottklement.com/mailman/listinfo/ftpapi
1178. http://disclaimer.bureauveritas.com/
1179. http://www.scottklement.com/mailman/listinfo/ftpapi
1180. http://scottklement.com/mailman/listinfo/ftpapi
1181. http://disclaimer.bureauveritas.com/
1182. http://www.scottklement.com/mailman/listinfo/ftpapi
1183. http://disclaimer.bureauveritas.com/
1184. http://www.scottklement.com/mailman/listinfo/ftpapi
1185. http://disclaimer.bureauveritas.com/
1186. http://www.scottklement.com/mailman/listinfo/ftpapi
1187. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
1188. http://www.scottklement.com/mailman/listinfo/ftpapi
1189. http://disclaimer.bureauveritas.com/
1190. http://www.scottklement.com/mailman/listinfo/ftpapi
1191. http://scottklement.com/pipermail/ftpapi/attachments/20130702/26ba
1192. http://www.scottklement.com/mailman/listinfo/ftpapi
1193. http://disclaimer.bureauveritas.com/
1194. http://scottklement.com/mailman/listinfo/ftpapi
1195. http://scottklement.com/mailman/listinfo/ftpapi
1196. http://disclaimer.bureauveritas.com/
1197. http://www.scottklement.com/mailman/listinfo/ftpapi
1198. http://disclaimer.bureauveritas.com/
1199. http://www.scottklement.com/mailman/listinfo/ftpapi
1200. http://disclaimer.bureauveritas.com/
1201. http://www.scottklement.com/mailman/listinfo/ftpapi
1202. http://scottklement.com/pipermail/ftpapi/attachments/
1203. http://www.scottklement.com/mailman/listinfo/ftpapi
1204. http://disclaimer.bureauveritas.com/
1205. http://scottklement.com/mailman/listinfo/ftpapi
1206. http://disclaimer.bureauveritas.com/
1207. http://www.scottklement.com/mailman/listinfo/ftpapi
1208. http://disclaimer.bureauveritas.com/
1209. http://www.scottklement.com/mailman/listinfo/ftpapi
1210. http://disclaimer.bureauveritas.com/
1211. http://www.scottklement.com/mailman/listinfo/ftpapi
1212. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
1213. http://www.scottklement.com/mailman/listinfo/ftpapi
1214. http://disclaimer.bureauveritas.com/
1215. http://scottklement.com/mailman/listinfo/ftpapi
1216. http://disclaimer.bureauveritas.com/
1217. http://www.scottklement.com/mailman/listinfo/ftpapi
1218. http://disclaimer.bureauveritas.com/
1219. http://www.scottklement.com/mailman/listinfo/ftpapi
1220. http://disclaimer.bureauveritas.com/
1221. http://www.scottklement.com/mailman/listinfo/ftpapi
1222. http://scottklement.com/pipermail/ftpapi/attachments/
1223. http://www.scottklement.com/mailman/listinfo/ftpapi
1224. http://scottklement.com/pipermail/ftpapi/attachments/
1225. http://scottklement.com/pipermail/ftpapi/attachments/
1226. http://scottklement.com/pipermail/ftpapi/attachments/
1227. http://scottklement.com/mailman/listinfo/ftpapi
1228. http://disclaimer.bureauveritas.com/
1229. http://www.scottklement.com/mailman/listinfo/ftpapi
1230. http://disclaimer.bureauveritas.com/
1231. http://www.scottklement.com/mailman/listinfo/ftpapi
1232. http://disclaimer.bureauveritas.com/
1233. http://www.scottklement.com/mailman/listinfo/ftpapi
1234. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
1235. http://www.scottklement.com/mailman/listinfo/ftpapi
1236. http://disclaimer.bureauveritas.com/
1237. http://www.scottklement.com/mailman/listinfo/ftpapi
1238. http://scottklement.com/mailman/listinfo/ftpapi
1239. http://disclaimer.bureauveritas.com/
1240. http://www.scottklement.com/mailman/listinfo/ftpapi
1241. http://disclaimer.bureauveritas.com/
1242. http://www.scottklement.com/mailman/listinfo/ftpapi
1243. http://disclaimer.bureauveritas.com/
1244. http://www.scottklement.com/mailman/listinfo/ftpapi
1245. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
1246. http://www.scottklement.com/mailman/listinfo/ftpapi
1247. http://disclaimer.bureauveritas.com/
1248. http://www.scottklement.com/mailman/listinfo/ftpapi
1249. http://scottklement.com/mailman/listinfo/ftpapi
1250. http://disclaimer.bureauveritas.com/
1251. http://www.scottklement.com/mailman/listinfo/ftpapi
1252. http://disclaimer.bureauveritas.com/
1253. http://www.scottklement.com/mailman/listinfo/ftpapi
1254. http://disclaimer.bureauveritas.com/
1255. http://www.scottklement.com/mailman/listinfo/ftpapi
1256. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
1257. http://www.scottklement.com/mailman/listinfo/ftpapi
1258. http://disclaimer.bureauveritas.com/
1259. http://www.scottklement.com/mailman/listinfo/ftpapi
1260. http://scottklement.com/pipermail/ftpapi/attachments/
1261. http://www.scottklement.com/mailman/listinfo/ftpapi
1262. http://www.scottklement.com/mailman/listinfo/ftpapi
1263. http://www.scottklement.com/mailman/listinfo/ftpapi
1264. http://scottklement.com/pipermail/ftpapi/attachments/20130704/
1265. http://www.scottklement.com/mailman/listinfo/ftpapi
1266. http://disclaimer.bureauveritas.com/
1267. http://www.scottklement.com/mailman/listinfo/ftpapi
1268. http://www.scottklement.com/mailman/listinfo/ftpapi

GIF image

GIF image

GIF image

-----------------------------------------------------------------------
This is the FTPAPI mailing list.  To unsubscribe, please go to:
http://www.scottklement.com/mailman/listinfo/ftpapi
-----------------------------------------------------------------------