Just to expand on that. I did a quick JSP example and tries to run in theough CFMX pro. Got the following message
A License Exception has been thrown You tried to access a restricted feature for the Standard edition: JSP If someone had Enterprise they can test it on then use the following code. <html> <!-- Copyright (c) 1999 The Apache Software Foundation. All rights reserved. --> <body bgcolor="white"> <jsp:useBean id='clock' scope='page' class='dates.JspCalendar' type="dates.JspCalendar" /> <font size=4> <ul> <li> Day of month: is <jsp:getProperty name="clock" property="dayOfMonth"/> <li> Year: is <jsp:getProperty name="clock" property="year"/> <li> Month: is <jsp:getProperty name="clock" property="month"/> <li> Time: is <jsp:getProperty name="clock" property="time"/> <li> Date: is <jsp:getProperty name="clock" property="date"/> <li> Day: is <jsp:getProperty name="clock" property="day"/> <li> Day Of Year: is <jsp:getProperty name="clock" property="dayOfYear"/> <li> Week Of Year: is <jsp:getProperty name="clock" property="weekOfYear"/> <li> era: is <jsp:getProperty name="clock" property="era"/> <li> DST Offset: is <jsp:getProperty name="clock" property="DSTOffset"/> <li> Zone Offset: is <jsp:getProperty name="clock" property="zoneOffset"/> </ul> </font> </body> </html> Save it as date.jsp and try to run it. Brian -----Original Message----- From: Knott, Brian Sent: Friday, 14 November 2003 11:00 AM To: CFAussie Mailing List Subject: [cfaussie] RE: More CF Linux questions I think that Jrun and Tomcat are the sme thing. They both server JSP pages. CFMX Enterprise migth server JSP pages, depending on the version of Jrun that comes with it. So bottom line is will any version of CFMX server JSP pages, or do you have to purchase Jrun. One of the Demon guys, of Robin H should know. Brian -----Original Message----- From: Ryan Sabir [mailto:[EMAIL PROTECTED] Sent: Friday, 14 November 2003 10:52 AM To: CFAussie Mailing List Subject: [cfaussie] RE: More CF Linux questions Heya Brian, Thanks for that info... I reckon as a group we should start collating all this info into a resource, I'm sure the questions will be asked again in a few weeks... KB> 1 Tomcat is the Apache JSP server. It does not require Apache as it KB> is a web server in its own right. You can set up Tomcat so that it will Things are becoming clearer now... am I right in thinking that only CFMX Enterprise will support Tomcat? With CFMX Standard I believe you are stuck with the JRUN server that it comes with. ----------------------- Ryan Sabir Newgency Pty Ltd 2a Broughton St Paddington 2021 Sydney, Australia Ph (02) 9331 2133 Fax (02) 9331 5199 Mobile: 0411 512 454 http://www.newgency.com/index.cfm?referer=rysig --- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] MXDU2004 + Macromedia DevCon AsiaPac + Sydney, Australia http://www.mxdu.com/ + 24-25 February, 2004 --- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] MXDU2004 + Macromedia DevCon AsiaPac + Sydney, Australia http://www.mxdu.com/ + 24-25 February, 2004 --- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] MXDU2004 + Macromedia DevCon AsiaPac + Sydney, Australia http://www.mxdu.com/ + 24-25 February, 2004
