Detecting Client Disconnect

I am looking for a way to determine when a client connects and disconnects (especially the latter) from the grid. Two approaches come to mind:
1) Polling for something that appears/disappears when a client connects or disconnects. The most obvious candidate is a lock. This approach is inefficient because it requires polling. It also raises the issue of how clients are distinguished, although that is not difficult (e.g. - invocable increments a counter which is used as a basis for the key to lock).
2) Getting a notification when this happens - preferably in-grid. However, I could find no listener for either the client connect/disconnect event or for locking. Likewise, using custom cache implementations (overriding a class and calling it out in the cache config) doesn't seem to provide notification of either locking, or (an alternate approach) the registration of a listener.
Overriding a cache indeed provides notice of listener registration, but it appear to be a general listener which is feeding some other internal Coherence facility which manages the specific per-client listeners.

Answering my own question, after research and help from Gene Glyzer:
There are a couple of ways to do this:
1) A client can lock a phantom (or real) entry in a cache. When the client member of the cluster goes away, the lock will be released.
2) Tracking cluster members:
* Add a listener:*service = CacheFactory.getService("name").addMemberListener(...)*
* Get the membership information (synchronously guard against listener events):*Set members = service.getServiceMembers()*
* Use subsequent listener events to adjust the members set.

Similar Messages

  • Detecting client disconnects

    What's the best way to detect a client loss of connection? I've heard
    you can register for weblogic.accounting.disconnect events or used the
    workspace destroyMonitor method. Which is preferred? The events method
    concerns me because I don't believe it will be supported in the future
    once JMS takes a foothold. Is this a valid concern? Are there any new
    ways to do this?
    thanks,
    Edwin

    I would suggest you try catching java.net.SocketException (Connection reset
              by peer: socket write error) in you doGet/doPost method. This is not a sure
              way though ...
              --- Igor Zavialov
              "Dylan Taffe" <[email protected]> wrote in message
              news:3a5393d6$[email protected]..
              > Does anyone know of a way to detect client disconnects with servlets?
              Does
              > the contextEventListener or any other event listener get called when a
              > clients kills its connection with the weblogic server?
              >
              >
              

  • Detect Client Disconnect When using RTMP

    Hello,
    I hava a Java Server and Clients using RTMP. I've read somewhere that I can detect instantly client disconnection when using RTMP. However I cannot find an example code (in Java) that demonstrates this functionality? Can you help me please?

    I am not sure how your client looks, however the lient connect using NetConnection under the hood which spits NetStatusEvents's and you can listen to them ...
    C

  • Detect client disconnection

    Hi.
    My Java Web Service works with ComPorts so I need to close it in a right way when a client disconnects.
    Is there a way to detect in the Web Service when a client disconnects.
    Thank�s you all!!

    So, i want to be able to find out if the client is disconnected without waiting to send or receive data.Use a read timeout.
    how can i change the value of SO_KEEPALIVEYou can't. It is two hours by default and requires privilege to change it, and changing it is system-wide. So you don't want to do that.
    Use a read timeout. Socket.setSoTimeout().

  • RMI detect client disconnect

    Hello, I want to detect when a network disconnect occurs. I implemented a TimerTask that checks every X seconds if the remote object is still bound in the registry, by doing a Naming.lookup(). When I unplug the cable of my computer (to simulate the disconnect), the Naming.lookup() just seems to hang, there is no response... When I plug in the cable again, then I get a response, but this is not the idea... Is there a way to set a timeout or something on this method call?
    thanks

    When I was toying around with chat servers using the RMI Technology, I would have the server keep a vector of RMI Clients (almost like the registry). Then when I went to send a message, I would try to cast the Vector element into the correct type of a client and write the message. If an exception was thrown, I knew the client was not connected any longer and I removed the client from the vector. This approach I have since seen in a lot of documentation on chat servers.
    I haven't tried this but you may try calling the Naming.list () and comparing the values to see if you find a match.
    Hope this helps

  • Server to detect client disconnection "Sockets"

    i want to know how it is possible for a server to find out when the client is disconnected at any instance. not only at the time of sending data...
    i am writing a server that should communicate with different clients, and i want it to be able to find out if a client suddenly disconnects or crashes, so how can this be done?!
    is it this way:
    skt.setKeepAlive(true);the problem is that SO_KEEPALIVE checks after 2 hours, which is too much time, how can i change this value????

    So, i want to be able to find out if the client is disconnected without waiting to send or receive data.Use a read timeout.
    how can i change the value of SO_KEEPALIVEYou can't. It is two hours by default and requires privilege to change it, and changing it is system-wide. So you don't want to do that.
    Use a read timeout. Socket.setSoTimeout().

  • ServerSocket does not detect a disconnected client

    Hi,
    I have created a serverscoket, which will accept 'n' number of clients and send data to all the connected clients.
    And the server should detect when any client goes down or disconnected from network and give the appropriate message to the use that this particluar client has got disconnected.
    I'm able to detect the disconnected client, when the client application is shut down properly (and the application closes the socket). But while the application is running, when the network card is unplugged, then my server is not able to detect this connection loss, and it continues to send the data to the client without throwing any exception.
    Any help would really be greatly appreciated.
    Thanks,
    Hema

    I Asume you don't mean the ServerSocket but the Socket the ServerSocket accepted, for this Socket you can try using
    acceptedSocket.setKeepAlive (true);This may speed up the disconnection detection depending on the implementation of the keepalive mechanism.
    But it then may be that the connection will be terminated, although the connection is only very slow.
    You have to test out, what is better for your purpose.

  • How to detect client socket shutdowns in server socket

    Hi,
    Hoping to get some help with this. I am writing this program that implements a socket server that accepts a single client socket (from a third-party system). This server receives messages from another program and writes them to the client socket. It does not read anything back from the client. However, the client (which I have no control over) disconnects and reconnects to my server at random intervals. My issue is I cannot detect when the client has disconnected (normally or due to a network failure), hence am unable to accept a fresh connection from the client. Here's my code for the server.
    ServerSocket serverSocket = null;
    Socket clientSocket = null;
    PrintWriter out = null;
    BufferedReader in = null;
    try{
              if (serverSocket == null){
                    serverSocket = new ServerSocket(4511);
         clientSocket = serverSocket.accept();
         System.out.println("Accepted client request ... ");
         out = new PrintWriter(clientSocket.getOutputStream(), true);
         in = new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
         System.out.println("Input / Output streams intialized ...");          
         while (true){                              
              System.out.println("Is Client Socket Closed : " + clientSocket.isClosed());
              System.out.println("Is Client Socket Connected : " + clientSocket.isConnected());
              System.out.println("Is Client Socket Bound : " + clientSocket.isBound());
              System.out.println("Is Client Socket Input Shutdown : " + clientSocket.isInputShutdown());
              System.out.println("Is Client Socket Output Shutdown : " + clientSocket.isOutputShutdown());
              System.out.println("Is Server Socket Bound : " + serverSocket.isBound());
              System.out.println("Is Server Socket Closed : " + serverSocket.isClosed());
              messageQueue = new MessageQueue(messageQueueDir+"/"+messageQueueFile);
              //get Message from Queue Head (also removes it)
              message = getQueueMessage(messageQueue);
              //format and send to Third Party System
              if (message != null){
                             out.println(formatMessage(message));
                   System.out.println("Sent to Client... ");
              //sleep
              System.out.println("Going to sleep 5 sec");
              Thread.sleep(5000);
              System.out.println("Wake up ...");
    }catch(IOException ioe){
         System.out.println("initSocketServer::IOException : " + ioe.getMessage());
    }catch(Exception e){
         System.out.println("initSocketServer::Exception : " + e.getMessage());
    }I never use the client's inputstream to read, although I have declared it here. After the client is connected (it enters the while loop), it prints the following. These values stay the same even after the client disconnects.
    Is Client Socket Closed : false
    Is Client Socket Connected : true
    Is Client Socket Bound : true
    Is Client Socket Input Shutdown : false
    Is Client Socket Output Shutdown : false
    Is Server Socket Bound : true
    Is Server Socket Closed : false
    So, basically I am looking for a condition that detects that the client is no longer connected, so that I can bring serverSocket.accept() and in and out initializations within the while loop.
    Appreciate much, thanks.

    Crossposted and answered.

  • Detecting socket disconnections

    Hi!
    Im using a ServerSocket to enable clients to connect to my
    application. The communication over the returned Socket works
    fine, but I cannot detect when the client disconnects. The
    socket is put on a CLOSE_WAIT state, and according to socket
    sources this means that the client is expecting the final last
    ack (LAST_ACK) from me. The LAST_ACK is sent if I close() the
    socket.
    The problem is that I cannot detect disconnection in my app without
    actually trying to send some "garbage" data on the socket.
    I then get an exception, of course. Is there any clean way
    to implement this?
    Thanks!
    Regards,
    Lars Ove Claesson

    Hi!
    Im using a ServerSocket to enable clients to connect to my
    application. The communication over the returned Socket works
    fine, but I cannot detect when the client disconnects.
    The socket is put on a CLOSE_WAIT state, and according to
    socket sources this means that the client is expecting the
    final last ack (LAST_ACK) from me. The LAST_ACK is sent if I
    close() the socket.Not exactly although the result is the same.
    The server is in the CLOSE_WAIT state. That means that the application is supposed to close the socket. Once it does it sends a FIN to the client and then moves to the LAST_ACK state (waiting for the client to ACK the FIN.) The client of course would be waiting for the FIN.
    >
    The problem is that I cannot detect disconnection in
    my app without
    actually trying to send some "garbage" data on the socket.
    I then get an exception, of course. Is there any clean
    way to implement this?As mentioned the blocking read should do this.
    Myself I always prefer to explicitly send a "end" message from the client (or server.) That way I handle it explicitly rather that relying on something else.

  • Client disconnection notification for NIO server

    A server accepts connections from clients and registers accepted channels for reading:
    while (true)
        if (selector.select()>0)
            Iterator<SelectionKey> iterator = selector.selectedKeys().iterator();
            while(iterator.hasNext())
                SelectionKey opKey = iterator.next();
                iterator.remove();
                if (opKey.isAcceptable())
                    clientSocketChannel = serverSocketChannel.accept();
                    clientSocketChannel.configureBlocking(false);
                    clientSocketChannel.register(selector, SelectionKey.OP_READ);
    . . .One of the server's clients disconnects from it by means of socketChannel.close() while the servert is locked with selector.select() (that is the server have nothing to read from its clients and nobody is connecting to it).Will the server be unlocked when the client performs socketChannel.close()? If so, what notification/exception will the server receive?

    One of the server's clients disconnects from it by means of socketChannel.close() while the servert is locked with selector.select()The select() will immediately return; the corresponding channel will be readable; and the read() will return -1.

  • Mobile based clients disconnecting frequently

    Hi folks,
    I have an 1142 running 15.2.2JB.  I noticed numerous messages of clients disconnecting with the following message:
    %DOT11-6-DISASSOC: Interface Dot11Radio0, Deauthenticating Station 847a.885b.622c Reason: Previous authentication no longer valid
    The MAC addresses involved are all associated to various mobile devices...iPad, iPhone, Windows 8 Mobile and Android (MAC above is an Android phone).  This doesn't appear to impact PC's and laptops (both Windows an Apple).
    The devices reconnect immediately and this doesn't appear to cause any problems with anything other than Android devices which register the disconnect immediately and therefore bin anything they're currently doing (for some reason the Windows 8 Mobile and Apple devices seem to be able to cope with the disconnect and reconnect and don't ditch anything network connections)
    Config on the AP is:
    dot11 ssid Frozen
       authentication open
       authentication key-management wpa version 2
       wpa-psk ascii 7 05261F303645480C260816190E1F3B3D242A2C362724060B2900005D5C4B12
    dot11 ssid FrozenSlow
       authentication open
       authentication key-management wpa version 2
       wpa-psk ascii 7 1124003A001B0D093B272A2F2D200A351C09120613504C546C570F081D0518
    interface Dot11Radio0
    no ip address
    encryption mode ciphers aes-ccm
    ssid FrozenSlow
    antenna gain 0
    speed  basic-1.0 2.0 5.5 11.0 6.0 9.0 12.0 18.0 24.0 36.0 48.0 54.0 m0. m1. m2. m3. m4. m5. m6. m7. m8. m9. m10. m11. m12. m13. m14. m15.
    channel 2462
    station-role root
    no dot11 extension aironet
    no cdp enable
    bridge-group 1
    bridge-group 1 subscriber-loop-control
    bridge-group 1 spanning-disabled
    bridge-group 1 block-unknown-source
    no bridge-group 1 source-learning
    no bridge-group 1 unicast-flooding
    interface Dot11Radio1
    no ip address
    encryption mode ciphers aes-ccm
    ssid Frozen
    antenna gain 0
    no dfs band block
    speed  6.0 9.0 basic-12.0 18.0 24.0 36.0 48.0 54.0 m0. m1. m2. m3. m4. m5. m6. m7. m8. m9. m10. m11. m12. m13. m14. m15.
    channel width 40-above
    channel dfs
    station-role root
    no dot11 extension aironet
    no cdp enable
    bridge-group 1
    bridge-group 1 subscriber-loop-control
    bridge-group 1 spanning-disabled
    bridge-group 1 block-unknown-source
    no bridge-group 1 source-learning
    no bridge-group 1 unicast-flooding
    When I debug dot11 aaa I see the following:
    211137: Oct 21 16:26:58.910: dot11_dot1x_gtk_update_on_disassociate: Recieved gtk update notice due to disconnect for 847a.885b.622c on vlan 0
    211138: Oct 21 17:26:58 BST: %DOT11-6-DISASSOC: Interface Dot11Radio0, Deauthenticating Station 847a.885b.622c Reason: Previous authentication no longer valid Could not find station pointer for client 847a.885b.622c. Using vlan number from aaa_client
    211139: Oct 21 16:27:02.640: dot11_dot1x_send_ssn_eapol_key: wpav2 msg 1 pak_size 121
    211140: Oct 21 16:27:02.640: dot11_dot1x_send_ssn_eapol_key: eapol->length 117
    211141: Oct 21 16:27:02.640: dot11_dot1x_build_ptk_handshake: building PTK msg 1 for 847a.885b.622c
    211142: Oct 21 16:27:02.640: dot11_dot1x_build_ptk_handshake: ptk key len 16
    211143: Oct 21 16:27:02.640: dot11_dot1x_build_ptk_handshake: ptk key data len 22
    211144: Oct 21 16:27:02.640: dot11_dot1x_build_ptk_handshake: wpav2 pmkid[DOT1X]: 4252DC05F4159E0B7BAB4A3C56116E4F
    211145: Oct 21 16:27:02.689: dot11_dot1x_verify_ptk_handshake: verifying PTK msg 2 from 847a.885b.622c
    211146: Oct 21 16:27:02.689: dot11_dot1x_verify_eapol_header: Warning: Invalid key len (exp=0x10, act=0x0)
    211147: Oct 21 16:27:02.689: dot11_dot1x_ssn_generate_ptk: wpa-v2 PSK: use ssid psk as pmk
    211148: Oct 21 16:27:02.689: dot11_dot1x_ssn_generate_ptk: dot11_dot1x_ssn_generate_ptk(): wpa-v2 clnt 847a.885b.622c does not have cached pmk rec: aaa_client->ms_mppe_receive_key:0x0
    211149: Oct 21 16:27:02.689: dot11_dot1x_verify_ptk_handshake: Handshake passedCould not find station pointer for client 847a.885b.622c. Using vlan number from aaa_client
    211150: Oct 21 16:27:02.690: dot11_dot1x_send_ssn_eapol_key:
    211151: Oct 21 16:27:02.690: wpav2 msg3 data_len before padding 46
    211152: Oct 21 16:27:02.690: dot11_dot1x_send_ssn_eapol_key:
    211153: Oct 21 16:27:02.690: wpav2 msg3 padding 2 data_len after padding 56, eapol pak_size 155
    211154: Oct 21 16:27:02.690: dot11_dot1x_send_ssn_eapol_key: wpav2 msg 3 pak_size 155
    211155: Oct 21 16:27:02.690: dot11_dot1x_send_ssn_eapol_key: eapol->length 151
    211156: Oct 21 16:27:02.690: dot11_dot1x_build_ptk_handshake: building PTK msg 3 for 847a.885b.622c
    211157: Oct 21 16:27:02.690: dot11_dot1x_build_ptk_handshake: ptk key len 16
    211158: Oct 21 16:27:02.690: dot11_dot1x_build_ptk_handshake: wpav2_ptk msg 3 rsnie len 22 and 20
    211159: Oct 21 16:27:02.690: dot11_dot1x_build_ptk_handshake mcst_key_len 16 index 1 vlan 0
    211160: Oct 21 16:27:02.690: gnonce: 01 DA 02 04 01 D2 FA 40 03 39 B1 50 00 1C 5A 2C 03 39 B1 50 00 00 00 00 00 00 00 00 01 D2 FA 40
    211161: Oct 21 16:27:02.691: gtk(pt): 1B 9E E3 5F B6 82 A7 A7 3F 1E 94 56 BD ED B1 8C
    211162: Oct 21 16:27:02.692:
    211163: Oct 21 16:27:02.692: gtk(pt) len 16: 1B 9E E3 5F B6 82 A7 A7 3F 1E 94 56 BD ED B1 8C
    211164: Oct 21 16:27:02.692:
    211165: Oct 21 16:27:02.693: dot11_dot1x_build_ptk_handshake:
    211166: Oct 21 16:27:02.693: build wpav2 ptk msg 3, pad data from 46 by 2
    211167: Oct 21 16:27:02.693: dump temp_key_data(pt) len 48: 30 14 01 00 00 0F AC 04 01 00 00 0F AC 04 01 00 00 0F AC 02 3C 00 DD 16 00 0F AC 01 01 00 1B 9E E3 5F B6 82 A7 A7 3F 1E 94 56 BD ED B1 8C DD 00
    211168: Oct 21 16:27:02.694:
    211169: Oct 21 16:27:02.694: dump eapol_encrypt_key: B7 06 7B 67 33 D2 41 86 8D 52 9C 0A 0C 8F D9 3A
    211170: Oct 21 16:27:02.695:
    211171: Oct 21 16:27:02.695:  key_data from len 48 to 56 (ct): 34 DA 2E 1C 7A 59 30 19 BA 1E 2B B8 A8 3B 67 48 93 80 F1 39 0A 1C CB D4 D5 51 5B 50 0D 32 7D FA FC A1 12 5C D9 19 3A 8D F4 87 44 97 5B F8 BE AE 21 01 1D C2 EF 90 FC E4
    211172: Oct 21 16:27:02.696:
    211173: Oct 21 16:27:02.696: dot11_dot1x_build_ptk_handshake:
    211174: Oct 21 16:27:02.697:  aes key wrap key_data from len 48 to 56 gtk(ct):
    211175: Oct 21 16:27:02.697: dump decrypted key data: 30 14 01 00 00 0F AC 04 01 00 00 0F AC 04 01 00 00 0F AC 02 3C 00 DD 16 00 0F AC 01 01 00 1B 9E E3 5F B6 82 A7 A7 3F 1E 94 56 BD ED B1 8C DD 00
    211176: Oct 21 16:27:02.698:
    211177: Oct 21 16:27:02.698: dot11_dot1x_build_ptk_handshake:
    211178: Oct 21 16:27:02.698: wpav2 msg 3 key data len 56
    211179: Oct 21 16:27:02.703: mic_key: 68 B6 19 DB EF CA 12 B1 DC B0 6C FD 7D 8B AD FF
    211180: Oct 21 16:27:02.704: hmac_sha1 mic for eapol pak len 155: E3 B5 76 CC 90 FB EA 8F E6 8F 20 16 9E CC 5F 8F
    211181: Oct 21 16:27:02.704: dot11_dot1x_build_ptk_handshake:
    211182: Oct 21 16:27:02.704: msg 3 hmac_sha1 mic for eapol_key len 155
    211183: Oct 21 16:27:02.710: dot11_dot1x_verify_ptk_handshake: verifying PTK msg 4 from 847a.885b.622c
    211184: Oct 21 16:27:02.710: dot11_dot1x_verify_eapol_header: Warning: Invalid key len (exp=0x10, act=0x0)
    211185: Oct 21 16:27:02.710: dot11_dot1x_verify_ptk_handshake: Handshake passed
    211186: Oct 21 17:27:02 BST: %DOT11-6-ASSOC: Interface Dot11Radio0, Station   847a.885b.622c Associated KEY_MGMT[WPAv2 PSK]
    Does anyone have any ideas why I'm seeing the message "Could not find station pointer" or any other idea's why this is happening?  A search of the web throws up many threads exhibiting the same symptoms but none seem to have a fix and the fixes there are (disable aironet extensions, extend the WPA handshake and disable guest mode) haven't worked so far.
    Many thanks,

    from that debug, the cleint was in a run state, then there was an EAPOL Start message.
    As Blake had asked, what type of device is it?  specifically what is the WNIC and driver versions?
    Wireless drivers do not get updated with the standard windows update.
    Steve

  • Exception:The client disconnected.

    Hi,
    I  faced this exception frequently in my application at client site. Please suggest  how i can resolve the issue? 
    An exception occurred. Exception:The client disconnected. StackTrace: at System.Web.UI.ViewStateException.ThrowError(Exception inner, String persistedState, String errorPageMessage, Boolean
    macValidationError)    at System.Web.UI.HiddenFieldPageStatePersister.Load()    at System.Web.UI.Page.LoadPageStateFromPersistenceMedium()    at System.Web.UI.Page.LoadAllState()    at System.Web.UI.Page.ProcessRequestMain(Boolean
    includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) An exception occurred. Exception:Invalid viewstate. 
    An exception occurred. Exception:Invalid length for a Base-64 char array or string. StackTrace: at System.Convert.FromBase64_Decode(Char* startInputPtr, Int32 inputLength, Byte* startDestPtr,
    Int32 destLength)    at System.Convert.FromBase64CharPtr(Char* inputPtr, Int32 inputLength)    at System.Convert.FromBase64String(String s)    at System.Web.UI.ObjectStateFormatter.Deserialize(String inputString,
    Purpose purpose)    at System.Web.UI.ObjectStateFormatter.System.Web.UI.IStateFormatter2.Deserialize(String serializedState, Purpose purpose)    at System.Web.UI.Util.DeserializeWithAssert(IStateFormatter2 formatter, String serializedState,
    Purpose purpose)    at System.Web.UI.HiddenFieldPageStatePersister.Load()

    Hi,
    [quote]An exception occurred. Exception:Invalid length for a Base-64 char array or string.[/quote]
    According to the error messages, it seems that the viewstate has become "large". You can try fixing by chunking the viewstate into multiple fields using maxPageStateFieldLength in the web.config:
    <pages enableSessionState="true" enableViewState="true" enableViewStateMac="true" validateRequest
    For more information, please refer to the document:
    https://kb.sitecore.net/articles/051243
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Detecting OCI disconnect

    What is the best way to detect if your OCI database connection has been lost.
    I guess that I could create a thread that runs repeated "select * from dual" or something like that in the background in order to detect a disconnect but I was hoping that there is some better way do this.
    Something more like OCIRegisterCallbackfunc(OCI_ATTR_TYPE_DISCONNECTNOTIFY,CallbackFunc).
    regards
    /N

    But theese functionalities requires that the listener works ok?! If the database machine, for instance, had an power outage and rebooted then I wont get any notification?
    Register for database startup: I assume that you mean a controlled startup of hte instance, not a startup after a reboot of the db-machine. Am I correct?
    Regards
    /I

  • How to find client disconnected when client lost net connection?

    Hi,
         Can anyone help how can I find on fms server that client disconnected if if client disconnected due to power cut off. I client manually close the application then onDisconnect on server is called but if due to power cut off it does not called.
    Thanks

    See if this article is any kind of help : http://www.flashcomguru.com/forum/forum_posts.asp?TID=2848

  • Client Disconnected From Database

    I'm running lookout 5.0 on one computer and logging its citadel to another machine. There is more than one lookout process on the PC that is actually running lookout itself. Different processes are logging to different designated database folders on the other computer. When you can actually get lookout to show the history info (i.e hypertrend data and such) on the computer it all works great. However if you ever restart the computer requiring to shutdown lookout, then the next time it boots up it is nearly impossible to get lookout to display the trend info again. You always get the "client disconnected from database" alarm. All the network paths and folder locations are correct. I am lost on this one.

    Did you get this error every time you reboot Lookout or sometimes ?
    If you get it sometimes:
    Simply delete the /database/ Folder in Lookout directory
    when you restart Lookout it will creat a new one.
    From experience when you get this message the database is realy damage
    i dont know why this happens.

Maybe you are looking for

  • How do I sync music on an iPod and an iPhone?

    I want to have the same music on my old iPod and my iPhone 3GS.  I've already updated/synced the ipod.  I was wondering about how I made the iPhone sync the same music - I can't seem to find out how to do it. Thanks for any help. 

  • Purchase order create problem

    Hi Reiner, I am testing out a scenario with BAPI_PO_CREATE, encountered a few problems: 1. Errors with Date field in some structures. --> I changed the date field name to ZDATE and that     fixed it, I remember this was also a problem in     Connecto

  • PI 7.1 WS receiver cc connection problem

    Hi To invoke a WS in the internet - through a receiver WS communication channel - i need to use a proxy server for my HTTP request. Where in the cc configuration or PI configuration i can set this. Thanks in advance Michael

  • Need java 8 for OS X for applications like PS5 to work

    need java 8 for OS X for applications like PS5 to work

  • Password works for apps but not software update

    Can't update my I pad with the latest software update I keep getting incorrect password but i can update apps with it