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

RE: Ftpapi Digest, Vol 81, Issue 6



Hi Mike,
UPS does request this html format (multipart/mixed)  for shipment uploads only.
I did get it to work using the following sample code. The actual shipment data needs to be URL encoded.


        Data = '--BOUNDARY' + cr + lf +
        'Content-type: application/x-www-form-urlencoded' + cr + lf +
        'Content-length: 140' + cr + lf +
         cr + lf +
        'AppVersion=1.0' +
        '&AcceptUPSLicenseAgreement=Yes' +
        '&ResponseType=application/x-ups-pld' +
        '&VersionNumber=V7R1' +
        '&UserId='  + useridvalue +
        '&Password=' + passwordvalue + cr + lf + cr + lf;

        Data = data + '--BOUNDARY' + cr + lf +
        'Content-type: application/x-ups-binary' + cr + lf +
        'Content-length: 600' + cr + lf +
         cr + lf;

        .... include shipment data here ....

      TotSegments += 1;
     Data = Data + '*SA' + %editc(TotSegments:'X') + cr + lf + cr + lf +
       '--BOUNDARY--' + cr + lf;

  rc = http_url_post(%trim(crdire)
                     : %addr(data)
                     : %len(%trim(data))
                     : Respfile
                     : 60
                     : *omit
                     : 'multipart/mixed; boundary=BOUNDARY'
                     : *omit);

My thanks to Scott and the Httpapi community for their help.
Debbie Abelow


