IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
Expand all | Collapse all

Parsing German and french characters

  • 1.  Parsing German and french characters

    Posted Wed October 29, 2008 09:30 AM

    Hi All

    In my code I have a requirement of transformation involving two databases on the source and destination respectively.

    1. What do I need to do if the databae has german or french characters???
    2. Will webMethods parse it properly or do we need to do any settings for the parsing of special characters in the german or french language???

    #Integration-Server-and-ESB
    #Adapters-and-E-Standards
    #webMethods


  • 2.  RE: Parsing German and french characters

    Posted Wed October 29, 2008 05:47 PM

    The encoding you use in your code is the key.
    For French or German, you can use either UTF-8 or ISO-8859-1. both will work. I prefer to use UTF-8 since it supports all other languages too.

    when you hanle string in the flow service, consistently use UTF-8 (or the other one you choose).
    When you retrieve data from DB, make sure you know the encoding it’s in, if needed, you may write some java code to convert it to UTF-8 first.
    HTH,
    Tong


    #webMethods
    #Integration-Server-and-ESB
    #Adapters-and-E-Standards