RE: access to the cf server settings

2004-02-27 Thread Jim Davis
As a useless aside I’ve a very reliable rumor that all of this stuff will
finally be surfaced in the next release of CF.  It’ll probably take the form
of some sort of  tag or set of tags.  I didn’t get any specifics
(exactly which functions would be provided and so forth) but I did hear it
should “let you build your own CF Administrator”.

 
Not helpful now, I know – but it gives hope for the (near) future I think.
;^)

 
Jim Davis

 
  _  

From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 27, 2004 4:53 AM
To: CF-Talk
Subject: Re: access to the cf server settings

 
Eric Chataigné said:
> Is it possible to access to the CFMX server settings in a CF script.
> I am interested in getting the list of mapped directories.


  
    factory = CreateObject("java", "coldfusion.server.ServiceFactory");
    rt_service = factory.runtimeservice;
    mappings = rt_service.mappings;
  
  


IIRC you need to be logged in as Admin since Updater 3.

Jochem
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: access to the cf server settings

2004-02-27 Thread John Beynon
I wrote a CF wrapper to manage all this, list, add, delete, edit CF
mappings, download from http://www.beynon.org.uk/downloads/mappings.zip

John.

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: 27 February 2004 09:53
To: CF-Talk
Subject: Re: access to the cf server settings

Eric Chataigné said:
> Is it possible to access to the CFMX server settings in a CF script.
> I am interested in getting the list of mapped directories.


  
    factory = CreateObject("java", "coldfusion.server.ServiceFactory");
    rt_service = factory.runtimeservice;
    mappings = rt_service.mappings;
  
  


IIRC you need to be logged in as Admin since Updater 3.

Jochem
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: access to the cf server settings

2004-02-27 Thread Jochem van Dieten
Eric Chataigné said:
> Is it possible to access to the CFMX server settings in a CF script.
> I am interested in getting the list of mapped directories.


  
    factory = CreateObject("java", "coldfusion.server.ServiceFactory");
    rt_service = factory.runtimeservice;
    mappings = rt_service.mappings;
  
  


IIRC you need to be logged in as Admin since Updater 3.

Jochem
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]