Re: using a datasource connection pool resource with username and password supplied by user

2005-10-10 Thread jeffery . s . eaton
Thanks for the suggestion Bob,

I think what you are saying about realms is valid and most likely the
easiest way to enforce security.  It would be my choice if it wasn't a
corporate standards issue.  I will read up on the link you sent and see if
I can get away with it in terms of meeting with policy.

Thank you all for your input.

Jeffery S. Eaton




Opinions contained in this e-mail do not necessarily reflect
the opinions of the Queensland Department of Main Roads,
Queensland Transport or Maritime Safety Queensland, or
endorsed organisations utilising the same infrastructure.
If you have received this electronic mail message in error,
please immediately notify the sender and delete the message
from your computer.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: using a datasource connection pool resource with username and password supplied by user

2005-10-10 Thread jeffery . s . eaton
That's right Sasha,

I will have to ensure connections are closed down automatically if the user
doesn't log out, but at this stage I will note your comment for further
research.

Thanks,

Jeffery S. Eaton




Opinions contained in this e-mail do not necessarily reflect
the opinions of the Queensland Department of Main Roads,
Queensland Transport or Maritime Safety Queensland, or
endorsed organisations utilising the same infrastructure.
If you have received this electronic mail message in error,
please immediately notify the sender and delete the message
from your computer.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: using a datasource connection pool resource with username and password supplied by user

2005-10-10 Thread jeffery . s . eaton
Good question Bob,

This system may eventually be implemented for the government department I
work for in Queensland, Australia.  This project is a pilot one which will
involve four separate district offices in four different cities.  The
department has policies on data security which includes authenticating
individual users to a database.  As this is a requirement I can't avoid I
wanted to find a way to implement it even in the proof-of-concept stage.

User authentication can be implemented on the middle tier in Tomcat but I
don't think this will satisfy the dept. requirements.  That being the case,
my plan was to let the database decide if a user can get into the site.  If
they are authenticated to the db then they have access to the site.  One
other advantage of db authentication which will be important in this case
is the separation of database roles.  Users will have access to update only
the tables they are approved to access.

Jeffery S. Eaton




Opinions contained in this e-mail do not necessarily reflect
the opinions of the Queensland Department of Main Roads,
Queensland Transport or Maritime Safety Queensland, or
endorsed organisations utilising the same infrastructure.
If you have received this electronic mail message in error,
please immediately notify the sender and delete the message
from your computer.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: using a datasource connection pool resource with username and password supplied by user

2005-10-09 Thread jeffery . s . eaton
Thanks Doug and Chuck,

I suspected as much re. the connection pool.  This sort of negates the
value of it a little (for me anyway).

My original plan was to go with saving the connection to the session once
it was established but I had read somewhere that connections are not
'serializable' and therefore the garbage cleanup in tomcat may kill the
connection unexpectedly?!.?

Has anyone used session tracking to store database connections?  If so, has
anything bad happened?

Doug to answer your question "How many users are there going to be on the
system at once and can the
system handle that many open connections?"...

I anticipate that the production version will have from 20 - 30 people
updating information (in different cities ) and possibly 50 or so browsing
the database for information.  The backend database will be ORACLE 9i
running in MS Server 2003 on an IBM server.  In the pooled connection
implementation I allowed for 150 concurrent users.  I think oracle running
on a pretty beefy application server should be able to handle it.  The web
server box will also be MS server 2003 on an older style server so I
suppose the only scary part will be weaknesses (if there are any) in Tomcat
itself.

Anyway, I will implement storing the connection in the session with the log
out killing the connection.

Any comments or gotchas you know about would be useful.

Jeffery S. Eaton






Opinions contained in this e-mail do not necessarily reflect
the opinions of the Queensland Department of Main Roads,
Queensland Transport or Maritime Safety Queensland, or
endorsed organisations utilising the same infrastructure.
If you have received this electronic mail message in error,
please immediately notify the sender and delete the message
from your computer.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



using a datasource connection pool resource with username and password supplied by user

2005-10-09 Thread jeffery . s . eaton

I have set up a connection pool using the following set up:
___-








   
   


_

to access this pool I use the following code:

Context initContext = new InitialContext();
Context envContext  = (Context)initContext.lookup("java:/comp/env");
DataSource ds = (DataSource)envContext.lookup("jdbc/rsams_oracle");
conn = ds.getConnection();
.

It all works fine:

But what I really want to do is to get a database user and password from
the user and (after validating it) write this to a session cookie.
Then when the user interacts with the database (which is all the time) the
username and password will be extracted
from the cookie and used in the following way:

Context initContext = new InitialContext();
Context envContext  = (Context)initContext.lookup("java:/comp/env");
DataSource ds = (DataSource)envContext.lookup("jdbc/rsams_oracle");
conn = ds.getConnection("username","password");
..

The problem is I have not been able to find a way to get this to work.

