> Can anyone tell me to get a list of all of the ColdFusion > Application Names currently running on the on the server? > > What I mean by this is a list of all the Application.name > values. I know that I can just access Application.name > when I am in the application, but I have recently been > forced to allow other groups to use our server and I want > to be able to find any cf applications that they are adding > that I don't know about as I have to keep track of them. > > I don't want to have to review every single page to find the > applications.
I don't think there's any way in CF alone to access these names directly. You could write something which scoured the filesystem looking for files named Application.cfm and/or parsing CFAPPLICATION tags, but there wouldn't be any guarantee that they'd be currently running applications. I don't know enough about Java application servers to say whether this information would be available through the servlet API or something like that - that's where I'd start looking, though. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq 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 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

