Re: tomcat connection prob.

2006-01-04 Thread Brian Shacklett
Just a thought... do you have any software firewalls on your machine? 
Norton Internet Security, Mcaffee Personal Firewall and others can cause 
a lot of headaches when it comes to networking.


issac young wrote:

Hi *Caldarale*

Sorry for the lack of information in my post ... actually this is the first
time i use this mail list ...

so my OS is win xp + sp2 and i have disabled the firewall i am not hosting
anything right now, juz using the default tomcat web application (there is a
testing one inside i believe)... so ... the problem is that i can only
access my tomcat using 127.0.0.1 on my server ... now the localhost is also
ok ...

the problem now is .. how can i expose my tomcat server to other PCs in my
network ??? ie use other pc to access the server ...


Thx in advance


Regards


issac


On 1/4/06, Caldarale, Charles R [EMAIL PROTECTED] wrote:
  

From: issac young [mailto:[EMAIL PROTECTED]
Subject: tomcat connection prob.
  
lt only works fine for address 127.0.0.1 not even for localhost and

other pcs in the same network can't access the tomcat either ...
  

You didn't bother to tell us what OS you're running on, whether you have
a hosts file, a firewall, other network configuration strangeness, or
even the actual error you're getting...

- Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

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





  



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



tomcat connection prob.

2006-01-03 Thread issac young
-- Forwarded message --
From: issac young [EMAIL PROTECTED]
Date: Jan 4, 2006 11:03 AM
Subject: tomcat connection prob.
To: users@tomcat.apache.org

i just installed the latest version of tomcat

lt only works fine for address 127.0.0.1 not even for localhost and
other pcs in the same network can't access the tomcat either ...

how can i solve the problem?

by the way my server pc got 2 ethernet cards


regards


issac


Re: tomcat connection prob.

2006-01-03 Thread issac young
Hi *Caldarale*

Sorry for the lack of information in my post ... actually this is the first
time i use this mail list ...

so my OS is win xp + sp2 and i have disabled the firewall i am not hosting
anything right now, juz using the default tomcat web application (there is a
testing one inside i believe)... so ... the problem is that i can only
access my tomcat using 127.0.0.1 on my server ... now the localhost is also
ok ...

the problem now is .. how can i expose my tomcat server to other PCs in my
network ??? ie use other pc to access the server ...


Thx in advance


Regards


issac


On 1/4/06, Caldarale, Charles R [EMAIL PROTECTED] wrote:

  From: issac young [mailto:[EMAIL PROTECTED]
  Subject: tomcat connection prob.

  lt only works fine for address 127.0.0.1 not even for localhost and
  other pcs in the same network can't access the tomcat either ...

 You didn't bother to tell us what OS you're running on, whether you have
 a hosts file, a firewall, other network configuration strangeness, or
 even the actual error you're getting...

 - Chuck


 THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
 MATERIAL and is thus for use only by the intended recipient. If you
 received this in error, please contact the sender and delete the e-mail
 and its attachments from all computers.

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




RE: tomcat connection prob.

2006-01-03 Thread Caldarale, Charles R
 From: issac young [mailto:[EMAIL PROTECTED] 
 Subject: Re: tomcat connection prob.
 
 the problem now is .. how can i expose my tomcat server to 
 other PCs in my network ???

By default, Tomcat listens on all IP addresses configured for the box,
unless you've added an address attribute to the Connector tag you're
using.  Try doing 
   netstat -anb -p tcp
while Tomcat is running and see who's listening to what.  You should see
something like this:

Active Connections
 Proto  Local AddressForeign Address   State   PID
 TCP0.0.0.0:80   0.0.0.0:0 LISTENING   3336
 [tomcat5.exe]
 TCP0.0.0.0:443  0.0.0.0:0 LISTENING   3336
 [tomcat5.exe]
 TCP127.0.0.1:8005   0.0.0.0:0 LISTENING   3336
 [tomcat5.exe]

among other entries.  The Tomcat ones should show whatever port numbers
you have configured (default is 8005, 8009, and 8080); the one for 8005
should be using IP address 127.0.0.1, the others 0.0.0.0 (i.e., any IP
address).

Can you ping your server from other workstations on the network?

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

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