Re: Retrieving tomcat realm from org.apache.catalina.Server object

2006-10-13 Thread Sathija Pavuluri
you set your web context parameter? > > On 10/14/06, Sathija Pavuluri <[EMAIL PROTECTED]> wrote: >> >> Nope, nothing in the logs. >> But I have a feeling its something to do with permissions. >> I've given privilged access to the webapp, cant think of anythi

Re: Retrieving tomcat realm from org.apache.catalina.Server object

2006-10-13 Thread Sathija Pavuluri
y I am using Tomcat 5.5 , has anything changed since earlier versions in this regard? > Is there any error info in log files? Would it be permission problem? ... > make sure all needed tomcat libs are readable by your webapp ... > > On 10/13/06, Sathija Pavuluri <[EMAIL PROTECTED]>

Re: Retrieving tomcat realm from org.apache.catalina.Server object

2006-10-13 Thread Sathija Pavuluri
context. Can't figure out if I missed anything else. > is the server instance ok? > > On 10/13/06, Sathija Pavuluri <[EMAIL PROTECTED]> wrote: >> >> I've tried that too. >> findServices() returns an array of length 0. >> >> >> >> >

Re: Retrieving tomcat realm from org.apache.catalina.Server object

2006-10-13 Thread Sathija Pavuluri
f the service array and see > if still null ... > > > > On 10/13/06, Sathija Pavuluri <[EMAIL PROTECTED]> wrote: >> >> Hello, >> >> I would like to retrieve the tomcat realm object from the Server object. >> Below is the code snippet I use ... >&g

Retrieving tomcat realm from org.apache.catalina.Server object

2006-10-13 Thread Sathija Pavuluri
Hello, I would like to retrieve the tomcat realm object from the Server object. Below is the code snippet I use ... __ Server server = ServerFactory.getServer(); Service service = server.findService("Catalina"); Engine engine = (Engine) service.getContainer(); //engine.getRealm(); H