I have tried removing the user and password from the connection pool
resource (doesn't work)
I have tried this code in the calling - conn =
ds.doGetConnection("username","password") - Doesn't work.

I thought javax.sql.datasource which is the type of the resource supported
the getConnection(username, password) method but it doesn't seem to work
when
using a resource set up as above.

If anyone can point me in the right direction I will be most grateful.  I
have trawled the forums with no success as everyone seems to be
happy with the username and password being set in the context resource.


Any help I can get would be most appreciated.

Regards,


Jeffery S. Eaton




Opinions contained in this e-mail do not necessarily reflect
the opinions of the Queensland Department of Main Roads,
Queensland Transport or Maritime Safety Queensland, or
endorsed organisations utilising the same infrastructure.
If you have received this electronic mail message in error,
please immediately notify the sender and delete the message
from your computer.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Multiple Threads for one webapp

2005-09-30 Thread Mahesh S Kudva
Hi

Thanks for the note. I just happened to see something strange. As I have 
configured 3 Virtual hosts, in the /server/default/work 
folder i can see the folders of each virtual host. Within each i can see 
all the hosted apps including localhost. 

The folder /server/default/work contains webapp1.domain.com, 
webapp2.domain.com and webapp3.domain.com

The folder /server/default/work/webapp1.domain.com contains 
webapp1, webapp2, webapp3 and jmx-console.

The folder /server/default/work/webapp2.domain.com contains 
webapp1, webapp2, webapp3 and jmx-console.

The folder /server/default/work/webapp3.domain.com contains 
webapp1, webapp2, webapp3 and jmx-console.

Within each of these there are two files session and cache. 

Is this causing the issue.??? Is this normal ???

Regards & Thanks

Mahesh S Kudva


-Original Message-
From: Tim Funk <[EMAIL PROTECTED]>
To: Tomcat Users List 
Date: Fri, 30 Sep 2005 11:55:18 -0400
Subject: Re: Multiple Threads for one webapp

> This still seems to be a programming issue (possibly a config issue).
> Without 
> source and config files - I don't see how the mailing list can help
> resolve 
> this.
> 
> -Tim
> 
> Mahesh S Kudva wrote:
> 
> > Hi
> > 
> > I have restarted Tomact and made sure no threads run in the
> background. 
> > But still the problem persists. Every time tomcat is restarted, I can
> see 
> > the notification thread start "Notification thread
> started...32237"
> > 
> > 
> > 
> > Regards & Thanks
> > 
> > Mahesh S Kudva
> > 
> > 
> > -Original Message-
> > From: Tim Funk <[EMAIL PROTECTED]>
> > To: Tomcat Users List 
> > Date: Fri, 30 Sep 2005 09:56:09 -0400
> > Subject: Re: Multiple Threads for one webapp
> > 
> > 
> >>It seems you have a thread started in the background during the life
> of
> >>the 
> >>application.
> >>This thread goes to some external place of storage and to look for
> >>emails to 
> >>send.
> >>It seems this thread is not stopped when a context is reloaded.
> >>When the app is reloaded - a new thread is started.
> >>In this case - the app was restarted 6 times - leaving you 7 threads
> >>all 
> >>looking to the smae external loctation for sending emails.
> >>
> >>Solution: Use a ServletContextListerner to detect webapp shutdown so
> >>the 
> >>thread may be stopped.
> >>
> >>
> >>-Tim
> >>
> >>Mahesh S Kudva wrote:
> >>
> >>
> >>>Hi All
> >>> 
> >>> I have setup virtual hosts for 3 apps with virtual hosts config as 
> >>> follows. These virtual hosts are first handled by Apache and
> mod_jk.
> >>
> >>My 
> >>
> >>> apps have scheduler and automated mailing services.
> >>> 
> >>>  >>>unpackWARs="true">
> >>> www.vhost.domain.com
> >>>  >>> directory="${jboss.server.home.dir}/log" 
> >>>prefix="vhost_log1."  suffix=".log" timestamp="true"/>
> >>>   >>> docBase="${jboss.server.home.dir}/deploy/application.war" debug="0"
> >>> reloadable="true"/>
> >>> 
> >>> 
> >>>This config is mailing the same mail 7 time. Further I noticed that 
> >>>there  were 7 service started of the same kind. Querying the
> >>
> >>developer, 
> >>
> >>>he said that he had coded the apps to have the mail sent once every
> >>
> >>week. 
> >>
> >>>The mails are sent once every week but as said 7 copies of the same
> >>
> >>mail 
> >>
> >>>is delivered.
> >>> 
> >>> The request for the app results in page not found if I follow the 
> >>> following config, even thought there is no error in startup.
> >>> 
> >>>  >>> docBase="${jboss.server.home.dir}/deploy/application.war" debug="0"
> >>> reloadable="true"/>
> >>> 
> >>> 
> >>> 
> >>> Can you guys have any idea on this and help me troubleshoot ???
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


---
Robosoft Technologies - Partners in Product Development


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Multiple Threads for one webapp

2005-09-30 Thread Mahesh S Kudva
Hi

I have restarted Tomact and made sure no threads run in the background. 
But still the problem persists. Every time tomcat is restarted, I can see 
the notification thread start "Notification thread started...32237"



Regards & Thanks
====
Mahesh S Kudva


-Original Message-
From: Tim Funk <[EMAIL PROTECTED]>
To: Tomcat Users List 
Date: Fri, 30 Sep 2005 09:56:09 -0400
Subject: Re: Multiple Threads for one webapp

> It seems you have a thread started in the background during the life of
> the 
> application.
> This thread goes to some external place of storage and to look for
> emails to 
> send.
> It seems this thread is not stopped when a context is reloaded.
> When the app is reloaded - a new thread is started.
> In this case - the app was restarted 6 times - leaving you 7 threads
> all 
> looking to the smae external loctation for sending emails.
> 
> Solution: Use a ServletContextListerner to detect webapp shutdown so
> the 
> thread may be stopped.
> 
> 
> -Tim
> 
> Mahesh S Kudva wrote:
> 
> > Hi All
> >  
> >  I have setup virtual hosts for 3 apps with virtual hosts config as 
> >  follows. These virtual hosts are first handled by Apache and mod_jk.
> My 
> >  apps have scheduler and automated mailing services.
> >  
> >   > unpackWARs="true">
> >  www.vhost.domain.com
> >   >  directory="${jboss.server.home.dir}/log" 
> > prefix="vhost_log1."  suffix=".log" timestamp="true"/>
> >>  docBase="${jboss.server.home.dir}/deploy/application.war" debug="0" 
> >  reloadable="true"/>
> >  
> >  
> > This config is mailing the same mail 7 time. Further I noticed that 
> > there  were 7 service started of the same kind. Querying the
> developer, 
> > he said that he had coded the apps to have the mail sent once every
> week. 
> > The mails are sent once every week but as said 7 copies of the same
> mail 
> > is delivered.
> >  
> >  The request for the app results in page not found if I follow the 
> >  following config, even thought there is no error in startup.
> >  
> >   >  docBase="${jboss.server.home.dir}/deploy/application.war" debug="0" 
> >  reloadable="true"/>
> >  
> >  
> >  
> >  Can you guys have any idea on this and help me troubleshoot ???
> >  
> >  
> >  Regards & Thanks
> >  
> >  Mahesh S Kudva
> > 
> > 
> > ---
> > Robosoft Technologies - Partners in Product Development
> > 
> > 
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> > 
> > 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


---
Robosoft Technologies - Partners in Product Development


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Multiple Threads for one webapp

2005-09-30 Thread Mahesh S Kudva
Hi All
 
 I have setup virtual hosts for 3 apps with virtual hosts config as 
 follows. These virtual hosts are first handled by Apache and mod_jk. My 
 apps have scheduler and automated mailing services.
 
 
 www.vhost.domain.com
 
  
 
 
This config is mailing the same mail 7 time. Further I noticed that 
there  were 7 service started of the same kind. Querying the developer, 
he said that he had coded the apps to have the mail sent once every week. 
The mails are sent once every week but as said 7 copies of the same mail 
is delivered.
 
 The request for the app results in page not found if I follow the 
 following config, even thought there is no error in startup.
 
 
 
 
 
 Can you guys have any idea on this and help me troubleshoot ???
 
 
 Regards & Thanks
 
 Mahesh S Kudva


---
Robosoft Technologies - Partners in Product Development


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Virtual hosts and Threads

2005-09-28 Thread Mahesh S Kudva
Hi All

I have setup virtual hosts for 3 apps with virtual hosts config as 
follows. These virtual hosts are first handled by Apache and mod_jk. My 
apps have scheduler and automated mailing services.


www.vhost.domain.com

 
 

This config is mailing the same mail 7 time. Further I noticed that there 
were 7 service started of the same kind. Querying the developer, he said 
that he had coded the apps to have the mail sent once every week. The 
mails are sent once every week but as said 7 copies of the same mail is 
delivered.

The request for the app results in page not found if I follow the 
following config, even thought there is no error in startup.





Can you guys have any idea on this and help me troubleshoot ???


Regards & Thanks

Mahesh S Kudva


---
Robosoft Technologies - Partners in Product Development


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Virtual Hosts

2005-09-16 Thread Mahesh S Kudva
This setup has been tested on Apache2+JBoss+mod_jk-1.2.14_for MacOSX. And 
am sure it will work on other platforms as well. This setup also handles 
Apache related webapps..

Make the required entries in the DNS

webapp.war: Extract the war file using zip and rename the folder 
with .war extension. Please put it in your deployment folder.

mod-jk.so: Obtain the modjk.so library file from www.apache.org and place 
then in the modules folder.

Apache-Virtual Host config
--
NameVirtualHost *.*.*.*:80


ServerName webapp.domainname.com
ServerAlias www.webapp.domainname.com
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /Volumes/Extra/jboss/server/default/deploy/webapp.war
JkMount /* loadbalancer
DirectoryIndex index.html index.jsp
ErrorLog logs/webapp-error_log
CustomLog logs/webapp-access_log common

-
mod-jk.conf

LoadModule jk_module /opt/apache2/modules/mod_jk.so

JkWorkersFile /opt/apache2/conf/workers.properties
JkLogFile /opt/apache2/logs/mod_jk.log
JkLogLevel info
JkLogStampFormat "[%a %b %d %H:%M:%S %Y]"
JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories
JkRequestLogFormat "%w %V %T"
JkMount /webapp.domain.com/*.jsp loadbalancer
JkMountFile /opt/apache2/conf/uriworkermap.properties
JkShmFile /opt/apache2/logs/jk.shm

JkMount status
Allow from 127.0.0.1
Deny from All


--
Server.xml
-


www.webapp.domain.com




--
--
uriworkermap.properties

/jmx-console=loadbalancer
/jmx-console/*=loadbalancer
/web-console=loadbalancer
/web-console/*=loadbalancer
/webapp.domain.com/*.jsp 

--
--
workers.properties


worker.list=loadbalancer,status

worker.webapp.port=8009
worker.webapp.host=webapp.domain.com
worker.webapp.type=ajp13
worker.webapp.lbfactor=1
worker.webapp.cachesize=10

worker.loadbalancer.type=lb
worker.loadbalancer.balance_workers=library
worker.loadbalancer.sticky_session=1
worker.loadbalancer.local_worker_only=1
worker.list=loadbalancer

worker.status.type=status

_

Regards & Thanks
====
Mahesh S Kudva


-Original Message-
From: Steve Dodge <[EMAIL PROTECTED]>
To: Tomcat Users List 
Date: Thu, 15 Sep 2005 15:57:04 -0500
Subject: Re: Virtual Hosts

> You probably want to change the appBase. You can control the contexts
> by 
> creating a context snippet in conf/[Engine name]/[Host name]  or add it
> to META-INF/context.xml in each war.
> 
> Hope that helps,
> Steve
> 
> Durfee, Bernard wrote:
> 
> >Okay, so I created two  elements in my server.xml...
> >
> >   >appBase="webapps"
> >autoDeploy="true"
> >deployOnStartup="true"
> >deployXML="true"
> >unpackWARs="true"
> >xmlValidation="false"
> >xmlNamespaceAware="false" />
> >
> >   >appBase="webapps"
> >autoDeploy="true"
> >deployOnStartup="true"
> >deployXML="true"
> >unpackWARs="true"
> >xmlValidation="false"
> >xmlNamespaceAware="false" />
> >
> >...but how do I tell Tomcat which context to process? There will be no
> >context correct? Do I need a separate appBase directory for each
> 
> >element?
> >
> >Thanks,
> >Bernie
> >
> >
> >
> >  
> >
> >>-Original Message-
> >>From: Allistair Crossley [mailto:[EMAIL PROTECTED] 
> >>Sent: Thursday, September 15, 2005 12:10 PM
> >>To: Tomcat Users List
> >>Subject: RE: Virtual Hosts
> >>
> >>
> >>Simplistically ...
> >>
> >>Configure Host elements inside your Engine. Create a folder 
> >>for each application within webapps. Set the Host docBase to each. 
> >>
> >>Check out the online ref.
> >>
> >>
> >>
> >>>-Original Message-
> >>>From: Durfee, Bernard [mailto:[EMAIL PROTECTED]
> >>>Sent: 15 September 2005 17:07
> >>>To: tomcat-user@jakarta.apache.org
> >>>Subject: Virtual Hosts
> >>>
> >>>
> >>>I am having trouble configuring virtual hosts in Tomcat 
> >>>  
&g

Re: Tomcat SSL and Virtual Domains

2005-09-03 Thread Mahesh S Kudva
I had a similar issue. I too had a doubt in servr.xml. Search the archives for 
the 
topic "Virtual Hosting with WAR files". I've posted in detail what the 
configurations 
that helped me with virtual hosting.

Hope it helps you too

Regards & Thanks
====
Mahesh S Kudva


-Original Message-
From: Dawn Blaine <[EMAIL PROTECTED]>
To: Dawn Blaine <[EMAIL PROTECTED]>
Cc: tomcat-user@jakarta.apache.org
Date: Sat, 03 Sep 2005 11:45:12 -0500
Subject: Tomcat SSL and Virtual Domains

> We are running tomcat 4 standalone.  I have things running fine with
> one 
> host but now we need
> to add two more virtual hosts.  I am pretty sure the problem is with my
> server.xml file but I
> haven't been able to figure it out.  I have read through the docs and 
> looked through the postings and I'm still stuck.
> 
> Can someone help me out here?  Please?
> 
> 
> 
> Here's the file:
> Server is running and the sterling domain is fine.  Just the others
> that 
> have problems.
> 
> 
> Thank you in advance
> 
> D Blaine
> 
> 
> 
> 
> 
> 
> 
>   port="8080" minProcessors="5" maxProcessors="75"
>   enableLookups="false" redirectPort="8443"
>   acceptCount="100" debug="0" connectionTimeout="2"
>   useURIValidationHack="false" disableUploadTimeout="true"
> />
> 
>port="8443" minProcessors="5" maxProcessors="75"
>   enableLookups="false"
>   acceptCount="100" debug="0" scheme="https" secure="true"
>   useURIValidationHack="false" disableUploadTimeout="true">
>   className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory" 
> keystoreFile="/home/svhrs-1/keystore.kdb" clientAuth="false" 
> protocol="TLS"/>
> 
> 
>defaultHost="sterling-vizcaya-hotel-reservations-sacramento.com"
> debug="0">
> 
> prefix="catalina_log." suffix=".txt"
>  timestamp="true"/>
> 
>   appBase="/home/svhrs-1/sterling-vizcaya-hotel-reservations-sacramento-w
> ww/webapps" 
> unpackWARs="true" autoDeploy="true" debug="0" 
> name="sterling-vizcaya-hotel-reservations-sacramento.com">
> pattern="common" prefix="access-log" 
> directory="/home/svhrs-1/sterling-vizcaya-hotel-reservations-sacramento
> -logs" 
> />
> path="/home/svhrs-1/sterling-vizcaya-hotel-reservations-sacramento-www/
> webapps/hotel" 
> docBase="hotel" privileged="true" debug="0" >
>   debug="0"
>  saveOnRestart="true"
>  maxActiveSessions="-1"
>  minIdleSwap="-1"
>  maxIdleSwap="-1"
>  maxIdleBackup="-1">
> className="org.apache.catalina.session.FileStore"/>
>  
>   value="15"/>
> 
>  
> 
> 
>  unpackWARs="true" autoDeploy="true" debug="0" 
> name="esavvy-reservations.com">
>   pattern="common" prefix="access-log" 
> directory="/home/kinres/esavvy-reservations-logs" />
> path="/home/kinres/esavvy-reservations-www/webapps/esavvyres" 
> docBase="esavvyres" privileged="true" debug="0" >
>   debug="0"
>  saveOnRestart="true"
>  maxActiveSessions="-1"
>  minIdleSwap="-1"
>  maxIdleSwap="-1"
>  maxIdleBackup="-1">
> className="org.apache.catalina.session.FileStore"/>
>  
>   value="15"/>
> 
>  
> 
>  unpackWARs="true" 
> autoDeploy="true" debug="0" name="esavvysystems.com">
> pattern="common" prefix="access-log" 
> directory="/home/esavvy/esavvysystems-logs" />
> docBase="esavvyres" privileged="true" debug="0" >
>   debug="0"
>  saveOnRestart="true"
>  maxActiveSessions="-1"
>  minIdleSwap="-1"
>  maxIdleSwap="-1"
>  maxIdleBackup="-1">
> className="org.apache.catalina.session.FileStore"/>
>  
>   value="15"/>
> 
>  
> 
> -->
>
> 
>  
> 
> 
> 
> 
> >
> >
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


---
Robosoft Technologies - Partners in Product Development


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Manager webapp and virtual hosts

2005-08-27 Thread Mahesh S Kudva
This setup has been tested on Apache2+JBoss+mod_jk-1.2.14_for MacOSX. And 
am sure it will work on other platforms as well. This setup also handles 
Apache related webapps..

Make the required entries in the DNS

webapp.war: Extract the war file using zip and rename the folder 
with .war extension. Please put it in your deployment folder.

mod-jk.so: Obtain the modjk.so library file from www.apache.org and place 
then in the modules folder.

Apache-Virtual Host config
--
NameVirtualHost *.*.*.*:80


ServerName webapp.robosoft.co.in
ServerAlias www.webapp.robosoft.co.in
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /Volumes/Extra/jboss/server/default/deploy/webapp.war
JkMount /* loadbalancer
DirectoryIndex index.html index.jsp
ErrorLog logs/webapp-error_log
CustomLog logs/webapp-access_log common

-
mod-jk.conf

LoadModule jk_module /opt/apache2/modules/mod_jk.so

JkWorkersFile /opt/apache2/conf/workers.properties
JkLogFile /opt/apache2/logs/mod_jk.log
JkLogLevel info
JkLogStampFormat "[%a %b %d %H:%M:%S %Y]"
JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories
JkRequestLogFormat "%w %V %T"
JkMount /webapp.domain.com/*.jsp loadbalancer
JkMountFile /opt/apache2/conf/uriworkermap.properties
JkShmFile /opt/apache2/logs/jk.shm

JkMount status
Allow from all


--
Server.xml
-


www.webapp.domain.com




--
--
uriworkermap.properties

/jmx-console=loadbalancer
/jmx-console/*=loadbalancer
/web-console=loadbalancer
/web-console/*=loadbalancer
/webapp.domain.com/*.jsp 

--
--
workers.properties


worker.list=loadbalancer,status

worker.webapp.port=8009
worker.webapp.host=webapp.domain.com
worker.webapp.type=ajp13
worker.webapp.lbfactor=1
worker.webapp.cachesize=10

worker.loadbalancer.type=lb
worker.loadbalancer.balance_workers=library
worker.loadbalancer.sticky_session=1
worker.loadbalancer.local_worker_only=1
worker.list=loadbalancer

worker.status.type=status


Regards & Thanks
====
Mahesh S Kudva


-Original Message-
From: David Delbecq <[EMAIL PROTECTED]>
To: "Tomcat Users List" 
Date: Thu, 25 Aug 2005 14:01:46 +0200
Subject: Re: Manager webapp and virtual hosts

> Le Jeudi 25 Août 2005 13:55, Mikolaj Rydzewski a écrit :
> > Hello,
> > 
> > My configuration is very simple: tomcat listens on localhost with 
> > various apps in their contexts. Now I'd like to setup a virtual host
> for 
> > another one. Will it be possible to deploy/reload such application
> using 
> > manager webapp running on localhost? In other words: do I have to 
> > install separate manager webapp for each virtual host?
> 
> For 1st part, did it here (2 sets of webapp depending on hostname
> used), must have 
> the manager webapp deployed in each host (actually a soft link on
> unix having webapps-for-somespecial-hostname/manager points to
> webapps/manager is enough)
> 
> > 
> > And the second question is: is it possible to connect apache with 
> > virtual host + mod_jk + tomcat with webapp in it's context? I.e.:
> > 
> > my1.domain.com (apache + mod_jk) ===>   tomcat.domain.com/webapp1
> > my2.domain.com (apache + mod_jk) ===> tomcat.domain.com/webapp2
> > 
> > ?
> > 
> 
> -- 
> David Delbecq
> Royal Meteorological Institute of Belgium
> 
> -
> Is there life after /sbin/halt -p?
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]



---
Robosoft Technologies - Partners in Product Development



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Virtual Hosting with WAR files

2005-08-16 Thread Mahesh S Kudva
Thanks to all.

This setup has been tested on Apache2+JBoss+mod_jk-1.2.14_for MacOSX. And 
am sure it will work on other platforms as well. This setup also handles 
Apache related webapps..

Make the required entries in the DNS

webapp.war: Extract the war file using zip and rename the folder 
with .war extension. Please put it in your deployment folder.

mod-jk.so: Obtain the modjk.so library file from www.apache.org and place 
then in the modules folder.

Apache-Virtual Host config
--
NameVirtualHost *.*.*.*:80


ServerName webapp.robosoft.co.in
ServerAlias www.webapp.robosoft.co.in
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /Volumes/Extra/jboss/server/default/deploy/webapp.war
JkMount /* loadbalancer
DirectoryIndex index.html index.jsp
ErrorLog logs/webapp-error_log
CustomLog logs/webapp-access_log common

-
mod-jk.conf

LoadModule jk_module /opt/apache2/modules/mod_jk.so

JkWorkersFile /opt/apache2/conf/workers.properties
JkLogFile /opt/apache2/logs/mod_jk.log
JkLogLevel info
JkLogStampFormat "[%a %b %d %H:%M:%S %Y]"
JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories
JkRequestLogFormat "%w %V %T"
JkMount /webapp.domain.com/*.jsp loadbalancer
JkMountFile /opt/apache2/conf/uriworkermap.properties
JkShmFile /opt/apache2/logs/jk.shm

JkMount status
Allow from all


--
Server.xml
-


www.webapp.domain.com




--
--
uriworkermap.properties

/jmx-console=loadbalancer
/jmx-console/*=loadbalancer
/web-console=loadbalancer
/web-console/*=loadbalancer
/webapp.domain.com/*.jsp 

--
--
workers.properties


worker.list=loadbalancer,status

worker.webapp.port=8009
worker.webapp.host=webapp.domain.com
worker.webapp.type=ajp13
worker.webapp.lbfactor=1
worker.webapp.cachesize=10

worker.loadbalancer.type=lb
worker.loadbalancer.balance_workers=library
worker.loadbalancer.sticky_session=1
worker.loadbalancer.local_worker_only=1
worker.list=loadbalancer

worker.status.type=status


Regards & Thanks
====
Mahesh S Kudva
Network Analyst
Robosoft Technologies



---
Robosoft Technologies - Partners in Product Development



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Virtual Hosting with WAR files

2005-08-15 Thread Mahesh S Kudva
Hi

I have setup Tomcat+Apache2+mod_jk. I have 3 application in war files 
namely flie1.war, file2.war and file3.war. To deploy, I just put them in 
the deploy folder and access then using the urls:
http://foo.com/file1
http://foo.com/file2
http://foo.com/file3
This works perfectly for me. I want to change this to simple urls as 
follows:
http://file1.foo.com
http://file2.foo.com
http://file3.foo.com

I have also read the notes on Virtual hosting: 
http://jakarta.apache.org/tomcat/connectors-doc-
archive/jk2/jk2/vhosthowto.html

Even though I am not able to configure Tomcat to connect to the war files 
as requested. How do I configure tomcat to connect to the correct war 
file as requested?

Any help will be appreciated.

Regards & Thanks

Mahesh S Kudva



---
Robosoft Technologies - Partners in Product Development



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



servlet mapping and url

2005-07-02 Thread s s
i want to invoke a servlet using url like http://localhost:8080 only
 
i have done it using http://localhost:8080/index.html where index.html is a 
servlet. Is it possible to load this servlet as a default just like a default 
web page. The point is i want a servlet to recieve a request when url 
http://localhost:8080 is referenced i.e without the servlet name.
 
is it possible?
 
 



-
Yahoo! Mail Mobile
 Take Yahoo! Mail with you! Check email on your mobile phone.

Re: Certificate Authentication for individual apps

2005-07-02 Thread Mahesh S Kudva
Dear All

My developer give me a .war file which I place it as 
jboss/server/default/deploy/test.war

Thus I have around 5 .war placed in the server. All the apps are 
presently accessed using https://myorg.com:8080/test1/, 
https://myorg.com:8080/test2/ ... and so on.

Next I want to implement client auth for certain apps.

How do i go about it.??

Regards & Thanks

Mahesh S Kudva


-Original Message-
From: "Bill Barker" <[EMAIL PROTECTED]>
To: tomcat-user@jakarta.apache.org
Date: Fri, 1 Jul 2005 21:56:37 -0700
Subject: Re: Certificate Authentication for individual apps

> 
> "Mahesh S Kudva" <[EMAIL PROTECTED]> wrote in message 
> news:[EMAIL PROTECTED]
> > Hi All
> >
> > Thanks for the note. May be I was not clear in my earlier mail.
> >
> >
> > I have client authentication using certificates. I want to skip
> client
> > auth for certain hosted applications on the server but preserve
> client
> > auth for other apps.
> >
> 
> On the Connector leave the 'clientAuth' attribute as 'false' (or use 
> 'want', if you really want to be annoying :).  Then in the webapps that
> care 
> setup your web.xml files with something like:
>   
>CLIENT-CERT
>   
> 
> In this case, any page protected by a  will force
> the 
> user to send a client-cert.  Unfortunately, most of the
> production-quality 
> Realms that ship with Tomcat don't support CLIENT-CERT auth.
> 
> For 4.1.x <= tcversion <= 5.0.x, there is also a request attribute that
> you 
> can use to do the same thing.  If you need it, search the archives.
> 
> > Regards & Thanks
> > 
> > Mahesh S Kudva
> >
> >
> > -Original Message-
> > From: Paul Singleton <[EMAIL PROTECTED]>
> > To: Tomcat Users List 
> > Date: Fri, 01 Jul 2005 15:32:12 +0100
> > Subject: Re: Certificate Authentication for individual apps
> >
> >> Mahesh S Kudva wrote:
> >>
> >> > How can I have different certificate authentication for different
> >> applications and skip certificate
> >> > authentication for some applications hosted on the same server.
> >>
> >> I believe that, at least under SSL, certificates authenticate
> >> *servers* not applications, and that the Connector offers a
> >> certificate before it checks, or regardless of, the context
> >> path within that server.
> >>
> >> So you need to deploy each app at a different (virtual) host,
> >> each with a different IP address.  We do this currently with
> >> 5.5.9.  You can use the default keystore for all hosts, and
> >> use the (undocumented) keyAlias="myalias" Connector attribute
> >> to offer the appropriate certificate for each host, e.g.
> >>
> >>  >>   address="288.104.197.211"
> >>   port="8443"
> >>   scheme="https"
> >>   secure="true"
> >>   sslProtocol="TLS"
> >>   keyAlias="mrk2"
> >> />
> >>
> >> (in 5.5.9 you also need sslProtocol="TLS" explicitly)
> >>
> >> Paul Singleton
> >>
> >>
> >> -- 
> >> No virus found in this outgoing message.
> >> Checked by AVG Anti-Virus.
> >> Version: 7.0.323 / Virus Database: 267.8.8/35 - Release Date:
> >> 30/Jun/2005
> >>
> >>
> >>
> -
> >> To unsubscribe, e-mail: [EMAIL PROTECTED]
> >> For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> >
> > ---
> > Robosoft Technologies - Partners in Product Development 
> 
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]



---
Robosoft Technologies - Partners in Product Development



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Certificate Authentication for individual apps

2005-07-01 Thread Mahesh S Kudva
Hi All

Thanks for the note. May be I was not clear in my earlier mail.


I have client authentication using certificates. I want to skip client 
auth for certain hosted applications on the server but preserve client 
auth for other apps.

Regards & Thanks

Mahesh S Kudva


-Original Message-
From: Paul Singleton <[EMAIL PROTECTED]>
To: Tomcat Users List 
Date: Fri, 01 Jul 2005 15:32:12 +0100
Subject: Re: Certificate Authentication for individual apps

> Mahesh S Kudva wrote:
> 
> > How can I have different certificate authentication for different
> applications and skip certificate 
> > authentication for some applications hosted on the same server.
> 
> I believe that, at least under SSL, certificates authenticate
> *servers* not applications, and that the Connector offers a
> certificate before it checks, or regardless of, the context
> path within that server.
> 
> So you need to deploy each app at a different (virtual) host,
> each with a different IP address.  We do this currently with
> 5.5.9.  You can use the default keystore for all hosts, and
> use the (undocumented) keyAlias="myalias" Connector attribute
> to offer the appropriate certificate for each host, e.g.
> 
>address="288.104.197.211"
> port="8443"
> scheme="https"
> secure="true"
> sslProtocol="TLS"
> keyAlias="mrk2"
>   />
> 
> (in 5.5.9 you also need sslProtocol="TLS" explicitly)
> 
> Paul Singleton
> 
> 
> -- 
> No virus found in this outgoing message.
> Checked by AVG Anti-Virus.
> Version: 7.0.323 / Virus Database: 267.8.8/35 - Release Date:
> 30/Jun/2005
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]



---
Robosoft Technologies - Partners in Product Development



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Certificate Authentication for individual apps

2005-07-01 Thread Mahesh S Kudva
Hi All

How can I have different certificate authentication for different applications 
and skip certificate 
authentication for some applications hosted on the same server.

Regards & Thanks

Mahesh S Kudva



---
Robosoft Technologies - Partners in Product Development



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Tomcat 5.5.9 application reload doesn't work

2005-06-28 Thread Johnson, Tony S.
Hi, I have seen this question discussed several times on this mailing list, but 
I have not found anyone with a solution, so I am asking again in the hopes that 
someone can help.
 
Example of problem:
 
1) Download/Install/Start tomcat 5.5.9 on port 8080
2) Create a directory c:\test
3) Create a c:\test\HelloWorld.html
4) Deploy web "application"  using 
 http://localhost:8080/manager/deploy?path=/test&war=file:/c:/test
 (OK - Deployed application at context path /test)
5) Check it worked: http://localhost:8080/test/HelloWorld.html
6) Make a change to HelloWorld.html
7) Reload app http://localhost:8080/manager/reload?path=/test
( OK - Reloaded application at context path /test)
8) View http://localhost:8080/test/HelloWorld.html
9) Notice that the old page is displayed, not the new one
 
Note that performing the same set of operations with tomcat 5.0.x works as 
expected, the modified page is displayed at step 9, not the old one.
 
Explanation of problem:
 
The problem appears to be caused by a change in tomcat 5.5 which results in the 
appplication files being copied during "deploy" from (file:/c/test) to the 
tomcat webapps directory. A subsequent reload causes the copied files to be 
reloaded, but does not pick up changes in the original files.
 
Why is this still a problem?
 
Knowing what the problem is, one can manually recopy changes to the webapp 
directory, but various tools (such as the ant tasks documented here: ) or the 
maven tomcat plugin () do not work as a result of this problem. 
 
Does anyone know if there is a way to work around this, or to persaude tomcat 
to revert to the 5.0 behaviour?
 
Thanks, Tony Johnson


RE: monitoring performance

2005-06-17 Thread Hossein S. Attar
Thanks for the reply. I set up JMeter using an example from the JMeter site
(http://jakarta.apache.org/jmeter/usermanual/build-monitor-test-plan.html) .
Apparently JMeter uses "manager/status" and shows only load, # of threads,
and memory used. Is it possible to make it measure average response time
(both total average response time and per-servlet average response time)?

Thanks,
Hossein

> -Original Message-
> From: Peter Lin [mailto:[EMAIL PROTECTED]
> Sent: Friday, June 17, 2005 5:18 PM
> To: Tomcat Users List
> Subject: Re: monitoring performance
> 
> you can easily setup JMeter to monitor tomcat and save the results to a
> log.
> 
> peter lin
> 
> 
> On 6/17/05, Hossein S. Attar <[EMAIL PROTECTED]> wrote:
> > Hi:
> >
> > Is it possible to instruemnt Tomcat to collect statistics such as
> > averasge response time (for each servlet), etc and then somehow get
> > these statistics programatically (e.g., using an API). I'm trying to
> > write a program that needs to get such statistics,  therefore monitoring
> > tools that report
> > the statistics graphically are not suitable for me.
> >
> > Thanks,
> > Hossein
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



monitoring performance

2005-06-17 Thread Hossein S. Attar

Hi:

Is it possible to instruemnt Tomcat to collect statistics such as 
averasge response time (for each servlet), etc and then somehow get 
these statistics programatically (e.g., using an API). I'm trying to 
write a program that needs to get such statistics,  therefore monitoring 
tools that report

the statistics graphically are not suitable for me.

Thanks,
Hossein

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Cannot start Tomcat 4.1

2005-06-10 Thread Andrés Reyes
Hi, this is my first message on the list, so, i accept any comments 
about my poor english :(.


The problem:
I have installed Tomcat4.1/Sun j2sdk on a debian 3.1 (sarge). Yesterday, 
it works fine, but today, I have added a new context using the web 
administrator. Then, I put some JSP files on the context directory 
(/user/share/tomcat4/server/webapps//). The first time I make a 
pettition to the server, it creates correctly the .class and .java 
files... BUT, when i reload the app using the web manager... it can not 
do it.

Now, I cannot start Tomcat (using catalina.sh run), getting this message:

...
Jun 10, 2005 12:18:28 PM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-8180
Starting service Tomcat-Standalone
Apache Tomcat/4.1
Catalina.start: LifecycleException:  Context startup failed due to 
previous errors

LifecycleException:  Context startup failed due to previous errors
   at 
org.apache.catalina.core.StandardContext.start(StandardContext.java:3578)
   at 
org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1141)
   at 
org.apache.catalina.core.StandardHost.start(StandardHost.java:707)
   at 
org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1141)
   at 
org.apache.catalina.core.StandardEngine.start(StandardEngine.java:316)
   at 
org.apache.catalina.core.StandardService.start(StandardService.java:450)
   at 
org.apache.catalina.core.StandardServer.start(StandardServer.java:2143)

   at org.apache.catalina.startup.Catalina.start(Catalina.java:463)
   at org.apache.catalina.startup.Catalina.execute(Catalina.java:350)
   at org.apache.catalina.startup.Catalina.process(Catalina.java:129)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
   at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

   at java.lang.reflect.Method.invoke(Method.java:324)
   at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:156)
Stopping service Tomcat-Standalone
Catalina.stop: LifecycleException:  Coyote connector has not been started
LifecycleException:  Coyote connector has not been started
   at 
org.apache.coyote.tomcat4.CoyoteConnector.stop(CoyoteConnector.java:1296)
   at 
org.apache.catalina.core.StandardService.stop(StandardService.java:499)
   at 
org.apache.catalina.core.StandardServer.stop(StandardServer.java:2178)

   at org.apache.catalina.startup.Catalina.start(Catalina.java:494)
   at org.apache.catalina.startup.Catalina.execute(Catalina.java:350)
   at org.apache.catalina.startup.Catalina.process(Catalina.java:129)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
   at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

   at java.lang.reflect.Method.invoke(Method.java:324)
   at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:156)

And the log file shows...

2005-06-10 12:18:29 WebappLoader[/admin]: Deploying class repositories 
to work directory /usr/share/tomcat4/work/Standalone/localhost/admin
2005-06-10 12:18:29 WebappLoader[/admin]: Deploy class files 
/WEB-INF/classes to /usr/share/tomcat4/server/webapps/admin/WEB-INF/classes
2005-06-10 12:18:29 WebappLoader[/admin]: Deploy JAR 
/WEB-INF/lib/struts.jar to 
/usr/share/tomcat4/server/webapps/admin/WEB-INF/lib/struts.jar
2005-06-10 12:18:29 ContextConfig[/admin] Exception processing JAR at 
resource path /WEB-INF/lib/struts.jar
javax.servlet.ServletException: Exception processing JAR at resource 
path /WEB-INF/lib/struts.jar
   at 
org.apache.catalina.startup.ContextConfig.tldScanJar(ContextConfig.java:881)
   at 
org.apache.catalina.startup.ContextConfig.tldScan(ContextConfig.java:809)
   at 
org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:587)
   at 
org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:181)
   at 
org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
   at 
org.apache.catalina.core.StandardContext.start(StandardContext.java:3523)

...

Maybe this error was caused by my newbie condition using Tomcat
Thanks.

--
/***
* Andrés Reyes ( [EMAIL PROTECTED] )
* T-COR Desarrollos y Sistemas, S.L.
* Teléfno: 957 76 42 48 
* Fax: 957 76 42 49

***/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Context at Host Level

2005-06-03 Thread Andrés Glez.

Exactly what i was looking for. Thanks!

- Original Message - 
From: "Mark Thomas" <[EMAIL PROTECTED]>

To: "Tomcat Users List" 
Sent: Thursday, June 02, 2005 9:03 PM
Subject: Re: Context at Host Level



Andrés Glez. wrote:


there is no "ContainerListener" or something like that?



Look at http://jakarta.apache.org/tomcat/tomcat-5.5-doc/config/engine.html 
and

http://jakarta.apache.org/tomcat/tomcat-5.5-doc/config/host.html

You need to seach for lifecycle listener. Not part of the spec but might 
help you.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED] 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: RE: Error at tomcat start up

