Well I hadn't tried until now, and in a simplistic cfc it seemed to
work just fine.

test.cfc:

<cfcomponent>
        <cfset this.foo = 1>
</cfcomponent>


test.cfm:

<cfscript>
test = createObject("component", "test");
test.foo = 42;
writeOutput(test.foo);
</cfscript>

What kind of stuff were you doing in your cfc? Sounds like there may
be certain specific tags that aren't compatible...

-- 
jon
mailto:[EMAIL PROTECTED]

Thursday, August 29, 2002, 7:09:00 PM, you wrote:

BD> Jon,

BD> Were you able to use CFC's with BEA JRockit? When I used it all of my CFC 
BD> calls failed. Switching back to the default JVM fixed this issue.

BD> Brook

BD> At 02:41 PM 29/08/02 -0400, you wrote:
>>Is this a very busy server with a lot of connections? The
>>java.lang.OutOfMemoryError error is one that the JRE will throw when
>>there are too many connections. I only know this because of my
>>research into BEA's JRockit a week or so ago, which sidesteps these
>>problems by implementing it's own stack.
>>
>>I thought this was interesting...the IBM and SUN 1.3 JRE's, are much
>>faster under Linux but can't seem to handle many concurrent
>>connections at all.
>>http://www.volano.com/report/
>>
>>IBM 1.3.0 Linux
>>     Hangs with 100% CPU usage after 438 connections.
>>IBM 1.3.0 Windows
>>     java.lang.OutOfMemoryError after 3293 connections.
>>
>>Sun 1.3.1 Windows (HotSpot Server VM)
>>     java.lang.OutOfMemoryError after 3200 connections.
>>Sun 1.3.1 Linux (HotSpot Server VM)
>>     java.lang.OutOfMemoryError after 410 connections.
>>
>>I don't know if any conclusions can be reached from VolcanoMark, but
>>you may want to try another JRE if your problem persists. Just a
>>disclaimer, someone did mention that the JRockit JRE has compatibility
>>issues with CFC's...
>>
>>--
>>jon
>>mailto:[EMAIL PROTECTED]
>>
>>Thursday, August 29, 2002, 9:39:20 AM, you wrote:
>>
>>RJ> This morning I was unable to open a page with a .cfm extension. The page
>>RJ> itself has no CF code in it. The error given is this:
>>
>>RJ> Stack Trace (click to expand)
>>
>>RJ> java.lang.OutOfMemoryError
>>
>>RJ> I'm running Coldfusion MX on Linux RedHat 6.2
>>
>>RJ> Is there a setting in the CF administrator that I need to change?
>>
>>RJ> Rick Jones
>>RJ> Online Information Manager
>>RJ> NAHRO
>>RJ> http://www.nahro.org
>>RJ> Toll Free (877) 866-2476
>>
>>
BD> 
______________________________________________________________________
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to