RE: [ACFUG Discuss] jrun setup

2006-10-25 Thread axunderwood



Do:

jrunsvc -remove "Name of service to remove Case 
Sensitive"

  -Original Message-From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]On Behalf Of Robert ReilSent: 
  Tuesday, October 24, 2006 4:55 PMTo: 
  discussion@acfug.orgSubject: RE: [ACFUG Discuss] jrun 
  setup
  
  Thump. Asking 
  again
  
  
  Robert P. 
  Reil
  Managing 
  Director,
  Motorcyclecarbs.com, 
  Inc.
  4292 Country Garden Walk 
  NW
  Kennesaw, Ga. 30152
  Office 
  770-974-8851
  Fax 
  770-974-8852
  www.motorcyclecarbs.com
  
  
  
  
  From: 
  Robert Reil 
  [mailto:[EMAIL PROTECTED] Sent: Friday, October 20, 2006 3:56 
  PMTo: discussion@acfug.orgSubject: RE: [ACFUG Discuss] jrun 
  setup
  
  Well
  
  I installed the 
  CFusion7 service but it wont start.
  I also installed a 
  Default server while going through some how tos last night. I want to remove 
  it and cant seem to.
  
  For the removal 
  of:
  Macromedia JRun 
  Default Server Service
  I try to 
  run:
  Jrunsvc remove 
  
  Macromedia JRun 
  Default Server
  Default
  JRun 
  Default
  JRun Default 
  Server
  
  And none of these 
  work.
  
  I prefer to work in 
  the Windows services console but have to get it to work 
  first.
  
  I feel so silly not 
  being able to get this service to remove, and the other to 
  start.
  
  
  
  
  
  
  From: Douglas 
  Knudsen [mailto:[EMAIL PROTECTED] Sent: Friday, October 20, 2006 11:51 
  AMTo: discussion@acfug.orgSubject: Re: [ACFUG Discuss] jrun 
  setup
  
  
  
  On 10/19/06, Robert 
  Reil [EMAIL PROTECTED] 
  wrote:
  
  
  Only the following 
  services seem relevant
  
  Macromedia JRun Admin 
  Server
  Macromedia JRun 
  CFusion Server
  Macromedia JRun 
  Default Server
  
  No other Macromedia 
  JRun services are installed 
  
  Digging around in 
  Google and LiveDocs I have come to this 
  conclusion.
  
  I need to use the 
  jrunsvc as Doug has replied to, and I saw that livedoc, to install a windows 
  service for that service.
  I can't seem to get 
  the service to load using that command though there are no samples, only wild 
  cards and I think I am getting the syntax wrong.
  I wish I had a sample 
  of a command line, with an extaction of the Windows services 
  entry.
  
  C:/jrun4/bin/jrunsvc 
  install jrun-server "service-name" "service-display" that 
  is a sample, no wildcards are mentioned. replace jrun-server 
  with your server name and the string literals with whatever you 
  want. You can always edit the descriptions in the services panel too. 
  
  



If I use the JRun 
welcome.jsp file console to turn off the cfusion service, and to turn on the 
cfusion7 service that works, but the cfusion turns back 
on.
I did notice that 
going into windows services and stopping the cfusion service does completely 
stop it.
  
  The ' JRun 
  welcome.jsp file' access via port 8000 is known as the JMC. I STRONGLY 
  recommend using this or the windows services panel in a mutually exclusive 
  manner. Using both of these to start/stop jrun servers is a bad idea, 
  they don't play well with others and may even use pointy scissors. If 
  you are doing all this on your local desktop for development, I wouldn't use 
  any of this. Just simply usec:\jrun4\jrun -start 
  jrun-server to start the server from a command line. 
  Creating a BAT file for this is cake and can be dbl-clicked in good old 
  windows. 
  



So with that, I 
guess I should turn the JRun cfusion svc to manual (which I just 
did)
And that I need 
some help on getting the JRun cfusion7 svc to install and have it run in the 
Windows services as Automatic.

I want to 
run:
C:/jrun4/bin/jrunsvc 
install jrun-server "service-name" 
"service-display"

I want it to post 
into Windows Services as:
Name:
Macromedia JRun 
CFusion7 Server

Description:Macromedia 
JRun ColdFusion 7 Server

Startup 
Type:
Automatic

Please help me with 
the syntax





From: 
Douglas Knudsen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 18, 2006 5:00 
PMTo: discussion@acfug.orgSubject: Re: [ACFUG Discuss] jrun 
setup

Are both of these listed in the Windows Services MMC 
Snap In?DK

On 
10/18/06, Robert Reil [EMAIL PROTECTED]  
wrote:


I have CFMX, and CFMX7 running 
in the JRUN console.
How do I make a default of MX 
stopped, and MX7 in run mode?



Robert P. 
Reil
Managing 
Director,
Motorcyclecarbs.com, 
Inc.
4292 Country Garden Walk 
NW
Kennesaw , Ga. 30152
Office 
770-974-8851
Fax 
770-974-8852
www.motorcyclecarbs.com 

-- Douglas Knudsenhttp://www.cubicleman.comthis is 
my signature, like it? - 
To unsubscribe from this list, 

[ACFUG Discuss] CFCUnit configuration tip

2006-10-25 Thread Steven Ross

This may seem obvious but, for those running CFCUnit this tip may help
(if it isn't that obvious!)

We were doing a bit of testing and found that we had to write all of
this setup code in each of our tests... ie test variables etc that
each test required so our test had something like:


cfset this.AccountFriendlyName = Joe Bob's Home Line/
cfset this.AccountIdentity = joebob42

cffunction name=setUp returntype=void access=private
cfinvoke component=com.Application 
method=onApplicationStart
returnvariable=tst
cfset this.Utility = CreateObject(component, com.Utility)
cfset this.imap = CreateObject(component, com.Imap) /
/cffunction


Now that got annoying having to set this up for each of our tests
because I found that we were doing a bit of overlap (ie we had to set
this stuff up sometimes twice depending on which components we were
testing (service  DAO).

So I wrote another component (call it SetupTests.cfc) it extends the
testcase component (required for cfcunit) it does ALL the
configuration and calls setup and teardown then all of our test cases
extend the SetupTests.cfc so now all our configuration lives in one
CFC so we are sure that when our tests are running they are all using
the same variables. Ah, CF's CFC architecture is very nice indeed.

I am going to write up a blog post about this with a little more detail later.

-Steven

--
Steven Ross
web application  interface developer
http://www.zerium.com
[mobile] 404-488-4364
[fax] 928-484-4364


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] Figured I'd try one more time for some insight on CFGRID

2006-10-25 Thread Jeff Howard
Hey all,


Was hoping there was someone that had some experience with the CFGRID tag that might give me some insight. I can't seem to make it function correctly.

If I use a Flash format CFGRID in edit mode it passes all emptry strings to my action page. I can get it to work in java mode but I like the look and feel of the Flash mode more.

I can create a Flash from that functions in edit mode but I can't actually get it to submit the edits to the action page. All variables come through as an empty string.

Any insight?

Thanks in advance for any light you can shed on this. 

Jeff



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-



RE: [ACFUG Discuss] jrun setup

2006-10-25 Thread axunderwood



Let me 
know if it works for you. That should do the trick

  -Original Message-From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]On Behalf Of Robert ReilSent: 
  Wednesday, October 25, 2006 1:38 PMTo: 
  discussion@acfug.orgSubject: RE: [ACFUG Discuss] jrun 
  setup
  
  Ill try that, 
  thanks.
  
  
  Robert P. 
  Reil
  Managing 
  Director,
  Motorcyclecarbs.com, 
  Inc.
  4292 Country Garden Walk 
  NW
  Kennesaw, Ga. 30152
  Office 
  770-974-8851
  Fax 
  770-974-8852
  www.motorcyclecarbs.com
  
  
  
  
  From: 
  [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 25, 2006 6:52 
  AMTo: discussion@acfug.orgSubject: RE: [ACFUG Discuss] jrun 
  setup
  
  
  Do:
  
  
  
  jrunsvc -remove "Name 
  of service to remove Case Sensitive"
  
-Original 
Message-From: 
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Robert ReilSent: Tuesday, October 24, 2006 4:55 
PMTo: discussion@acfug.orgSubject: RE: [ACFUG Discuss] jrun 
setup
Thump. Asking 
again


Robert P. 
Reil
Managing 
Director,
Motorcyclecarbs.com, 
Inc.
4292 Country Garden Walk 
NW
Kennesaw, Ga. 30152
Office 
770-974-8851
Fax 
770-974-8852
www.motorcyclecarbs.com




From: 
Robert Reil 
[mailto:[EMAIL PROTECTED] Sent: Friday, October 20, 2006 3:56 
PMTo: discussion@acfug.orgSubject: RE: [ACFUG Discuss] jrun 
setup

Well

I installed the 
CFusion7 service but it wont start.
I also installed a 
Default server while going through some how tos last night. I want to 
remove it and cant seem to.

For the removal 
of:
Macromedia JRun 
Default Server Service
I try to 
run:
Jrunsvc remove 

Macromedia JRun 
Default Server
Default
JRun 
Default
JRun Default 
Server

And none of these 
work.

I prefer to work in 
the Windows services console but have to get it to work 
first.

I feel so silly not 
being able to get this service to remove, and the other to 
start.






From: 
Douglas Knudsen [mailto:[EMAIL PROTECTED] Sent: Friday, October 20, 2006 11:51 
AMTo: discussion@acfug.orgSubject: Re: [ACFUG Discuss] jrun 
setup



On 10/19/06, Robert 
Reil [EMAIL PROTECTED] 
wrote:


Only the following 
services seem relevant

Macromedia JRun 
Admin Server
Macromedia JRun 
CFusion Server
Macromedia JRun 
Default Server

No other Macromedia 
JRun services are installed 

Digging around in 
Google and LiveDocs I have come to this 
conclusion.

I need to use the 
jrunsvc as Doug has replied to, and I saw that livedoc, to install a windows 
service for that service.
I can't seem to get 
the service to load using that command though there are no samples, only 
wild cards and I think I am getting the syntax 
wrong.
I wish I had a 
sample of a command line, with an extaction of the Windows services 
entry.

C:/jrun4/bin/jrunsvc 
install jrun-server "service-name" "service-display" that 
is a sample, no wildcards are mentioned. replace jrun-server 
with your server name and the string literals with whatever 
you want. You can always edit the descriptions in the services panel 
too. 

  
  
  
  If I use the JRun 
  welcome.jsp file console to turn off the cfusion service, and to turn on 
  the cfusion7 service that works, but the cfusion turns back 
  on.
  I did notice that 
  going into windows services and stopping the cfusion service does 
  completely stop it.

The ' JRun 
welcome.jsp file' access via port 8000 is known as the JMC. I STRONGLY 
recommend using this or the windows services panel in a mutually exclusive 
manner. Using both of these to start/stop jrun servers is a bad idea, 
they don't play well with others and may even use pointy scissors. 
If you are doing all this on your local desktop for development, I 
wouldn't use any of this. Just simply usec:\jrun4\jrun -start 
jrun-server to start the server from a command line. 
Creating a BAT file for this is cake and can be dbl-clicked in good old 
windows. 

  
  
  
  So with that, I 
  guess I should turn the JRun cfusion svc to manual (which I just 
  did)
  And that I need 
  some help on getting the JRun cfusion7 svc to install and have it run in 
  the Windows services as Automatic.
  
  I want to 
  run:
  C:/jrun4/bin/jrunsvc 
  install jrun-server "service-name" 
  "service-display"
  
  I want it to post 
  into Windows Services as:
  Name:
  Macromedia JRun 
  CFusion7 Server
  
  

[ACFUG Discuss] mac flex builder

2006-10-25 Thread Steven Ross

in case anyone missed this...

flex builder for the mac beta:

http://labs.adobe.com/technologies/flexbuilder2/

--
Steven Ross
web application  interface developer
http://www.zerium.com
[mobile] 404-488-4364
[fax] 928-484-4364


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] mac flex builder

2006-10-25 Thread Precia
Yeah, they are passing around a USB with that for all the Mac Users at Adobe MAX this week.
Is there anything someone would like to ask an Adobe member? Several ACFUG members are at the conference that could seek out answers.

Precia
On 10/25/06, Steven Ross [EMAIL PROTECTED] wrote:
in case anyone missed this...flex builder for the mac beta:
http://labs.adobe.com/technologies/flexbuilder2/--Steven Rossweb application  interface developerhttp://www.zerium.com[mobile] 404-488-4364[fax] 928-484-4364
-To unsubscribe from this list, manage your profile @http://www.acfug.org?fa=login.edituserform
For more info, see http://www.acfug.org/mailinglistsArchive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com-



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-



Re: [ACFUG Discuss] Figured I'd try one more time for some insight on CFGRID

2006-10-25 Thread Teddy Payne
Jeff,CFGrid being editable brings into play the idea of a webservice update. CFGrid is not really a good form container, but more of a interface to fire update, delete and create events. Now these webservices are created from actionscript that call CFCs.
I would recommend http://www.asfusion.com and they have some good examples of how to call webservices from actionscript for flash forms. Flash forms in a hybrid experience that submitting to an action page slowly becomes a secondary processes.
TeddyOn 10/25/06, Jeff Howard [EMAIL PROTECTED] wrote:
Hey all,


Was hoping there was someone that had some experience with the CFGRID tag that might give me some insight. I can't seem to make it function correctly.

If I use a Flash format CFGRID in edit mode it passes all emptry strings to my action page. I can get it to work in java mode but I like the look and feel of the Flash mode more.

I can create a Flash from that functions in edit mode but I can't actually get it to submit the edits to the action page. All variables come through as an empty string.

Any insight?

Thanks in advance for any light you can shed on this. 

Jeff



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-


-- cf_payne /Adobe Certified Advanced ColdFusion Application DeveloperBlog: http://cfpayne.wordpress.com/
Atlanta CFUG: http://www.acfug.org



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-



Re: Re: [ACFUG Discuss] mac flex builder

2006-10-25 Thread Steven Ross

Hm, when will CS3 be released? hehe... I'm sure they will give you an answer.

On 10/25/06, Precia [EMAIL PROTECTED] wrote:

Yeah, they are passing around a USB with that for all the Mac Users at Adobe
MAX this week.
Is there anything someone would like to ask an Adobe member?  Several ACFUG
members are at the conference that could seek out answers.

Precia


On 10/25/06, Steven Ross [EMAIL PROTECTED] wrote:

 in case anyone missed this...

 flex builder for the mac beta:

 http://labs.adobe.com/technologies/flexbuilder2/

 --
 Steven Ross
 web application  interface developer
 http://www.zerium.com
 [mobile] 404-488-4364
 [fax] 928-484-4364



-
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @
http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by http://www.fusionlink.com

-






-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @
http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-



--
Steven Ross
web application  interface developer
http://www.zerium.com
[mobile] 404-488-4364
[fax] 928-484-4364


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] Flex / Cairngorm

2006-10-25 Thread Precia
Cairngorm 2.1 is coming out on labs.adobe.com today...be on the look out.

Precia



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-



Re: [ACFUG Discuss] Flex / Cairngorm

2006-10-25 Thread Teddy Payne
Caringorm 2.1 utilizes Flex Data Services and has a future growth of three product offerings:Cairngorm EnterpriseCairngorm ApolloCairngorm MobileIt looks extremely promising a good core framework for Flex. Warning though, it is a heavy OO framework that utilizes multiple design patterns.
TeddyOn 10/25/06, Precia [EMAIL PROTECTED] wrote:
Cairngorm 2.1 is coming out on labs.adobe.com today...be on the look out.

Precia



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-


-- cf_payne /Adobe Certified Advanced ColdFusion Application DeveloperBlog: http://cfpayne.wordpress.com/
Atlanta CFUG: http://www.acfug.org



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-