The tutorial says the dexios templates are compiled. I didn't read much
further than that. If it's the compilation you're worried about, jsp is
supposed to do the compilation only once for each page (until the a page
is modified).  I don't think this would take long.

-A

[from the tutorial]
A servlet or other Java object can construct an object of class Template
on initialization; the Template object --compiles-- the template into an
efficient, reusable form. --Compiled-- templates respond almost as fast as
static HTML pages. When processing a request, the servlet passes the
Template a tree of data objects; the Template inserts the data from these
objects into the appropriate places in the HTML, and sends the
finished HTML page to the servlet's output stream. You can use the
package to display data from your existing data objects, by writing thin
adapter classes.

On Mon, 15 Mar 1999, Keith Kwiatek wrote:

> The difference is that http://www.bgeer.com/dexios doesn't "compile" the
> templates into servlets. The templates have macro variables, loops, and
> conditionals --that are evaluated by the servlet, and then macro variable
> substitution is performed and the template is output. (see
> http://www.bgeer.com/dexios/template/docs/tutorial.html#example )
>
> I guess I am getting hung up on this idea of having to write script in a
> template.... although I must admit I need to investigate the bean aspect of JSP
> more....
>
> Thanks,
> Keith
>
>
>
>
>
>
> >
> >I looked at the site you recommended.  What is the difference?  The
> >templates get 'compiled' into something (servlets?) and then they get
> >run via some calling mechanism (sevlet API?).  Correct me if I'm wrong?
> >
> >Has anyone on the list tried or know anything about ChiliSoft ASP?  It is
> >an ASP implmentation that runs on UNIX.  I've got a large java code base
> >that it would need to interact with.
> >
>
>
>

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to