disconnect Questions
13
Solved
Using Windows 2008 R2. On our server we get this error: "Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all p...
Autointoxication asked 24/7, 2014 at 12:25
4
Solved
Depending on a conditions I would like to connect/re-connect a button to a different function.
Let's say I have a button:
myButton = QtGui.QPushButton()
For this example let's say I check if th...
Mucoprotein asked 5/2, 2014 at 19:27
5
Solved
I'm new to nodejs and trying to write a chat room as so many people have.
The chat consists of multiple rooms and clients. Commands such as /nick /join /help /ls users /ls rooms work as you would e...
Amenable asked 28/6, 2014 at 4:1
3
Solved
I have two simple applications:
A Server application that waits on a specific tcp port for a client to connect. Then listens to what he says, send back some feedback and DISCONNECT that client.
A...
Barnaba asked 25/2, 2013 at 12:30
2
I upgraded my Linux(Opensuse from 42.3 to 15) but encountered new bug.
When I connect my USBserial dongle it shows ttyUSB0 in dev folder and immediately disconnected and goes from dev list.
...
Policeman asked 3/9, 2018 at 5:42
1
In a code like this
using (var sftp = new SftpClient(_host, _userName, _password))
{
sftp.Connect();
// Do some work with sftp
sftp.Disconnect();
}
Is sftp.Disconnect() call necessary or will...
Mediacy asked 6/1, 2017 at 17:42
6
So I've got a socket that is connected to an outside web address and when it gets a certain message it's supposed to disconnect. I tried calling socket.close() but socket.isConnected() is still tru...
Malaco asked 23/8, 2013 at 15:31
2
Solved
I need to make MySQL server to rollback transaction immediately after its client disconnected, because each client works concurrently. The problem can be reproduced like these (using an innodb tabl...
Session asked 30/3, 2012 at 3:40
4
Solved
I spent ages trying to find a simple example where MongoEngine was being used and a connection was being closed. Finally figured it out and posting my code.
Menendez asked 9/5, 2017 at 9:28
2
Solved
I want to send disconnect event manually with custom parameter to socket.io server. I use this function but won't work:
//client
var userId = 23;
socket.disconnect(user);
//Server
socket.on('d...
Icbm asked 26/11, 2016 at 8:14
5
Solved
I was reading this question: Trying to detect browser close event
But it's not comprehensive enough, or at least I'm not sure it is, I need to detect when the user leaves the website, this could b...
Appeal asked 13/11, 2014 at 5:28
2
Solved
It's been 1 month since I started using django-channels and now I have a feeling that I am not disconnecting websockets properly.
When I disconnect I want to destroy the group completely if no one ...
Lately asked 21/8, 2019 at 12:37
1
Solved
Using .NET Core 2.2 and Angular 8 with package "@aspnet/signalr": "^1.1.4".
I have set up a hub in .NET Core 2.2 which works fine with another Angular project using the same pac...
Merchant asked 31/12, 2019 at 11:54
4
Solved
Can't handle this disconnect event, don't know why socket is not sent to the client / client doesn't respond!
Server
io.sockets.on('connection', function (socket) {
socket.on('NewPlayer', functio...
Sanjuana asked 25/6, 2013 at 0:33
3
Solved
I assign a slot with this.
...
self.query = QtGui.QLineEdit(self)
self.query.textChanged.connect(lambda: self.makeThread(self.googleSearch()))
self.query.returnPressed.connect(lambda: self.launch...
Timberlake asked 24/3, 2013 at 15:2
10
Solved
My SQL Server 2005 doesn't restore a backup because of active connections. How can I force it?
Epilepsy asked 20/7, 2009 at 15:19
1
I am developing a voice chatting app based on webRTC using android libjingle.I want to reconnect users by using ice restart when they change their network from wifi to 4g or vice versa, or are disc...
Stogner asked 8/11, 2017 at 9:11
0
I have registered a broadcast receiver for PHONE_STATE so whenever a call is disconnected I can execute code. I am trying to find the cause of the disconnection which I believe it can be found by c...
Hedvige asked 19/5, 2017 at 9:9
3
Solved
I have made a simple realtime visitor counter.
You can download it from this repository.
What happens is that disconnect event (even after browser closing) on server is never fired.
server.js i...
Vivian asked 26/4, 2012 at 22:56
2
I have a client/server setup in which clients send a single request message to the server and gets a bunch of data messages back.
The server is implemented using a ROUTER socket and the clients usi...
Akin asked 17/2, 2015 at 9:11
1
Solved
How can I disconnect my mutation observer from its callback function? The changes are being observed as they should, but I would like to disconnect the observer after the first change. Since the ob...
Cyrano asked 25/12, 2016 at 19:24
1
Solved
Right now my disconnection from a weblogic JMS server looks like this
import java.util.Hashtable;
import javax.jms.*;
import javax.naming.*;
import javax.transaction.*;
import java.util.Vector;
im...
Dialecticism asked 27/5, 2016 at 17:37
2
Solved
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 messag...
Marybethmaryellen asked 3/3, 2010 at 21:58
5
Solved
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. (...
Revile asked 31/7, 2009 at 20:13
2
I have tried writing to the response, because there is no proper disconnect callback:
private boolean write(byte[] output, AsyncContext context) {
try {
OutputStream stream = context.getResponse...
Claiborn asked 19/8, 2011 at 16:19
1 Next >
© 2022 - 2024 — McMap. All rights reserved.