I'm running multiple server instances of ColdFusion MX with JRun (Instance1 &
Instance2). Instance1 & Instance2 are clustered (Cluster1) . I have multiple
applications runing on Cluster1 (App1, App2, App3). I sometimes have the need
to reset one of the App's structures on all instances without having to restart
the instances. I typically do this by passing in a URL Variable (AppClear=TRUE).

How do I reset the application struct for App1 on both instances at the same
time? Is it possible to force my browser session to another instance? I think
security issues will keep me from referencing one instance from another within
the application. Any thoughts?

I know you can get the instance names but then what?
<cfobject action="create" type="java" class="jrunx.kernel.JRun" name="objRun">
<cfset servername = objRun.getServerName()>
<cfoutput>JRun Server Name: #servername#</cfoutput>