Tagged Questions

A break or interruption in an existing connection, continuum, or process.

learn more… | top users | synonyms

11
votes
5answers
2k views

force client disconnect from server with socket.io and nodejs

Is there any way to disconnect a client with SocketIO, and literally close the connection? So if someone is connected to my server, and I want to close the connection between them and my server, how ...
10
votes
1answer
1k views

WCF: How to detect client-side if the server disconnects me

I have a WCF self-hosted service with a net.tcp DuplexChannel. On the server I run the following to disconnect a client: ((ICommunicationObject)client.CallbackChannel).Close(); This works fine but ...
8
votes
2answers
754 views

What's the difference between BeginConnect and ConnectAsync?

What is the difference between BeginConnect and ConnectAsync? Subsequently, what is the difference between BeginDisconnect and DisconnectAsync? The ConnectAsync documentation states: "Begins an ...
6
votes
1answer
180 views

How to disconnect an anonymous event? [closed]

Possible Duplicate: How do I Unregister 'anonymous' event handler I have code like this: Binding bndTitle = this.DataBindings.Add("Text", obj, "Title"); ...
6
votes
4answers
8k views

When restoring a backup, how to disconnect all active connections?

My SQL Server 2005 doesn't restore a backup because of active connections. How to force it?
5
votes
1answer
2k views

detecting disconnection from a WiFi access point

I am trying to use a BroadcastReceiver to detect when the phone has disconnected from a WiFi access point. To do this, I registered my BroadcastReceiver in the manifest: <receiver ...
4
votes
2answers
345 views

Java Socket Disconnect Reporting vs. C# Disconnection

in C# when a sockets connection is terminated the other node is informed of this before terminating the link thus the remaning node can update the connection status. in Java when i terminate a ...
4
votes
2answers
1k views

How to detect a client disconnect using a named pipe client/server?

I'm learning about named pipes and was playing with the named pipe client and server examples from the MSDN doc: Named Pipe Server Named Pipe Client I modified the client so I can type in messages ...
4
votes
4answers
1k views

Best practice to detect a client disconnection in .NET?

I'm developing a server in C# which can accept only one client and I need to know when this client is disconnected to be able to accept another connection requests. I'm using a first Socket which ...
4
votes
3answers
3k views

WCF - have client check for service availability

I have a client-server system, both sides written by me, and I would like to put the clients in an 'offline' state when the server disconnects/dies, and then automatically bring them back 'online' ...
4
votes
5answers
7k views

How to detect USB device disconnect under Linux/Qt/C++

I'm writing a system (X-Platform Windows/Linux) that talks to a custom device using an FTDI USB chip. I use their D2XX driver for device open/close/read/write. So far, so good. I need to know ...
3
votes
1answer
66 views

extjs file uploading - how to handle disconnected from internet or network

We are using an extjs form to upload our files to fileserver ( we have an FileUploadHandler.ashx to handle the file on the bakcend side ) My question is, can extjs handle / throw an exception if ...
3
votes
2answers
144 views

How does gmail browser client detect internet/server disconnect (speed and scalability)

We have an browser application (SaaS) where we would like to notify the user in the case of internet connection or server connection loss. Gmail does this very nicely, the moment I unplug the internet ...
3
votes
2answers
5k views

