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

Re: RE Ftpapi Digest, Vol 81, Issue 8



   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
   '&'. 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 & 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 & 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]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]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]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]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]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]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]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][8]http://disclaimer.bureauveritas.com/
   > > >       2.
   [8][9]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]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]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]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]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]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]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]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]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]http://disclaimer.bureauveritas.com/
   > > >         2.
   [7][18][19]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]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]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]http://disclaimer.bureauveritas.com
   > > >     References
   > > >       1. [22][23]http://scottklement.com/mailman/listinfo/ftpapi
   > > >       2. [23][24]http://disclaimer.bureauveritas.com/
   > > >       3.
   [24][25]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >       4. [25][26]http://disclaimer.bureauveritas.com/
   > > >       5.
   [26][27]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >       6. [27][28]http://disclaimer.bureauveritas.com/
   > > >       7.
   [28][29]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >       8.
   > > >     [29]
   >
   [30]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
   > > >     de9/attachment.zip
   > > >       9.
   [30][31]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]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]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]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]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]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]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][38]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]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]http://disclaimer.bureauveritas.com/
   > > >     >    2.
   [40][41]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]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   > > >     > fea97de9/attachment.zip
   > > >     > >
   > > >     >
   > > >     > ------------------------------
   > > >     >
   > > >     >
   > > >
   >
   -----------------------------------------------------------------------
   > > >     > This is the FTPAPI mailing list digest.  To unsubscribe, go
   to:
   > > >     > [42][43]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]http://disclaimer.bureauveritas.com
   > > >     > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   > > >     >
   > > >
   >
   -----------------------------------------------------------------------
   > > >     > This is the FTPAPI mailing list.  To unsubscribe, please go
   to:
   > > >     > [44][45]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]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]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]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]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]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]http://disclaimer.bureauveritas.com/
   > > >       >    2. [7][51]
   > [52]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]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   > > >       > fea97de9/attachment.zip
   > > >       > >
   > > >       >
   > > >       > ------------------------------
   > > >       >
   > > >       >
   > > >
   > > >
   >
   -----------------------------------------------------------------------
   > > >       > This is the FTPAPI mailing list digest.  To unsubscribe,
   go
   > to:
   > > >       >
   [9][53][54]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]http://disclaimer.bureauveritas.com
   > > >       > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   > > >       >
   > > >
   > > >
   >
   -----------------------------------------------------------------------
   > > >       > This is the FTPAPI mailing list.  To unsubscribe, please
   go
   > to:
   > > >       >
   [11][55][56]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]http://scottklement.com/mailman/listinfo/ftpapi
   > > >       2. [57][58]http://disclaimer.bureauveritas.com/
   > > >       3.
   [58][59]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >       4. [59][60]http://disclaimer.bureauveritas.com/
   > > >       5.
   [60][61]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >       6. [61][62]http://disclaimer.bureauveritas.com/
   > > >       7.
   [62][63]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >       8. [63]
   > [64]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   > > >       9.
   [64][65]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >      10. [65][66]http://disclaimer.bureauveritas.com/
   > > >      11.
   [66][67]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]http://scottklement.com/pipermail/ftpapi/attachments/20130702/26ba
   > > >     65e4/attachment.obj>
   > > >     ------------------------------
   > > >
   >
   -----------------------------------------------------------------------
   > > >     This is the FTPAPI mailing list digest.  To unsubscribe, go
   to:
   > > >     [68][69]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]http://disclaimer.bureauveritas.com
   > > >
   > > > References
   > > >
   > > >     1. [71]http://scottklement.com/mailman/listinfo/ftpapi
   > > >     2. [72]http://scottklement.com/mailman/listinfo/ftpapi
   > > >     3. [73]http://disclaimer.bureauveritas.com/
   > > >     4. [74]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >     5. [75]http://disclaimer.bureauveritas.com/
   > > >     6. [76]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >     7. [77]http://disclaimer.bureauveritas.com/
   > > >     8. [78]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >     9. [79]http://scottklement.com/pipermail/ftpapi/attachments/
   > > 20130702/fea97de9/attachment.zip
   > > >    10. [80]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    11. [81]http://disclaimer.bureauveritas.com/
   > > >    12. [82]http://scottklement.com/mailman/listinfo/ftpapi
   > > >    13. [83]http://disclaimer.bureauveritas.com/
   > > >    14. [84]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    15. [85]http://disclaimer.bureauveritas.com/
   > > >    16. [86]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    17. [87]http://disclaimer.bureauveritas.com/
   > > >    18. [88]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    19.
   >
   [89]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
   > > >    20. [90]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    21. [91]http://disclaimer.bureauveritas.com/
   > > >    22. [92]http://scottklement.com/mailman/listinfo/ftpapi
   > > >    23. [93]http://disclaimer.bureauveritas.com/
   > > >    24. [94]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    25. [95]http://disclaimer.bureauveritas.com/
   > > >    26. [96]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    27. [97]http://disclaimer.bureauveritas.com/
   > > >    28. [98]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    29. [99]http://scottklement.com/pipermail/ftpapi/attachments/
   > > 20130702/fea97de9/attachment.zip
   > > >    30. [100]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    31. [101]http://scottklement.com/pipermail/ftpapi/attachments/
   > > 20130702/9279210e/attachment.gif
   > > >    32. [102]http://scottklement.com/pipermail/ftpapi/attachments/
   > > 20130702/9279210e/attachment-0001.gif
   > > >    33. [103]http://scottklement.com/pipermail/ftpapi/attachments/
   > > 20130702/9279210e/attachment-0002.gif
   > > >    34. [104]http://scottklement.com/mailman/listinfo/ftpapi
   > > >    35. [105]http://disclaimer.bureauveritas.com/
   > > >    36. [106]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    37. [107]http://disclaimer.bureauveritas.com/
   > > >    38. [108]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    39. [109]http://disclaimer.bureauveritas.com/
   > > >    40. [110]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    41.
   [111]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   > > >    42. [112]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    43. [113]http://disclaimer.bureauveritas.com/
   > > >    44. [114]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    45. [115]http://scottklement.com/mailman/listinfo/ftpapi
   > > >    46. [116]http://disclaimer.bureauveritas.com/
   > > >    47. [117]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    48. [118]http://disclaimer.bureauveritas.com/
   > > >    49. [119]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    50. [120]http://disclaimer.bureauveritas.com/
   > > >    51. [121]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    52.
   [122]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   > > >    53. [123]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    54. [124]http://disclaimer.bureauveritas.com/
   > > >    55. [125]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    56. [126]http://scottklement.com/mailman/listinfo/ftpapi
   > > >    57. [127]http://disclaimer.bureauveritas.com/
   > > >    58. [128]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    59. [129]http://disclaimer.bureauveritas.com/
   > > >    60. [130]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    61. [131]http://disclaimer.bureauveritas.com/
   > > >    62. [132]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    63.
   [133]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   > > >    64. [134]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    65. [135]http://disclaimer.bureauveritas.com/
   > > >    66. [136]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >    67. [137]http://scottklement.com/pipermail/ftpapi/attachments/
   > > 20130702/26ba65e4/attachment.obj
   > > >    68. [138]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >
   > > >
   > > >
   > > >
   >
   -----------------------------------------------------------------------
   > > > This is the FTPAPI mailing list.  To unsubscribe, please go to:
   > > > [139]http://www.scottklement.com/mailman/listinfo/ftpapi
   > > >
   >
   -----------------------------------------------------------------------
   > > >
   > >
   -----------------------------------------------------------------------
   > > This is the FTPAPI mailing list.  To unsubscribe, please go to:
   > > [140]http://www.scottklement.com/mailman/listinfo/ftpapi
   > >
   -----------------------------------------------------------------------
   >
   >
   > --
   > 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]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]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][143]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]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]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]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]http://disclaimer.bureauveritas.com/
   >    > >       2.
   [8][8][148]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]http://scottklement.com/pipermail/ftpapi/attachments/2013070
   2/fea
   >    97d
   >    > >     e9/attachment.zip
   >    > >     >
   >    > >     ------------------------------
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >     This is the FTPAPI mailing list digest.  To unsubscribe,
   go to:
   >    > >
   [10][10][150]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]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]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]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]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][155]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]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][157]http://disclaimer.bureauveritas.com/
   >    > >         2.
   >
   [7][18][18][158]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][159]http://scottklement.com/pipermail/ftpapi/attachments/2
   01307
   >    02/f
   >    > >     ea97
   >    > >       de9/attachment.zip>
   >    > >       ------------------------------
   >    > >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >       This is the FTPAPI mailing list digest.  To unsubscribe,
   go
   >    to:
   >    > >
   >
   [9][20][20][160]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][161]http://disclaimer.bureauveritas.com
   >    > >     References
   >    > >       1.
   [22][22][162]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >       2. [23][23][163]http://disclaimer.bureauveritas.com/
   >    > >       3.
   >    [24][24][164]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >       4. [25][25][165]http://disclaimer.bureauveritas.com/
   >    > >       5.
   >    [26][26][166]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >       6. [27][27][167]http://disclaimer.bureauveritas.com/
   >    > >       7.
   >    [28][28][168]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >       8.
   >    > >
   >
   [29][29][169]http://scottklement.com/pipermail/ftpapi/attachments/20130
   702/f
   >    ea97
   >    > >     de9/attachment.zip
   >    > >       9.
   >    [30][30][170]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]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]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]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]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]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]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]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]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][179]http://disclaimer.bureauveritas.com/
   >    > >     >    2.
   >    [40][40][180]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]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]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]http://disclaimer.bureauveritas.com
   >    > >     > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   >    > >     >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >     > This is the FTPAPI mailing list.  To unsubscribe, please
   go
   >    to:
   >    > >     >
   [44][44][184]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][185]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]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]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][188]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]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][190]http://disclaimer.bureauveritas.com/
   >    > >       >    2.
   >
   [7][51][51][191]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][192]http://scottklement.com/pipermail/ftpapi/attachments/20
   13070
   >    2/
   >    > >       > fea97de9/attachment.zip
   >    > >       > >
   >    > >       >
   >    > >       > ------------------------------
   >    > >       >
   >    > >       >
   >    > >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >       > This is the FTPAPI mailing list digest.  To
   unsubscribe, go
   >    to:
   >    > >       >
   >
   [9][53][53][193]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][194]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]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][196]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >       2. [57][57][197]http://disclaimer.bureauveritas.com/
   >    > >       3.
   >    [58][58][198]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >       4. [59][59][199]http://disclaimer.bureauveritas.com/
   >    > >       5.
   >    [60][60][200]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >       6. [61][61][201]http://disclaimer.bureauveritas.com/
   >    > >       7.
   >    [62][62][202]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >       8.
   >
   [63][63][203]http://scottklement.com/pipermail/ftpapi/attachments/20130
   702/
   >    > >       9.
   >    [64][64][204]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >      10. [65][65][205]http://disclaimer.bureauveritas.com/
   >    > >      11.
   >    [66][66][206]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]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]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]http://disclaimer.bureauveritas.com
   >    > >
   >    > > References
   >    > >
   >    > >     1.
   [70][210]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >     2.
   [71][211]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >     3. [72][212]http://disclaimer.bureauveritas.com/
   >    > >     4.
   [73][213]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >     5. [74][214]http://disclaimer.bureauveritas.com/
   >    > >     6.
   [75][215]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >     7. [76][216]http://disclaimer.bureauveritas.com/
   >    > >     8.
   [77][217]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >     9.
   [78][218]http://scottklement.com/pipermail/ftpapi/attachments/
   >    > 20130702/fea97de9/attachment.zip
   >    > >    10.
   [79][219]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    11. [80][220]http://disclaimer.bureauveritas.com/
   >    > >    12.
   [81][221]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >    13. [82][222]http://disclaimer.bureauveritas.com/
   >    > >    14.
   [83][223]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    15. [84][224]http://disclaimer.bureauveritas.com/
   >    > >    16.
   [85][225]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    17. [86][226]http://disclaimer.bureauveritas.com/
   >    > >    18.
   [87][227]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    19.
   >
   [88][228]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   fea97
   >    > >    20.
   [89][229]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    21. [90][230]http://disclaimer.bureauveritas.com/
   >    > >    22.
   [91][231]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >    23. [92][232]http://disclaimer.bureauveritas.com/
   >    > >    24.
   [93][233]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    25. [94][234]http://disclaimer.bureauveritas.com/
   >    > >    26.
   [95][235]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    27. [96][236]http://disclaimer.bureauveritas.com/
   >    > >    28.
   [97][237]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    29.
   [98][238]http://scottklement.com/pipermail/ftpapi/attachments/
   >    > 20130702/fea97de9/attachment.zip
   >    > >    30.
   [99][239]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    31.
   [100][240]http://scottklement.com/pipermail/ftpapi/attachments/
   >    > 20130702/9279210e/attachment.gif
   >    > >    32.
   [101][241]http://scottklement.com/pipermail/ftpapi/attachments/
   >    > 20130702/9279210e/attachment-0001.gif
   >    > >    33.
   [102][242]http://scottklement.com/pipermail/ftpapi/attachments/
   >    > 20130702/9279210e/attachment-0002.gif
   >    > >    34.
   [103][243]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >    35. [104][244]http://disclaimer.bureauveritas.com/
   >    > >    36.
   [105][245]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    37. [106][246]http://disclaimer.bureauveritas.com/
   >    > >    38.
   [107][247]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    39. [108][248]http://disclaimer.bureauveritas.com/
   >    > >    40.
   [109][249]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    41.
   >
   [110][250]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /
   >    > >    42.
   [111][251]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    43. [112][252]http://disclaimer.bureauveritas.com/
   >    > >    44.
   [113][253]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    45.
   [114][254]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >    46. [115][255]http://disclaimer.bureauveritas.com/
   >    > >    47.
   [116][256]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    48. [117][257]http://disclaimer.bureauveritas.com/
   >    > >    49.
   [118][258]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    50. [119][259]http://disclaimer.bureauveritas.com/
   >    > >    51.
   [120][260]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    52.
   >
   [121][261]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /
   >    > >    53.
   [122][262]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    54. [123][263]http://disclaimer.bureauveritas.com/
   >    > >    55.
   [124][264]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    56.
   [125][265]http://scottklement.com/mailman/listinfo/ftpapi
   >    > >    57. [126][266]http://disclaimer.bureauveritas.com/
   >    > >    58.
   [127][267]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    59. [128][268]http://disclaimer.bureauveritas.com/
   >    > >    60.
   [129][269]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    61. [130][270]http://disclaimer.bureauveritas.com/
   >    > >    62.
   [131][271]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    63.
   >
   [132][272]http://scottklement.com/pipermail/ftpapi/attachments/20130702
   /
   >    > >    64.
   [133][273]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    65. [134][274]http://disclaimer.bureauveritas.com/
   >    > >    66.
   [135][275]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >    67.
   [136][276]http://scottklement.com/pipermail/ftpapi/attachments/
   >    > 20130702/26ba65e4/attachment.obj
   >    > >    68.
   [137][277]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >
   >    > >
   >    > >
   >    > >
   >
   -----------------------------------------------------------------------
   >    > > This is the FTPAPI mailing list.  To unsubscribe, please go
   to:
   >    > > [138][278]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    > >
   >
   -----------------------------------------------------------------------
   >    > >
   >    >
   >
   -----------------------------------------------------------------------
   >    > This is the FTPAPI mailing list.  To unsubscribe, please go to:
   >    > [139][279]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]http://scottklement.com/mailman/listinfo/ftpapi
   >    2. [281]http://scottklement.com/mailman/listinfo/ftpapi
   >    3. [282]http://disclaimer.bureauveritas.com/
   >    4. [283]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    5. [284]http://disclaimer.bureauveritas.com/
   >    6. [285]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    7. [286]http://disclaimer.bureauveritas.com/
   >    8. [287]http://www.scottklement.com/mailman/listinfo/ftpapi
   >    9.
   [288]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea9
   7d
   >   10. [289]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   11. [290]http://disclaimer.bureauveritas.com/
   >   12. [291]http://scottklement.com/mailman/listinfo/ftpapi
   >   13. [292]http://disclaimer.bureauveritas.com/
   >   14. [293]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   15. [294]http://disclaimer.bureauveritas.com/
   >   16. [295]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   17. [296]http://disclaimer.bureauveritas.com/
   >   18. [297]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   19.
   [298]http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
   >   20. [299]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   21. [300]http://disclaimer.bureauveritas.com/
   >   22. [301]http://scottklement.com/mailman/listinfo/ftpapi
   >   23. [302]http://disclaimer.bureauveritas.com/
   >   24. [303]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   25. [304]http://disclaimer.bureauveritas.com/
   >   26. [305]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   27. [306]http://disclaimer.bureauveritas.com/
   >   28. [307]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   29.
   [308]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea9
   7
   >   30. [309]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   31.
   [310]http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
   >   32.
   [311]http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
   >   33.
   [312]http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
   >   34. [313]http://scottklement.com/mailman/listinfo/ftpapi
   >   35. [314]http://disclaimer.bureauveritas.com/
   >   36. [315]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   37. [316]http://disclaimer.bureauveritas.com/
   >   38. [317]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   39. [318]http://disclaimer.bureauveritas.com/
   >   40. [319]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   41.
   [320]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >   42. [321]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   43. [322]http://disclaimer.bureauveritas.com/
   >   44. [323]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   45. [324]http://scottklement.com/mailman/listinfo/ftpapi
   >   46. [325]http://disclaimer.bureauveritas.com/
   >   47. [326]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   48. [327]http://disclaimer.bureauveritas.com/
   >   49. [328]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   50. [329]http://disclaimer.bureauveritas.com/
   >   51. [330]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   52.
   [331]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >   53. [332]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   54. [333]http://disclaimer.bureauveritas.com/
   >   55. [334]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   56. [335]http://scottklement.com/mailman/listinfo/ftpapi
   >   57. [336]http://disclaimer.bureauveritas.com/
   >   58. [337]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   59. [338]http://disclaimer.bureauveritas.com/
   >   60. [339]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   61. [340]http://disclaimer.bureauveritas.com/
   >   62. [341]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   63.
   [342]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >   64. [343]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   65. [344]http://disclaimer.bureauveritas.com/
   >   66. [345]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   67.
   [346]http://scottklement.com/pipermail/ftpapi/attachments/20130702/26ba
   >   68. [347]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   69. [348]http://disclaimer.bureauveritas.com/
   >   70. [349]http://scottklement.com/mailman/listinfo/ftpapi
   >   71. [350]http://scottklement.com/mailman/listinfo/ftpapi
   >   72. [351]http://disclaimer.bureauveritas.com/
   >   73. [352]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   74. [353]http://disclaimer.bureauveritas.com/
   >   75. [354]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   76. [355]http://disclaimer.bureauveritas.com/
   >   77. [356]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   78. [357]http://scottklement.com/pipermail/ftpapi/attachments/
   >   79. [358]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   80. [359]http://disclaimer.bureauveritas.com/
   >   81. [360]http://scottklement.com/mailman/listinfo/ftpapi
   >   82. [361]http://disclaimer.bureauveritas.com/
   >   83. [362]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   84. [363]http://disclaimer.bureauveritas.com/
   >   85. [364]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   86. [365]http://disclaimer.bureauveritas.com/
   >   87. [366]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   88.
   [367]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea9
   7
   >   89. [368]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   90. [369]http://disclaimer.bureauveritas.com/
   >   91. [370]http://scottklement.com/mailman/listinfo/ftpapi
   >   92. [371]http://disclaimer.bureauveritas.com/
   >   93. [372]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   94. [373]http://disclaimer.bureauveritas.com/
   >   95. [374]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   96. [375]http://disclaimer.bureauveritas.com/
   >   97. [376]http://www.scottklement.com/mailman/listinfo/ftpapi
   >   98. [377]http://scottklement.com/pipermail/ftpapi/attachments/
   >   99. [378]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  100. [379]http://scottklement.com/pipermail/ftpapi/attachments/
   >  101. [380]http://scottklement.com/pipermail/ftpapi/attachments/
   >  102. [381]http://scottklement.com/pipermail/ftpapi/attachments/
   >  103. [382]http://scottklement.com/mailman/listinfo/ftpapi
   >  104. [383]http://disclaimer.bureauveritas.com/
   >  105. [384]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  106. [385]http://disclaimer.bureauveritas.com/
   >  107. [386]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  108. [387]http://disclaimer.bureauveritas.com/
   >  109. [388]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  110.
   [389]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >  111. [390]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  112. [391]http://disclaimer.bureauveritas.com/
   >  113. [392]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  114. [393]http://scottklement.com/mailman/listinfo/ftpapi
   >  115. [394]http://disclaimer.bureauveritas.com/
   >  116. [395]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  117. [396]http://disclaimer.bureauveritas.com/
   >  118. [397]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  119. [398]http://disclaimer.bureauveritas.com/
   >  120. [399]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  121.
   [400]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >  122. [401]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  123. [402]http://disclaimer.bureauveritas.com/
   >  124. [403]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  125. [404]http://scottklement.com/mailman/listinfo/ftpapi
   >  126. [405]http://disclaimer.bureauveritas.com/
   >  127. [406]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  128. [407]http://disclaimer.bureauveritas.com/
   >  129. [408]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  130. [409]http://disclaimer.bureauveritas.com/
   >  131. [410]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  132.
   [411]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   >  133. [412]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  134. [413]http://disclaimer.bureauveritas.com/
   >  135. [414]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  136. [415]http://scottklement.com/pipermail/ftpapi/attachments/
   >  137. [416]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  138. [417]http://www.scottklement.com/mailman/listinfo/ftpapi
   >  139. [418]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]http://scottklement.com/pipermail/ftpapi/attachments/20130704/
   > b179b67e/attachment.obj
   > >
   >
   > ------------------------------
   >
   >
   -----------------------------------------------------------------------
   > This is the FTPAPI mailing list digest.  To unsubscribe, go to:
   > [420]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]http://disclaimer.bureauveritas.com

   > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   >
   -----------------------------------------------------------------------
   > This is the FTPAPI mailing list.  To unsubscribe, please go to:
   > [422]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. http://scottklement.com/mailman/listinfo/ftpapi
   2. http://scottklement.com/mailman/listinfo/ftpapi
   3. http://scottklement.com/mailman/listinfo/ftpapi
   4. http://disclaimer.bureauveritas.com/
   5. http://www.scottklement.com/mailman/listinfo/ftpapi
   6. http://disclaimer.bureauveritas.com/
   7. http://www.scottklement.com/mailman/listinfo/ftpapi
   8. http://disclaimer.bureauveritas.com/
   9. http://www.scottklement.com/mailman/listinfo/ftpapi
  10. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97d
  11. http://www.scottklement.com/mailman/listinfo/ftpapi
  12. http://disclaimer.bureauveritas.com/
  13. http://scottklement.com/mailman/listinfo/ftpapi
  14. http://disclaimer.bureauveritas.com/
  15. http://www.scottklement.com/mailman/listinfo/ftpapi
  16. http://disclaimer.bureauveritas.com/
  17. http://www.scottklement.com/mailman/listinfo/ftpapi
  18. http://disclaimer.bureauveritas.com/
  19. http://www.scottklement.com/mailman/listinfo/ftpapi
  20. http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
  21. http://www.scottklement.com/mailman/listinfo/ftpapi
  22. http://disclaimer.bureauveritas.com/
  23. http://scottklement.com/mailman/listinfo/ftpapi
  24. http://disclaimer.bureauveritas.com/
  25. http://www.scottklement.com/mailman/listinfo/ftpapi
  26. http://disclaimer.bureauveritas.com/
  27. http://www.scottklement.com/mailman/listinfo/ftpapi
  28. http://disclaimer.bureauveritas.com/
  29. http://www.scottklement.com/mailman/listinfo/ftpapi
  30. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
  31. http://www.scottklement.com/mailman/listinfo/ftpapi
  32. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
  33. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
  34. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
  35. http://scottklement.com/mailman/listinfo/ftpapi
  36. http://disclaimer.bureauveritas.com/
  37. http://www.scottklement.com/mailman/listinfo/ftpapi
  38. http://disclaimer.bureauveritas.com/
  39. http://www.scottklement.com/mailman/listinfo/ftpapi
  40. http://disclaimer.bureauveritas.com/
  41. http://www.scottklement.com/mailman/listinfo/ftpapi
  42. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
  43. http://www.scottklement.com/mailman/listinfo/ftpapi
  44. http://disclaimer.bureauveritas.com/
  45. http://www.scottklement.com/mailman/listinfo/ftpapi
  46. http://scottklement.com/mailman/listinfo/ftpapi
  47. http://disclaimer.bureauveritas.com/
  48. http://www.scottklement.com/mailman/listinfo/ftpapi
  49. http://disclaimer.bureauveritas.com/
  50. http://www.scottklement.com/mailman/listinfo/ftpapi
  51. http://disclaimer.bureauveritas.com/
  52. http://www.scottklement.com/mailman/listinfo/ftpapi
  53. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
  54. http://www.scottklement.com/mailman/listinfo/ftpapi
  55. http://disclaimer.bureauveritas.com/
  56. http://www.scottklement.com/mailman/listinfo/ftpapi
  57. http://scottklement.com/mailman/listinfo/ftpapi
  58. http://disclaimer.bureauveritas.com/
  59. http://www.scottklement.com/mailman/listinfo/ftpapi
  60. http://disclaimer.bureauveritas.com/
  61. http://www.scottklement.com/mailman/listinfo/ftpapi
  62. http://disclaimer.bureauveritas.com/
  63. http://www.scottklement.com/mailman/listinfo/ftpapi
  64. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
  65. http://www.scottklement.com/mailman/listinfo/ftpapi
  66. http://disclaimer.bureauveritas.com/
  67. http://www.scottklement.com/mailman/listinfo/ftpapi
  68. http://scottklement.com/pipermail/ftpapi/attachments/20130702/26ba
  69. http://www.scottklement.com/mailman/listinfo/ftpapi
  70. http://disclaimer.bureauveritas.com/
  71. http://scottklement.com/mailman/listinfo/ftpapi
  72. http://scottklement.com/mailman/listinfo/ftpapi
  73. http://disclaimer.bureauveritas.com/
  74. http://www.scottklement.com/mailman/listinfo/ftpapi
  75. http://disclaimer.bureauveritas.com/
  76. http://www.scottklement.com/mailman/listinfo/ftpapi
  77. http://disclaimer.bureauveritas.com/
  78. http://www.scottklement.com/mailman/listinfo/ftpapi
  79. http://scottklement.com/pipermail/ftpapi/attachments/
  80. http://www.scottklement.com/mailman/listinfo/ftpapi
  81. http://disclaimer.bureauveritas.com/
  82. http://scottklement.com/mailman/listinfo/ftpapi
  83. http://disclaimer.bureauveritas.com/
  84. http://www.scottklement.com/mailman/listinfo/ftpapi
  85. http://disclaimer.bureauveritas.com/
  86. http://www.scottklement.com/mailman/listinfo/ftpapi
  87. http://disclaimer.bureauveritas.com/
  88. http://www.scottklement.com/mailman/listinfo/ftpapi
  89. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
  90. http://www.scottklement.com/mailman/listinfo/ftpapi
  91. http://disclaimer.bureauveritas.com/
  92. http://scottklement.com/mailman/listinfo/ftpapi
  93. http://disclaimer.bureauveritas.com/
  94. http://www.scottklement.com/mailman/listinfo/ftpapi
  95. http://disclaimer.bureauveritas.com/
  96. http://www.scottklement.com/mailman/listinfo/ftpapi
  97. http://disclaimer.bureauveritas.com/
  98. http://www.scottklement.com/mailman/listinfo/ftpapi
  99. http://scottklement.com/pipermail/ftpapi/attachments/
 100. http://www.scottklement.com/mailman/listinfo/ftpapi
 101. http://scottklement.com/pipermail/ftpapi/attachments/
 102. http://scottklement.com/pipermail/ftpapi/attachments/
 103. http://scottklement.com/pipermail/ftpapi/attachments/
 104. http://scottklement.com/mailman/listinfo/ftpapi
 105. http://disclaimer.bureauveritas.com/
 106. http://www.scottklement.com/mailman/listinfo/ftpapi
 107. http://disclaimer.bureauveritas.com/
 108. http://www.scottklement.com/mailman/listinfo/ftpapi
 109. http://disclaimer.bureauveritas.com/
 110. http://www.scottklement.com/mailman/listinfo/ftpapi
 111. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 112. http://www.scottklement.com/mailman/listinfo/ftpapi
 113. http://disclaimer.bureauveritas.com/
 114. http://www.scottklement.com/mailman/listinfo/ftpapi
 115. http://scottklement.com/mailman/listinfo/ftpapi
 116. http://disclaimer.bureauveritas.com/
 117. http://www.scottklement.com/mailman/listinfo/ftpapi
 118. http://disclaimer.bureauveritas.com/
 119. http://www.scottklement.com/mailman/listinfo/ftpapi
 120. http://disclaimer.bureauveritas.com/
 121. http://www.scottklement.com/mailman/listinfo/ftpapi
 122. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 123. http://www.scottklement.com/mailman/listinfo/ftpapi
 124. http://disclaimer.bureauveritas.com/
 125. http://www.scottklement.com/mailman/listinfo/ftpapi
 126. http://scottklement.com/mailman/listinfo/ftpapi
 127. http://disclaimer.bureauveritas.com/
 128. http://www.scottklement.com/mailman/listinfo/ftpapi
 129. http://disclaimer.bureauveritas.com/
 130. http://www.scottklement.com/mailman/listinfo/ftpapi
 131. http://disclaimer.bureauveritas.com/
 132. http://www.scottklement.com/mailman/listinfo/ftpapi
 133. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 134. http://www.scottklement.com/mailman/listinfo/ftpapi
 135. http://disclaimer.bureauveritas.com/
 136. http://www.scottkleme/
 137. http://scottklement.com/pipermail/ftpapi/attachments/
 138. http://www.scottklement.com/mailman/listinfo/ftpapi
 139. http://www.scottklement.com/mailman/listinfo/ftpapi
 140. http://www.scottklement.com/mailman/listinfo/ftpapi
 141. http://scottklement.com/mailman/listinfo/ftpapi
 142. http://scottklement.com/mailman/listinfo/ftpapi
 143. http://disclaimer.bureauveritas.com/
 144. http://www.scottklement.com/mailman/listinfo/ftpapi
 145. http://disclaimer.bureauveritas.com/
 146. http://www.scottklement.com/mailman/listinfo/ftpapi
 147. http://disclaimer.bureauveritas.com/
 148. http://www.scottklement.com/mailman/listinfo/ftpapi
 149. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea
 150. http://www.scottklement.com/mailman/listinfo/ftpapi
 151. http://disclaimer.bureauveritas.com/
 152. http://scottklement.com/mailman/listinfo/ftpapi
 153. http://disclaimer.bureauveritas.com/
 154. http://www.scottklement.com/mailman/listinfo/ftpapi
 155. http://disclaimer.bureauveritas.com/
 156. http://www.scottklement.com/mailman/listinfo/ftpapi
 157. http://disclaimer.bureauveritas.com/
 158. http://www.scottklement.com/mailman/listinfo/ftpapi
 159. http://scottklement.com/pipermail/ftpapi/attachments/201307
 160. http://www.scottklement.com/mailman/listinfo/ftpapi
 161. http://disclaimer.bureauveritas.com/
 162. http://scottklement.com/mailman/listinfo/ftpapi
 163. http://disclaimer.bureauveritas.com/
 164. http://www.scottklement.com/mailman/listinfo/ftpapi
 165. http://disclaimer.bureauveritas.com/
 166. http://www.scottklement.com/mailman/listinfo/ftpapi
 167. http://disclaimer.bureauveritas.com/
 168. http://www.scottklement.com/mailman/listinfo/ftpapi
 169. http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
 170. http://www.scottklement.com/mailman/listinfo/ftpapi
 171. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 172. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 173. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 174. http://scottklement.com/mailman/listinfo/ftpapi
 175. http://disclaimer.bureauveritas.com/
 176. http://www.scottklement.com/mailman/listinfo/ftpapi
 177. http://disclaimer.bureauveritas.com/
 178. http://www.scottklement.com/mailman/listinfo/ftpapi
 179. http://disclaimer.bureauveritas.com/
 180. http://www.scottklement.com/mailman/listinfo/ftpapi
 181. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 182. http://www.scottklement.com/mailman/listinfo/ftpapi
 183. http://disclaimer.bureauveritas.com/
 184. http://www.scottklement.com/mailman/listinfo/ftpapi
 185. http://scottklement.com/mailman/listinfo/ftpapi
 186. http://disclaimer.bureauveritas.com/
 187. http://www.scottklement.com/mailman/listinfo/ftpapi
 188. http://disclaimer.bureauveritas.com/
 189. http://www.scottklement.com/mailman/listinfo/ftpapi
 190. http://disclaimer.bureauveritas.com/
 191. http://www.scottklement.com/mailman/listinfo/ftpapi
 192. http://scottklement.com/pipermail/ftpapi/attachments/2013070
 193. http://www.scottklement.com/mailman/listinfo/ftpapi
 194. http://disclaimer.bureauveritas.com/
 195. http://www.scottklement.com/mailman/listinfo/ftpapi
 196. http://scottklement.com/mailman/listinfo/ftpapi
 197. http://disclaimer.bureauveritas.com/
 198. http://www.scottklement.com/mailman/listinfo/ftpapi
 199. http://disclaimer.bureauveritas.com/
 200. http://www.scottklement.com/mailman/listinfo/ftpapi
 201. http://disclaimer.bureauveritas.com/
 202. http://www.scottklement.com/mailman/listinfo/ftpapi
 203. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 204. http://www.scottklement.com/mailman/listinfo/ftpapi
 205. http://disclaimer.bureauveritas.com/
 206. http://www.scottklement.com/mailman/listinfo/ftpapi
 207. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 208. http://www.scottklement.com/mailman/listinfo/ftpapi
 209. http://disclaimer.bureauveritas.com/
 210. http://scottklement.com/mailman/listinfo/ftpapi
 211. http://scottklement.com/mailman/listinfo/ftpapi
 212. http://disclaimer.bureauveritas.com/
 213. http://www.scottklement.com/mailman/listinfo/ftpapi
 214. http://disclaimer.bureauveritas.com/
 215. http://www.scottklement.com/mailman/listinfo/ftpapi
 216. http://disclaimer.bureauveritas.com/
 217. http://www.scottklement.com/mailman/listinfo/ftpapi
 218. http://scottklement.com/pipermail/ftpapi/attachments/
 219. http://www.scottklement.com/mailman/listinfo/ftpapi
 220. http://disclaimer.bureauveritas.com/
 221. http://scottklement.com/mailman/listinfo/ftpapi
 222. http://disclaimer.bureauveritas.com/
 223. http://www.scottklement.com/mailman/listinfo/ftpapi
 224. http://disclaimer.bureauveritas.com/
 225. http://www.scottklement.com/mailman/listinfo/ftpapi
 226. http://disclaimer.bureauveritas.com/
 227. http://www.scottklement.com/mailman/listinfo/ftpapi
 228. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
 229. http://www.scottklement.com/mailman/listinfo/ftpapi
 230. http://disclaimer.bureauveritas.com/
 231. http://scottklement.com/mailman/listinfo/ftpapi
 232. http://disclaimer.bureauveritas.com/
 233. http://www.scottklement.com/mailman/listinfo/ftpapi
 234. http://disclaimer.bureauveritas.com/
 235. http://www.scottklement.com/mailman/listinfo/ftpapi
 236. http://disclaimer.bureauveritas.com/
 237. http://www.scottklement.com/mailman/listinfo/ftpapi
 238. http://scottklement.com/pipermail/ftpapi/attachments/
 239. http://www.scottklement.com/mailman/listinfo/ftpapi
 240. http://scottklement.com/pipermail/ftpapi/attachments/
 241. http://scottklement.com/pipermail/ftpapi/attachments/
 242. http://scottklement.com/pipermail/ftpapi/attachments/
 243. http://scottklement.com/mailman/listinfo/ftpapi
 244. http://disclaimer.bureauveritas.com/
 245. http://www.scottklement.com/mailman/listinfo/ftpapi
 246. http://disclaimer.bureauveritas.com/
 247. http://www.scottklement.com/mailman/listinfo/ftpapi
 248. http://disclaimer.bureauveritas.com/
 249. http://www.scottklement.com/mailman/listinfo/ftpapi
 250. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 251. http://www.scottklement.com/mailman/listinfo/ftpapi
 252. http://disclaimer.bureauveritas.com/
 253. http://www.scottklement.com/mailman/listinfo/ftpapi
 254. http://scottklement.com/mailman/listinfo/ftpapi
 255. http://disclaimer.bureauveritas.com/
 256. http://www.scottklement.com/mailman/listinfo/ftpapi
 257. http://disclaimer.bureauveritas.com/
 258. http://www.scottklement.com/mailman/listinfo/ftpapi
 259. http://disclaimer.bureauveritas.com/
 260. http://www.scottklement.com/mailman/listinfo/ftpapi
 261. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 262. http://www.scottklement.com/mailman/listinfo/ftpapi
 263. http://disclaimer.bureauveritas.com/
 264. http://www.scottklement.com/mailman/listinfo/ftpapi
 265. http://scottklement.com/mailman/listinfo/ftpapi
 266. http://disclaimer.bureauveritas.com/
 267. http://www.scottklement.com/mailman/listinfo/ftpapi
 268. http://disclaimer.bureauveritas.com/
 269. http://www.scottklement.com/mailman/listinfo/ftpapi
 270. http://disclaimer.bureauveritas.com/
 271. http://www.scottklement.com/mailman/listinfo/ftpapi
 272. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 273. http://www.scottklement.com/mailman/listinfo/ftpapi
 274. http://disclaimer.bureauveritas.com/
 275. http://www.scottklement.com/mailman/listinfo/ftpapi
 276. http://scottklement.com/pipermail/ftpapi/attachments/
 277. http://www.scottklement.com/mailman/listinfo/ftpapi
 278. http://www.scottklement.com/mailman/listinfo/ftpapi
 279. http://www.scottklement.com/mailman/listinfo/ftpapi
 280. http://scottklement.com/mailman/listinfo/ftpapi
 281. http://scottklement.com/mailman/listinfo/ftpapi
 282. http://disclaimer.bureauveritas.com/
 283. http://www.scottklement.com/mailman/listinfo/ftpapi
 284. http://disclaimer.bureauveritas.com/
 285. http://www.scottklement.com/mailman/listinfo/ftpapi
 286. http://disclaimer.bureauveritas.com/
 287. http://www.scottklement.com/mailman/listinfo/ftpapi
 288. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97d
 289. http://www.scottklement.com/mailman/listinfo/ftpapi
 290. http://disclaimer.bureauveritas.com/
 291. http://scottklement.com/mailman/listinfo/ftpapi
 292. http://disclaimer.bureauveritas.com/
 293. http://www.scottklement.com/mailman/listinfo/ftpapi
 294. http://disclaimer.bureauveritas.com/
 295. http://www.scottklement.com/mailman/listinfo/ftpapi
 296. http://disclaimer.bureauveritas.com/
 297. http://www.scottklement.com/mailman/listinfo/ftpapi
 298. http://scottklement.com/pipermail/ftpapi/attachments/20130702/f
 299. http://www.scottklement.com/mailman/listinfo/ftpapi
 300. http://disclaimer.bureauveritas.com/
 301. http://scottklement.com/mailman/listinfo/ftpapi
 302. http://disclaimer.bureauveritas.com/
 303. http://www.scottklement.com/mailman/listinfo/ftpapi
 304. http://disclaimer.bureauveritas.com/
 305. http://www.scottklement.com/mailman/listinfo/ftpapi
 306. http://disclaimer.bureauveritas.com/
 307. http://www.scottklement.com/mailman/listinfo/ftpapi
 308. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
 309. http://www.scottklement.com/mailman/listinfo/ftpapi
 310. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
 311. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
 312. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279
 313. http://scottklement.com/mailman/listinfo/ftpapi
 314. http://disclaimer.bureauveritas.com/
 315. http://www.scottklement.com/mailman/listinfo/ftpapi
 316. http://disclaimer.bureauveritas.com/
 317. http://www.scottklement.com/mailman/listinfo/ftpapi
 318. http://disclaimer.bureauveritas.com/
 319. http://www.scottklement.com/mailman/listinfo/ftpapi
 320. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 321. http://www.scottklement.com/mailman/listinfo/ftpapi
 322. http://disclaimer.bureauveritas.com/
 323. http://www.scottklement.com/mailman/listinfo/ftpapi
 324. http://scottklement.com/mailman/listinfo/ftpapi
 325. http://disclaimer.bureauveritas.com/
 326. http://www.scottklement.com/mailman/listinfo/ftpapi
 327. http://disclaimer.bureauveritas.com/
 328. http://www.scottklement.com/mailman/listinfo/ftpapi
 329. http://disclaimer.bureauveritas.com/
 330. http://www.scottklement.com/mailman/listinfo/ftpapi
 331. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 332. http://www.scottklement.com/mailman/listinfo/ftpapi
 333. http://disclaimer.bureauveritas.com/
 334. http://www.scottklement.com/mailman/listinfo/ftpapi
 335. http://scottklement.com/mailman/listinfo/ftpapi
 336. http://disclaimer.bureauveritas.com/
 337. http://www.scottklement.com/mailman/listinfo/ftpapi
 338. http://disclaimer.bureauveritas.com/
 339. http://www.scottklement.com/mailman/listinfo/ftpapi
 340. http://disclaimer.bureauveritas.com/
 341. http://www.scottklement.com/mailman/listinfo/ftpapi
 342. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 343. http://www.scottklement.com/mailman/listinfo/ftpapi
 344. http://disclaimer.bureauveritas.com/
 345. http://www.scottklement.com/mailman/listinfo/ftpapi
 346. http://scottklement.com/pipermail/ftpapi/attachments/20130702/26ba
 347. http://www.scottklement.com/mailman/listinfo/ftpapi
 348. http://disclaimer.bureauveritas.com/
 349. http://scottklement.com/mailman/listinfo/ftpapi
 350. http://scottklement.com/mailman/listinfo/ftpapi
 351. http://disclaimer.bureauveritas.com/
 352. http://www.scottklement.com/mailman/listinfo/ftpapi
 353. http://disclaimer.bureauveritas.com/
 354. http://www.scottklement.com/mailman/listinfo/ftpapi
 355. http://disclaimer.bureauveritas.com/
 356. http://www.scottklement.com/mailman/listinfo/ftpapi
 357. http://scottklement.com/pipermail/ftpapi/attachments/
 358. http://www.scottklement.com/mailman/listinfo/ftpapi
 359. http://disclaimer.bureauveritas.com/
 360. http://scottklement.com/mailman/listinfo/ftpapi
 361. http://disclaimer.bureauveritas.com/
 362. http://www.scottklement.com/mailman/listinfo/ftpapi
 363. http://disclaimer.bureauveritas.com/
 364. http://www.scottklement.com/mailman/listinfo/ftpapi
 365. http://disclaimer.bureauveritas.com/
 366. http://www.scottklement.com/mailman/listinfo/ftpapi
 367. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
 368. http://www.scottklement.com/mailman/listinfo/ftpapi
 369. http://disclaimer.bureauveritas.com/
 370. http://scottklement.com/mailman/listinfo/ftpapi
 371. http://disclaimer.bureauveritas.com/
 372. http://www.scottklement.com/mailman/listinfo/ftpapi
 373. http://disclaimer.bureauveritas.com/
 374. http://www.scottklement.com/mailman/listinfo/ftpapi
 375. http://disclaimer.bureauveritas.com/
 376. http://www.scottklement.com/mailman/listinfo/ftpapi
 377. http://scottklement.com/pipermail/ftpapi/attachments/
 378. http://www.scottklement.com/mailman/listinfo/ftpapi
 379. http://scottklement.com/pipermail/ftpapi/attachments/
 380. http://scottklement.com/pipermail/ftpapi/attachments/
 381. http://scottklement.com/pipermail/ftpapi/attachments/
 382. http://scottklement.com/mailman/listinfo/ftpapi
 383. http://disclaimer.bureauveritas.com/
 384. http://www.scottklement.com/mailman/listinfo/ftpapi
 385. http://disclaimer.bureauveritas.com/
 386. http://www.scottklement.com/mailman/listinfo/ftpapi
 387. http://disclaimer.bureauveritas.com/
 388. http://www.scottklement.com/mailman/listinfo/ftpapi
 389. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 390. http://www.scottklement.com/mailman/listinfo/ftpapi
 391. http://disclaimer.bureauveritas.com/
 392. http://www.scottklement.com/mailman/listinfo/ftpapi
 393. http://scottklement.com/mailman/listinfo/ftpapi
 394. http://disclaimer.bureauveritas.com/
 395. http://www.scottklement.com/mailman/listinfo/ftpapi
 396. http://disclaimer.bureauveritas.com/
 397. http://www.scottklement.com/mailman/listinfo/ftpapi
 398. http://disclaimer.bureauveritas.com/
 399. http://www.scottklement.com/mailman/listinfo/ftpapi
 400. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 401. http://www.scottklement.com/mailman/listinfo/ftpapi
 402. http://disclaimer.bureauveritas.com/
 403. http://www.scottklement.com/mailman/listinfo/ftpapi
 404. http://scottklement.com/mailman/listinfo/ftpapi
 405. http://disclaimer.bureauveritas.com/
 406. http://www.scottklement.com/mailman/listinfo/ftpapi
 407. http://disclaimer.bureauveritas.com/
 408. http://www.scottklement.com/mailman/listinfo/ftpapi
 409. http://disclaimer.bureauveritas.com/
 410. http://www.scottklement.com/mailman/listinfo/ftpapi
 411. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
 412. http://www.scottklement.com/mailman/listinfo/ftpapi
 413. http://disclaimer.bureauveritas.com/
 414. http://www.scottklement.com/mailman/listinfo/ftpapi
 415. http://scottklement.com/pipermail/ftpapi/attachments/
 416. http://www.scottklement.com/mailman/listinfo/ftpapi
 417. http://www.scottklement.com/mailman/listinfo/ftpapi
 418. http://www.scottklement.com/mailman/listinfo/ftpapi
 419. http://scottklement.com/pipermail/ftpapi/attachments/20130704/
 420. http://www.scottklement.com/mailman/listinfo/ftpapi
 421. http://disclaimer.bureauveritas.com/
 422. http://www.scottklement.com/mailman/listinfo/ftpapi
-----------------------------------------------------------------------
This is the FTPAPI mailing list.  To unsubscribe, please go to:
http://www.scottklement.com/mailman/listinfo/ftpapi
-----------------------------------------------------------------------