Hello All,
I have CF MX 7 Standard installed on my desktop PC (Windows XP professional, IIS 5.1) for development purposes. From what I read about CF MX 7, I get that it can run JSP. To test it I created a simple JSP page (hello.jsp):
and a simple CF template to call the JSP:
I got the following error message:
"A License Exception has been thrown. You tried to access a restricted feature for the Standard edition: JSP"
The question: Is it because I have standard, not enterprise version? Or is it something wrong with the server setup? What do I need to get JSP run under CF?
Thank you,
Alex
I have CF MX 7 Standard installed on my desktop PC (Windows XP professional, IIS 5.1) for development purposes. From what I read about CF MX 7, I get that it can run JSP. To test it I created a simple JSP page (hello.jsp):
Code:
<HTML>
<head>
<title>Test</title>
</head>
<body>
<% out.println("<H2>Hello! This is JSP</H2>"); %>
</body>
</html>
and a simple CF template to call the JSP:
Code:
<HTML>
<head>
<title>Test</title>
</head>
<body>
In CF
<BR>
<cfscript>
GetPageContext().include("hello.jsp");
</cfscript>
</body>
</html>
I got the following error message:
"A License Exception has been thrown. You tried to access a restricted feature for the Standard edition: JSP"
The question: Is it because I have standard, not enterprise version? Or is it something wrong with the server setup? What do I need to get JSP run under CF?
Thank you,
Alex