Questions tagged [disconnected]

93 questions
1
vote
0 answers

FCM message not queueing for disconnected device

if user shut down the device, message with data payload is not delivered to device once device is online again. when I query FCM status for the device token on google play console, message status is "accepted" and does not change after device is…
nabulaer
  • 321
  • 3
  • 10
1
vote
1 answer

DataSet not updated with new row inserted in C#

i am trying to insert new row in Emp table in c# (disconnected mode), the new row successfully inserted but the dataset not updated, so when i search for the new row, i don't find it, but when i search for an old row, i find it. the insertBTN button…
sarahHH
  • 190
  • 1
  • 2
  • 18
1
vote
2 answers

Detect when Power Cable disconnected(USB or AC Charger) in Android programmatically

BroadcastReceiver mBatteryReceiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { int status = intent.getIntExtra(BatteryManager.EXTRA_STATUS, -1); …
D'yer Mak'er
  • 1,632
  • 5
  • 24
  • 47
1
vote
2 answers

Channel disconnected error message again and again - Flash builder 4

I'm trying to use server capabilities Flash Builder 4. But using different ways (i use 5 or 6 tutorial) get one and the same error within a week - "Channel disconnected - Channel disconnected before an acknowledgment was received." I looked up…
Astraport
  • 1,239
  • 4
  • 20
  • 40
1
vote
0 answers

ios 8.3 BLE Device keeps disconnecting after connecting objective-c

I have a Shearwell stick reader, which reads in cattle tags, sheep tags and goat tags via BLE. When connecting the BLE device, the device list shows up in the tableView of the SDLBluetoothConnectViewController then disappears. I am also not able to…
Tyron
  • 88
  • 1
  • 9
1
vote
2 answers

Flex - Is there a way to change the "Channel Disconnected" error message?

I have a Flash app with a PHP backend. Whenever there is a PHP error, I get the "Channel Disconnected before an acknowledgement was received" error message. I'm getting ready to push my project to beta and I would prefer if this message said…
Travesty3
  • 14,351
  • 6
  • 61
  • 98
1
vote
2 answers

Error after calling mysql stored procedures

Sorry for my english and sorry if this message composed incorrect - it is my first question. I had lost 2 evenings when tried to resolve one interesting problem with mysql disconnecting, after procedure call. It's going to be more interesting, when…
Alexander
  • 11
  • 4
1
vote
0 answers

Disconnecting a recordset is failing when setting activeconnection to nothing

I am using VBA in Excel 2010 on Windows 7 (ADO 6.1). I'm trying to execute the code below to grab a disconnected recordset from a SQL stored procedure. There are no parameters, and if I try to execute this as a connected recordset (server side…
Trevor B
  • 11
  • 3
1
vote
1 answer

disconnected dbcontext does not update navigation property

I am writing an API using WebAPI 2.0 and EF6.0 using code first. So its necessarily a disconnected dbcontext scenario. My domain is as as below public class Patient { public int Id { get; set; } public string Name { get; set; } public…
1
vote
2 answers

C# - WCF Duplex => Fire an event when a client disconnect

I'm trying to let my service knows when one of the clients is disconnected. I'm using wsDualHttpBinding. Currently, I'm tried to use this event : OperationContext.Current.Channel.Closed += new EventHandler((sender, e) => ClientIsDisconnected(sender,…
Oliboy50
  • 2,661
  • 3
  • 27
  • 36
1
vote
2 answers

Android stops stream from MediaPlayer

I am using MediaPlayer to play radio stream. The problem occurs when I background the main activity which plays the stream. When the phone uses too much resources (for example while trying to display a list of installed applications) the stream…
peterkodermac
  • 318
  • 5
  • 13
1
vote
0 answers

Generate generic insert statement from existing row for disconnected insert to another database for sync

We currently have a c# console app that creates a sync table from triggers that allows the app to send an insert update or delete statement to another copy of the database at another site. This keeps the tables in sync, however the system regularly…
0
votes
1 answer

Android: Is it possible to detect if user hanged up call or callee?

I know there are similar questions like mine, but they are pretty old. I hope there is some solution to this problem. One of my clients wants the application to be able to detect if the call was hanged up by the caller or the callee? Can someone…
Doaa A.
  • 129
  • 1
  • 2
  • 11
0
votes
0 answers

Socket client disconnecting while sending the data

I have to send data to the server after each minute. While I send the data from the Socket client it gets disconnected with a transport error. I have increased the limit of maxHttpBufferSize to 1e8, but still, I am facing the same issue. Tried…
0
votes
0 answers

Error reading MIME multipart body part. ---> System.Web.HttpException: The client disconnected when file uploaded in web application

There is a strange behavior, user is unable to upload a file in web application getting below 'Error reading MIME multipart body part. System.IO.IOException: Error reading MIME multipart body part. ---> System.Web.HttpException: The client…