SocketException again

Hi, all.
I'm running Weblogic 5.1 SP6 on Linux RH7.0 and I often have messages on
console:
<HTTP> Connection failure
java.net.SocketException: Socket closed
at java.net.SocketInputStream.socketRead(Naive Method)
I've seen similar postings but I haven't seen yet any suggestions how I can
get rid of them.
Thanks in advance, Oleg.

These are innocuous. You can ignore them.
Michael Girdley
BEA Systems Inc
"Oleg" <[email protected]> wrote in message news:[email protected]..
Hi, all.
I'm running Weblogic 5.1 SP6 on Linux RH7.0 and I often have messages on
console:
<HTTP> Connection failure
java.net.SocketException: Socket closed
at java.net.SocketInputStream.socketRead(Naive Method)
I've seen similar postings but I haven't seen yet any suggestions how Ican
get rid of them.
Thanks in advance, Oleg.

Similar Messages

  • Getting error while configuring SharePoint 2013 that "SocketException was thrown with SocketError ConnectionRefused"

    Hi,
    I am installing the SharePoint-2013 on development virtual machine. and i have the following environment.
    Windows server : 2012
    SQL server 2012(enterprise edition)
    Active directory(domain) is configured on same server.
    for SharePoint configuration purpose i had  created SP_farm account with SQL server DB_creator,security admin etc rights.
    even though m facing this issue related with socket exception.
    Error in log file :
    04/08/2014 12:26:33  1  INF            Trying to see if port 35513 is free on machine SHAREPOINT2013.  Min port we will try is
     1024, Max port we will try is 49151
    04/08/2014 12:26:35  1  INF            A SocketException was thrown with SocketError ConnectionRefused
    04/08/2014 12:26:35  1  INF            Connect has been refused for port 35513, so we will consider this a free port
    04/08/2014 12:26:35  1  INF            Have not found a free port yet.  Number of tries is 1.  Min port we will try is 1024, Max
     port we will try is 49151
    04/08/2014 12:26:35  1  INF            Adding port 35513 to the exclusion list so it is not chosen again during this run
    So m bit confuse about is this error related to network issue or something else that i have to configure on server.
     any suggestion or reply will be appreciated..!:-) 
    Shiv

    Is the firewall turned on?
    Regards, Matthew
    MCPD | MCITP
    My Blog
    View
    Matthew Yarlett's profile
    See my webpart on the TechNet Gallery that allows administrative users to upload, crop and format user profile photos. Check it out here:
    Upload and Crop User Profile Photos

  • JCOM on WLS 8.1 - SocketException: Socket closed

    After creating my application and accessing it - if I don't use it for a while
    I get the following exception when I access it. Other than creating a timer to
    ping it every 10 seconds or so - is there some way to keep the socket open?
    - Mike Reiche
    java.net.SocketException: Socket closed
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:99)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:124)
    at com.linar.jintegra.RpcConnectionHandler.send(RpcConnectionHandler.java:272)
    at com.linar.jintegra.Rpc.invoke(Rpc.java:239)
    at com.linar.jintegra.RemObjectExporter.invoke(RemObjectExporter.java:346)
    at com.linar.jintegra.StdObjRef.invoke(StdObjRef.java:57)
    at com.linar.jintegra.Dispatch.vtblInvoke(Dispatch.java:763)
    at excel._ApplicationProxy.getDefaultFilePath(_ApplicationProxy.java:1938)
    at excel.Application.getDefaultFilePath(Application.java:2237)

    Has anyone gotten an answer on this error? I also get a Socket Closed IOException
    after a couple of minutes of not communicating to a remote DCOM application.
    I also have to restart Weblogic to get it to communicate again. Works great as
    long as I make a request every 10 or 20 seconds.
    Rick Holland
    >
    I am having this exact same problem. I have a support case opened with
    BEA about
    it, and will let you know if I come up with a solution...
    In my case, however, I am gonna have a very hard time sending BEA a repeatable
    testcase that demonstrates this problem, as I access a DCOM app that
    I cant redistribute.
    Would your code be something that you can share with BEA? If so, that
    would be
    of tremendous help.
    "Mike Reiche" <mreiche@no_spam.com> wrote:
    After creating my application and accessing it - if I don't use it for
    a while
    I get the following exception when I access it. Other than creating
    a timer to
    ping it every 10 seconds or so - is there some way to keep the socket
    open?
    - Mike Reiche
    java.net.SocketException: Socket closed
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:99)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:124)
    at com.linar.jintegra.RpcConnectionHandler.send(RpcConnectionHandler.java:272)
    at com.linar.jintegra.Rpc.invoke(Rpc.java:239)
    at com.linar.jintegra.RemObjectExporter.invoke(RemObjectExporter.java:346)
    at com.linar.jintegra.StdObjRef.invoke(StdObjRef.java:57)
    at com.linar.jintegra.Dispatch.vtblInvoke(Dispatch.java:763)
    at excel._ApplicationProxy.getDefaultFilePath(_ApplicationProxy.java:1938)
    at excel.Application.getDefaultFilePath(Application.java:2237)

  • Join files again, after they're split into 1 kb chunks

    I have the below code in my program. It splits a single file into multiple files each 1 kb in size that when put together in the right order will make up the original text file. Anyone got any ideas on how I can write a class to do this?
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.Reader;
    import java.io.StreamTokenizer;
    import java.net.DatagramPacket;
    import java.net.DatagramSocket;
    import java.net.InetAddress;
    import java.net.SocketException;
    import java.util.Enumeration;
    import java.util.Hashtable;
    import java.util.StringTokenizer;
    import java.io.*;
    import java.util.*;
    import java.lang.Object;
    public class Split
    public Split ()throws Exception {
              File f = new File("\\Shared");
              //File tempFolder = new File("C:\\Temp\\");
              File files[] = f.listFiles();
              for(int i=0;i<files.length;i++)
                   String path = "C:\\Shared\\";
                   String fileName = path +files.getName();
                   String fileName1 = files[i].getName();
                   Do(fileName,fileName1);
    //Splits files
              public static void Do(String fileName , String fileName1)throws Exception
                   try{
                   BufferedInputStream in = new BufferedInputStream(new FileInputStream(new File(fileName)));
                   byte[] buffer = new byte[1024];
                   int read;
                   int c;
                   int i = 0;
                   while( (read = in.read(buffer)) > 0 ){ //-1 means EndOfStream     
                        if( read == buffer.length )
                             BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream("C:\\Temp\\" + fileName1 + "_" + i));
                             out.write(buffer);
                   out.flush();
                   out.close();
                   i++;
                        else
                             BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream("C:\\Temp\\" + fileName1 + "_" + i));
                             out.write(buffer, 0, read);
                             out.flush();
                             out.close();               
                   in.close();
                        }catch(IOException e){
                             System.out.println(e);
    public static BufferedInputStream readFile(String name) throws Exception {
    File file = new File(name);
    FileInputStream fis = new FileInputStream(file);
    return new BufferedInputStream(fis);
    public static void writeFile(String name, byte[] bytes) throws Exception {
    File file = new File(name);
    FileOutputStream fos = new FileOutputStream(file);
    BufferedOutputStream out = new BufferedOutputStream(fos);
    out.write(bytes);
    out.flush();
    out.close();

    What part are you having trouble with? If you have the code to split a file up, putting it back together again should be trivial.

  • RMI server causes the system to slow down and crash with socketException

    Hi,
    My RMI server application is a simple rmi server which invokes a JNI method once when I invoke through my client application. Server is left as it is after invoking the JNI method. After around 12 hours, server stops running with the following exception
    ZoneInfo: C:\Program Files\Java\jre1.6.0\lib\zi\ZoneInfoMappi
    ngs (Insufficient system resources exist to complete the requested service)
    ZoneInfo: C:\Program Files\Java\jre1.6.0\lib\zi\ZoneInfoMappings (Insufficient s
    ystem resources exist to complete the requested service)
    Dec 29, 2008 10:09:34 AM sun.rmi.transport.tcp.TCPTransport$AcceptLoop executeAc
    ceptLoop
    WARNING: RMI TCP Accept-0: accept loop for ServerSocket[addr=0.0.0.0/0.0.0.0,por
    t=0,localport=2161] throws
    java.net.SocketException: socket closed
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(Unknown Source)
    at java.net.ServerSocket.implAccept(Unknown Source)
    at java.net.ServerSocket.accept(Unknown Source)
    at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.executeAcceptLoop(Unkno
    wn Source)
    at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Dec 29, 2008 10:10:35 AM sun.rmi.transport.tcp.TCPTransport$AcceptLoop executeAc
    ceptLoop
    WARNING: RMI TCP Accept-0: accept loop for ServerSocket[addr=0.0.0.0/0.0.0.0,por
    t=0,localport=2161] throws
    java.net.SocketException: socket closed
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(Unknown Source)
    at java.net.ServerSocket.implAccept(Unknown Source)
    at java.net.ServerSocket.accept(Unknown Source)
    at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.executeAcceptLoop(Unkno
    wn Source)
    at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Dec 29, 2008 10:12:36 AM sun.rmi.transport.tcp.TCPTransport$AcceptLoop executeAc
    ceptLoop
    WARNING: RMI TCP Accept-0: accept loop for ServerSocket[addr=0.0.0.0/0.0.0.0,por
    t=0,localport=2161] throws
    java.net.SocketException: socket closed
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(Unknown Source)
    at java.net.ServerSocket.implAccept(Unknown Source)
    at java.net.ServerSocket.accept(Unknown Source)
    at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.executeAcceptLoop(Unkno
    wn Source)
    at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Dec 29, 2008 10:15:37 AM sun.rmi.transport.tcp.TCPTransport$AcceptLoop executeAc
    ceptLoop
    WARNING: RMI TCP Accept-0: accept loop for ServerSocket[addr=0.0.0.0/0.0.0.0,por
    t=0,localport=2161] throws
    java.net.SocketException: socket closed
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(Unknown Source)
    at java.net.ServerSocket.implAccept(Unknown Source)
    at java.net.ServerSocket.accept(Unknown Source)
    at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.executeAcceptLoop(Unkno
    wn Source)
    at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Dec 29, 2008 10:20:40 AM sun.rmi.transport.tcp.TCPTransport$AcceptLoop executeAc
    ceptLoop
    WARNING: RMI TCP Accept-0: accept loop for ServerSocket[addr=0.0.0.0/0.0.0.0,por
    t=0,localport=2161] throws
    java.net.SocketException: socket closed
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(Unknown Source)
    at java.net.ServerSocket.implAccept(Unknown Source)
    at java.net.ServerSocket.accept(Unknown Source)
    at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.executeAcceptLoop(Unkno
    wn Source)
    at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    # An unexpected error has been detected by Java Runtime Environment:
    # Internal Error (4D555445583F57494E13120E4350500075), pid=1352, tid=1828
    # Java VM: Java HotSpot(TM) Client VM (1.6.0-b105 mixed mode, sharing)
    # Can not save log file, dump to screen..
    # An unexpected error has been detected by Java Runtime Environment:
    # Internal Error (4D555445583F57494E13120E4350500075), pid=1352, tid=1828
    # Java VM: Java HotSpot(TM) Client VM (1.6.0-b105 mixed mode, sharing)
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    Does anyone has any idea?
    Regards
    Nidhin

    Your RMI server invokes a JNI method as you mentioned. It seems your system resource is become very low as from the exception from "ZoneInfoMappi"
    (Insufficient system resources exist to complete the requested service...I would suggest the following
    1- remove the JNI method invocation and replace by a simple method which does nothing special ( counting etc..)
    2- Run the RMI sever and stress test it again
    If you see the RMI server is working well after 12 hours, then your native method is leaking i.e consuming the system resources ( RAM etc..)
    You should profile the running RMI server using jconsole
    Regards,
    Alan Mehio

  • JspException: Input/output errror: SocketException: Connection reset by pee

    In weblogic 8.1, getting below exception often,
              javax.servlet.jsp.JspException: Input/output errror: java.net.SocketException: Connection reset by peer.
              at org.apache.struts.util.ResponseUtils.write method
              Although no problem, but it seems to slow down.
              Technology used is mix of jsp, servlets & struts framework
              Any comments will be highly appreciated

    I also experience this. I have wenlogic 8.1sp6.
              It was affecting one part of my application in that no data is being returned. I had to stop and restart the server to get connection going again. I notice no one with weblogic 9 has the problem. I may upgrade to version 9 soon if that will help to solve this problem.

  • Infamous SocketException: Broken Pipe

    Hello,
    As with many of the other users on this forum I have been plagued by the Broken Pipe SocketException, very rarely, which seems to essentially block on the java.net.SocketOutputStream.socketWrite0(Native Method) for quite a long time (presumably the length of some timeout) during a flush. It is also typically accompanied by a "java.net.SocketException: Connection timed out" on the socket itself.
    I've read the many responses by EJP that this means:
    "This is caused by writing to a connection when the other end has already closed it.
    So you have a poorly defined or implemented application protocol."
    My main question is: Is it normal for these exceptions to occur, and we just need to write some layer that handles this?
    And a follow up: If so, would that layer be something along the lines of:
    - a separate thread on the server for each output stream, and if this thread blocks during flush (for whatever reason), either:
    - use a watchdog thread to close the output if some internal timeout has exceeded, or:
    - just let Java's connection timeout eventually occur and let the output thread die
    Or am I way off base here?
    One more thing: Any other advice / best architectural practices / help regarding this problem / reading suggestions would be extremely appreciated.
    Thanks.

    EJP wrote:
    Or else you are just streaming large amounts of data and the peer giving up is part oft the application protocol(for example, the peer is a browser and the user navigates away), in which case th correct action is to catch the exception and give up on the client.I believe this might be the case. The clients can (and typically do) receive the information I am sending. It is absolutely possible that they can navigate away during the transfer. It is fine for the purposes of the application to give up on this client. To give up on the client and not have flush() block my main thread, I would need a separate thread per client, for handling the outputstream, correct? ie. one for receive, another for send, per client.
    There is something seriously wrong with your statement that the peer gets a connection timeout when this side gets a broken pipe. Connection timeout happens when creating a connection: in fact it happens instead of creating a connection. So there is no connection yet, so no peer at all, so it is impossible for the other end to be writing to the connection at all, because there is no connection and no other end. Do you mean a read timeout?I get:
    ThreadID-1310 java.net.SocketException: Connection timed out
    ThreadID-1310 java.net.SocketException: Broken pipe
    On the server-side thread that holds the socket for this client. The Connection timed out happens from the Socket InputStream during a readByte(), Broken pipe happens from the Socket OutputStream during a flush().
    Init code:
    socket_ = serverSocket_.accept();
    in_ = new DataInputStream(new BufferedInputStream(socket_.getInputStream()));
    out_ = new DataOutputStream(new BufferedOutputStream(socket_.getOutputStream()));
    mainThread.add(this); // the output main thread with some synchronization
    start(); // the read thread belowReceive in the thread that throws Connection Timed out:
    run() {
      while(running) {
        try {
          byte index = in_.readByte();
        } catch (SocketException e) {
          System.err.println(getId() + ": " + e);
    }Send code in main thread that throws broken pipe:
        try {
          callingThread_.out_.flush()
        } catch (SocketException e) {
          System.err.println(callingThread_.getId() + ": " + e);
      }Both exceptions happen back to back. The Main thread keeps a back-pointer to the calling thread As you can see, both in_ and out_ are from the same socket on the original object. The user has absolutely been connected for a while before this occurs.
    Thanks again for the insight.

  • Why I always encounter SocketException in weblogic6.1sp2?

    when I use weblogic6.1sp2 to develop my j2ee B/S program,I find the weblogic server
    alway throw follow exception,
    java.net.SocketException: ReadFile failed: &#25351;&#23450;&#30340;&#32593;&#32476;&#21517;&#19981;&#20877;&#21487;&#29992;&#12290;
    (error 64, fd 2348)
    at weblogic.socket.NTSocketMuxer.initiateIO(Native Method)
    at weblogic.socket.NTSocketMuxer.read(NTSocketMuxer.java:410)
    at weblogic.servlet.internal.MuxableSocketHTTP.requeue(MuxableSocketHTTP
    .java:222)
    at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImp
    l.java:992)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java:2209)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >
    but the result is browser is right.Is my program has some bug or may be the config
    of the weblogic server is wrong?

    Hello kmschmehl-
    I cannot truly express how sorry I am to hear about your total experience with the delivery and subsequent return of this fridge.  It certainly sounds as though Best Buy has put you through the ringer and I can absolutely understand your disappointment and anger with us.
    While it sounds like some aspects of the purchase and delivery were at least adequate, any opportunity that we had to show you why you should purchase from Best Buy went by the wayside.  However, Best Buy is not in the business to provide merely adequate experiences and I am saddened that this is the best we could summon for your purchase.  We are capable of better than what we showed you.
    I’m glad to hear that you have finally been able to get the assistance you needed to get this refund resolved and make you whole again.  In addition, I do hope that you are enjoying the fridge you purchased at Lowe’s.  I certainly wish that it had been a Best Buy fridge in your kitchen instead, but I can understand why you chose to go with another retailer.
    It sounds like the store has you in good hands once your card arrives and I believe that the reason they need the physical card is that the credit card company requires it to be physically scanned for returns.  Hopefully you will not run into any further issues with this refund and it’s my hope that sometime in the future, you might grant us another chance at your business.  I will be sending you a Private Message with some additional details as well.  To check your Private Messages, please log into the forum and click on the envelope in the upper right hand corner.
    Please let us know if you run into any further concerns.
    Sincerely,
    Bill|Senior Social Media Specialist | Best Buy® Corporate
     Private Message

  • SocketException: Connection reset in readLine()

    I am new to socket programming in java...
    A client program from another application connects to my server and sends a string input to my server.
    My server thread looks like this:
    public class CallBankAPIClientSendThread extends Thread {
         Socket socket=null;
         String inputLine="";
         public CallBankAPIClientSendThread(Socket socket) {
              super("CallBankAPIClientSendThread");
              this.socket=socket;
         public void run(){
              /***Get input from the client****************/
         DataInputStream streamIn;
              try {
                   streamIn = new
                   DataInputStream(new BufferedInputStream(socket.getInputStream()));
                   inputLine=streamIn.readLine();
                   //do some processing...
                   streamIn.close();
                   } catch (IOException e1) {
                        System.out.println(e1);
                   //do some processing here again
    I am getting SocketException: Connection reset error...
    Please help...

    SharadaC wrote:
    I tried closing the socket connection... It doesn't help...
    I am still getting the same exception...
    sigh
    You don't seem to be grasping yet that (according to what you keep claiming the exception is) the client is terminating the socket.
    So that means the socket at your end is dead. D. E. A. D. So you'll just have to close it.
    But no, that won't solve your problem of your client terminating the socket will it? You need to investigate that and fix that.

  • SocketException (code = 10055)

    Hi all,
    Here i go again. We are doing some data sending from a java socket to a C socket. Now the java side is receiving data from a serial port. The data is in the order of 7920 bytes per min. Great everything works fine, till 139 thousand odd messages are send (each message i mean a byte array of 11 bytes). But after those number of messages the java side receives a socketexception and code was indicated 10055. I looked up for this code, and in MSDN could get this code to indicate a TCP buffer full
    (WSAENOBUFS (10055)
    No buffer space available.
    An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full).
    and the c side hangs. The best part is till we kill (ctrl-c) the C side i cannot even browse. I found out that if we increase the sendbuffer size on java side and c side increases the recv buffer size it would work just fine. I did that and the buffer size now is at 128K on both ends and decreased the number of bytes to 3300. But now the same error occurs after 170 thousand messages. Can anyone tell me
    1. Is sending small chunks of data a problem.
    2. What is the mbuff concept. I read someplace that the buff size is nothing but the number of mbuff the receiver tcp stack maintains.
    To worsen my problems i am suppossed to do this whole thing on WINDOWS 2000 machine.
    By the way the socket connection is to send data from a Java process to a C Process running in the same system. Does this complicate the problem??
    Any help would be great. and all the ppl who reply will be given heartfelt good wishes:). HELPPPP MEEE B4 i go mad
    arvind

    Actually its 7920 bytes period in a minite. and i have
    been able to find out that on the c side we have
    threads that read data from sockets. each thread after
    reading has to wait for few mutex and max time for
    these is 200 millisecs. SO at max there can be only 5
    messages(5*11 bytes = 55 bytes)that can be read every
    second and i was sending 12 messages(12*11 = 132
    bytes) per second before. So i did the flow control on
    the jave side and i have been able to avoid the tcp
    buffer full problem. But i still do not like this as
    the messages will come slow and the data that has to
    be received 10 secs earlier is received 10 secs
    later..... is there any other method for this.
    So each packet contains 11 bytes?
    You can definitely read more than 5 per second. Even if all else fails one way is to buffer more than one message at a time. So instead of pushing every message to the queue. Push it every 5th packet.
    Given that I have written socket handlers in java that pulled slightly more than 2000 TCP packets every second I am certain that you can increase the speed. Since java doesn't have 'mutexes' I am guessing that you are referring to synchronization and I would expect a faster time than that. How did you time the lock acquisition and release?

  • Help with SocketException

    Hello,
    eventually my web application stop responding the user requests and Tomcat generates an archive mod_webapp_2007_02_21.log wich contains:
    2007-02-21 13:36:38 [org.apache.catalina.connector.warp.WarpConnector] Error accepting requests
    java.net.SocketException: Socket closed
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
    at java.net.ServerSocket.implAccept(ServerSocket.java:448)
    at java.net.ServerSocket.accept(ServerSocket.java:419)
    at org.apache.catalina.connector.warp.WarpConnector.run(Unknown Source)
    at java.lang.Thread.run(Thread.java:534)
    for that application continues working, i must to stop tomcat and after start it again
    help please!!
    thanks
    karila

    Hello,
    eventually my web application stop responding the user requests and Tomcat generates an archive mod_webapp_2007_02_21.log wich contains:
    2007-02-21 13:36:38 [org.apache.catalina.connector.warp.WarpConnector] Error accepting requests
    java.net.SocketException: Socket closed
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
    at java.net.ServerSocket.implAccept(ServerSocket.java:448)
    at java.net.ServerSocket.accept(ServerSocket.java:419)
    at org.apache.catalina.connector.warp.WarpConnector.run(Unknown Source)
    at java.lang.Thread.run(Thread.java:534)
    for that application continues working, i must to stop tomcat and after start it again
    help please!!
    thanks
    karila

  • My iphone wont let me play songs that I bought from iTunes. It says "The requested URL was not found on this server" How can i play my music also my music videos again?

    I bought a few songs and music videos from iTunes, then all of a sudden it wouldn't play and would just skip to the next song. With the music videos it would do the same. Also, this message would show up " The Requested URL could not be found on this server" What does that exactly mean? And what do I need to do to play my music/videos again?

    This previous discussion has a solution:
    https://discussions.apple.com/message/16527576#16527576

  • When i login on game center it say enter your birth date when i enter it and i perss next the birth day will come again and again what should do

    when i login on game center it say enter your birth date when i enter it and i perss next the birth day will come again and again what should do

    Start a game with Game Center and go from there.

  • HT4972 After syncing my iPad2 to iTunes, I can't get it to work again.

    Ok, so I wanted to update my iPad2 in order to get the iOS5 (not even really sure what that it). So, I hooked it up to my computer, which is not the original one I had synced it to. It wanted to restart everything from the original iPad settings, so I stopped it.  I then hooked my iPad up to my original computer. When I looked at iTunes it had all my Apps, etc on it and I hit the "sync" button.  It looked like everything was syncing just fine.  But, when it was all done and I go back to using my iPad, it is saying to either: 1) set up as new iPad (which I don't want to do), 2) restore from iCloud backup (don't know how to do this) or 3) restore from ITunes backup...this is what I clicked on. I then plugged my iPad back into my computer with iTunes and started again. However, I can't get any further than this.  Nothing is happening!  Help!!!!!

    That message means that you have to restore the iPad now. Something went wrong. You need to restore the iOS software and then restore from the backup.
    Read this carefully and follow the instructions. Make sure that you restore from your backup at the end of the process. That is covered at the bottom of the support article.
    http://support.apple.com/kb/HT1414

  • Itunes wont open. Ive tried uninstalling, cleaned up my PC and then re installed again but still wont open! There are no error messages. It just wont open

    Itunes wont open. Ive tried uninstalling, cleaned up my PC and then re installed again but still wont open! There are no error messages. It just wont open! Im very frustrated and anything would help! I have Windows 7 or Vista. Idk which

    Hello Dr.Help,
    Thank you for providing so much information about the issue you are experiencing with iTunes.  It sounds like you have tried reinstalling it, but nothing happens when you launch it.  I recommend following the steps in this article to resolve launch issues with iTunes:
    iTunes for Windows Vista or Windows 7: Troubleshooting unexpected quits, freezes, or launch issues
    http://support.apple.com/kb/ts1717
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

Maybe you are looking for