Re: help with using CFCProxy.

2009-01-27 Thread cf coder
Thank you guys for your help. I'll let you know if I face any problems getting 
it to work with an enterprise license.

Regards,
John

Yeah, you need enterprise to use CFCProxy.

I thought they were meant to fix this in 8, under the whole 'Standard
is the same as Enterprise, just with limitations' spiel... but it
looks like it never happens.

Kinda annoys me actually.

Mark


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318609
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: help with using CFCProxy.

2009-01-23 Thread cf coder
Do I need the enterprise edition of ColdFusion to use CFCProxy? I'm getting the 
following error when I instantiate the CFCProxy object:

java.lang.NoClassDefFoundError: 
coldfusion/license/LicenseManager$LicenseIllegalAccessException

This is where the error occurs

CFCProxy myCFC = new 
CFCProxy(C:\\Inetpub\\wwwroot\\cfcproxytest\\javacall.cfc);

Please provide me with some help. There is no hardly any documentation on this 
issue.

 Hello everybody,
 
 I want to call ColdFusion objects from a Java class. I found this 
 docucmentation by Ben Forta on CFCProxy: http://www.forta.
 com/misc/cfcproxy.htm
 
 I have a my CFC (see below) that has an init function which initialies 
 all the objects?
 
 cfcomponent name=javacall
   cffunction name=init output=false returntype=javacall 
 hint=initialise
   cfscript
   //Example object
   this.objFont = 
 createObject(java,java.awt.Font).init(Arial,0,
 10);
   return this;
   /cfscript
   /cffunction
 /cfcomponent
 
 The documentation says that the getThisScope() method can be used to 
 retrieve the 'This' scope of the CFC. I want to retreive the 'objFont' 
 this variable. Can someone show me how to do this please? 
 
 Thanks,
 John 


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318412
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: help with using CFCProxy.

2009-01-23 Thread Charlie Griefer
http://www.forta.com/blog/index.cfm?mode=eentry=1756
see comments.

On Fri, Jan 23, 2009 at 8:15 AM, cf coder mailinglistid2...@yahoo.comwrote:

 Do I need the enterprise edition of ColdFusion to use CFCProxy? I'm getting
 the following error when I instantiate the CFCProxy object:

 java.lang.NoClassDefFoundError:
 coldfusion/license/LicenseManager$LicenseIllegalAccessException

 This is where the error occurs

 CFCProxy myCFC = new
 CFCProxy(C:\\Inetpub\\wwwroot\\cfcproxytest\\javacall.cfc);

 Please provide me with some help. There is no hardly any documentation on
 this issue.

  Hello everybody,
 
  I want to call ColdFusion objects from a Java class. I found this
  docucmentation by Ben Forta on CFCProxy: http://www.forta.
  com/misc/cfcproxy.htm
 
  I have a my CFC (see below) that has an init function which initialies
  all the objects?
 
  cfcomponent name=javacall
cffunction name=init output=false returntype=javacall
  hint=initialise
cfscript
//Example object
this.objFont =
 createObject(java,java.awt.Font).init(Arial,0,
  10);
return this;
/cfscript
/cffunction
  /cfcomponent
 
  The documentation says that the getThisScope() method can be used to
  retrieve the 'This' scope of the CFC. I want to retreive the 'objFont'
  this variable. Can someone show me how to do this please?
 
  Thanks,
  John


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318420
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: help with using CFCProxy.

2009-01-23 Thread Mark Mandel
Yeah, you need enterprise to use CFCProxy.

I thought they were meant to fix this in 8, under the whole 'Standard
is the same as Enterprise, just with limitations' spiel... but it
looks like it never happens.

Kinda annoys me actually.

Mark

On Sat, Jan 24, 2009 at 4:41 AM, Charlie Griefer
charlie.grie...@gmail.com wrote:
 http://www.forta.com/blog/index.cfm?mode=eentry=1756
 see comments.

 On Fri, Jan 23, 2009 at 8:15 AM, cf coder mailinglistid2...@yahoo.comwrote:

 Do I need the enterprise edition of ColdFusion to use CFCProxy? I'm getting
 the following error when I instantiate the CFCProxy object:

 java.lang.NoClassDefFoundError:
 coldfusion/license/LicenseManager$LicenseIllegalAccessException

 This is where the error occurs

 CFCProxy myCFC = new
 CFCProxy(C:\\Inetpub\\wwwroot\\cfcproxytest\\javacall.cfc);

 Please provide me with some help. There is no hardly any documentation on
 this issue.

  Hello everybody,
 
  I want to call ColdFusion objects from a Java class. I found this
  docucmentation by Ben Forta on CFCProxy: http://www.forta.
  com/misc/cfcproxy.htm
 
  I have a my CFC (see below) that has an init function which initialies
  all the objects?
 
  cfcomponent name=javacall
cffunction name=init output=false returntype=javacall
  hint=initialise
cfscript
//Example object
this.objFont =
 createObject(java,java.awt.Font).init(Arial,0,
  10);
return this;
/cfscript
/cffunction
  /cfcomponent
 
  The documentation says that the getThisScope() method can be used to
  retrieve the 'This' scope of the CFC. I want to retreive the 'objFont'
  this variable. Can someone show me how to do this please?
 
  Thanks,
  John




 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318452
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


help with using CFCProxy.

2009-01-21 Thread cf coder
Hello everybody,

I want to call ColdFusion objects from a Java class. I found this 
docucmentation by Ben Forta on CFCProxy: http://www.forta.com/misc/cfcproxy.htm

I have a my CFC (see below) that has an init function which initialies all the 
objects?

cfcomponent name=javacall
cffunction name=init output=false returntype=javacall 
hint=initialise
cfscript
//Example object
this.objFont = 
createObject(java,java.awt.Font).init(Arial,0,10);
return this;
/cfscript
/cffunction
/cfcomponent

The documentation says that the getThisScope() method can be used to retrieve 
the 'This' scope of the CFC. I want to retreive the 'objFont' this variable. 
Can someone show me how to do this please? 

Thanks,
John 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318268
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4