-----Original Message-----
From: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx [mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
Sent: Wednesday, July 03, 2013 9:18 AM
To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
Subject: Ftpapi Digest, Vol 81, Issue 6

Send Ftpapi mailing list submissions to
        ftpapi@xxxxxxxxxxxxxxxxxxxxxx

To subscribe or unsubscribe via the World Wide Web, visit
        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: UPS PLD Upload sample (Mike Krebs)
   2. RE: Ftpapi Digest, Vol 81, Issue 5 (Debra Abelow)
   3. Problem to send DB characters - Remove Escape characters
      (gilles.renne@xxxxxxxxxxxxxxxxx)


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

Message: 1
Date: Tue, 2 Jul 2013 18:21:11 -0500
From: Mike Krebs <mkrebs@xxxxxxxxxxxxxxxxxx>
To: HTTPAPI and FTPAPI Projects <ftpapi@xxxxxxxxxxxxxxxxxxxxxx>
Subject: RE: UPS PLD Upload sample
Message-ID: <3DF08BA25872B644A1421B9F085B18299F48CBF28F@xxxxxxxxxxxx>
Content-Type: text/plain; charset="us-ascii"

Just looking quick at the document you linked...it doesn't appear to be the "best solution".

First of all, it is almost 10 years old.
Secondly, yes it looks like a HTML based version.

I would think that one of their "APIs" will do what you want. Can't imagine they are still using HTML based solutions. Were you directed in that direction by UPS?

-----Original Message-----
From: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx [mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of Debra Abelow
Sent: Tuesday, July 02, 2013 3:29 PM
To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
Subject: UPS PLD Upload sample

Good Afternoon,
Does anyone have a working example of a UPS PLD upload using Httpapi? Or perhaps some suggestions on how to build the request message.
I have attached the link to the UPS documentation  - see create the request message beginning on page 10.
It seems like they are asking for a stream file using sockets that resembles an HTTP Document with content type equal to multipart/mixed.

http://www.ups.com/uoltools/manifest/pdf/Electronic_Manifesting.pdf

I would appreciate your help.

Thanks,
Debra Abelow
Systems Analyst/Developer III
2915 Weston Road
Weston, FL 33331
1-800-331-ANDA (2632) x 74784
Fax 954-217-4377
Debra.Abelow@xxxxxxxxxxx




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

Message: 2
Date: Tue, 2 Jul 2013 23:15:29 -0400
From: Debra Abelow <Debra.Abelow@xxxxxxxxxxx>
To: "ftpapi@xxxxxxxxxxxxxxxxxxxxxx" <ftpapi@xxxxxxxxxxxxxxxxxxxxxx>
Subject: RE: Ftpapi Digest, Vol 81, Issue 5
Message-ID:
        <31B87A2FB45E554C9C130C048EFA2D0B1365311DB9@xxxxxxxxxxxxxxxxxxxxxxxxx>
Content-Type: text/plain; charset="us-ascii"

Eric,
Thank-you. That is a great XML example of capturing rates for UPS and FedEx.
What I'm looking for is a content-type: multipart/mixed : boundary example of uploading shipments to UPS. The data stream has to be in the form of a http request message. It is a POST and there are different sections submitted; each separated by a BOUNDARY. Content length for each section is specified.
The data must be URL encoded - special characters in the main section have to be replaced with a  % sign and the hex value.

-----Original Message-----
From: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx [mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of ftpapi-request@xxxxxxxxxxxxxxxxxxxxxx
Sent: Tuesday, July 02, 2013 5:44 PM
To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
Subject: Ftpapi Digest, Vol 81, Issue 5

Send Ftpapi mailing list submissions to
        ftpapi@xxxxxxxxxxxxxxxxxxxxxx

To subscribe or unsubscribe via the World Wide Web, visit
        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. UPS PLD Upload sample (Debra Abelow)
   2. RE: UPS PLD Upload sample (Eric Hill)


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

Message: 1
Date: Tue, 2 Jul 2013 16:28:35 -0400
From: Debra Abelow <Debra.Abelow@xxxxxxxxxxx>
To: "ftpapi@xxxxxxxxxxxxxxxxxxxxxx" <ftpapi@xxxxxxxxxxxxxxxxxxxxxx>
Subject: UPS PLD Upload sample
Message-ID:
        <31B87A2FB45E554C9C130C048EFA2D0B1365311C64@xxxxxxxxxxxxxxxxxxxxxxxxx>
Content-Type: text/plain; charset="us-ascii"

Good Afternoon,
Does anyone have a working example of a UPS PLD upload using Httpapi? Or perhaps some suggestions on how to build the request message.
I have attached the link to the UPS documentation  - see create the request message beginning on page 10.
It seems like they are asking for a stream file using sockets that resembles an HTTP Document with content type equal to multipart/mixed.

http://www.ups.com/uoltools/manifest/pdf/Electronic_Manifesting.pdf

I would appreciate your help.

Thanks,
Debra Abelow
Systems Analyst/Developer III
2915 Weston Road
Weston, FL 33331
1-800-331-ANDA (2632) x 74784
Fax 954-217-4377
Debra.Abelow@xxxxxxxxxxx


-------------- next part --------------
   Good Afternoon,

   Does anyone have a working example of a UPS PLD upload using Httpapi?
   Or perhaps some suggestions on how to build the request message.

   I have attached the link to the UPS documentation  - see create the
   request message beginning on page 10.

   It seems like they are asking for a stream file using sockets that
   resembles an HTTP Document with content type equal to multipart/mixed.


   http://www.ups.com/uoltools/manifest/pdf/Electronic_Manifesting.pdf


   I would appreciate your help.


   Thanks,

   Debra Abelow

   Systems Analyst/Developer III

   2915 Weston Road

   Weston, FL 33331

   1-800-331-ANDA (2632) x 74784

   Fax 954-217-4377

   Debra.Abelow@xxxxxxxxxxx

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

Message: 2
Date: Tue, 2 Jul 2013 21:43:55 +0000
From: Eric Hill <ehill@xxxxxxxxxxxxx>
To: HTTPAPI and FTPAPI Projects <ftpapi@xxxxxxxxxxxxxxxxxxxxxx>
Subject: RE: UPS PLD Upload sample
Message-ID:
        <D48C0F096BC00247A72D83CC872C849204B575@xxxxxxxxxxxxxxxxxxxxxxxx>
Content-Type: text/plain; charset="us-ascii"

Debra,

Attached is what I use to get rate data from UPS.  Don't know if this will help in what you are doing but thought I would give it a shot.  This one handles both UPS and FEDEX rates.

Eric Hill
Integrated Corporate Solutions
ehill@xxxxxxxxxxxxx
256-760-8239

-----Original Message-----
From: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx [mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of Debra Abelow
Sent: Tuesday, July 02, 2013 3:29 PM
To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
Subject: UPS PLD Upload sample

Good Afternoon,
Does anyone have a working example of a UPS PLD upload using Httpapi? Or perhaps some suggestions on how to build the request message.
I have attached the link to the UPS documentation  - see create the request message beginning on page 10.
It seems like they are asking for a stream file using sockets that resembles an HTTP Document with content type equal to multipart/mixed.

http://www.ups.com/uoltools/manifest/pdf/Electronic_Manifesting.pdf

I would appreciate your help.

Thanks,
Debra Abelow
Systems Analyst/Developer III
2915 Weston Road
Weston, FL 33331
1-800-331-ANDA (2632) x 74784
Fax 954-217-4377
Debra.Abelow@xxxxxxxxxxx


-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: WEB030.txt
URL: <http://scottklement.com/pipermail/ftpapi/attachments/20130702/64f33bc4/attachment.txt>

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

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


End of Ftpapi Digest, Vol 81, Issue 5
*************************************


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

Message: 3
Date: Wed, 3 Jul 2013 15:17:03 +0200
From: gilles.renne@xxxxxxxxxxxxxxxxx
To: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
Cc: ftpapi@xxxxxxxxxxxxxxxxxxxxxx,
        ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
Subject: Problem to send DB characters - Remove Escape characters
Message-ID:
        <OF8096CE85.1209821B-ONC1257B9D.0048E302-C1257B9D.0048F8E1@LocalDomain>

Content-Type: text/plain; charset="iso-8859-1"


Hi

i receive Bad request  now

and i have nothing in httpapi_debug file

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 4
                                                                      R?f.
             02/07/2013 13:14


             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
                 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
                                  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: 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:
> 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]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]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://disclaimer.bureauveritas.com/
   2. 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: <
http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97de9/attachment.zip

>

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

-----------------------------------------------------------------------
This is the FTPAPI mailing list digest.  To unsubscribe, go to:
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: 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]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]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]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]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]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]http://disclaimer.bureauveritas.com/
     2. [7]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]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
   de9/attachment.zip>
   ------------------------------
   -----------------------------------------------------------------------
   This is the FTPAPI mailing list digest.  To unsubscribe, go to:
   [9]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: http://disclaimer.bureauveritas.com

