Java Socket Connection Time out

Goal*
I want to check host/port availability of computers in our network (~100 computers) .. Just check if host is alive and if it has port 445 opened. I want to do this somehow in parallel, so the code execution is as quick as possible.
My implementation*
I do this by creating socket connection to the host. Something like this:
        Socket s = null;
        try {
            s = new Socket();
            InetSocketAddress socketAddress = new InetSocketAddress(ipAddress, 445);
            s.connect(socketAddress, 3000);
            if (s.isConnected()) {
                // do something
        } catch (ConnectException ex) {
            //exception thrown
        } catch (IOException ex1) {
            //exception thrown
        } finally {
            try {
                // close socket
                s.close();
            } catch (IOException ex) {
                Logger.getLogger(ComputerModel.class.getName()).log(Level.SEVERE, null, ex);
        }This code is executed in a loop, where a separate thread is created for every iteration = ~100 separate threads.
Problem:*
1.
It seems to me, that first ~10-15 connections are created ok, but then my code reaches 'IOException' catch block for every subsequent itteration and ex.getMessage() returns "connection time out" (I try to use different timeout values in the 2nd parameter. Values from 3000 up to 20000).
Is it valid to create 100 separate threads in a loop? Can't I make my NIC to bussy with this ??? What is the maximum ammount of threads, I can create? I did not use threads before, so I have no idea, if max values are near to 10, 100, 1000, or 10000 ..
2.
After my code is executed, I enter 'netstat -an' command in my command line and I get bunch of connections, which report status of SYN_SENT for several connections.
TCP 10.20.11.140:4557 10.30.11.119:445 SYN_SENT
TCP 10.20.11.140:4558 10.30.11.176:445 SYN_SENT
TCP 10.20.11.140:4559 10.30.11.100:445 SYN_SENT
TCP 10.20.11.140:4560 10.30.11.142:445 SYN_SENT
TCP 10.20.11.140:4561 10.30.11.171:445 SYN_SENT
TCP 10.20.11.140:4562 10.30.11.143:445 SYN_SENT
TCP 10.20.11.140:4563 10.30.12.12:445 SYN_SENT
TCP 10.20.11.140:4564 10.30.12.11:445 SYN_SENT
TCP 10.20.11.140:4565 10.30.12.21:445 SYN_SENT
TCP 10.20.11.140:4566 10.30.11.150:445 SYN_SENT
I also feel, that my computer network response (e.g. firefox browsing) is a bit slower ..
How shall I handle this problem properly?
Thx in advance,
Juraj

kajbj wrote:
tschodt wrote:
kajbj wrote:
The documentation for netstat explains what SYN_SENT is, but
I don't know why you have them.The app has asked the TCP stack to transmit SYN
the TCP stack is now waiting for SYN-ACK.
If there is no host at that IP address or a host that drops connections (SYN packets) for TCP port 445
there will never be a SYN-ACK.
After a few minutes the TCP stack will time out the connection attempt.Yes, I was rather commenting on why his hosts aren't answering. I thought that his case was that all of them should answer :)Akkurat. I was answering more for clarification.
Someone who does not know your posting history could easily assume you meant
it was a mystery why netstat was showing SYN_SENT.
And I figured it would not harm to hint that one possible reason would be that those machines are powered off (no host).

Similar Messages

  • Socket connection time Out - Sender File adapter (Intermittent Issue )

    Dear FrIends,
    In our sender file adapter i am getting the following issue:
    I have already places timout : 120 secs.
    This isssue is occuring intermittently.
    Error occurred while connecting to the FTP server "100.142.131.30:21": java.net.ConnectException: Socket connection timed out: 100.142.131.30:21

    Hi Renu,
    You need to increase the timeout Seconds and check.
    Run the report RSFTP002.
    and check whether the connection to FTP works. Provide the below parameters:
    user = <your ftp user>
    pwd = <your ftp pwd>
    host= <your ftp host/ip>
    command1 = <ls>
    RFC Dest = SAPFTP
    Compress = N
    If the issue still exists, then check  with your BASIS Team.
    http://www.sap2048.com/socket-and-connection-issues-in-java-web-services-1351.htm
    Thanks,

  • Socket mostly times out, connection refused.

    Hello,
    I am writing my own version of dc-hub in Java. This is my first networking program I make.
    The main class has a ServerSocket running on port 411 and it will then make another socket when someone connects. Although at the moment 198 users are connected, it seems that the server mostly gives a time out when you try to connect. It's not a firewall problem, because I get them (localhost) as well. The server also runs on localhost.
    This is the code:
    ServerSocket serverSock = new ServerSocket(411);while(true) {      Socket sock = serverSock.accept();      new ConnectorThread(sock,P,U);}
    I really have no clue why I and a lot of other users get time outs...
    I'll post the results from the client program (DC++):
    [17:39] *** Connection refused by target machine
    [17:39] *** Connecting to localhost...
    [17:39] *** Connection refused by target machine
    [17:39] *** Connecting to localhost...
    [17:40] *** Connection refused by target machine
    [17:40] *** Connecting to localhost...
    [17:40] *** Connected
    [17:40] <Hub-Security> Welcome to Tom's personal hubsoftware V1.0
    Oh... yeah... I get Connection refused, while my friends are receiving "Connection time out..."
    Again: It's not a firewall or router problem... I know that 100% sure...
    I hope someone knows how to fix this problem, I've searched the forum without a result for my problem.
    Thank you in advance,
    Tom

    I am running 1.4.2_05 on win2000
    Client code
    //{{{  Imports
    import java.io.*;
    import java.net.* ;
    * This class provides access to the IOR String via HTTP protocol.
    * Server accepts connection from anywhere
    public class SockClient // extends Thread
    //  public static int HTTPIORPort = 2096;
    //  ServerSocket incommingSocket = null;
    //  private int SockTimeout = 5000; // 5 seconds
      SockClient()
        for (int i = 0 ; i < 40 ; i++)
          try
            new GetThread(i);
          catch (Exception e)
            System.out.println("Caught Exception:");
            e.printStackTrace();
      public static void main (String args[])
        new SockClient();   
      class GetThread extends Thread
        int gen;
        GetThread(int i)
          //setDaemon(true);
          setDaemon(false);
          gen = i;
          start();
        public void run()
          int count = 69;
          try
            Socket socket = new Socket(InetAddress.getByName("localhost"), 2096);
            //System.out.println("timeout="+ socket.getSoTimeout());
            InputStream in = socket.getInputStream();
            OutputStream out = socket.getOutputStream();
            String get = "GET / HTTP/1.1\r\n\r\n";
            out.write(get.getBytes());
            byte[] buf = new byte[1024];
            while (count > 0)
              count = in.read(buf);
          catch (Exception e)
            System.out.println("Caught exception (g="+gen+"):("+count+")"+e.toString());
            //e.printStackTrace();
    }Server code:
    *  Handles HTTP requests
    //{{{  Imports
    import java.io.*;
    import java.net.* ;
    import java.util.* ;
    * This class provides access to the IOR String via HTTP protocol.
    * Server accepts connection from anywhere
    public class SockServer // extends Thread
      public static int HTTPIORPort = 2096;
      ServerSocket incommingSocket = null;
      private int sockTimeout = 5000; // 5 seconds
      public static void main (String args[])
        try
          new SockServer();
        catch (Exception e)
          System.out.println("main: Exception"+e.toString());
      SockServer() throws IOException
        System.out.println("Thread running: HTTPListener");
        Socket incommingRequest = null;
        try
          incommingSocket = new ServerSocket(HTTPIORPort);
          System.out.println("Timeout set to "+incommingSocket.getSoTimeout());
          //incommingSocket.setSoTimeout(sockTimeout); // 5 seconds
        catch (Exception e)
          System.out.println("Unable to start HTTP IOR Server");
          System.exit(1);
        //  Ready to Accept connections
        System.out.println("Started HTTPListener listening on "+HTTPIORPort);
        while (true)
          try
            synchronized(incommingSocket)
              incommingRequest = incommingSocket.accept();
              handleRequest(incommingRequest);
          catch (java.net.SocketTimeoutException to)
          catch (Exception e)
            System.out.println("Could not accept HTTP request: "+e.toString());
            break;
        // Close sockets
        try
          incommingRequest.close();
          incommingSocket.close();
        catch (Exception e) { }
        System.out.println("Thread exit: HTTPListener");
      void handleRequest(Socket ic)
        System.out.println("Received HTTP IOR Request from: "+
            ic.getInetAddress().getHostAddress()+":"+ic.getPort());
        final Socket httpRequest = ic;
        final String qmVersion = "1.0";
        final BufferedReader inData ;
        final OutputStream outData;
        try
          inData = new BufferedReader(new InputStreamReader(httpRequest.getInputStream()));
          //PrintWriter outData = new PrintWriter(httpRequest.getOutputStream(), true);
          //DataOutputStream outData = new DataOutputStream(httpRequest.getOutputStream());
          outData = httpRequest.getOutputStream();
        catch (Exception e)
          System.out.println("Caught set up streams:" +e.toString());
          return;
        new Thread (null, null, "HTTPAnswerThread", 10 * 1024)
            String page = null;
            // Anonymous contructor
              setDaemon(true);
              start();
            // Anonymous Thread to handle http request
            public void run ()
                String input = "starting";
              try
                // Ditch incoming header
                while (input.length() != 0)
                  input = inData.readLine();
                  if (input == null)
                    System.out.println("input == null");
                    break;
                page = "IOR:000000000000002349444C3A515F5175656E74696E2F515F496E7465726E616C506F7274616C3A312E300000000000020000000000000070000102000000000D31302E3136322E36332E3438000011690000001C5374616E64617264496D706C4E616D652F011147170A2C332E013928000000020000000000000008000000004A414300000000010000001C00000000000100010000000105010001000101090000000105010001000000010000002C0000000000000001000000010000001C00000000000100010000000105010001000101090000000105010001";
    //            outData.print(getHeader(page.length()));
    //            outData.print(page);
    //            outData.writeBytes(getHeader(page.length()));
    //            outData.writeBytes(page);
                //byte[] b = getHeader(page.length()).getBytes("ISO-8859-1");
                byte[] b = stringToBytes(getHeader(page.length()));
                outData.write(b);
                outData.flush();
                //byte[]
                //b = page.getBytes("ISO-8859-1");
                b = stringToBytes(page);
                outData.write(b);
                outData.flush();
                outData.close();
                inData.close();
                httpRequest.close();
              catch (Exception e)
                System.out.println("Unhandled http request:");
                e.printStackTrace();
            byte[] stringToBytes(String s)
              ByteArrayOutputStream os = new ByteArrayOutputStream();
              try
                DataOutputStream cob = new DataOutputStream(os);
                cob.writeBytes(s);
                cob.close();
              catch(Exception e)
                System.out.println("Caught unhandled exception:");
                e.printStackTrace();
              return os.toByteArray();
            String getHeader(int len)
              return
                 "HTTP/1.1 200 OK\r\n"+
                 "Date: "+ (new Date()).toString() + "\r\n"+
                 "Content-Type: text/plain\r\n"+
                 "Content-Length: "+ len +"\r\n"+
                 "Server: "+ qmVersion + "\r\n"+
                 "\r\n";
      }

  • Management console-connection time out please help

    after Composite environment installation,first time I am trying to open the management console. It throws a dialog window connection error. and in the text message connection to <host name and nr > failed.
    In the exception message, i can see connection time out:connect
    Here is the log
    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.SocksSocketImpl.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 com.sap.engine.services.webservices.jaxm.soap.HTTPSocket.initStreamsFromSocket(HTTPSocket.java:648)
         at com.sap.engine.services.webservices.jaxm.soap.HTTPSocket.initializeStreams(HTTPSocket.java:470)
         at com.sap.engine.services.webservices.jaxm.soap.HTTPSocket.getOutputStream(HTTPSocket.java:427)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.HTTPTransport.getRequestStream(HTTPTransport.java:355)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.outputMessage(MimeHttpBinding.java:548)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.call(MimeHttpBinding.java:1425)
         at com.sap.managementconsole.soap.sap.sapcontrol.SAPControlStub.getInstanceProperties(SAPControlStub.java:1248)
         at com.sap.managementconsole.dataloader.soap.sap.SAPSOAPDataLoader.getInstanceProperties(SAPSOAPDataLoader.java:823)
         at com.sap.managementconsole.dataloader.soap.sap.SAPSOAPDataLoader.<init>(SAPSOAPDataLoader.java:87)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at com.sap.managementconsole.common.SapControlInterfaceFactory.getControlInterface(SapControlInterfaceFactory.java:91)
         at com.sap.managementconsole.common.DataLoader.createControlInterface(DataLoader.java:313)
         at com.sap.managementconsole.common.DataLoader.startup(DataLoader.java:232)
         at com.sap.managementconsole.common.DataLoader.access$100(DataLoader.java:64)
         at com.sap.managementconsole.common.DataLoader$1.execute(DataLoader.java:437)
         at com.sap.managementconsole.operations.AuthorizedOperation.execute(AuthorizedOperation.java:38)
         at com.sap.managementconsole.common.DataLoader.reinitialize(DataLoader.java:444)
         at com.sap.managementconsole.common.DataLoader.run(DataLoader.java:542)
         at java.lang.Thread.run(Unknown Source)

    Hello,
    Can you post the std_server0 log ?
    Regards,
    Siddhesh

  • Message Mapping - connection time out

    Hi ,
    I hae just created a message mapping and when I click on Test tab and load a payload in source and try to test the mapping , it gives me connection time out error from java...
    What could be wrong ? Mapping involves an XML to IDOC .
    Cheers,

    Hello,
    I think so (Experts, please correct me if I'm wrong). Before, we had a scenario in which the external definition was about 960kb. It really did post issues when testing in the message mapping itself. There are three options:
    a.) Use less detail in your sample message mapping, in this way you can correct the error in the mapping itself.
    or
    b.) Test in operation mapping, and then do the correction in message mapping afterwards. If the testing is successful, make sure that you don't click the drop down icon. Instead, export the result as a zip file and then extract it. (if this hangs, go for c)
    or
    c.) Test at runtime
    Hope this helps,
    Mark
    Edited by: Mark Dihiansan on Dec 20, 2010 10:09 AM

  • We connection time out model nokia3230

    dear sir, every time i log into web connection  GO TO ANY WEBSITEafter running GPRS for 5 minutes web connection time out . how to rectify   manual settings for gprs for south zone may please be advised

    Did you try the Socket.setSoTimeout(int) and ServerSocket.setSoTimeout(int) methods ?
    This should be working here.
    Oliver

  • Connection Time out with StockServlet

    Hi,
    I just followed the instructions on weblogic website to compile and deploy
    the XML over HTTP example. Every thing compiled fine and I reused the
    statefulSession bean as delivered by weblogic.
    After entering all the data at the prompts for StoackClient, I get the error
    on server:
    "Connection rejected: 'Login timed out after: '5000' ms on socket:
    'Socket[addr=127.0.0.1/127.0.0.1,port=2207,localport=7001]''
    Any ideas about how can I get it to work??
    Thanks,
    Anoop

    Update~
    The connection time-out issue happen with Clear Quest any version.
    thanks

  • Itunes update to firmware fails, because connection times out.

    I have been unsuccessfully attempting to update my iphone 3gs and ipad to iOS 5 for over a month now.  I have spent many, many hours on this, and many phone calls to apple support.  I disable Norton 360, and windows firewall, and my firewall on my router.  I've tried updating my router's firmware, which bricked the router--thanks apple for insisting this was the problem, and I have replaced the router, with a new one.  Itunes diagnostics gives me the following information.  I am using itunes as the administrator in Windows 7, 64 bit, although itunes doesn't recognize it, unless I reinstall it as the administrator, but then once I restart the computer, itunes no longer recognizes that I using Windows as an admin. 
    Also, the firmware cannot update, because the connection times out, despite all my firewalls, and antivirus being turned off.
    I've tried downloading iOS 5 and then updating using restore, but that didn't work.  I've poured through support forums, and error codes: I get 1611, etc.  Cannot seem to resolve this.
    Any ideas? 
    Microsoft Windows 7 x64 Ultimate Edition Service Pack 1 (Build 7601)
    System manufacturer System Product Name
    iTunes 10.5.0.142
    QuickTime not available
    FairPlay 1.13.35
    Apple Application Support 2.1.5
    iPod Updater Library 10.0d2
    CD Driver 2.2.2.0
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 4.0.0.96
    Apple Mobile Device Driver 1.57.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.3.494
    Gracenote MusicID 1.9.3.106
    Gracenote Submit 1.9.3.136
    Gracenote DSP 1.9.3.44
    iTunes Serial Number 0040A7BC031F98E0
    Current user is not an administrator.
    The current local date and time is 2011-11-15 11:35:00.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    ATI Technologies Inc., ATI Radeon HD 4800 Series       
    **** External Plug-ins Information ****
    No external plug-ins installed.
    The drive F: HL-DT-ST DVDRAM GP08LU30 Rev 1.00 is a USB 1 device.
    iPodService 10.5.0.142 (x64) is currently running.
    iTunesHelper 10.5.0.142 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:          {01DC2EA3-0DD0-4A51-80A6-7B414E4C6291}
    Description:          Realtek PCIe GBE Family Controller
    IP Address:          192.168.2.2
    Subnet Mask:          255.255.255.0
    Default Gateway:          192.168.2.1
    DHCP Enabled:          Yes
    DHCP Server:          192.168.2.1
    Lease Obtained:          Tue Nov 15 11:32:39 2011
    Lease Expires:          Tue Nov 15 11:32:38 2011
    DNS Servers:          192.168.2.1
    Active Connection:          LAN Connection
    Connected:          Yes
    Online:                    Yes
    Using Modem:          No
    Using LAN:          Yes
    Using Proxy:          No
    SSL 3.0 Support:          Enabled
    TLS 1.0 Support:          Enabled
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was unsuccessful.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2011-11-15 11:33:52.

    Disable your firewall/security software and try again.

  • Connection time out error in server proxy

    Hi
    My scenario is file to proxy. . It is synchronous scenario.
    I am giving wait time as input and in the proxy i wrote a code to wait till the inputed value and  after that send a response. it is working fine only if i give less than 60 sec.
    If i specify above 60 sec i am getting the connection time out error in SXMB_MONI.
    Please help me to solve this.
    Regards
    Divia

    To increase Timeout use
    Go to transaction SMICM........ Goto->services......choose HTTP.....edit this service.........increase maximum processing time and activate this service
    look blog for timeouts:
    The specified item was not found.

  • Connection time out error in HTTP

    Hey guys
    i m getting connection time out error in a HTTP scenario,when i go in SXMB_ADM i dont find any entry with the name HTTP_TIMEOUT.
    even in RZ10 i cant find the correct profile parameter.
    i m taking help from michaels blog
    /people/michal.krawczyk2/blog/2006/06/08/xi-timeouts-timeouts-timeouts
    i m on PI7.0 SP09
    is there some other place i can find this entry? or do i need to ask the basis guys to add it?
    thanx
    ahmad

    Also, there may be other factors to consider depending on your scenario.  If you don't have it already, look at the latest <a href="http://service.sap.com/~sapidb/011000358700005909032005E/XI30XI70_TroubleGuide.pdf">XI Troubleshooting Guide</a> - Section 9.2 on "Timeouts in XI".
    Regards,
    Jin

  • Connection time out

    Hello everyone,
    I'm using modem PK5000 from Century Link. My other two desktops are using Window and in the same room w my modem.
    I got connection time out every time my computer started playing the screen saver.
    All I have to do is restarting my modem but it's so unconvinience.
    I called Century Link customer service and all they told me is changing the channel but it didn't solve the problem.
    At school and other people's places, my wifi works just fine.
    I used cleanmymac about a month ago and this problem started a week ago.
    Can cleanmymac cause the problem? If so, how can I check and fix it?
    I check the apple store to update my software but everything is up to date.
    Can it be the firmware of my modem? My brother who uses the two desktops (and they connect to the modem with LAN cables) upgraded firmware last week and it seems like when the problem started.
    And when my Mac loses the wifi signal, my printer still has the signal, but my desktop cannot log-in to page 192.168.0.1 which manages the modem and wifi even though the desktop connects w my modem by LAN cable and it still connects to the internet.
    If you have any clue, please help!
    Thank you so much!

    Thanks Todd, Wayne,
    this network timeout sure seems to be the guilty one!
    I've changed it, lets see if it's fixed but sure looks like it.
    The thing is that I was looking for GWWS tuning here :
    http://edocs.bea.com/salt/docs20/ref/comref.html#wp1117652
    but should have looked here
    http://edocs.bea.com/salt/docs20/admin/config.html#wp1056667
    Thanks,
    Gary

  • Connection time out error

    Hello sir,
    Whenever i install addon on SAP B1 i get connection time out error can anyone help me

    Manish,
    it depends on how you set your connection. it must be through command line argument. if you have set your connection string as
    sConnectionString = "0030002C0030002C00530041005000420044005F00440061007400650076002C0050004C006F006D0056004900490056"
    then change it to
    sConnectionString = Environment.GetCommandLineArgs.GetValue(1)
    and  give the connection string 0030002C0030002C00530041005000420044005F00440061007400650076002C0050004C006F006D0056004900490056 as your command line argument in project properties -- Debug tab. prepare the addon ard and try installing it.
    regards,
    Binita

  • Connection time-out issues each first try of pacman

    Hi,
      I am new to arch. I keep getting a connection time-out each time I use pacman for the first time. I have to do a ctrl+z to stop the command and then delete the db.lck file and then when I run pacman again, any operation on pacman that I had tried works flawlessly.
      Do I need to do something to fix this? I check there was a similar thread in 2012, but it ended without any results.
    Cheers,
    Prashanth

    geekoo wrote:@WonderWoofy: The second time on it works with the same mirrors. I am using the Indian http mirror at the top of the list. US mirror follows. When it fails, it takes a sweet 30 odd minutes to run through all of the mirrors and fails.
    I'm pretty sure you can disable all the mirrors you don't want to use, try lowering the list to only those in Asia to minize your waiting time atleast. I get a time-out occasionally on the first run, but running anything inside China's GFW is a roll of the dice.

  • "connection time-out occurred" when my mac goes to sleep.

    When My macbook goes to sleep I get a "connection time-out occurred" when I try to connect to the internet. and I have to restart my mac and restart the router. The is always a BT hotspot page displayed on the screen.
    I have a 2011 macbook pro. This happens on my son's as well. he has the same model. he recently got a new retina display macbook and there hasn't been any problems. this doesn't happen on our phones either.
    -Thanks for any help

    I don't think the post can be edited after 10 or 15 minutes, what madking can do is ask host to remove it from this forum.
    In addition to my own post, here are the correct link.
    try to reset PRAM and SMC to refresh your macbook hardware behaviour:
    http://docs.info.apple.com/article.html?artnum=2238\
    http://docs.info.apple.com/article.html?artnum=303319
    Good Luck

  • Connection Time Out exception

    Hi All,
    I want to handle to Connection Time Out exception when displaying the BW Report in Portal. Please provide inputs.
    Also, is it possible to handle some look and feel of the BW Report from Portal itself.
    Regards
    Nikhil Bansal

    Hi Nikhil,
    Look at this link, this will be provide you solution
    <b>Connection Timed Out in Web Reports>
    if it helps you, please rewards points.
    Regards,
    Nisarg Patel

Maybe you are looking for

  • Vendor Evaluation process (with QM module not implemented)

    Hi Can I have more input on Vendor Evaluation process (with QM module not implemented)  please ?

  • Create user via UME API/LDAP

    Hi, I'm trying to create a user using the UME Api IUserMaint umeUser = UMFactory.getUserFactory().newUser( uniqueId ); .... set properties on umeUser... umeUser.commit; The user created ok in our ldap server (Tivoli DS) but on the root dn, i.e. ou=co

  • Export Content

    Hi, When i create a transport package to export the content i find that the package itself is added in the export list. Is there any significance of this ? Rgds, Rao.

  • Movie Project doesn't work

    I've just installed the Apple box set bringing me up to date with iLife11 and the latest OS and I really wish I hadn't spent the money. Apart from the fact my Tascam interface doesn't work now and I can't use Logic, GB is taking forever to load and e

  • Download iSync 1.2 Palm Conduit but can not use synchronize my Palm

    I bought iPod Touch (32G) and I want to use only this device from now on, but I have problems to find a suitable way to synchronize all my contacts and calendar information from my old Palm V into the iMac address book and iCal and finally into my ne