I'm using Window 2000 Pro. I don't agree that this could happen due to
a network issue. coz before subscription to broadband service...i was
able to logon to the java application that i created. but after the
subscription, i don't know what happened.
Regards,
Mradul
Mradul schrieb am 05.02.2006 20:33:
> I'm using Window 2000 Pro. I don't agree that this could happen due to
> a network issue. coz before subscription to broadband service...i was
[quoted text clipped - 4 lines]
>
> Mradul
maybe your new isp blocks traffic on some ports. try a "telnet <ip>
<port>" on the command line with ip of your server and the port your
database is listening to, and see if you get an answer.
> I'm using Window 2000 Pro. I don't agree that this could happen due to
> a network issue. coz before subscription to broadband service...i was
> able to logon to the java application that i created. but after the
> subscription, i don't know what happened.
I'm guessing that before you subscribed to broadband, your machine
probably did hostname-to-IP address lookup via a static table.
Now, however, your machine has DNS servers allocated dynamically by your
broadband ISP using DHCP, and hostname-to-IP address lookups are
referred to them instead. They don't know which machine the name
"sweetheart" points to, because it's a name that you allocated to a
machine within your own private network, not a name that can be used on
the global Internet.
Open a "Command Prompt" window and type
ping sweetheart
If you see a message which says
Ping request could not find host sweetheart. Please check the name and
try again
then this is indeed your problem.
David Harper
Cambridge, England
Mradul - 08 Feb 2006 19:57 GMT
Hi David,
Thanks for the solution, this could be the case. Coz when i'm pinging
my system, it is showing the IP address assigned to me by my ISP.
Thanks again
Regards,
Mradul Kaushik
David Harper - 08 Feb 2006 20:18 GMT
> Hi David,
>
> Thanks for the solution, this could be the case. Coz when i'm pinging
> my system, it is showing the IP address assigned to me by my ISP.
Your Oracle server may only be listening on IP address 127.0.0.1.
Try changing the hostname in the TNS entry:
ORACLE.SWEETHEART =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = XXXX))
(CONNECT_DATA = (SID = ORCL))
)
David Harper
Cambridge, England