Re: sendRedirect still does not handle mailto correctly

2005-08-10 Thread [EMAIL PROTECTED]
Tim,
Thanks again - that did it and was much easier. Pretty logical way to do
things actually.
And yes, the sendRedirect now works with the mailto.

 - Richard

Original Message:
-
From: Tim Funk [EMAIL PROTECTED]
Date: Wed, 10 Aug 2005 15:52:31 -0400
To: tomcat-user@jakarta.apache.org
Subject: Re: sendRedirect still does not handle mailto correctly


1) Download this file: (The patched revision from CVS)
http://cvs.apache.org/viewcvs.cgi/*checkout*/jakarta-tomcat-connectors/coyot
e/src/java/org/apache/coyote/tomcat4/CoyoteResponse.java?rev=1.38
2) Put $CATALINA_HOME/common/lib/*.jar, $CATALINA_HOME/server/lib/*.jar in 
your CLASSPATH for compiling
3) javac -d $CATALINA_HOME/server/classes CoyoteResponse.java
4) restart tomcat
5) Done

-Tim

[EMAIL PROTECTED] wrote:

> Tim,
> 
> Thanks again. Yes, that's what I'm doing I downloaded the Jakarta
> connectors source, got the update file from CVS and now am going through
> dependency hell getting each of the pre-required packages downloaded and
> installed.
> 
> Is there an easier way? I'm probably close to done, but for a single
> compiled class. Hey at least the source is available.
>  

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




mail2web - Check your email from the web at
http://mail2web.com/ .



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



Re: sendRedirect still does not handle mailto correctly

2005-08-10 Thread Tim Funk

1) Download this file: (The patched revision from CVS)
http://cvs.apache.org/viewcvs.cgi/*checkout*/jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4/CoyoteResponse.java?rev=1.38
2) Put $CATALINA_HOME/common/lib/*.jar, $CATALINA_HOME/server/lib/*.jar in 
your CLASSPATH for compiling

3) javac -d $CATALINA_HOME/server/classes CoyoteResponse.java
4) restart tomcat
5) Done

-Tim

[EMAIL PROTECTED] wrote:


Tim,

Thanks again. Yes, that's what I'm doing I downloaded the Jakarta
connectors source, got the update file from CVS and now am going through
dependency hell getting each of the pre-required packages downloaded and
installed.

Is there an easier way? I'm probably close to done, but for a single
compiled class. Hey at least the source is available.
 


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



Re: sendRedirect still does not handle mailto correctly

2005-08-10 Thread [EMAIL PROTECTED]
Tim,

Thanks again. Yes, that's what I'm doing I downloaded the Jakarta
connectors source, got the update file from CVS and now am going through
dependency hell getting each of the pre-required packages downloaded and
installed.

Is there an easier way? I'm probably close to done, but for a single
compiled class. Hey at least the source is available.

Thanks once again. - Richard

Original Message:
-
From: Tim Funk [EMAIL PROTECTED]
Date: Wed, 10 Aug 2005 15:07:32 -0400
To: tomcat-user@jakarta.apache.org
Subject: Re: sendRedirect still does not handle mailto correctly


Who knows when a 4.1.32 will come out. The easiest thing is to get the file 
revision and compile that file and drop it into the server/classes
directory.

-Tim

[EMAIL PROTECTED] wrote:

> Tim, Thanks for the quick response. Is a 4.1.32 in the works at all? 
> 
> Otherwise I guess that means that we need to build 4.1 from source or
> upgrade to a later version of 5.0 or 5.5. We were trying to put that off a
> bit longer.
> 
> Thanks again - Richard
> 
> Original Message:
> -
> From: Tim Funk [EMAIL PROTECTED]
> Date: Wed, 10 Aug 2005 14:15:46 -0400
> To: tomcat-user@jakarta.apache.org
> Subject: Re: sendRedirect still does not handle mailto correctly
> 
> 
> The fix was made after 4.1.31 ...
> 
>
http://cvs.apache.org/viewcvs.cgi/jakarta-tomcat-connectors/coyote/src/java/
> org/apache/coyote/tomcat4/CoyoteResponse.java?rev=1.40&view=log
> 
> -Tim
> 
> [EMAIL PROTECTED] wrote:
> 
>>A while back we tried to use response.sendRedirect with a
>>"mailto:[EMAIL PROTECTED]" link. It would not work, so we put together a
>>kluge using a separate page.
>>
>>I was just checking and Bugzilla issue #18147:
>>  http://issues.apache.org/bugzilla/show_bug.cgi?id=18147
>>
>>This says the problem was fixed in both Tomcat 4 and 5 on June 20th of
> 
> 2004.
> 
>>I just downloaded and installed Tomcat 4.1.31 - the files in the archive
>>are dated September 25, 2004 - AFTER June 20, 2004, so I'm thinking it
>>should include the fix.
>>
>>However when we try the redirect we still get the same result - basically
>>the "to" address gets stripped off when the link is processed by
>>sendRedirect.
>>
>>I tried looking through the source to see if mailto is handled any
>>differently, but so far have not found anything.
>>
>>Does anyone know if Tomcat 4.1.31 does fix this issued? If not any other
>>suggestions?
>  

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




mail2web - Check your email from the web at
http://mail2web.com/ .



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



Re: sendRedirect still does not handle mailto correctly

2005-08-10 Thread Tim Funk
Who knows when a 4.1.32 will come out. The easiest thing is to get the file 
revision and compile that file and drop it into the server/classes directory.


-Tim

[EMAIL PROTECTED] wrote:

Tim, Thanks for the quick response. Is a 4.1.32 in the works at all? 


Otherwise I guess that means that we need to build 4.1 from source or
upgrade to a later version of 5.0 or 5.5. We were trying to put that off a
bit longer.

Thanks again - Richard

Original Message:
-
From: Tim Funk [EMAIL PROTECTED]
Date: Wed, 10 Aug 2005 14:15:46 -0400
To: tomcat-user@jakarta.apache.org
Subject: Re: sendRedirect still does not handle mailto correctly


The fix was made after 4.1.31 ...

http://cvs.apache.org/viewcvs.cgi/jakarta-tomcat-connectors/coyote/src/java/
org/apache/coyote/tomcat4/CoyoteResponse.java?rev=1.40&view=log

-Tim

[EMAIL PROTECTED] wrote:


A while back we tried to use response.sendRedirect with a
"mailto:[EMAIL PROTECTED]" link. It would not work, so we put together a
kluge using a separate page.

I was just checking and Bugzilla issue #18147:
 http://issues.apache.org/bugzilla/show_bug.cgi?id=18147

This says the problem was fixed in both Tomcat 4 and 5 on June 20th of


2004.


I just downloaded and installed Tomcat 4.1.31 - the files in the archive
are dated September 25, 2004 - AFTER June 20, 2004, so I'm thinking it
should include the fix.

However when we try the redirect we still get the same result - basically
the "to" address gets stripped off when the link is processed by
sendRedirect.

I tried looking through the source to see if mailto is handled any
differently, but so far have not found anything.

Does anyone know if Tomcat 4.1.31 does fix this issued? If not any other
suggestions?
 


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



Re: sendRedirect still does not handle mailto correctly

2005-08-10 Thread [EMAIL PROTECTED]
Tim, Thanks for the quick response. Is a 4.1.32 in the works at all? 

Otherwise I guess that means that we need to build 4.1 from source or
upgrade to a later version of 5.0 or 5.5. We were trying to put that off a
bit longer.

Thanks again - Richard

Original Message:
-
From: Tim Funk [EMAIL PROTECTED]
Date: Wed, 10 Aug 2005 14:15:46 -0400
To: tomcat-user@jakarta.apache.org
Subject: Re: sendRedirect still does not handle mailto correctly


The fix was made after 4.1.31 ...

http://cvs.apache.org/viewcvs.cgi/jakarta-tomcat-connectors/coyote/src/java/
org/apache/coyote/tomcat4/CoyoteResponse.java?rev=1.40&view=log

-Tim

[EMAIL PROTECTED] wrote:
> A while back we tried to use response.sendRedirect with a
> "mailto:[EMAIL PROTECTED]" link. It would not work, so we put together a
> kluge using a separate page.
> 
> I was just checking and Bugzilla issue #18147:
>   http://issues.apache.org/bugzilla/show_bug.cgi?id=18147
> 
> This says the problem was fixed in both Tomcat 4 and 5 on June 20th of
2004.
> 
> I just downloaded and installed Tomcat 4.1.31 - the files in the archive
> are dated September 25, 2004 - AFTER June 20, 2004, so I'm thinking it
> should include the fix.
> 
> However when we try the redirect we still get the same result - basically
> the "to" address gets stripped off when the link is processed by
> sendRedirect.
> 
> I tried looking through the source to see if mailto is handled any
> differently, but so far have not found anything.
> 
> Does anyone know if Tomcat 4.1.31 does fix this issued? If not any other
> suggestions?

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




mail2web - Check your email from the web at
http://mail2web.com/ .



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



Re: sendRedirect still does not handle mailto correctly

2005-08-10 Thread Tim Funk

The fix was made after 4.1.31 ...

http://cvs.apache.org/viewcvs.cgi/jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4/CoyoteResponse.java?rev=1.40&view=log

-Tim

[EMAIL PROTECTED] wrote:

A while back we tried to use response.sendRedirect with a
"mailto:[EMAIL PROTECTED]" link. It would not work, so we put together a
kluge using a separate page.

I was just checking and Bugzilla issue #18147:
  http://issues.apache.org/bugzilla/show_bug.cgi?id=18147

This says the problem was fixed in both Tomcat 4 and 5 on June 20th of 2004.

I just downloaded and installed Tomcat 4.1.31 - the files in the archive
are dated September 25, 2004 - AFTER June 20, 2004, so I'm thinking it
should include the fix.

However when we try the redirect we still get the same result - basically
the "to" address gets stripped off when the link is processed by
sendRedirect.

I tried looking through the source to see if mailto is handled any
differently, but so far have not found anything.

Does anyone know if Tomcat 4.1.31 does fix this issued? If not any other
suggestions?


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



sendRedirect still does not handle mailto correctly

2005-08-10 Thread [EMAIL PROTECTED]
A while back we tried to use response.sendRedirect with a
"mailto:[EMAIL PROTECTED]" link. It would not work, so we put together a
kluge using a separate page.

I was just checking and Bugzilla issue #18147:
  http://issues.apache.org/bugzilla/show_bug.cgi?id=18147

This says the problem was fixed in both Tomcat 4 and 5 on June 20th of 2004.

I just downloaded and installed Tomcat 4.1.31 - the files in the archive
are dated September 25, 2004 - AFTER June 20, 2004, so I'm thinking it
should include the fix.

However when we try the redirect we still get the same result - basically
the "to" address gets stripped off when the link is processed by
sendRedirect.

I tried looking through the source to see if mailto is handled any
differently, but so far have not found anything.

Does anyone know if Tomcat 4.1.31 does fix this issued? If not any other
suggestions?

Thanks - Richard


mail2web - Check your email from the web at
http://mail2web.com/ .



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