I found "Runtime State" under General,Datasources and File Cache sections.
This is what I got in the "Runtime State" of the General Section.
===================
Engine Revision $Revision: 3.163.2.28 $
$Date: 2003/05/21 14:02:55 $
Java Virtual Machine Sun Microsystems Inc. more information �
====================
Is this what you asked for?
Karuna
>Now that's really curious. Can you go to the BlueDragon admin console, to
>the "runtime state" page; at the bottom is a version number that should look
>like "6,1,0,226". Can you tell me which version you're running?
>
>The GetPageContext() function is supported by all BlueDragon versions except
>the free BlueDragon Server edition.
>
>Vince
>
>-----Original Message-----
>From: Karuna Pandey [mailto:[EMAIL PROTECTED]
>Sent: Wednesday, March 17, 2004 9:42 AM
>To: CF-Talk
>Subject: Re: Blue Dragon J2EE Server & getpagecontext() problem
>
>
>Hi Vince,
>
>I also tried to run this simple piece if code in my cold fusion page
>-----------------------------------
><HTML>
><HEAD>
><TITLE> My test page </TITLE>
>
<script LANGUAGE=_javascript_ TYPE="text/_javascript_" >
<!--
function _CF_onError(form_object, input_object, object_value, error_message)
{
alert(error_message);
return false;
}
function _CF_hasValue(obj, obj_type)
{
if (obj_type == "TEXT" || obj_type == "PASSWORD")
{
if (obj.value.length == 0)
return false;
else
return true;
}
else if (obj_type == "SELECT")
{
for (i=0; i < obj.length; i++)
{
if (obj.options[i].selected)
return true;
}
return false;
}
else if (obj_type == "SINGLE_VALUE_RADIO" || obj_type == "SINGLE_VALUE_CHECKBOX")
{
if (obj.checked)
return true;
else
return false;
}
else if (obj_type == "RADIO" || obj_type == "CHECKBOX")
{
for (i=0; i < obj.length; i++)
{
if (obj[i].checked)
return true;
}
return false;
}
}
function _CF_checkCFForm_1(_CF_this)
{
if (!_CF_hasValue(_CF_this.Subject, "TEXT" ))
{
if (!_CF_onError(_CF_this, _CF_this.Subject, _CF_this.Subject.value, "Error in Subject text."))
{
return false;
}
}
return true;
}
//-->
</script>
</HEAD>
>
><BODY bgcolor="#FFFFCC">
>my test page
><cfset tempVar=5>
><cfoutput>temp Value= #tempVar#
>
><cfset pc=GetPageContext()>
>
></cfoutput>
></BODY>
></HTML>
>
>-------------------------------------------
>
>Output using JBOSS:
>
>my test page temp Value= 5
>BlueDragon Runtime Error
>Request /calljsp1.cfm
>File Trace
>C:/jboss-3.2.3/server/default/deploy/BlueDragon_webapp_61.war/calljsp1.cfm
>
>Type Application
>Message No such function exists - getpagecontext.
>Tag Context CFOUTPUT: Line=9; Column=1
>|
>+-- CFSET: Line=11; Column=1
>Detail Error at line 1, column 18
>Extended Info
>
>============================================
>
>This is why I suspect the GetPageContext() method is not supported.
>
>Cheers
>Karuna
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

