RE: URL-Rewriting with mod_SSL

2001-03-29 Thread Stubenrauch,Andreas

See Bugs 269,578 http://nagoya.apache.org/bugzilla/show_bug.cgi?id=578

We are working with Tomcat 3.2 beta 5 here (it's been the last working
version)

Regards,
Andreas

 -Original Message-
 From: Wolle [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, March 29, 2001 2:34 AM
 To: [EMAIL PROTECTED]
 Subject: URL-Rewriting with mod_SSL
 
 
 
 Hello ,
 I have wrote some Java Servlets, that works with Session Tracking.
 I use the response.encodeURL Methode for it.
  when the client has disabled cookies, the jsessionID is 
 suffixed. Thats
 
 fine ;-)
  this will work with Tomcat , and Tomcat over Apache. Now, when I User
 mod_ssl for the connection,  the jsessionID is gone, an no session
 traking is possible without cookies.
 My System is : Apache 1.3.17-10, jdk 1.3.0 ,mod_ssl-2.7.1-0,
 jakarta-tomcat 3.2.1 and I've tried jakarta-Tomcat3.2.2b2
 
 Has someone the same experience, some workaround or so ??
 
 plz write brack, it's urgently and very important,
 
 thank you for inconvenience,
 Michael
 [EMAIL PROTECTED]
 
 
 
 



RE: Is Apache web server 1.3.x multithreaded

2001-03-26 Thread Stubenrauch,Andreas

This is a little bit offtopic for the tomcat-dev list so I'll answer
personally:
Apache 1.3.x ist a classic unix-fork apllication. To minimize the overhead
a park of processes is started at startuptime.
If running on Win32 these processes are mapped more or less on NT-Threads.

Apache 2.x is designed to bypass these Problems and can be configured to run
with
several different run-modes

Reagards,
Andreas

 -Original Message-
 From: chu luk [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 23, 2001 8:10 PM
 To: [EMAIL PROTECTED]
 Subject: Is Apache web server 1.3.x multithreaded
 
 
 Hi,
 Is Apache web server 1.3.x multithreaded?  that's each
 request and handle by a thread. OR each request is
 handle by a child process fork by parent?
 
 thanks.
 
 
 __
 Do You Yahoo!?
 Get email at your own domain with Yahoo! Mail. 
 http://personal.mail.yahoo.com/
 



RE: BugRat Report #487 - encodeURL() not working in SSL Scheme (Bug in HttpServletResponseFacade.toAbsolut(String url))

2000-12-11 Thread Stubenrauch,Andreas

Hi,
Sorry but bugrat swallowed the workaround:
You can install JSSE (Java security Extensions) and set the properties to
use the https URLStreamHandler included within there. (Put the JSSE jars in
your classpath and add
 -Djava.protocol.handler.pkgs=com.sun.net.ssl.internal.www.protocol to your
Java commandline.)

This solves the problem with the MalformedURLException, but I just noticed
that under some circumstances the encodeURL() still doesn't work.

Regards,
Andreas

p.s. Sorry for the typo in the Bug report my  e-mail is [EMAIL PROTECTED] feel
free to contact me again

 -Original Message-
 From: Elsen Christian 
 Sent: Monday, December 11, 2000 9:07 AM
 To: Stubenrauch,Andreas
 Subject: WG: BugRat Report #487 - encodeURL() not working in 
 SSL Scheme
 (Bug in HttpServletResponseFacade.toAbsolut(String url))
 
 
 
 
  -Ursprüngliche Nachricht-
  Von: BugRat Mail System [mailto:[EMAIL PROTECTED]] 
  Gesendet am: Donnerstag, 7. Dezember 2000 19:33
  An: Elsen Christian
  Betreff: BugRat Report #487 - encodeURL() not working in SSL 
  Scheme (Bug
  in HttpServletResponseFacade.toAbsolut(String url))
  
  - Sender's Comment -
  Have you any workaround or patch for this bug??
  
  I'll go after it in a while, and want your input if it's possible.. 
  
  Thanks
  
  Saludos, Ignacio Ortega
  - End Of Sender's Comment ---
  Report URL: 
 http://znutar.cortexity.com/BugRatViewer/ShowReport/487
  
  Report #487 Details
  
  Project: Tomcat
  Category: Bug Report
  SubCategory: New Bug Report
  Class: swbug
  State: received
  Priority: high
  Severity: critical
  Confidence: public
  Environment: 
 Release: 3.2 Final
 JVM Release: 1.3
 Operating System: Linux/NT
 OS Release: 2.2.16/4
 Platform: i386
  
  Synopsis: 
  encodeURL() not working in SSL Scheme (Bug in 
  HttpServletResponseFacade.toAbsolut(String url))
  
  Description:
  encodeURL() does not work if the request is sent over 
  https. This is caused in 
  
  org.apache.tomcat.facade.HttpServletResponseFacade.toAbsolut(S
  tring url)
  
  where an absolute URL is constructed by using new URL(URL, spec)
  This will throw an MalformedURLException if the URL is https,
  because no URLStreamHandler exsist for https.
  (Because of this exception the URL is assumed not to be 
  encodable)
  
  
 



[Bug] encodeURL() not working with SSL (TC3.2)

2000-11-30 Thread Stubenrauch,Andreas

Hi,
sorry I newly subscribed and don't know if this is adressed already:

In Tomcat 3.2 final encodeURL() does not work if the request is sent over 
https.
This is caused in 
org.apache.tomcat.facade.HttpServletResponseFacade.toAbsolut(String url)
where an absolute URL is constructed by using new URL(URL, spec)
This will throw an MalformedURLException if the URL is https,
because no URLStreamHandler exsist for https (in standard jdk/jre)
(Because of this exception the URL is assumed not to be 
encodable)

Workaround:
Install JSSE properly and start tomcat with
 -Djava.protocol.handler.pkgs=com.sun.net.ssl.internal.www.protocol

But I think this should be fixed internal.

Regards,
Andreas