Inserting quote char into generated output

2011-02-17 Thread Markus Ruggiero
Hi wo-gurus, I have the following problem: I want to generate XML and need to put literal and char into the output. The wo parser however fails and I do not know how to effectively solve this. Let me give an example: Desired output: value name=ABCD/value ABCD comes from the database.

Re: Inserting quote char into generated output

2011-02-17 Thread Steve Peery
Try WOGenericContainer .html: webobject name = GenericContainer/webobject .wod: GenericContainer: WOGenericContainer { elementName = value; name = nameString; } .java: public String nameString() { return ABCD; } result: value name=ABCD/value Steve On Feb