How can I detect a USB disconnect event? (Windows, .NET C# application)

Currently how I do this is I poll for a masked list of USB devices (masked specifically for the device I'm working with) and if it's there, I continue, if not then I notify the user that the device is ...
2
votes
1answer
140 views

Socket.io socket data availability after disconnect

When the socket disconnect event is fired with socket.io (node.js), for how long will the socket's data still be available? If I have a store (like redis) that asynchronously returns data, is it safe ...
2
votes
0answers
152 views

How to properly detect a client disconnect in servlet spec 3?

I have tried writing to the response, because there is no proper disconnect callback: private boolean write(byte[] output, AsyncContext context) { try { OutputStream stream = ...
2
votes
4answers
192 views

DBI: disconnect - question

Would you call parts of the disconnect-code as line-noise or would you leave it as it is? use DBI; my $dbh = DBI->connect ... ... ... END { $dbh->disconnect or die $DBI::errstr if $dbh; } ...
2
votes
4answers
290 views

How do I disconnect a Scala Remote Actor?

In scala it is very easy to make a connection to a remote actor, but the documentation does not tell me anything about disconnecting. Simply throwing away the reference does not work, because remote ...
2
votes
2answers
421 views

C# Socket doesn't disconnect properly

I'm working on a server for the game Minecraft, which shows a dark-red screen when the player is disconnected. I'm disconnecting players like this: Socket.Shutdown( SocketShutdown.Both ); ...
2
votes
1answer
713 views

Connection reset when calling disconnect() using enterprisedt's ftp java framework

I'm having trouble disconnecting from a ftp-server, using the enterprisedt java ftp framework. I can simply not call disconnect() on a FileTransferClient object without getting an error. I do not do ...
2
votes
3answers
2k views

How do you remove a dojo connected event if you do not have the “handle” that was returned during the dojo.connect?

How do you remove a dojo connected event if you do not have the "handle" that was returned during the dojo.connect? My example involves dynamically assigning a set of events to a set of objects. ...
2
votes
1answer
142 views

MORPG Server not catching disconnection

Ok, simple problem hopefully. I have started to make a simple server for a simple MORPG game im making, the client connected, and then disconnects, simple, the server catches the new client, but ...
1
vote
1answer
150 views

NodeJS socket.io-client doesn't fire 'disconnect' or 'close' events when the server is killed

I've written up a minimal example of this. The code is posted here: https://gist.github.com/1524725 I start my server, start my client, verify that the connection between the two is successful, and ...
1
vote
1answer
47 views

Disconnect an event in Lua

I was reading a part of the LuaInterface Tutorial (here) and found out that you can associate an event with a function by doing something similar to this: button.Click:Add(function() ...
1
vote
1answer
69 views

Apple Script to disconnect wireless keyboard in menu bar on the top of the screen

I'm trying to try disconnecting my wireless keyboard using Applescript. I came up with this script with UI browser: activate application "SystemUIServer" tell application "System Events" tell ...
1
vote
2answers
122 views

writing over a disconnected socket does not throw

the writer: socket.setSendBufferSize(1); socket.setTcpNoDelay(true); writer = new BufferedWriter( new OutputStreamWriter(socket.getOutputStream(), "UTF-8")); is used as follows: ...
1
vote
3answers
608 views

TcpClient disconnect during async read

I have a few questions about finishing a tcp connection. A client connects to my server using Tcp, after accepting the client with listener.BeginAcceptTcpClient(ConnectionEstabilishedCallback, ...
1
vote
1answer
371 views

Is there any way to disconnect a client connection of socket.io in the server.js?

I know the client part may use disconnect method to disconnect a client connection. but I can't find any way to disconnect from the server part. socket.on('connection', function(client) { ...
1
vote
3answers
519 views

PHP - Proper way to disconnect from ssh2_connect()?

So I've connected over ssh2 using ssh2_connect to a server, but I don't see any method in the manpages for how i should end the connection. I'm not exactly a fan of waiting for a script to end before ...
1
vote
1answer
105 views

Erlang: Sending on a closed connection

If a client connects to a server over a normal tcp connection, and then later on the client's connection cuts out, the server will get (assuming active mode) {tcp_closed,Socket}. But there are cases ...
1
vote
1answer
175 views

How can we find that all bytes receive from sockets?

I want to know when we receive all bytes from a socket without Socket.Disconnect() method ? yet , i use this code to receive all bytes , but i use Socket.Disconnect() method when Scoket.Send(byte[]) ...
1
vote
3answers
876 views

Close Client Socket on disconnect

I have server application that listens for clients. Let's client lost internet connection and lost connection with server. Does server automatically check when a client was disconnected? If not how ...
1
vote
4answers
972 views

Disconnecting TCPClient and seeing that on the other side

i am trying to disconnect a client from a server but the server still sees it as being connected. I cant find a solution to this and Shutdown, Disconnect and Close all dont work. Some code for my ...
1
vote
2answers
1k views

Android HttpURLConnection disconnect doesn't work

The method disconnect from HttpURLConnection seems not to work properly. If I execute the following code: url = new URL ("http:// ..."); connection = (HttpURLConnection) url.openConnection (); ...
1
vote
1answer
366 views

Why can't I disconnect my database handles with DBD::DB2?

My perl script is slow but works. I am considering throwing it out and building a true DB2 application with proper binds and such; however, in the meantime I want this to work as a place holder. I ...
1
vote
1answer
1k views

Android InputStream Internet Disconnect

In my Android program, I have some code that downloads a file. This works fine, but since on a cell phone, you can be disconnected at any time, I need to change it do it reconnects and resumes the ...
0
votes
1answer
66 views

Socket disconnects in iOS5 when lock key pressed

My iPhone application is based on remote desktop protocol which communcates with PC using socket programming. Everything works fine in iOS4, but now i encounter an issue with iOS5 based device. My ...
0
votes
0answers
65 views

NET TCP connection is closed without any reason

I have some problems with TCP client on net Compact-Framework 3.5. My server application is written in C++ plus QT library and it's working on desktop computer. One of my clients applications is ...
0
votes
1answer
52 views

iOS XMPP disconnect on background doesn't get reported

When the app is in the background and xmpp disconnects because the internet goes down, and if the internet comes back up, when I open the app, the disconnect call is not made so the app doesn't try to ...
0
votes
0answers
37 views

Using latests JS/PHP SDK/API I can't disconnect

On my website app I use JS API and PHP SDK (latests version). I also use the latest oauth. When I disconnect using JS, it disconnect me right from FB, but when my website app page reload, PHP always ...
0
votes
0answers
55 views

Handle client disconnect

I am looking for some way to check if client disconnects from serwer. My server code srv = TCPServer.open(20000) while true Thread.new(srv.accept) do |connection| while isConnected #here i ...
0
votes
1answer
73 views

Tomcat NIO/RESTEasy disconnects TCP after each request

I'm using RESTEasy asynchronous (Comet) IO support on Tomcat 6 via the NIO Connector. Currently, TCP connections are getting dropped by the server after each response is sent back to the client. All ...
0
votes
1answer
61 views

properly disconnect multiprocessing remote manager

When using multiprocessing Manager objects to create a server and connect remotely to that server, the client needs to maintain a connection to the remote server. If the server goes away before the ...
0
votes
2answers
147 views

Erlang catch disconnect client

I have tcp server written in erlang and command handler. If client connect to my server, and then closing how can i catch network disconnect?
0
votes
2answers
94 views

Supporting MongoDB write when client is disconnected

I'd like to develop an app that uses MongoDB as the database, but which can cope with wifi dropout disconnects, so that the javascript client can cope with unreliable net connections, syncing when the ...
0
votes
2answers
127 views

Zend “destructor”?

We use the Zend framework for MVC and Pear for accessing the database. I was wondering should I close the connection to the database everytime a request is completed? And if so is there a way to do ...
0
votes
2answers
369 views

Problem disconnecting OpenVpn from application

I am tring to connect a remote server via openvpn using C#. I am able to connect it successfully. but disconneecting seems to not work properly. Once I close my app, I am not able to access the ...
0
votes
0answers
17 views

What is the possible cause of this error for ftp?

I'm having the below msg from Filezilla every time during work. I think it occurs during huge amount of file transfers. Any idea how to resolve this? Is it an server issue or anything we could do on ...
0
votes
1answer
96 views

Detect jsch disconnection

how can i detect from the client that jsch session has beed disconnected by the server?
0
votes
1answer
232 views

Disconnect Network C#

Is it possible for me to disconnect the systems connection to the internet without the need for detecting the network adapter etc.? I would like to add this functionality to my software but can't ...

1 2