> So I POST this question again....in a different light. How difficult would
> it be to come up with a 100% pure java API which would encompass fundamental
> HTML(<head><body><table> would be a great start) and then make calls to this
> API just like we do with every other darn OO language.
If I understand you correctly, that is ECS:
<http://java.apache.org/ecs/>
Html htmlTag = new Html();
htmlTag.toString();
That produces:
<html></html>
You can get even more complicated:
Html htmlTag = new Html();
htmlTag.addElement ( new Head().addElement( new Body() ) );
htmlTag.toString();
That produces:
<html><head><body></body></head></html>
A 100% Pure Java solution that also happens to be Open Source.
> Or, how about we
> store the data in a txt file, something in the java.io package to just read
> the entire file into the script, and then output that to the web? Great
> idea.
You can easily serialize all the ECS elements. You could serialize an entire
ECS Document object to disk, read it back in, change a few elements and off
you go.
Of course both of these examples require you to be able to write code. What
you want is something a bit easier. IMHO, solutions like WebMacro and
FreeMarker and JSP really are not that difficult, even for new people.
-jon
___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".
Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html