isapi_redirect.dll and ajp13

2001-09-14 Thread Manjunath BHat

Hi,
I am using IIS+TC3.2.2 isapi_redirect.dll working fine with ajp12

I want my isapi_redirect.dll plugin to work with ajp13. For which i believe, 
have to make

cahnges in workers.properties. Following lines r from workers.properties

#
# However by default the plugins will only use the ajp12 worker. To have
# the plugins use other workers you should modify the worker.list property.
#

and the workers.list defined as follows

# The workers that your plugins should create and work with
#
worker.list=ajp12, ajp13

#

What changes should i make in workers.list? Should i interchange the 
workers?

Thanks in advance

Manjunath


_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




isapi_redirect.dll AJP 13

2001-09-14 Thread Manjunath BHat

Hi,

I am using running TC3.2.2 with iis4.0. Every thing is working fine. I have 
to enhance the current configuration.
I have some querries. Like,
1. Does isapi_redirect.dll suppport ajpv13 worker? If yes which version?
2. I have added following in my TC in UWM.P file.. in addition to the old 
one :

/SecureContext/*.jsp=ajp13.
/SecureContext/servlet/*=ajp13

I am able to get the pages . Everything is fine. But if i access any jsp's 
in SecureContext through following url,
https://localhost/SecureContext/jsp/Test.jsp; and the jsp contain method 
request.getProtocol() returns HTTP/1.1 instead of HTTPS.

Why? Is there some problem with my configuration? Or old version of DLL ?
Should i build my version of DLL to support ajp13 or newer version 
implements it?

Please help me

TIA

Manjunath

_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




Source required for isapi_redirect.dll

2001-09-12 Thread Manjunath BHat

Hi,

where can one find source vc++ source for isapi_redirect.dll??

I had no luck with jakarta site.

TIA

M Bhat

_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




Re: IIS and Tomcat

2001-07-21 Thread Manjunath BHat

Hi,

where in IIS have u installed isapi_filter?
I assume that it is in the IIS Management Console right-click on your 
machine name (not the root web) and select properties.Click the Edit button 
next to the Master Properties for the WWW Service.
Visit http://www.verysimple.com/scripts/support_tc_iis.html for more hint

Good Luck

Manju




From: Ian Dodds [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: IIS and Tomcat
Date: Wed, 18 Jul 2001 10:34:58 +0100

Hi,

I am trying to use Tomcat 3.2.3 with IIS 5.0 and Windows 2000.

I have followed the installation steps, defined in the Tomcat IIS HowTo 
file
and have confirmed that the Filter is installed correctly in IIS.

When I try and go to

http://localhost/examples/jsp/index.html
or
http://localhost/examples/jsp/num/numguess.jsp

It just doesn't work.

If I run in Tomcat standalone mode (using http://localhost:8080) then 
it
works fine.


I looked in the IIS log file and the last entry is as follows:

09:27:58 127.0.0.1 GET /jakarta/isapi_redirect.dll+ 404

I have attached the ISAPI log file.  I ran it with debug mode in case it is
more helpful?


I have looked through the Troubleshooting and followed all the instructions
in there.

Do you have any idea what the problem is?  I even went as far as to remove
the installation of Tomcat and reinstall it.


I would appreciate any pointers.

Thanks

Ian
 isapi.log 


_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




Help on Thread Pool

2001-07-20 Thread Manjunath BHat

Hi,

I have encountered following exception while running tomcat.
**
2001-07-14 09:30:18 - ThreadPool: Unexpected exception -
sjava.lang.InterruptedEx
ception
   at java.lang.Object.wait(Native Method)
   at java.lang.Object.wait(Object.java:420)
   at
org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java
:480)
   at java.lang.Thread.run(Thread.java:484)
***

What may be the cause for the Exception. I am running Tomcat with IIS4.0 on
WinNT

In tomcat-home/conf/tomcat.properties following lines .

# Thread Pool parameters
#

# Enables or disables the use of the thread pool.
# Syntax: pool=[true|false] (boolean)
# Default: false
# WARNING: the pool has not been extensively tested and may generate
deadlocks.
# For this reason, we advise against using this code in production
environments.
pool=false

# Indicates the number of idle threads that the pool may contain.
# Syntax: pool.capacity=(int)0
# Default: 10
# NOTE: depending on your system load, this number should be low for
contantly
# loaded servers and should be increased depending on load bursts.
pool.capacity=10

Should I change value for parameter pool to true???
What should be the optimum value for pool.capacity for the production
environment???


Thanks in advance


Manjunath




_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




Help on Thread Pool Exception

2001-07-16 Thread Manjunath BHat


Hi,

I have encountered following exception while running tomcat.
**
2001-07-14 09:30:18 - ThreadPool: Unexpected exception -
sjava.lang.InterruptedEx
ception
at java.lang.Object.wait(Native Method)
at java.lang.Object.wait(Object.java:420)
at
org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java
480)
at java.lang.Thread.run(Thread.java:484)
***

What may be the cause for the Exception. I am running Tomcat with
IIS4.0 on
WinNT
In tomcat-home/conf/tomcat.properties following lines .
# Thread Pool parameters


# Enables or disables the use of the thread pool.
# Syntax: pool=[true|false] (boolean)
# Default: false
# WARNING: the pool has not been extensively tested and may generate
deadlocks.
# For this reason, we advise against using this code in production
environments.
pool=false

# Indicates the number of idle threads that the pool may contain.
# Syntax: pool.capacity=(int)0
# Default: 10
# NOTE: depending on your system load, this number should be low for
contantly
# loaded servers and should be increased depending on load bursts.
pool.capacity=10

Should I change value for parameter pool to true???
What should be the optimum value for pool.capacity for the
production
environment???


Thanks in advance


Manjunath


_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.




Re: Virtual directory mapping

2001-07-16 Thread Manjunath BHat

hi,
In server.xml add following lines,

Context path=/usr docBase=C:/usr debug=0 reloadable=true
/Context
To Check whether this change has been implemented
1) In Tomcat startup console see for /usr context
2) Look into work folder

I assume ur platform is Win NT

Good luck


From: Mark Florence [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Virtual directory mapping
Date: Mon, 16 Jul 2001 08:51:02 -0400

I can't seem to figure how to set up a virtual directory
mapping for my Web application. I want to map (say) the
context-relative path:

   /usr

To a directory on my server outside the webapps directory:

   c:\usr

Many thanks for any help.

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.




Thread Pool Exception ! Urgent

2001-07-14 Thread Manjunath BHat

Hi,

I have encountered following exception while running tomcat.
**
2001-07-14 09:30:18 - ThreadPool: Unexpected exception - 
sjava.lang.InterruptedEx
ception
at java.lang.Object.wait(Native Method)
at java.lang.Object.wait(Object.java:420)
at 
org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java
:480)
at java.lang.Thread.run(Thread.java:484)
***

What may be the cause for the Exception. I am running Tomcat with IIS4.0 on 
WinNT

In tomcat-home/conf/tomcat.properties following lines .

# Thread Pool parameters
#

# Enables or disables the use of the thread pool.
# Syntax: pool=[true|false] (boolean)
# Default: false
# WARNING: the pool has not been extensively tested and may generate 
deadlocks.
# For this reason, we advise against using this code in production 
environments.
pool=false

# Indicates the number of idle threads that the pool may contain.
# Syntax: pool.capacity=(int)0
# Default: 10
# NOTE: depending on your system load, this number should be low for 
contantly
# loaded servers and should be increased depending on load bursts.
pool.capacity=10

Should I change value for parameter pool to true???
What should be the optimum value for pool.capacity for the production 
environment???


Thanks in advance


Manjunath
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.




Thread Pool Exception ! Urgent

2001-07-14 Thread Manjunath BHat

Hi,

I have encountered following exception while running tomcat.
**
2001-07-14 09:30:18 - ThreadPool: Unexpected exception - 
sjava.lang.InterruptedEx
ception
at java.lang.Object.wait(Native Method)
at java.lang.Object.wait(Object.java:420)
at 
org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java
:480)
at java.lang.Thread.run(Thread.java:484)
***

What may be the cause for the Exception. I am running Tomcat with IIS4.0 on 
WinNT

In tomcat-home/conf/tomcat.properties following lines .

# Thread Pool parameters
#

# Enables or disables the use of the thread pool.
# Syntax: pool=[true|false] (boolean)
# Default: false
# WARNING: the pool has not been extensively tested and may generate 
deadlocks.
# For this reason, we advise against using this code in production 
environments.
pool=false

# Indicates the number of idle threads that the pool may contain.
# Syntax: pool.capacity=(int)0
# Default: 10
# NOTE: depending on your system load, this number should be low for 
contantly
# loaded servers and should be increased depending on load bursts.
pool.capacity=10

Should I change value for parameter pool to true???
What should be the optimum value for pool.capacity for the production 
environment???


Thanks in advance


Manjunath
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.




IIS, Tomcat and SSL

2001-07-13 Thread Manjunath BHat

Hi

1. Is it possible to use the same Verisign/Thawte Certificate for both IIS 
and Tomcat? If yes How ?

2. Is it possible to use the same Verisign/Thawte Certificate issued for IIS 
could be used for Tomcat? If yes How ?

Regards

Manjunath


_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.




IIS, Tomcat and SSL

2001-07-13 Thread Manjunath BHat

Hi,

I've configured Tomcat3.2.2 to work with IIS 4.0. I have following context 
working fine.

Context
path=/Finance
docBase=C:/InetPub/wwwroot/MySite/Finance
debug=0
reloadable=true
/Context

I can browse to my jsp's  by typing http://server/Finance/jsp/Default.jsp;. 
i am also able to see page by typing
https://server/Finance/jsp/Login.jsp;.
The page will be displayed with pad-lock at the bottom of the browser and i 
can see the server certificate which is installed on IIS by right clicking 
on the page. but when I type
http://server/Finance/jsp/Login.jsp;. still will be displayed. To avoid 
this I've used request.isSecure() in each page to
check whether request is coming through secure channel.
Is this proper work-around ?

Please Help

Regards

Manjunath
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.




Re: Problems when importing a SSL certificate

2001-07-12 Thread Manjunath BHat

Hello

I was trying SSL with tomcat. The steps are as follows

I created key using following command,

C:\jakarta-tomcat-3.2.2\keykeytool -genkey -alias tomcat -keyalg RSA 
-keystore
tomcat.keystore
Enter keystore password:  changeit

I was able to implement this Certificate but it was it was Self signed. I 
send This key for signing to Thawte (Free test certificate programme).
For that i created CSR as follows

C:\jakarta-tomcat-3.2.2\keykeytool -certreq -alias tomcat -file req 
-keystore
tomcat.keystore
Enter keystore password:  changeit.

The certificate i got from CA saved to file signedtom. And when i tried 
importing to my keystore using following command. nad it gaave me following 
Error.

C:\jakarta-tomcat-3.2.2\keykeytool -import -trustcacerts -alias tomcat 
-keystor
e tomcat.keystore -file signedtom
Enter keystore password:  changeit
keytool error: java.security.cert.CertificateException: Unsupported 
encoding

Did i miss anything here?

I'm working on NT. Tomcat3.2.2

Please Help me in this regard.


Thanks

Manjunath


From: Tim O'Neil [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Problems when importing a SSL certificate
Date: Wed, 11 Jul 2001 08:31:36 -0700

Assuming your using Tomcat standalone, make sure your key store
pass word and your key pass word are the same. Yes, which means
you can store one key in your keystore. I ran into this little
hitch myself. I wasn't able to get tomcat standalone to work ssl
any way though. If you do let me know how you did it.


At 05:25 AM 7/11/2001, you wrote:
Hi,

   I´ve got the Tomcat/SSL Howto from the jakarta Project webpage. In the
last step of Importing SSL certificates, i´ve got some trouble. The
output of the command keytool -import -v -trustcacerts -alias tomcat
-file CERT.pem was this:

Enter keystore password:  changeit
keytool error: java.lang.Exception: Public keys in reply and keystore
don't match


What happened? How can I fix it?

I hope you can help me...

Thanks beforehands
--
Antonio Terceiro
[EMAIL PROTECTED]
--
Bolsista do projeto SIDOC
CPD/UFBA - Divisão de Projetos


_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.




RE: help me with IIS+tomcat

2001-07-11 Thread Manjunath BHat

Hi,

try following,
http://www.verysimple.com/scripts/support_tc_iis.html
I followed it its working fine with me

Good Luck

Manjunath



From: Chris Thompson [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: '[EMAIL PROTECTED]' [EMAIL PROTECTED]
Subject: RE: help me with IIS+tomcat
Date: Wed, 11 Jul 2001 08:44:27 +0100

Morning all,

another little pointer which does not appear in the documents is the fact
that the config files for Tomcat are formatted by a UNIX text editor. We
installed everything, added the redirector and got a red arrow until we
re-formatted the config files for Windows.

We opened each file in WinBatch and Notepad then copied the WinBatch copy
over the Notepad copy and saved (WinBatch recognises UNIX formatting). 
There
is a way of doing this with vi if you have access but recall the exact
command for this.

Hope this helps
Chris

-Original Message-
From: albert [mailto:[EMAIL PROTECTED]]
Sent: 11 July 2001 08:22
To: [EMAIL PROTECTED]
Subject: help me with IIS+tomcat


hi, me too
I us Windows Prof 2000
and Tomcat 321
same problem, any help ?

regards
Albert Oscarina
System Specialist
Solution Made Pocketable
http://www.SMPdirect.com
Phone : (65) 276 7624
Fax   : (65) 274 4770
mail : [EMAIL PROTECTED]

If we have a strong reason, we will find the way
(Bits  Pieces, The Economics Press)


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 11, 2001 3:17 PM
To: [EMAIL PROTECTED]
Subject: RE: help me with IIS+tomcat



Hi,

I have the same problem  and i'm stuckany idea ?

Thanks,

Hervé.

   -Message d'origine-
   De: Ðì±ó [SMTP:[EMAIL PROTECTED]]
   Date:   mercredi 11 juillet 2001 07:32
   À:  [EMAIL PROTECTED]
   Objet:  help me with IIS+tomcat

   Hi,
   I have tried everything writen in Tomcat IIS HowTo but when I
entered http://bsd.com/examples/jsp/index.html; (My win 2000 server's IIS
web server's name is bsd.com), the browser always says a error of HTTP 404.
I think the url is right because if I entered
http://bsd.com:8080/examples/jsp/index.html;, the browser can correctly
display tomcat jsp examples page. The isapi filter is also loaded, the
workers is setting right. I use Jbuilder4 and download tomcat 3.2.2 and
install it under c:\JBuilder4\tomcat. I have changed workers.properties's
java_home and tomcat_home properties. It still NOT works. can you give me
some information?

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.




Tomcat IIS HowTo

2001-06-14 Thread manjunath bhat

Hi,

I am having problem in configuring IIS 4.0 and Jakarta Tomcat 3.2.1. I have followed 
the instruction given by you in your documentation. I am not able to see 
http://localhost/examples/jsp/index.html;.

In your trouble shooting section 5.A.3 says 
If the number following GET /... is 200 or 403, make sure you have checked Execute 
Access for the jakarta virtual directory in the Advanced Options of the Personal Web 
Manager.  But i'm not using Personal Web Manager. I'm using Internet Service 
Manager

Please help me in this regard

Thanks in Advance

Manjunath
 

_
Chat with your friends as soon as they come online. Get Rediff Bol at
http://bol.rediff.com







Error setting IIS-Tomcat

2001-06-06 Thread manjunath bhat

Hi,

I',ve got problem in setting IIS-4-Tomcat3.2.1.

The error message is:


HTTP Error 403
403.2 Forbidden: Read Access Forbidden

This error can be caused if there is no default page available and directory browsing 
has not been enabled for the directory, or if you are trying to display an HTML page 
that resides in a directory marked for Execute or Script permissions only.

Please contact the Web server's administrator if the problem persists.


Please help me in this regard

Thanking u in advance

Manjunath

_
Chat with your friends as soon as they come online. Get Rediff Bol at
http://bol.rediff.com







Problem in setting IIS-Tomcat

2001-06-06 Thread manjunath bhat

hi
 
your document says follwing lines :

If the page fails to appear, examine the last line in the IIS server log file in found 
in SYSTEM32/LogFiles/W3SVC1. 
The last line should contain something like: GET /jakarta/isapi_redirect.dll 
HTTP1.1, which indicates the ISAPI redirector is recognizing that it should handle 
the request. 

Where as my Log does not show. it shows following:
#Software: Microsoft Internet Information Server 4.0
#Version: 1.0
#Date: 2001-06-07 05:24:18
#Fields: time c-ip cs-method cs-uri-stem sc-status
05:24:18 127.0.0.1 GET /examples/jsp/index.html 404
05:46:56 127.0.0.1 GET /examples/jsp/index.html 404
and some junk values.

Where i went wrong?

please helpe in this regard

Manjunath



_
Chat with your friends as soon as they come online. Get Rediff Bol at
http://bol.rediff.com