Using tomcat instead of Apache for Bugzilla?

2006-12-09 Thread Ach

Hi, 
 I want to configure a bugzilla repository to work with Tomcat web container
(5.5.x) instead of installing a new Apache web server 2. Just want to check
if there is anybody with similar experience and probable pros  cons.
 Thanks in advance for your help.
-- 
View this message in context: 
http://www.nabble.com/Using-tomcat-instead-of-Apache-for-Bugzilla--tf2785910.html#a7772953
Sent from the Tomcat - User mailing list archive at Nabble.com.


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: How to configure multiple context path for a webapps

2006-12-09 Thread Leon Rosenberg

The easiest way is to define a context.xml for r which specifies
webapp1 as doc-root. However this will have the drawback, that the
same webapp will be loaded twice under difference contexts.

Other ways are defining ROOT context, per filter forwarding, proxying and so on

regards
Leon

On 12/9/06, Stanley Yue [EMAIL PROTECTED] wrote:

Hi all:

I have one webapps named webapp1, with context path /webapp1. This
webapps has one servlet with name TestServlet.

I want to be able to access this servlet through the following urls:
http://host/webapp1/TestServlet, and
http://host/r/TestServlet

Is it possible to configure webapp1 to have multiple context path? I.e.
/webapp1 and r? I want to be able to do this without relying on server
side forwarding (i.e. implementing a webapps called r that forwards to
webapp1).

Thanks,

Stanley




-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Is this possibe? mod_jk ==SSL== AJP/1.3

2006-12-09 Thread Martin Gainty
yes. Bill's original statement is accurate
if we reference
http://tomcat.apache.org/tomcat-5.5-doc/ssl-howto.html

Option1 (Tomcat container running behind another SSL enabled web-server)
When running Tomcat primarily as a Servlet/JSP container behind another web 
server, such as Apache or Microsoft IIS, it is usually necessary to configure 
the primary web server to handle the SSL connections from users. Typically, 
this server will negotiate all SSL-related functionality, then pass on any 
requests destined for the Tomcat container only after decrypting those 
requests. Likewise, Tomcat will return cleartext responses, that will be 
encrypted before being returned to the user's browser. In this environment, 
Tomcat knows that communications between the primary web server and the client 
are taking place over a secure connection (because your application needs to be 
able to ask about this), but it does not participate in the encryption or 
decryption itself

Option2 certificates please referece this link from Certificate provider 
Verisign
http://www.verisign.com/ssl/ssl-information-center/how-ssl-security-works/index.html
where the certificate supplies a public key to decrypt information and also 
supplies a private key used to decipher the key
To quote
An SSL Certificate consists of a public key and a private key. The public key 
is used to encrypt information and the private key is used to decipher it

Tomcat container(s) are not doing the encrypting or decrypting in either 
scenario-

HTH,
M-

--- 
This e-mail message (including attachments, if any) is intended for the use of 
the individual or entity to which it is addressed and may contain information 
that is privileged, proprietary , confidential and exempt from disclosure. If 
you are not the intended recipient, you are notified that any dissemination, 
distribution or copying of this communication is strictly prohibited.
--- 
Le présent message électronique (y compris les pièces qui y sont annexées, le 
cas échéant) s'adresse au destinataire indiqué et peut contenir des 
renseignements de caractère privé ou confidentiel. Si vous n'êtes pas le 
destinataire de ce document, nous vous signalons qu'il est strictement interdit 
de le diffuser, de le distribuer ou de le reproduire.
- Original Message - 
From: dfelicia [EMAIL PROTECTED]
To: users@tomcat.apache.org
Sent: Friday, December 08, 2006 11:07 PM
Subject: Re: Is this possibe? mod_jk ==SSL== AJP/1.3


 
Tomcat currently does not support encryption.
 Huh?  Sure it does.  I think you mean AJP doesn't support encryption.
 -- 
 View this message in context: 
 http://www.nabble.com/Is-this-possibe---mod_jk-%3C%3D%3DSSL%3D%3D%3E-AJP-1.3-tf2776640.html#a7769280
 Sent from the Tomcat - User mailing list archive at Nabble.com.
 
 
 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


Re: Multi processor issue

2006-12-09 Thread Gael Marziou

the affinity 'trick' is a replacement dll for the 80 runtime stock libraries



Well, the one we used does not work this way.

In fact, we started by changing the affinity of Tomcat service's live 
process using Windows taskmgr or Windows System Resource Manager.


Then, as problem disappeared, we looked for a permanent way to set this 
affinity and the tool that we used does it by settings the affinity 
bitmask in the executable header, so it does not require any special 
DLL. I compared the 2 executables and they differ only one byte.


http://forums.amd.com/lofiversion/index.php/t65211.html

-- Gaël


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



how to set up a web app that initially only serves static content?

2006-12-09 Thread Garey Mills

Hello -
I checked out the web pretty extensively and couldn't find the answer
to the question in the subject. I am working on some Ajax stuff that will
eventually have some servlets, but in the beginning I just want to set up an
index.html that loads some javascript libraries along with the page. How
would I set up a web.xml to reflect that? I've tried commenting out the
servlet and servlet-mapping tags, but the app won't load and I can't see
it's home directory via tomcat. I tried adding a Context tag in
servlet.xml. That works in that I can see the page, but I'm having problems
loading the javascript I want and I am not sure whether it is because of how
I am accessing the html.

Garey Mills


Re: how to set up a web app that initially only serves static content?

2006-12-09 Thread Hassan Schroeder

On 12/9/06, Garey Mills [EMAIL PROTECTED] wrote:


 I checked out the web pretty extensively and couldn't find the answer
to the question in the subject. I am working on some Ajax stuff that will
eventually have some servlets, but in the beginning I just want to set up an
index.html that loads some javascript libraries along with the page. How
would I set up a web.xml to reflect that? I've tried commenting out the
servlet and servlet-mapping tags, but the app won't load and I can't see
it's home directory via tomcat. I tried adding a Context tag in
servlet.xml. That works in that I can see the page, but I'm having problems
loading the javascript I want and I am not sure whether it is because of how
I am accessing the html.


1. If you're strictly using static content, you should be able to simply
drop the context into your host's webapps directory without a web.xml
and see it. Your context's docBase *is* in that appBase, right?

But if you have a web.xml with errors -- yeah, it won't be availabile.

2. problems loading... -- *what* problems? 404 on the script files,
or ___? ...because of how I am accessing the html -- what does that
mean? Are you using something other than a Web browser? If it's a
404 problem, what do your access logs show?

A little more info would help... :-)

--
Hassan Schroeder  [EMAIL PROTECTED]

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]