Specify outbound port on tomcat

2001-09-07 Thread Joe Pearse
Hi List- I'd like to specify what outbound ports are chosen when running my application. Currently, I can specify the inbound port for SSL (443) to receive a message. When my application responds, it (seemingly)arbitrarily picks a port between 1024 and (about) 5000 to send out the reply.

Re: Specify outbound port on tomcat

2001-09-07 Thread Craig R. McClanahan
On Fri, 7 Sep 2001, Joe Pearse wrote: Date: Fri, 07 Sep 2001 15:53:33 -0700 From: Joe Pearse [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Specify outbound port on tomcat Hi List- I'd like to specify what outbound ports are chosen when running my

Re: Specify outbound port on tomcat

2001-09-07 Thread Joe Pearse
client URL. When firing off the message, the outbound port (1024-5000) is chosen, and I'm not sure what chooses the port, and if I can restrict it. From: Craig R. McClanahan [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Specify outbound port on tomcat Date: Fri

Re: Specify outbound port on tomcat

2001-09-07 Thread Craig R. McClanahan
On Fri, 7 Sep 2001, Joe Pearse wrote: Date: Fri, 07 Sep 2001 16:49:09 -0700 From: Joe Pearse [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Specify outbound port on tomcat The application itself is generating the message being sent out. In the basic

Re: Specify outbound port on tomcat

2001-09-07 Thread Pier Fumagalli
Craig R. McClanahan [EMAIL PROTECTED] wrote: On Fri, 7 Sep 2001, Joe Pearse wrote: Date: Fri, 07 Sep 2001 16:49:09 -0700 From: Joe Pearse [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Specify outbound port on tomcat The application itself

Re: Specify outbound port on tomcat

2001-09-07 Thread Tim O'Neil
At 04:05 PM 9/7/2001, you wrote: On Fri, 7 Sep 2001, Joe Pearse wrote: Date: Fri, 07 Sep 2001 15:53:33 -0700 From: Joe Pearse [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Specify outbound port on tomcat Hi List- I'd like to specify what outbound

Re: Specify outbound port on tomcat

2001-09-07 Thread Pier Fumagalli
Tim O'Neil [EMAIL PROTECTED] wrote: Tomcat (or Apache, or any other TCP based server) sends responses back on the same port that it received your request on (in fact, on the exact same connection). Is your application itself generating outbound TCP connections (for example, to connect to a

Re: Specify outbound port on tomcat

2001-09-07 Thread Pier Fumagalli
Joe Pearse [EMAIL PROTECTED] wrote: That's just it, though. Take the firewall out of the equation, and the application works fine. I understand that the destination port is what matters, and it does; you're right about that. Let me describe a scenario, to see if this helps explain the

Re: Specify outbound port on tomcat

2001-09-07 Thread Pete Dale
PROTECTED] Sent: Friday, September 07, 2001 5:19 PM Subject: Re: Specify outbound port on tomcat That's just it, though. Take the firewall out of the equation, and the application works fine. I understand that the destination port is what matters, and it does; you're right about that. Let me

Re: Specify outbound port on tomcat

2001-09-07 Thread Craig R. McClanahan
On Fri, 7 Sep 2001, Joe Pearse wrote: Date: Fri, 07 Sep 2001 17:19:23 -0700 From: Joe Pearse [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Specify outbound port on tomcat That's just it, though. Take the firewall out of the equation

Re: Specify outbound port on tomcat

2001-09-07 Thread Jonathan Eric Miller
Subject: Re: Specify outbound port on tomcat That's just it, though. Take the firewall out of the equation, and the application works fine. I understand that the destination port is what matters, and it does; you're right about that. Let me describe a scenario, to see if this helps explain