References

   1. http://scottklement.com/mailman/listinfo/ftpapi
   2. http://disclaimer.bureauveritas.com/
   3. http://www.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://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97de9/attachment.zip

   9. 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: <
http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279210e/attachment.gif
>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: pic06064.gif
Type: image/gif
Size: 1255 bytes
Desc: not available
URL: <
http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279210e/attachment-0001.gif
>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: ecblank.gif
Type: image/gif
Size: 45 bytes
Desc: not available
URL: <
http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279210e/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
>        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: 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:
> > 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]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]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://disclaimer.bureauveritas.com/
>    2. 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: <
> http://scottklement.com/pipermail/ftpapi/attachments/20130702/
> fea97de9/attachment.zip
> >
>
> ------------------------------
>
> -----------------------------------------------------------------------
> This is the FTPAPI mailing list digest.  To unsubscribe, go to:
> 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: http://disclaimer.bureauveritas.com
> [Bild entfernt] [Bild entfernt] [Bild entfernt]
> -----------------------------------------------------------------------
> This is the FTPAPI mailing list.  To unsubscribe, please go to:
> http://www.scottklement.com/mailman/listinfo/ftpapi
> -----------------------------------------------------------------------


--
IMPORTANT NOTICE:
This email is confidential, may be legally privileged, and is for the
intended recipient only. Access, disclosure, copying, distribution, or
reliance on any of it by anyone else is prohibited and may be a criminal
offence. Please delete if obtained in error and email confirmation to the
sender.
-------------- 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]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]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]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]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]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]http://disclaimer.bureauveritas.com/
   >    2. [7]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]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   > fea97de9/attachment.zip
   > >
   >
   > ------------------------------
   >
   >
   -----------------------------------------------------------------------
   > This is the FTPAPI mailing list digest.  To unsubscribe, go to:
   > [9]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]http://disclaimer.bureauveritas.com

   > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   >
   -----------------------------------------------------------------------
   > This is the FTPAPI mailing list.  To unsubscribe, please go to:
   > [11]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://disclaimer.bureauveritas.com/
   3. http://www.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://scottklement.com/pipermail/ftpapi/attachments/20130702/
   9. http://www.scottklement.com/mailman/listinfo/ftpapi
  10. http://disclaimer.bureauveritas.com/
  11. 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: <
