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

Re: RE Ftpapi Digest, Vol 81, Issue 3



   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

Attachment: USR5020.rpgle
Description: Binary data

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