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.



#Automation


#Applicationintegration
#webMethods
#Integration
 View Only
Expand all | Collapse all

StringEscapeUtils.unescapeXml problem

  • 1.  StringEscapeUtils.unescapeXml problem

    Posted 12/07/06 02:47 PM

    Hi !

    I want to use the function " StringEscapeUtils.unescapeXml() " to indicate special characters on the web.
    But I don’t know to use it by Elements !
    I use JDOM for Tamino

       while(it.hasNext()){ 
    pers = (PersonInitialen)it.next();
    person = new Element("Person");
    person_name =new Element("Name");
    person_name.setText(pers.getName());
    
    person_init = new Element("Initialen");
    person_init.setText(pers.getInitialen());
    
    person.addContent(person_name);
    person.addContent(person_init);
    

    I want to write special characters on the web for “Name” and “Initialen” and then it will be stored in the tamino-database.
    May anybody help me in this case ?


    #API-Management
    #Tamino
    #webMethods


  • 2.  RE: StringEscapeUtils.unescapeXml problem

    Posted 12/14/06 05:23 PM

    The problem is solved :O)


    #Tamino
    #webMethods
    #API-Management