DO NOT REPLY [Bug 17193] - java.net.bindException during shutdown in Tomcat 4.1.18

2004-05-22 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=17193.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=17193

java.net.bindException during shutdown in Tomcat 4.1.18

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2004-05-22 22:21 ---
AFAIKT this was fixed for the 2.0.4 release of jk2. See 
http://cvs.apache.org/viewcvs.cgi/jakarta-tomcat-
connectors/jk/java/org/apache/jk/common/ChannelSocket.java?
r1=1.44r2=1.45diff_format=h

There has not been a TC4 release since this date. TC5.0.20 or later will 
include it.

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



DO NOT REPLY [Bug 17193] - java.net.bindException during shutdown in Tomcat 4.1.18

2003-09-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17193.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17193

java.net.bindException during shutdown in Tomcat 4.1.18





--- Additional Comments From [EMAIL PROTECTED]  2003-09-08 10:33 ---
Is there any actual movement on this? I could really do with a fix for it, and
am willing to put some work in myself, but in order to fix the bug I'd have to
know where the source for tomcat-jk.jar itself is, I suspect - and I can't find
that... It's not in the Tomcat 4.1.27 source distribution - where does it come from?

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



Re: DO NOT REPLY [Bug 17193] - java.net.bindException during shutdown in Tomcat 4.1.18

2003-09-08 Thread Anton Tagunov
Hello, Skeet!

bao http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17193

bao java.net.bindException during shutdown in Tomcat 4.1.18

bao --- Additional Comments From [EMAIL PROTECTED]  2003-09-08 10:33 ---
bao Is there any actual movement on this? I could really do with a fix for it, and
bao am willing to put some work in myself, but in order to fix the bug I'd have to
bao know where the source for tomcat-jk.jar itself is, I suspect - and I can't find
bao that... It's not in the Tomcat 4.1.27 source distribution - where does it come 
from?

Okay, if you want to patch you'll need to work against the cvs.
Use http://cvs.apache.org/viewcvs.cgi/ to figure out what top
level cvs modules you may need. Here's a list of the tomcat
related top level modules that I have found there and my guesses
of which one is which

  jakarta-tomcattomcat 3 sources
  jakarta-tomcat-catalina   code common to tomcat 4 and 5 ?
  jakarta-tomcat-4.0
  jakarta-tomcat-5
  jakarta-servletapipair to tomcat 3 -
servlet api 2.2/jsp api 1.1
  jakarta-servletapi-4  pair to tomcat 4 -
servlet api 2.3/jsp api 1.2
  jakarta-servletapi-5  pair to tomcat 5 -
servlet api 2.4/jsp api 2.0
  jakarta-tomcat-jasper may be needed for tomcat4 or 5 or both?
  jakarta-tomcat-connectors may be needed for tomcat4 or 5 or both?

there are also

  jakarta-tools
  jakarta-tomcat-site
  jakarta-tomcat-service

I guess it would be best for you to start by building

  jakarta-tomcat-servetapi-4
  
then read

  jakarta-tomcat-4.0/BUILDING.txt
  
download all the soft you need and yet do not have and
try to build it via

  jakarta-tomcat-4.0/build.xml

I think that the code for the connector you need lives
somewhere in between (in one of or in both)
  jakarta-tomcat-4.0
  jakarta-tomcat-connectors

Good luck!

Anton


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



DO NOT REPLY [Bug 17193] - java.net.bindException during shutdown in Tomcat 4.1.18

2003-09-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17193.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17193

java.net.bindException during shutdown in Tomcat 4.1.18





--- Additional Comments From [EMAIL PROTECTED]  2003-09-08 13:51 ---
Right. This doesn't look like it's been fixed in CVS at all, as far as I can see
- Costin, can you remember why you made the comment you did? (The original
comment about the cause of the problem is spot on.)

I'm using Tomcat 4.1.27, and have modified the source locally just to check
whether inet.toString().equals (0.0.0.0/0.0.0.0) and use 127.0.0.1 if so. That
doesn't feel like a good fix to me, however - I don't like comparing the
contents of .toString with anything else.

Do we know why inet is being set to 0.0.0.0 in the first place? Is there
anything wrong with leaving it as null, but using an inet address of 0.0.0.0 in
init instead? Really, this is a question of whether other classes will assume
that inet is going to have a non-null value. (It's got package protection, so is
available from other classes.)

I don't think I know enough about jk2 to fix this *properly* myself, though I
may well be able to fix it well enough to make do for the installations I'll be
using it with (eg no JMX etc). I certainly need to get it cleared up to *some*
extent before I can ship Tomcat 4.1 with our product.

Does anyone with a bit more knowledge (not saying much :) fancy commenting on
this, or shall I implement my own somewhat hacky solution for my own private
use? (I really don't think I could come up with one I'd be happy enough to
submit as a patch.)

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



DO NOT REPLY [Bug 17193] - java.net.bindException during shutdown in Tomcat 4.1.18

2003-07-13 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17193.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17193

java.net.bindException during shutdown in Tomcat 4.1.18

[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]
   ||l.com



--- Additional Comments From [EMAIL PROTECTED]  2003-07-13 23:44 ---
*** Bug 17702 has been marked as a duplicate of this bug. ***

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



DO NOT REPLY [Bug 17193] - java.net.bindException during shutdown in Tomcat 4.1.18

2003-07-13 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17193.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17193

java.net.bindException during shutdown in Tomcat 4.1.18

[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]



--- Additional Comments From [EMAIL PROTECTED]  2003-07-13 23:49 ---
*** Bug 19098 has been marked as a duplicate of this bug. ***

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



DO NOT REPLY [Bug 17193] - java.net.bindException during shutdown in Tomcat 4.1.18

2003-05-31 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17193.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17193

java.net.bindException during shutdown in Tomcat 4.1.18

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |



--- Additional Comments From [EMAIL PROTECTED]  2003-05-30 14:39 ---
This is still occuring in Tomcat 4.1.24
Bug 19098 seems to be a duplicate of this, but the resolution isn't helpful.

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



DO NOT REPLY [Bug 17193] - java.net.bindException during shutdown in Tomcat 4.1.18

2003-03-13 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17193.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17193

java.net.bindException during shutdown in Tomcat 4.1.18

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2003-03-14 00:15 ---
Fixed in CVS, next release of jk2 will probably have it.

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



DO NOT REPLY [Bug 17193] - java.net.bindException during shutdown in Tomcat 4.1.18

2003-02-19 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17193.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17193

java.net.bindException during shutdown in Tomcat 4.1.18





--- Additional Comments From [EMAIL PROTECTED]  2003-02-20 
06:42 ---
nobody seems to be interested in resolving this bug!!!

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