Re: Tomcat 8.5.5 with Oracle Apex 8.5.5 and Oracle ORDS 3.0.5.124.10.54 - Error While Connecting to Virtual Host - Message " null’s server IP address could not be found."

2019-08-14 Thread Pierre Chiu
Port 7003 > > while connecting to the following Url : > > http://apex_test:7003/ords_NERP/f?p=4550:1:16862187262183: > > The following Url appears : > > http://null/ords_NERP/f?p=4550:1:16862187262183: > > Error Message : > > " This site can’t be

Tomcat 8.5.5 with Oracle Apex 8.5.5 and Oracle ORDS 3.0.5.124.10.54 - Error While Connecting to Virtual Host - Message " null’s server IP address could not be found."

2019-08-14 Thread הרי טייב - harry taieb
/apex_test:7003/ords_NERP/f?p=4550:1:16862187262183: The following Url appears : http://null/ords_NERP/f?p=4550:1:16862187262183: Error Message : " This site can’t be reached null’s server IP address could not be found. " Is there a specific configuration at Tomcat level , to w

RE: how to obtain server ip address

2007-09-18 Thread Propes, Barry L
did you try getRemoteAddr()? -Original Message- From: Lilianne E. Blaze [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 18, 2007 12:08 AM To: Tomcat Users List Subject: Re: how to obtain server ip address Check java.net.NetworkInterface, it lets you enumerate all interfaces and

Re: how to obtain server ip address

2007-09-17 Thread Waseem Azhar
Yes I have tried InetAddress.getLocalHost() and its working ... Thanks, -Azhar On 9/18/07, Sonal Goyal <[EMAIL PROTECTED]> wrote: > > Waseem, > > Have you tried InetAddress.getLocalHost()? > > Sonal > > On 9/18/07, Waseem Azhar <[EMAIL PROTECTED]> wrote: > > > > Hi, > > > > How do I obtain the I

Re: how to obtain server ip address

2007-09-17 Thread Sonal Goyal
Waseem, Have you tried InetAddress.getLocalHost()? Sonal On 9/18/07, Waseem Azhar <[EMAIL PROTECTED]> wrote: > > Hi, > > How do I obtain the IP address of the machine (where the tomcat tomcat > server in running) ? My web app is deployed on tomcat server and I want to > know the Ip address of th

Re: how to obtain server ip address

2007-09-17 Thread Waseem Azhar
Yes I want to obtain IP address programmatically, Thanks for the quick help. -Azhar On 9/18/07, Lilianne E. Blaze <[EMAIL PROTECTED]> wrote: > > Check java.net.NetworkInterface, it lets you enumerate all interfaces > and addresses / interface. Discard loopback 127.0.0.1 and private > addresses

Re: how to obtain server ip address

2007-09-17 Thread Lilianne E. Blaze
Check java.net.NetworkInterface, it lets you enumerate all interfaces and addresses / interface. Discard loopback 127.0.0.1 and private addresses (see rfc 1918), with any luck there should be one address remaining. Of course, that is assuming your machine is directly exposed to the internet. http:

RE: how to obtain server ip address

2007-09-17 Thread Caldarale, Charles R
> From: Waseem Azhar [mailto:[EMAIL PROTECTED] > Subject: how to obtain server ip address > > How do I obtain the IP address of the machine (where the > tomcat tomcat server in running) ? If you mean you want to obtain the IP address programmatically, you should read the Serv

how to obtain server ip address

2007-09-17 Thread Waseem Azhar
Hi, How do I obtain the IP address of the machine (where the tomcat tomcat server in running) ? My web app is deployed on tomcat server and I want to know the Ip address of the server in my application. Thanks in advance. -Azhar

Re: server IP address

2006-10-09 Thread Len Popp
In a servlet, request.getLocalAddr() will return the server's IP address. -- Len On 10/9/06, Daniel Blumenthal <[EMAIL PROTECTED]> wrote: Hopefully, a pretty easy question: how do you determine the IP address of the server a servlet is running on? Thanks! Daniel -

Re: server IP address

2006-10-09 Thread Martin Gainty
its contents - Original Message - From: "Daniel Blumenthal" <[EMAIL PROTECTED]> To: "'Tomcat Users List'" Sent: Monday, October 09, 2006 7:34 PM Subject: server IP address > Hopefully, a pretty easy question: how do you determine the IP address

server IP address

2006-10-09 Thread Daniel Blumenthal
Hopefully, a pretty easy question: how do you determine the IP address of the server a servlet is running on? Thanks! Daniel