Questions tagged [disconnect]

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

A break or interruption in an existing connection, continuum, or process. This can include:

  • Ending a connection to a server
  • Ending a connection to internet
  • Terminating operating system services
  • Removing event handlers from an object
403 questions
0
votes
0 answers

Looking at TcpClient.Client properties closes the Socket in vs debug

I found something strange I opened a TcpClient and debuged it And when i wached the TcpClient.Client properties it closed the socket(the Connected property was false) Why? I am using c# in vs2010
Ido Sorozon
  • 83
  • 1
  • 2
  • 8
0
votes
1 answer

h2 disconnect and connect

i got a problem when i'm closing an h2 connection(release database) and try to connect to another h2 database(debug database). Snipplet to connect: this.connection = new JdbcConnectionSource(connectionString); Snipplet to…
0
votes
1 answer

Facebook does not logout when using django-social-auth social_auth disconnect

I am using Django 1.5 and django-social-auth. I am able to login with facebook using the template: Later I use the disconnect…
Iñaqui
  • 251
  • 4
  • 9
0
votes
1 answer

asynctask download file network connection drop

I have an application that downloads multiple files (and checks the download speed) within an Asynctask. However, when I am connected to 3G (and there is a handover) or the device switches form WiFi to 3G, my application freezes and I can not…
malcolm the4
  • 347
  • 2
  • 5
  • 15
0
votes
2 answers

Firebase as distributed database sync engine for invoices, with disconnect?

I'm building a invoice app for iOS. I need a way to sync data between several devices of the same company that use the app. This have the common customers, product, inventory, invoices/detail tables. I wonder if firebase is suitable for this.…
mamcx
  • 15,916
  • 26
  • 101
  • 189
0
votes
0 answers

TCPClient.Close() doesn't work when using Mono

I'm trying to simply disconnect socket client. TcpClient socket = new TcpClient(); NetworkStream stream = socket.GetStream(); // ... stream.Close(); socket.Close(); Well, it works perfectly fine(server notices when client disconnects) when…
Gintas_
  • 4,940
  • 12
  • 44
  • 87
0
votes
1 answer

socket keepalive works with xp but not with windows 7 c#

I have a strange problem: I have a list of TcpClients that I need to be notified when one of them disconnects. When each of them is initialized I set their socket to keepalive (setsocketoption, and iocontrol) and there does not seem to be any…
0
votes
0 answers

Jenkins Slave Nodes Won't Start

I have a simple Jenkins job set up and for some reason certain computers in the office are having trouble connecting as slave nodes. -One computer connects fine, no issues. -One connects using java web start then immediately disconnects -One tries…
sstynes
  • 239
  • 1
  • 3
  • 8
0
votes
0 answers

Wifi disabled on Android after removing other networks

I have an android app that performs network connections on opening the app and disconnects and removes the networks on closing it.. If the device was initially on 3G, opening and closing the app performs the right connection/disconnection…
user591410
  • 3,051
  • 5
  • 21
  • 30
0
votes
1 answer

Call disconnect for asterisk

How to capture call disconnect for asterisk using PHPAGI ? For e.g. if user disconnects the call which event is invoked ? How to capture it ?
user723826
  • 83
  • 1
  • 6
0
votes
2 answers

Chat client crashes upon client disconnect

I have been following an old tutorial for making a chat program and I have been dissecting it to fit into a new form, although I have gotten it to work as it was intended it runs into the error: "Unable to read data from the transport connection: A…
0
votes
1 answer

C# Socket Connection Issue

Ok so I have a socket connection within my code that is causing a problem. It connects and then disconnects rather quickly. It disconnects after the "connections++;" line. Any ideas? AS REQUESTED ALL CODE FOR THIS FORM BELOW using System; using…
6TTW014
  • 627
  • 2
  • 11
  • 24
0
votes
1 answer

iOS UI Automation : toggle network settings during test execution time from within the tests

I need to test various alerts that comes when network disconnects at various points of test flows. So I need to disconnect iPad/simulator from network. Is there any way where we can toggle network settings during tests execution time from within the…
Kabs
  • 187
  • 1
  • 6
0
votes
2 answers

Remote socket disconnection not seen by PHP

I have a PHP socket server listening to multiple sockets. On my client, if I suspend the machine, no disconnection message is sent to the PHP server. How can I figure out which client is still connected or not, or get these disconnection events ? In…
Laurent Crivello
  • 3,809
  • 6
  • 45
  • 89
0
votes
1 answer

destructor when stopping idhttp.get ( indy, delphi)

My application can download one picture from every url in memo1. It uses idhttp.get and has a skipbutton. After skip it downloads the next picture. Q1: Do you have code to put into the destructor and what is the code for " terminate" and…
1 2 3
26
27