Hi, if You don't like to use the template (.tml) files the entire job is to be done in page class using the MarkupWriter, a simple example:
public class Home{ void beginRender(MarkupWriter writer) { writer.element("html"); writer.write("test"); writer.end(); } } this will write to the output html the text "test". in this case, important is to start the page with the <html> element. Best regards Eugen 2014-08-02 23:21 GMT+02:00 Net Dawg <net.d...@yahoo.com.invalid>: > Here is the simplest Hello World, according to jump start: > http://jumpstart.doublenegative.com.au/jumpstart/helloworld > > > I would like to do something simpler. No html, body tags etc, just pure > streaming content. Comlpletely do away with templates and components, just > use the page > class to stream "Hello World" to browser. > > > In above example, I tried to set HelloWorld.tml as just > > > ${username} > > the idea being getUserName can be XML, PDF or whatever...but get the > following error: > > Content is not allowed in prolog