Connection refused to host: connection timed out

I have been struggling with this problem a couple of days now so I really hope someone can help me. I am trying to get rmi to work in a NAT environment. We use a firewall, so I have opened port 1099 and 2020 which I use as a fixed port for communication (just to be sure it is not a firewall thing); I use the following code:
//server
public class ComputeEngine extends UnicastRemoteObject
implements Compute
public ComputeEngine() throws RemoteException {
super();
public String getMessage() {
return "you have successfully connected to the server";
public static void main(String[] args) {
if (System.getSecurityManager() == null) {
System.setSecurityManager(new RMISecurityManager());
try {
String port = args[0];
try {
RMISocketFactory.setSocketFactory(new FixedPortRMISocketFactory(Integer.parseInt(port)));
} catch (IOException e) {
e.printStackTrace();
LocateRegistry.createRegistry( 1099 );
catch (RemoteException e1) {
e1.printStackTrace();
String name = "rmi://localhost/Compute";
try {
Compute engine = new ComputeEngine();
Naming.rebind(name, engine);
System.out.println("ComputeEngine bound");
while(true); //stay alive
} catch (Exception e) {
System.err.println("ComputeEngine exception: " + e.getMessage());
e.printStackTrace();
public Socket createSocket(String host, int port)
throws IOException {
System.out.println("creating socket to host : " + host + " on port " + port);
return new Socket(host, port);
* Create a server socket on the specified port (port 0 indicates
* an anonymous port) and writes out some debugging info
* @param port the port number
* @return the server socket on the specified port
* @exception IOException if an I/O error occurs during server socket
* creation
* @since JDK1.1
public ServerSocket createServerSocket(int port)
throws IOException {
port = (port == 0 ? portnumber : port);
System.out.println("creating ServerSocket on port " + port);
return new ServerSocket(port);
//client
public class ComputePi {
public static void main(String args[]) {
if (System.getSecurityManager() == null) {
System.setSecurityManager(new RMISecurityManager());
try {
String name = "rmi://" + args[0] + "/Compute";
Compute comp = (Compute) Naming.lookup(name);
System.out.println("connected to server");
System.out.println(comp.getMessage());
} catch (Exception e) {
System.err.println("ComputePi exception: " + e.getMessage());
e.printStackTrace();
I start the client with:
java -Djava.security.policy=policy.all -jar client.jar 194.2.4.6:1099
I start the server with:
java -Djava.rmi.server.codebase="file:/C:\RMI\\server.jar" -Djava.rmi.server.hostname="194.2.4.6" -Djava.security.policy=policy.all -jar server.jar 2020
As you can see I set the "-Djava.rmi.server.hostname" property which should be a solution to the NAT problem. However I keep getting the following exception!!??!!:
ComputePi exception: Connection refused to host: 194.2.4.6; nested exception is:
     java.net.ConnectException: Connection timed out: connect
java.rmi.ConnectException: Connection refused to host: 194.2.4.6; nested exception is:
     java.net.ConnectException: Connection timed out: connect
     at sun.rmi.transport.tcp.TCPEndpoint.newSocket(Unknown Source)
     at sun.rmi.transport.tcp.TCPChannel.createConnection(Unknown Source)
     at sun.rmi.transport.tcp.TCPChannel.newConnection(Unknown Source)
     at sun.rmi.server.UnicastRef.newCall(Unknown Source)
     at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
     at java.rmi.Naming.lookup(Unknown Source)
     at client.ComputePi.main(ComputePi.java:14)
Caused by: java.net.ConnectException: Connection timed out: connect
     at java.net.PlainSocketImpl.socketConnect(Native Method)
     at java.net.PlainSocketImpl.doConnect(Unknown Source)
     at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
     at java.net.PlainSocketImpl.connect(Unknown Source)
     at java.net.Socket.connect(Unknown Source)
     at java.net.Socket.connect(Unknown Source)
     at java.net.Socket.<init>(Unknown Source)
     at java.net.Socket.<init>(Unknown Source)
     at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(Unknown Source)
     at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(Unknown Source)
     ... 7 more
Can anyone help me with this, please??????
kind regards,
Christiaan

Yes, i can ping it from the client.
I have also noticed that when i run my server with the option -Djava.rmi.server.hostname=IP the applications stops automatically after a few minuts...
I'm not using nothing about codebase. I have the stub and skel classes in server and client machines..
I add the complete exception:
Client exception: java.rmi.ConnectException: Connection refused to host: external_IP; nested exception is:
java.net.ConnectException: Connection timed out: connect
java.rmi.ConnectException: Connection refused to host: external_IP; nested exception is:
java.net.ConnectException: Connection timed out: connect
at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:567)
at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185
at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:101)
at example.hello.Server_Stub.sayHello(Unknown Source)
at example.hello.Client.main(Client.java:55)
Caused by: java.net.ConnectException: Connection timed out: connect
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
at java.net.Socket.connect(Socket.java:426)
at java.net.Socket.connect(Socket.java:376)
at java.net.Socket.<init>(Socket.java:291)
at java.net.Socket.<init>(Socket.java:119)
at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirect
SocketFactory.java:22)
at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMaster
SocketFactory.java:128)
at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:562)
... 5 more

Similar Messages

  • Help me pls in ConnectException: Connection refused to host

    hi all,
    i'm getting the following exception could any one help me out from this.
    i have opened two particular ports that r listening for RMI
    C:\j2sdk1.4.0-rc\bin\Test>java -Djava.security.policy=allper.policy CallClient
    java.rmi.ConnectException: Connection refused to host: xxx.xxx.xxx.xxx; nested ex
    ception is: java.net.ConnectException: Connection timed out: connect at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:567) at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185) at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171) at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:313)
    at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
    at java.rmi.Naming.lookup(Naming.java:83)
    at Client.add(Client.java:146)
    at CallClient.main(CallClient.java:47)
    Caused by: java.net.ConnectException: Connection timed out: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:295)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:161)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:148)
    at java.net.Socket.connect(Socket.java:425)
    at java.net.Socket.connect(Socket.java:375)
    at java.net.Socket.<init>(Socket.java:290)
    at java.net.Socket.<init>(Socket.java:118)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirectSocketFactory.java:22) at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMasterSocketFactory.java:122)
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:562)
    ... 7 more
    looking for ur help
    -shafeeq

    hi,
    actually it is giving syntax error if i include like this in the client code
    systemProperties.put("sun.rmi.transport.connectTimeout",15000);
    systemProperties.put("sun.rmi.server.disableHttp","false");
    pls guide me how exactly i should include in the client codings.
    pls help
    -shafeeq
    Note: from http://java.sun.com/j2se/1.4/docs/guide/rmi/sunrmiproperties.html/#connectionTimeout
    sun.rmi.transport.proxy.connectTimeout (1.1 and later)
    The value of this property represents the maximum length of time (in milliseconds) that the RMI runtime will wait for a connection attempt (createSocket) to complete, before attempting to contact the server using HTTP. This property is only used when the http.proxyHost property is set and the value of java.rmi.server.disableHttp is false. The default value is 15000 milliseconds (15 seconds).

  • Java.rmi.ConnectionExceptionException:Connect refused to host

    I write a rmi,when server and client runs in the same machine,it runs ok,then I run them in two machines,server runs in 192.168.0.1,like follows:
    C:\>rmiregistry -J-Djava.security.policy=registerit.policy
    C:\>java -Djava.rmi.dgc.leaseValue=1000 -Djava.security.policy=registery.policy RegisterIt
    Object instantiated: HelloServer[RemoteStub [ref: [endpoint:[192.168.0.1:3120](l
    ocal),objID:[0]]]]
    and it ok ,client runs in 192.168.0.2, but it raise errors:
    java -Djava.security.policy=registerit.policy HelloClient
    HelloClient exception :java.rmi.ConnectionException:Connection refused to host:192.168.0.2;nested exception is:java.net.ConnectException:Connection refused:connect
    Why? how to solve it?
    Any idea will be appreciated!
    My code is follows:
    HelloInterface.java
    public interface HelloInterface extends java.rmi.Remote{
    public String sayHello() throws java.rmi.RemoteException;
    HelloServer.java
    import java.io.*;
    import java.rmi.*;
    import java.rmi.server.*;
    import java.util.*;
    public class HelloServer extends UnicastRemoteObject implements HelloInterface{
    public HelloServer() throws RemoteException{
    super();
    public String sayHello() throws RemoteException{
    return "Hello world, the current system time is "+new Date();
    RegisterIt.java
    import java.rmi.*;
    public class RegisterIt{
    public static void main(String args[]){
    try{
    HelloServer obj=new HelloServer();
    System.out.println("Object instantiated: "+obj);
    Naming.rebind("/HelloServer",obj);
    System.out.println("HelloServer bound in registery");
    catch(Exception e){
    System.out.println(e);
    registerit.policy
    grant{
    permission java.security.AllPermission;
    HelloClient.java
    import java.rmi.*;
    public class HelloClient{
    public static void main(String args[]){
    if(System.getSecurityManager()==null){
    System.out.println("null");
    System.setSecurityManager(new RMISecurityManager());
    try{
    HelloInterface obj=(HelloInterface)Naming.lookup("/HelloServer");
    String message=obj.sayHello();
    System.out.println(message);
    catch(Exception e){
    System.out.println("HelloClient exception: "+e);
    }

    Connection refused means the server is no listening on the port that client tried to connect to. You need to look at your configuration.

  • I can't connect to Wi-Fi - keeps timing out. No problem connecting from other laptops / phones. Stopped working after I did a system upgrade. What can I do?

    I can't connect to Wi-Fi - keeps timing out. No problem connecting from other laptops / phones. Stopped working after I did a system upgrade. What can I do? I am on OS X Yosemite.

    Take each of the following steps that you haven't already tried, until the problem is resolved. Some of these steps are only possible if you have control over the wireless router.
    Step 1
    Turn Wi-Fi off and back on.
    Step 2
    Restart the router and the computer. Many problems are solved that way.
    Step 3
    Change the name of the wireless network, if applicable, to eliminate any characters other than letters and digits. You do that on your router via its web page, if it's not an Apple device, or via AirPort Utility, if it is an Apple device.
    Step 4
    Run the Network Diagnostics assistant.
    Step 5
    In OS X 10.8.4 or later, run Wireless Diagnostics and fix the issues listed in the Summary, if any.
    Step 6
    Back up all data before proceeding.
    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Enter the name of your wireless network in the search box. You should have one or more "AirPort network password" items with that name. Make a note of the name and password, then delete all the items. Quit Keychain Access. Turn Wi-Fi off and then back on. Reconnect to the network.
    Step 7
    You may need to change other settings on the router. See the guidelines linked below:
    Recommended settings for Wi-Fi routers and access points
    Potential sources of interference
    Step 8
    Make a note of all your settings for Wi-Fi in the Network preference pane, then delete the connection from the connection list and recreate it with the same settings. You do this by clicking the plus-sign icon below the connection list, and selecting Wi-Fi as the interface in the sheet that opens. Select Join other network from the Network Name menu, then select your network. Enter the password when prompted and save it in the keychain.
    Step 9
    Reset the System Management Controller (SMC).

  • Iphone 5 Screen is Frozen Connection Timeout Error Connection to this app has timed out

    I upgraded to IOS 7 just a few hours before my Iphone 5 screen froze and I cannot make changes -  I have a Connection Timeout Error with Connection to this app has timed out.  With Ok in blue.  The screen doesn't respond,  I can turn off the phone, tap OK or do anthing.  Any advice on how I can reset or fix?

    Check for any anti-virus or anti-spyware software you might have. Temporarily disable that to continue. Normally this is what will cause a timeout. I assume you have a good Internet connection?

  • Connection refused by host in Nagios NRPE

    Hi Experts
    I had configured Nagios in Redhat linux everthing is working smoothly
    My problem is i have Solaris 8,9,10 now i am installing NRPE plugings and NRPE in Solaris 10 to get the details of swap space & Machine load information all the compilation went smoothly.
    When i run the given below command i am getting connection refused by host.
    bash-2.05# /usr/local/nagios/libexec/check_nrpe -H 127.0.0.1
    Connection refused by host
    One more query how to start xinetd in solaris10 and other solaris platform.I saw in nagios NRPE document it says to run "make install-xinetd" if it is there how to start it i think most probly xinet is not running
    Could any please help me on this
    Thanks
    kr

    Describe your setup and what internet realated applications you've installed and i'm sure someone will be able to help you.
    - How are you connecting - via a swtich, usb or ethernet modem somehow?
    - What other apps are installed - any download managers or things that integrate with your web browser?

  • RMI Protocol over JRMP transport: connection refused to host: 10.10.10.10

    Hi,
    We migrated our Discoverer 9.0.2 to 10.1.2. However, when we connected to Discoverer Plus, the message saying "RMI Protocol over JRMP transport: connection refused to host: 10.10.10.10" appeared. We use the "Default" communication protocol and Sun JVM 1.4+ is installed in the client. Do you know what's happening?
    Thanks.
    Andy

    Hi Andy
    It could be a Java incompatibility issue. On one of your client machines try removing Java altogether and then reconnecting to Discoverer Plus. The server should send down a new, clean version of the Java.
    Try this and let me know how you get on
    Best wishes
    Michael

  • Error in test connection: Connection refused to host: 172.22.100.77

    Hi,
    I'm trying to connect B1if to a SBO DB in a different server that dosen't have B1if instaled.
    I'm getting this error:
    XCE001 Nested exception: java.rmi.RemoteException: com.sap.b1i.xcellerator.XcelleratorException: XCE001 Nested exception: java.rmi.ConnectException: Connection refused to host: 172.22.100.77; nested exception is:
         java.net.ConnectException: Connection refused: connect
    Best Regards,
    Ana Silva

    Hi,
    B1if is only a framework. Both db should install the framework.

  • Connection refused to host 127.0.0.1  (Lookup  windows -- Linux)

    Hi Folks,
    Buddies I am facing a problem. My server is running at specified port on a linux machine but when I try to connect it from a windows machine i got error massage "Connection refused to host 127.0.0.1 " but it's very inscrutable message.
    I made some changes in /etc/hosts file and /etc/xinetd.d/services and everything worked fine.
    But now there is a question come in my mind that , Is there any alternative so we don't need to make any change in above mentioned two files.
    My Changes;
    /etc/host
    I've added system ip and name in the first line.
    /etc/xinetd.d/services
    Modified services files and enabled protocol and permitted to all system who are under class three network.
    Could anybody have a better idead to avoid these changes because of security issues?
    --Manoj                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hi,,,Thanks
    When I refer to random it is when the pc in windows in his configuration of net it has " obtain ip automatic " when the ip are fixed in the configuration of net I do not have problems of (connection refused to host:name_machine) what I need is to know that I must do to solve the problem (connection refused to host:name_machine) when in the pc they have a configuration of net of obtaining ip automaticamennte,
    I dont understand when you say that..."you should always set java.rmi.server.hostname at server JVMs to the FQDN of the host, not the IP address." Where I do this ??, where I put it??, I dont understand
    you can help me to know if this could solve my problem when the ip is obtained automatically
    this it is my code...
    public static UserPreferences systemPrefs;
    static
    try
    Configuration cfgServer = (Configuration) Registry.lookupServer(Configuration.class);
    systemPrefs = cfgServer.getSystemPreferences();
    catch (Exception e)
    Logger log = LoggerFactory.getLogger(AlertManagerServer.class);
    log.error("Error obteniendo las preferencias para Alert Manager Client", e);
    /** Puerto **/
    public static final String SERVER_PORT = systemPrefs.getString(SystemModuleDescriptor.Settings.ALERTMANAGER_SERVER_PORT, "1198");
    /** Server Name **/
    public static final String SERVER_NAME = NotificationConstants.ALERTSERVER_NAME;
    /** Client Separator **/
    public static final String ALERTCLIENT_SEPARATOR = NotificationConstants.ALERTCLIENT_SEPARATOR;
    * Constructor
    public AbstractAlertManagerClient()
    * Constructor
    * @param clientName Nombre del cliente
    * @throws Exception Problemas
    public AbstractAlertManagerClient(String clientName)
    throws Exception
    launchClient(clientName);
    * Subiendo el Cliente de Mensajeria
    * @param clientName Nombre
    * @throws ProvisioningException Problemas
    public void launchClient(String clientName)
    throws ProvisioningException
    try
    NotificationInterface notification = (NotificationInterface)Registry.lookupServer(NotificationInterface.class);
    String serverIPAddress = notification.getServerIPAddress();
    String serverInfo = "//" + serverIPAddress + ":" + SERVER_PORT + "/" + SERVER_NAME;
    AlertManagerServerInterface server = (AlertManagerServerInterface) TransparentItemProxy.getItem( serverInfo,new Class[] { AlertManagerServerInterface.class });
    AlertManagerClient client = new AlertManagerClient();
    this.server = server;
    this.name = setClientName(clientName);
    client.server = server;
    client.name = setClientName(clientName);
    Object oclient1 = new Remote(this);
    oclient = oclient1;
    Remote.invoke(server, "registerClient", oclient1);
    catch(Exception ex)
    String msg = "";
    msg += "[ERROR] trying com.iptotal.notification.bo.AbstractAlertManagerClient.AbstractAlertManagerClient()...subiendo Client ";
    ProvisioningException pex = new ProvisioningException(ProvisioningException.ErrorCatalog.NOTIFICATION_DISPATCHING_ERROR, ex);
    Logger log = LoggerFactory.getLogger(AbstractAlertManagerClient.class);
    log.error(msg, pex);
    throw pex;
    * Registrar un Cliente
    * @param client Cliente
    public void registerClient(Object client)
    try
    String name = (String)Remote.invoke(client,"getClientName",null);
    if( ! clients.containsKey(name) )
    clients.put( name, client);
    catch(Exception ex)
    String msg = "";
    msg += "[ERROR] trying com.iptotal.notification.bo.AlertManagerServer.registerClient(1) ";
    Logger log = LoggerFactory.getLogger(AlertManagerServer.class);
    log.error(msg + " " + ex.getMessage()); // VA: para que no salgan en el log los stacktrace del CAJO no route to host
    Really Thank you for the help that you can offer me

  • HT4628 some times my internet connection will say it has timed out and I can not connect. but my friends mac never has a problem. How can I fix this?

    some times my internet connection will say it has timed out and I can not connect. but my friends mac never has a problem. How can I fix this?

    Just confirming, when you have the trouble, the wifi icon is grayed-out or has all bars showing? I believe you are saying that is is grayed-out - not connected to your wireless router.
    I have a Mini that started to lose connection to the Internet after the 10.7.3 update but still showed the wireless as connected. If I pinged the wireless router, I would get a quarter of the packets failing to return. The router was a Netgear that supported 802.11N connections. As a test, I set it to 802.11G (54MBps) maximum and the Mini worked fine for a week - no dropouts. And for the other devices that did support 802.11N, while there was a noticeable delay with downloads and pages loading, they still worked.
    As another test, I changed the Netgear router to a Billion 802.11N model and the Mini has not had a problems since. (It is still using 802.11g). So it could be your router that is causing trouble for your Mac.
    Have a look at some of the More Like This postings in the right column. There has been a number of Mac owners experiencing wifi connection issues and some very good suggestions as to how to resolve their issue.

  • Connection refused error while connecting to port.

    Hello,
    I have a service (Connect Direct) listening at port 1364 in server X.
    $ netstat -an | grep 1364
    11.22.33.44.1364 *.* 0 0 0 0 LISTEN
    (Assume 11.22.33.44 = Server X's IP.)
    Now, when another server (say Y) tries to use this service in server X, it is getting "Connection Refused" error. I tried telneting.
    From Y:
    telnet 11.22.33.44 23 is working
    telnet 11.22.33.44 1364 is giving the same Connection Refused error.
    telnet 11.22.33.44 1364
    Trying 11.22.33.44...
    telnet: Unable to connect to remote host: Connection refused
    /usr/sbin/ping 11.22.33.44
    11.22.33.44 is alive
    To complicate things, 11.22.33.44 is not the original IP of server X.
    ifconfig -a gives:
    hme0: flags=863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST> mtu 1500
    inet 11.22.33.55 netmask ffffff00 broadcast 11.22.33.255
    hme0:1: flags=843<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
    inet 11.22.33.44 netmask ffffff00 broadcast 11.22.33.255
    (in additional to a couple of other IPs).
    What could be the problem?
    Help!!!!

    IPF firewalling could cause this, if you have it enabled.
    I havent used it, so I'm not entirely sure how to check.
    Of another firewall if its between the 2 machines. Are they on the same subnet?

  • Mail server failure. connection refused. too manay connections - when using sp_send_dbmail with job agent

    Hello All,
    I've a weird problem when I'm using "SP_Send_dbmail" to send a simple e-mail to two recipients using job agent.
    The code i write is:
    exec msdb.dbo.sp_send_dbmail
        @profile_name= 'Send Reports',
        @recipients = '[email protected] ; [email protected]',
        @Copy_recipients = '[email protected]',
        @Body = 'Whatever will be here',
        @subject = 'Daily Reports',
        @file_attachments = 'd:\MyFolder\MyFile.txt';
    The error i receive is:
    The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 1 (2015-03-03T14:57:17). Exception Message: Cannot send mails to mail server. (Service not available, closing transmission channel. The server response
    was: service not available (connection refused, too many connections)).
    Does any one know why i get such error???
    Please advise.
    Hany Mounir

    Hello,
    Please consider any Windows Firewall, security hardware/software, policies on your organization’s mail
    server.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Connection to oracle9i error (ping timed out after connecting to database )

    i have problem wtih connection to database.
    ping to server is ok , port 1521 is open
    when i want to connect to database , ping to server timed out
    i have a distance between my pc and my server , about 100 m
    cable utp
    any solution for my problem

    c:\> ping 10.1.110.1
    Reply from 10.1.110.1: bytes=32 time<1ms TTL=128
    C:\>tnsping 10.1.110.1
    TNS Ping Utility for 32-bit Windows: Version 9.2.0.1.0 - Production on 29-NOV-20
    07 15:33:09
    Copyright (c) 1997 Oracle Corporation. All rights reserved.
    Used parameter files:
    D:\oracle\ora92\network\admin\sqlnet.ora
    Used HOSTNAME adapter to resolve the alias
    Attempting to contact (DESCRIPTION=(CONNECT_DATA=(SID=*)(SERVICE_NAME=10.1.110.1
    ))(ADDRESS=(PROTOCOL=TCP)(HOST=10.1.110.1)(PORT=1521)))
    TNS-12535: TNS:operation timed out
    my sqlnet file
    # SQLNET.ORA Network Configuration File: D:\oracle\ora92\network\admin\sqlnet.ora
    # Generated by Oracle configuration tools.
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES, ONAMES, HOSTNAME)

  • Itunes could not connect to iTunes Store-Network timed out. Upgraded to 7.6

    I upgraded this morning and was able to buy tracks. Now I get "Itunes could not connect to iTunes Store.The Network connection timed out. Running Nework Connectivity Test shows everything ok. Apple Sw Update application shows the same behavior. All of my other applications and programs run normally. I can surf web ok.
    Can someone help me?

    Search the forums. This is an old problem. For almost everyone it's a Norton issue. I had to upgrade from Norton 360 V1 to V2 to solve the problem. With otehr versions of Norton people have been able to create an entry in the firewall's allowed sites and that fixed it. If nothing else call Norton. They should have had enough calls by now they'll be able to tell you how to fix it for your version of Norton.

  • Mobile Hotspot Says I'm connected to internet, but websites timing out

    Hello, I just got mobile hotspot for my Thunderbolt. I am connecting to the network and it is saying I have internet access, however when I try and load a website they are timing out.
    To make matters stranger, my computer is showing recieving and sending packets, and I had a youtube vdeo half loaded, and it streamed the rest. But when I click on new websites it is saying connection timed out.
    All help is appreciated thanks!

    This has happened to me in the past. I've seen a few others report similar issues. I'll assume you've already tried the standard solutions (reboot, battery pull, reseat the SIM card).
    Have you tried connecting to the hotspot with another computer? Have you tried a direct USB connection rather than a WiFi connection?
    For me, the solution was to turn off Auto Sync before using the hotspot feature (Menu -> Settings -> Accounts and Sync, and then uncheck Auto Sync). Don't know why this worked, but it did.
    If the above doesn't work for you, it could be a network-related issue. To test this, try the following:
    Can you ping sites from your computer when the browsing ability is down?
    If no, then it sounds like a DNS issue. In this case, try accessing a website by using its IP address rather than its domain name. For example, 206.112.186.66 is the IP address of lowes.com. If you can access a site via the IP address but not via the domain name, then it's a DNS problem. Call VZW tech support to report it. Use different DNS servers (e.g., Open DNS) in the meantime.
    If you can still ping sites, then it's not a DNS issue. So, next, try using a proxy server--such as proxify.com--to access the web.  If the the proxy server works, then you should call VZW support to report the problem, since it's clearly an issue on their end with specific sites.
    When calling into support, let me forewarn you: Give yourself an hour or more for them to walk you through the usual steps (reboot, battery pull, reseat the SIM card). Also, if they assign you a trouble ticket, don't expect to be called back within the promised 48 hours (it's more like 2+ weeks). Instead, you have to be assertive and keep calling them back.

Maybe you are looking for

  • How to get PDF files to open in 1 window, rather than a new window each time

    When opening several PDF files, I find they open up in a new window. Previosuly they opened within the same window. I am using Adobe Reader 9

  • What is the benefit of using Firefox over Safari?

    I am a long time PC user who just ran through her 5th laptop, 1 toshiba, 2 panasonics, and 2 dells. Finally decided to buy my first Apple product, MacBook Pro. Purchased yesterday and trying to learn the new system. My question is, what is 'wrong' wi

  • Data communication in wifi network

    Hi, Could you let me know if it is possible to communicate [peer to peer communication] between two wi-fi devices in j2me as similar to client-sever communication in bluetooth? Please let me know if I m missing anything here. Thanks!

  • Scrolling without pressing

    I want to make a gallery of pictures. Then I want to put a navigation bar of my thumb buttons in a row. When the mouse goes over it, the nav bar will scroll by itself and when the mouse is put in the middle of the nav bar, it will stop the scrolling.

  • Where is IDENT(Item ID) within BOM stored

    Does any one now where the item id(IDENT) field value really stored in DB.. It is not stored STOP..I am wondering if it would be stored in different table.. Any help would be appreciated. Thanks, Frank