2005-05-22 Thread tushar S Kulkarni
  Hi 
Thanks for your email, problem is sorted out, it was due to another web.xml 
which was not in order.



On Sun, 22 May 2005 Dale,Matt wrote :
>
>The error may be in your main tomcat web.xml rather than your webapps as it 
>appears to be at line 331 and your webapp web.xml does not have that many 
>lines.
>
>Ta
>Matt
>
>-Original Message-
> From: tushar S Kulkarni [mailto:[EMAIL PROTECTED]
>Sent: 21 May 2005 19:10
>To: tomcat-user@jakarta.apache.org
>Subject: Error at tomcat start up
>
>
>Hi All,
>I am getting following error at tomcat start up.
>
>Nov 6, 2000 3:27:04 PM org.apache.struts.util.PropertyMessageResources 
>INFO: Initializing, config='org.apache.webapp.admin.ApplicationResources', 
>retur
>nNull=true
>Nov 6, 2000 3:27:13 PM org.apache.commons.digester.Digester error
>SEVERE: Parse Error at line 331 column 11: The content of element type 
>"web-app"
>  must match 
> "(icon?,display-name?,description?,distributable?,context-param*,fil
>ter*,filter-mapping*,listener*,servlet*,servlet-mapping*,session-config?,mime-ma
>pping*,welcome-file-list?,error-page*,taglib*,resource-env-ref*,resource-ref*,se
>curity-constraint*,login-config?,security-role*,env-entry*,ejb-ref*,ejb-local-re
>f*)".
>org.xml.sax.SAXParseException: The content of element type "web-app" must match
>"(icon?,display-name?,description?,distributable?,context-param*,filter*,filter-
>mapping*,listener*,servlet*,servlet-mapping*,session-config?,mime-mapping*,welco
>me-file-list?,error-page*,taglib*,resource-env-ref*,resource-ref*,security-const
>raint*,login-config?,security-role*,env-entry*,ejb-ref*,ejb-local-ref*)".
> at 
> org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Un
>known Source)
> at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown Source)
> at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
> at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
> at 
> org.apache.xerces.impl.dtd.XMLDTDValidator.handleEndElement(Unknown S
>ource)
> at org.apache.xerces.impl.dtd.XMLDTDValidator.endElement(Unknown 
> Source)
>
> at 
> org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEndElement(
>Unknown Source)
> at 
> org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContent
>Dispatcher.dispatch(Unknown Source)
> at 
> org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Un
>known Source)
> at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
> at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
> at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
> at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
> at org.apache.commons.digester.Digester.parse(Digester.java:1548)
> at 
> org.apache.catalina.startup.ContextConfig.applicationConfig(ContextCo
>nfig.java:282)
> at 
> org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:63
>9)
> at 
> org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfi
>g.java:243)
> at 
> org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Lifecycl
>eSupport.java:166)
> at 
> org.apache.catalina.core.StandardContext.start(StandardContext.java:3
>587)
> at 
> org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase
>.java:821)
> at 
> org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:80
>7)
> at 
> org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595)
>
> at 
> org.apache.catalina.core.StandardHostDeployer.install(StandardHostDep
>loyer.java:307)
> at 
> org.apache.catalina.core.StandardHost.install(StandardHost.java:788)
> at 
> org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.j
>ava:559)
> at 
> org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:401
>)
> at org.apache.catalina.startup.HostConfig.start(HostConfig.java:718)
> at 
> org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java
>:358)
> at 
> org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Lifecycl
>eSupport.java:166)
> at 
> org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1196)
>
> at org.apache.catalina.core.StandardHost.start(StandardHost.java:754)
> at 
> org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1188)
>
> at 
> org.apache.catalina.core.StandardEngine.start(St

Re: Re: Error at tomcat start up

2005-05-21 Thread tushar S Kulkarni
Thanks for your email! 

no my web.xml doesnt have 331 lines. I had added entire web.xml in previous 
email. 
I have created a dir called jsfApp under webapps and have set this context. 
so will any other application cause problem? 

Thanks 


On Sun, 22 May 2005 Shinji Miyamoto wrote :
>Hi,
>
>
>The error say that web-app element is invlid for DTD.
>The order of child elements of web-app is not correct, maybe.
>
>But your web.xml seem correct.
>
> >SEVERE: Parse Error at line 331 column 11:
>
>Does your web.xml have 331 lines?
>I think the error is cause by other web application.
>
>
>---
>Shinji Miyamoto
>[EMAIL PROTECTED]
>
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>




Error at tomcat start up

2005-05-21 Thread tushar S Kulkarni
Hi All,
I am getting following error at tomcat start up.

Nov 6, 2000 3:27:04 PM org.apache.struts.util.PropertyMessageResources 
INFO: Initializing, config='org.apache.webapp.admin.ApplicationResources', retur
nNull=true
Nov 6, 2000 3:27:13 PM org.apache.commons.digester.Digester error
SEVERE: Parse Error at line 331 column 11: The content of element type "web-app"
 must match "(icon?,display-name?,description?,distributable?,context-param*,fil
ter*,filter-mapping*,listener*,servlet*,servlet-mapping*,session-config?,mime-ma
pping*,welcome-file-list?,error-page*,taglib*,resource-env-ref*,resource-ref*,se
curity-constraint*,login-config?,security-role*,env-entry*,ejb-ref*,ejb-local-re
f*)".
org.xml.sax.SAXParseException: The content of element type "web-app" must match
"(icon?,display-name?,description?,distributable?,context-param*,filter*,filter-
mapping*,listener*,servlet*,servlet-mapping*,session-config?,mime-mapping*,welco
me-file-list?,error-page*,taglib*,resource-env-ref*,resource-ref*,security-const
raint*,login-config?,security-role*,env-entry*,ejb-ref*,ejb-local-ref*)".
at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Un
known Source)
at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown Source)
at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
at org.apache.xerces.impl.dtd.XMLDTDValidator.handleEndElement(Unknown S
ource)
at org.apache.xerces.impl.dtd.XMLDTDValidator.endElement(Unknown Source)