http://scottklement.com/pipermail/ftpapi/attachments/20130702/26ba65e4/attachment.obj
>

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

-----------------------------------------------------------------------
This is the FTPAPI mailing list digest.  To unsubscribe, go to:
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: http://disclaimer.bureauveritas.com
-------------- next part --------------
   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]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]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]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]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]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]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]http://disclaimer.bureauveritas.com/
     2. [8]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]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97d
   e9/attachment.zip
   >
   ------------------------------
   -----------------------------------------------------------------------
   This is the FTPAPI mailing list digest.  To unsubscribe, go to:
   [10]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]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]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]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]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]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]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]http://disclaimer.bureauveritas.com/
       2. [7][18]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]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]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]http://disclaimer.bureauveritas.com
   References
     1. [22]http://scottklement.com/mailman/listinfo/ftpapi
     2. [23]http://disclaimer.bureauveritas.com/
     3. [24]http://www.scottklement.com/mailman/listinfo/ftpapi
     4. [25]http://disclaimer.bureauveritas.com/
     5. [26]http://www.scottklement.com/mailman/listinfo/ftpapi
     6. [27]http://disclaimer.bureauveritas.com/
     7. [28]http://www.scottklement.com/mailman/listinfo/ftpapi
     8.
   [29]http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
   de9/attachment.zip
     9. [30]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]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]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]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]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]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]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]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]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]http://disclaimer.bureauveritas.com/
   >    2. [40]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]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
   > fea97de9/attachment.zip
   > >
   >
   > ------------------------------
   >
   >
   -----------------------------------------------------------------------
   > This is the FTPAPI mailing list digest.  To unsubscribe, go to:
   > [42]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]http://disclaimer.bureauveritas.com
   > [Bild entfernt] [Bild entfernt] [Bild entfernt]
   >
   -----------------------------------------------------------------------
   > This is the FTPAPI mailing list.  To unsubscribe, please go to:
   > [44]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]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]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]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]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]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]http://disclaimer.bureauveritas.com/
     >    2. [7][51]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]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
     > fea97de9/attachment.zip
     > >
     >
     > ------------------------------
     >
     >

   -----------------------------------------------------------------------
     > This is the FTPAPI mailing list digest.  To unsubscribe, go to:
     > [9][53]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]http://disclaimer.bureauveritas.com
     > [Bild entfernt] [Bild entfernt] [Bild entfernt]
     >

   -----------------------------------------------------------------------
     > This is the FTPAPI mailing list.  To unsubscribe, please go to:
     > [11][55]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]http://scottklement.com/mailman/listinfo/ftpapi
     2. [57]http://disclaimer.bureauveritas.com/
     3. [58]http://www.scottklement.com/mailman/listinfo/ftpapi
     4. [59]http://disclaimer.bureauveritas.com/
     5. [60]http://www.scottklement.com/mailman/listinfo/ftpapi
     6. [61]http://disclaimer.bureauveritas.com/
     7. [62]http://www.scottklement.com/mailman/listinfo/ftpapi
     8. [63]http://scottklement.com/pipermail/ftpapi/attachments/20130702/
     9. [64]http://www.scottklement.com/mailman/listinfo/ftpapi
    10. [65]http://disclaimer.bureauveritas.com/
    11. [66]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]http://scottklement.com/pipermail/ftpapi/attachments/20130702/26ba
   65e4/attachment.obj>
   ------------------------------
   -----------------------------------------------------------------------
   This is the FTPAPI mailing list digest.  To unsubscribe, go to:
   [68]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: http://disclaimer.bureauveritas.com

