RE: reading jvmRoute property specified in server.xml

2011-01-07 Thread loteq
resolved this by the combination of catilina.base with java.net.InetAddress.getLocalHost().getHostName() which makes unique.. Caldarale, Charles R wrote: From: bhanujirao [mailto:dumpala.venk...@gmail.com] Subject: RE: reading jvmRoute property specified in server.xml i need

Re: reading jvmRoute property specified in server.xml

2011-01-07 Thread Pid
this by the combination of catilina.base with java.net.InetAddress.getLocalHost().getHostName() which makes unique.. Caldarale, Charles R wrote: From: bhanujirao [mailto:dumpala.venk...@gmail.com] Subject: RE: reading jvmRoute property specified in server.xml i need to read it in java

reading jvmRoute property specified in server.xml

2009-04-13 Thread bhanujirao
Guys, i have the following property set in server.xml. i need to read jvmRoute in my web app. Can someone please suggestion how to read this property in java class ? Thanks in advance venky -- View this message in context: http://www.nabble.com/reading--jvmRoute-property-specified

RE: reading jvmRoute property specified in server.xml

2009-04-13 Thread Caldarale, Charles R
From: bhanujirao [mailto:dumpala.venk...@gmail.com] Subject: reading jvmRoute property specified in server.xml i need to read jvmRoute in my web app. It should be part of the session id; if your code is running in a servlet, try: HttpServletRequest.getSession().getId() and parse it out

RE: reading jvmRoute property specified in server.xml

2009-04-13 Thread bhanujirao
: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org -- View this message in context: http://www.nabble.com/reading--jvmRoute-property-specified-in-server.xml-tp23024883p23032280.html Sent from the Tomcat - User mailing list archive at Nabble.com

RE: reading jvmRoute property specified in server.xml

2009-04-13 Thread Caldarale, Charles R
From: bhanujirao [mailto:dumpala.venk...@gmail.com] Subject: RE: reading jvmRoute property specified in server.xml i need to read it in java class which i dont have access to HttpServletRequest So what does this Java class have access to? If you'd provide information about what you

RE: reading jvmRoute property specified in server.xml

2009-04-13 Thread bhanujirao
: reading jvmRoute property specified in server.xml i need to read it in java class which i dont have access to HttpServletRequest So what does this Java class have access to? If you'd provide information about what you *are* doing (as opposed to what you're *not* doing), it would help. Playing