at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEndElement(
Unknown Source)
at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContent
Dispatcher.dispatch(Unknown Source)
at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Un
known Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
at org.apache.commons.digester.Digester.parse(Digester.java:1548)
at org.apache.catalina.startup.ContextConfig.applicationConfig(ContextCo
nfig.java:282)
at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:63
9)
at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfi
g.java:243)
at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Lifecycl
eSupport.java:166)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:3
587)
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase
.java:821)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:80
7)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595)

at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDep
loyer.java:307)
at org.apache.catalina.core.StandardHost.install(StandardHost.java:788)
at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.j
ava:559)
at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:401
)
at org.apache.catalina.startup.HostConfig.start(HostConfig.java:718)
at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java
:358)
at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Lifecycl
eSupport.java:166)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1196)

at org.apache.catalina.core.StandardHost.start(StandardHost.java:754)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1188)

at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:363
)
at org.apache.catalina.core.StandardService.start(StandardService.java:4
97)
at org.apache.catalina.core.StandardServer.start(StandardServer.java:219
0)

Here is web.xml

http://java.sun.com/dtd/web-app_2_3.dtd";>

 
JavaServer Faces Guess Number Sample Application
 
 
 JavaServer Faces Guess Number Sample Application
 
 
 
 javax.faces.STATE_SAVING_METHOD
 client
 
 
 
 javax.faces.application.CONFIG_FILES
 /WEB-INF/faces-config.xml
 
 

 com.sun.faces.validateXml
 true
 

 com.sun.faces.config.ConfigListener
 
 
 
 
 Faces Servlet
 javax.faces.webapp.FacesServlet
  1 

 
 
 
 
 Faces Servlet
 /faces/*
 

 

PLease advise, how do I resolve this problem? 

Thanks in Advance






Certificate Revocation

2005-05-19 Thread Mahesh S Kudva
Hi All

Once if the certificates are revoked, how do I make Tomcat to know which 
certificates are revoked.

Regards & Thanks

Mahesh S Kudva



---
Robosoft Technologies - Partners in Product Development



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Client Authentication

2005-05-17 Thread Mahesh S Kudva
Hi all

I sorted it out. Thanks for you help.

These are the steps I followed. Hope it helps someone.

1) perl CA.pl -newca(create a new CA)
2) perl CA.pl -newreq   (new client request)
3) perl CA.pl -sign (sign the certificare request)
4) openssl rsa < newreq.pem > client_key.pem  (extract the RSA key)
5) mv newreq.pem client_req.pem(renaming for your identification)
6) mv newcert.pem client_cert.pem  (renaming for your identification)
7) openssl pkcs12 -export -in client_cert.pem -inkey client_key.pem -out 
client.p12(generate a pkcs12 certificate)
8) keytool -genkey -alias tomcat -keyalg RSA   (generate your keystore)
9) keytool -certreq -keyalg RSA -alias tomcat -file tomcat.csr (generate 
a request for tomcat)
10) openssl x509 -req -CA democa/cacert.pem -CAkey 
democa/private/cakey.pem -extensions v3_ca -in tomcat.csr -inform DER -
out tomcat.x509 -CAcreateserial  (signs the tomcat certificate 
request with your CA)
11) keytool -import -alias MyRootCA -keystore 
JAVA_HOME/jre/lib/security/cacerts -file democa/cacert.pem   (import CA 
selfsigned into the truststore)
12) keytool -import -alias tomcat -file tomcat.x509

Import both the democa/cacert.pem and client.p12 to the clients machine.

In your server.xml file enable client authentication by changing 
clientauth="true" and that's it.

Regards & Thanks

Mahesh S Kudva


-Original Message-
From: "Mahesh S Kudva" <[EMAIL PROTECTED]>
To: "Tomcat Users List" 
Date: Fri, 13 May 2005 22:26:59 +0530
Subject: Re: Client Authentication

> Hi All
> 
> Ho do i go about with clien Authentication
> 
> Regards & Thanks
> ====
> Mahesh S Kudva
> 
> 
> -Original Message-
> From: "Mahesh S Kudva" <[EMAIL PROTECTED]>
> To: "Tomcat Users List" 
> Date: Tue, 10 May 2005 20:51:08 +0530
> Subject: Re: Client Authentication
> 
> Hi All
> 
> Nothing seems to work out for me whith client auth. Here is what 've
> done
> 
> CA and Certificates
> 1) perl CA.pl -newca
> 2) perl CA.pl -newreq
> 3) perl CA.pl -sign
> 4) openssl rsa < newreq.pem > server_key.pem
> 5) mv newcert.pem server_cert.pem  
> 6) mv newreq.pem server_req.pem
> 7) perl CA.pl -newreq
> 8) perl CA.pl -sign
> 9) mv newreq.pem client_req.pem
> 10) mv newcert.pem client_cert.pem
> 11) openssl rsa < client_req.pem > client_key.pem
> 12) openssl pkcs12 -export -in client_cert.pem -inkey client_key.pem
> -out
> client.p12
> 13) openssl x509 -in server_cert.pem -out server.x509
> 14) openssl pkcs12 -export -in server_cert.pem -inkey server_key.pem 
>-out server.p12  
> 15) keytool -genkey -alias tomcat -storepass changeit
> 16) keytool -import -alias TomcatCA -file demoCA/cacert.pem
> 
> I then import the CA's self signed certificate to the clients machine 
> along with the p12 certficicate
> 
> My Tomcat-users.xml file
> 
> 
>   
>   
>   
>   
>   
>   
>password="" 
> roles="tomcat,certs"/>
>   
>   
>   
> 
> 
> 
> 
> Where am i going wrong? Even if the certificates are in the client's 
> mcahine the certificates identity windows alowys pop's up
>   
> 
> 
> Regards & Thanks
> 
> Mahesh S Kudva
> 
> 
> -Original Message-
> From: Mark Thomas <[EMAIL PROTECTED]>
> To: Tomcat Users List 
> Date: Tue, 03 May 2005 23:00:57 +0100
> Subject: Re: Client Authentication
> 
> > The CN for your server cert can be anything you like but you will get
> a
> > warning in your browser if the CN differs from how you express it in
> > the 
> > URL.
> > 
> > The user needs to look something like this
> >  > password="null" roles="tomcat,certs"/>
> > in tomcat-users. It must be the full DN of the user certificate.
> > 
> > HTH,
> > 
> > Mark
> > 
> > Mahesh S Kudva wrote:
> > > Hi 
> > > 
> > > It seems like a silly question. But I am new to SSL and
> Certificates
> > as 
> > > well as Tomcat.
> > > 
> > > If my machines IP is 192.168.0.1 then I access tomcat as 
> > > https://192.168.0.1:8443. Keeping this mind should I give the
> Common
> > Name 
> > > as 192.168.0.1 ??? 
> > > 
> > > How do I specify the client info in the tomcat-users.xml?
> > > 
> > > 
> > > 
> > > This is how my tomcat-users.xml file looks like. 
> > > 
> > > Regards & Thanks
> > > 
> > > Mahesh S Kudva
> > > 
> > > 
> > > -Original Messag

No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-17 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



tomcat alias assistance

2005-05-16 Thread S W
Redhat 2.1 ES
Tomcat 4.1
Apache 2.0
I have tomcat configured to run off port 80.
I really wanted our users to be able to type http://helpdesk.XXX.net in 
their browser and access the web app.

The machine tomcat/apache/webapp is running on is our email server.
Currently if I use http://helpdesk.xxx.net (the one i need to work) I 
receive a "The page cannot be displayed" message.

If I use http://mail.xxx.net(email server host name) I receive the tomcat 
administration page.
If I use http://mail.xxx.net/grouplink , I get to my webapp.

Could someone point me in the right direction? How/where  do I configure an 
alias?
How/what do I configure so I can use http://helpdesk?
Thanks


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



  1   2   3   4   5   6   7   8   >