References

   1. http://scottklement.com/mailman/listinfo/ftpapi
   2. http://scottklement.com/mailman/listinfo/ftpapi
   3. http://disclaimer.bureauveritas.com/
   4. http://www.scottklement.com/mailman/listinfo/ftpapi
   5. http://disclaimer.bureauveritas.com/
   6. http://www.scottklement.com/mailman/listinfo/ftpapi
   7. http://disclaimer.bureauveritas.com/
   8. http://www.scottklement.com/mailman/listinfo/ftpapi
   9. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97de9/attachment.zip
  10. http://www.scottklement.com/mailman/listinfo/ftpapi
  11. http://disclaimer.bureauveritas.com/
  12. http://scottklement.com/mailman/listinfo/ftpapi
  13. http://disclaimer.bureauveritas.com/
  14. http://www.scottklement.com/mailman/listinfo/ftpapi
  15. http://disclaimer.bureauveritas.com/
  16. http://www.scottklement.com/mailman/listinfo/ftpapi
  17. http://disclaimer.bureauveritas.com/
  18. http://www.scottklement.com/mailman/listinfo/ftpapi
  19. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97
  20. http://www.scottklement.com/mailman/listinfo/ftpapi
  21. http://disclaimer.bureauveritas.com/
  22. http://scottklement.com/mailman/listinfo/ftpapi
  23. http://disclaimer.bureauveritas.com/
  24. http://www.scottklement.com/mailman/listinfo/ftpapi
  25. http://disclaimer.bureauveritas.com/
  26. http://www.scottklement.com/mailman/listinfo/ftpapi
  27. http://disclaimer.bureauveritas.com/
  28. http://www.scottklement.com/mailman/listinfo/ftpapi
  29. http://scottklement.com/pipermail/ftpapi/attachments/20130702/fea97de9/attachment.zip
  30. http://www.scottklement.com/mailman/listinfo/ftpapi
  31. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279210e/attachment.gif
  32. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279210e/attachment-0001.gif
  33. http://scottklement.com/pipermail/ftpapi/attachments/20130702/9279210e/attachment-0002.gif
  34. http://scottklement.com/mailman/listinfo/ftpapi
  35. http://disclaimer.bureauveritas.com/
  36. http://www.scottklement.com/mailman/listinfo/ftpapi
  37. http://disclaimer.bureauveritas.com/
  38. http://www.scottklement.com/mailman/listinfo/ftpapi
  39. http://disclaimer.bureauveritas.com/
  40. http://www.scottklement.com/mailman/listinfo/ftpapi
  41. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
  42. http://www.scottklement.com/mailman/listinfo/ftpapi
  43. http://disclaimer.bureauveritas.com/
  44. http://www.scottklement.com/mailman/listinfo/ftpapi
  45. http://scottklement.com/mailman/listinfo/ftpapi
  46. http://disclaimer.bureauveritas.com/
  47. http://www.scottklement.com/mailman/listinfo/ftpapi
  48. http://disclaimer.bureauveritas.com/
  49. http://www.scottklement.com/mailman/listinfo/ftpapi
  50. http://disclaimer.bureauveritas.com/
  51. http://www.scottklement.com/mailman/listinfo/ftpapi
  52. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
  53. http://www.scottklement.com/mailman/listinfo/ftpapi
  54. http://disclaimer.bureauveritas.com/
  55. http://www.scottklement.com/mailman/listinfo/ftpapi
  56. http://scottklement.com/mailman/listinfo/ftpapi
  57. http://disclaimer.bureauveritas.com/
  58. http://www.scottklement.com/mailman/listinfo/ftpapi
  59. http://disclaimer.bureauveritas.com/
  60. http://www.scottklement.com/mailman/listinfo/ftpapi
  61. http://disclaimer.bureauveritas.com/
  62. http://www.scottklement.com/mailman/listinfo/ftpapi
  63. http://scottklement.com/pipermail/ftpapi/attachments/20130702/
  64. http://www.scottklement.com/mailman/listinfo/ftpapi
  65. http://disclaimer.bureauveritas.com/
  66. http://www.scottklement.com/mailman/listinfo/ftpapi
  67. http://scottklement.com/pipermail/ftpapi/attachments/20130702/26ba65e4/attachment.obj
  68. 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: <http://scottklement.com/pipermail/ftpapi/attachments/20130703/421b1a84/attachment.gif>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: pic11942.gif
Type: image/gif
Size: 1255 bytes
Desc: not available
URL: <http://scottklement.com/pipermail/ftpapi/attachments/20130703/421b1a84/attachment-0001.gif>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: ecblank.gif
Type: image/gif
Size: 45 bytes
Desc: not available
URL: <http://scottklement.com/pipermail/ftpapi/attachments/20130703/421b1a84/attachment-0002.gif>

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

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


End of Ftpapi Digest, Vol 81, Issue 6
*************************************
-----------------------------------------------------------------------
This is the FTPAPI mailing list.  To unsubscribe, please go to:
http://www.scottklement.com/mailman/listinfo/ftpapi
-----------------------------------------------------------------------