I am trying to resolve the following problem.
1. I need to be able to embed Tomcat functionality in an application
2. The functionality requires the ability to:
- have a default set of contexts (manager, jwsdp-catalog, perhaps admin)
- have the ability to deploy webservices
a. I am able to get things running with using the Embedded class example.
The problem is that it does not have all the infrastructure of Catalina that
allows to auto-start the hierarchy of deployed webapps.b. Instead of embedding Embedded, I moved to embed Catalina.
I do so by instantiating a Catalina instance and invoking 'start'
The problem that occurs is that I am unable to perform authentication against the manager/html servlet.
Here is the log output:
2004-04-13 14:58:21 createObjectName with StandardEngine[Catalina]
2004-04-13 14:58:21 preRegister with Catalina:type=Logger
2004-04-13 14:58:21 SingleSignOn[localhost]: Started
2004-04-13 14:58:24 createObjectName with StandardEngine[Catalina].StandardHost[localhost].StandardContext[/jwsdp-catalog]
2004-04-13 14:58:24 preRegister with Catalina:type=Logger,path=/jwsdp-catalog,host=localhost
2004-04-13 14:58:46 SingleSignOn[localhost]: Process request for '/manager/html'2004-04-13 14:58:46 SingleSignOn[localhost]: Checking for SSO cookie
2004-04-13 14:58:46 SingleSignOn[localhost]: SSO cookie is not present
2004-04-13 14:58:52 SingleSignOn[localhost]: Process request for '/manager/html'2004-04-13 14:58:52 SingleSignOn[localhost]: Checking for SSO cookie
2004-04-13 14:58:52 SingleSignOn[localhost]: SSO cookie is not present
2004-04-13 14:59:04 SingleSignOn[localhost]: Process request for '/manager/html'2004-04-13 14:59:04 SingleSignOn[localhost]: Checking for SSO cookie
2004-04-13 14:59:04 SingleSignOn[localhost]: SSO cookie is not present
2004-04-13 14:59:14 SingleSignOn[localhost]: Process request for '/jwsdp-catalog/'
2004-04-13 14:59:14 SingleSignOn[localhost]: Checking for SSO cookie
2004-04-13 14:59:14 SingleSignOn[localhost]: SSO cookie is not present
(I am not blocking cookies for the website).
The symptom is that the user authentication popup continues popping up, even though I configured the user who can be a manager.
I would appreciate help to point at what I may be doing wrong.
Thanks,
Arieh -- Arieh Markel Sun Microsystems Inc. Network Storage 500 Eldorado Blvd. MS UBRM05-194 e-mail: [EMAIL PROTECTED] Broomfield, CO 80021 Pray for snow !!!! Phone: (303) 272-8547 x78547
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
