On Friday, Feb 21, 2003, at 13:49 US/Pacific, Vince Bonfanti wrote:
> In this case we're using the BlueDragon/J2EE edition running within a
> standard J2EE WAR file side-by-side with the JSP pages. In fact, some 
> of the
> common page elements (headers, footers, menu bars) are implemented via
> CFINCLUDE of JSP pages, demonstrating a unique CFML/JSP integration 
> feature
> offered only by BlueDragon.

That's not unique - CFMX allows you to include JSP pages:

        cfm.cfm:
        <cfoutput>
        We're in CFML.<br />
        <cfset getPageContext().include('jsp.jsp')>
        We're back in CFML.<br />
        </cfoutput>

        jsp.jsp:
        <% String s = new String("JSP"); %>
        This is a <%= s %> page.<br />

This produces:

        We're in CFML.
        This is a JSP page.
        We're back in CFML.

Sean A Corfield -- http://www.corfield.org/blog/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

                                Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
                                

Reply via email to