Tagged Questions
The reliable tag has no wiki summary.
3
votes
1answer
764 views
Android timer that works when device is sleeping
I'm writing a sports app that needs to track the elapsed time of quarter/half/period. Elapsed time needs to be accurate to the second. The game clock needs to continue to run even if the user ...
3
votes
1answer
3k views
What is the purpose of WCF reliable session?
The documentation around this topic is poor. I use WCF services with NetTcpBinding hosted in Windows service. The problem is that a session is dropped when it is inactive for some time. What I need is ...
3
votes
1answer
1k views
Reliable session faulting for unknown reason
My problem is this:
I am trying to achieve the following - one client-side proxy instance (kept open) accessed by multiple threads using a reliable session. What I have managed so far is to have ...
2
votes
0answers
49 views
How to get/utilize SQLite row ID reliably with C API when user hide all the column names?
According to SQLite documentation, All tables have rowid by default, and it cannot be removed. And this rowid can be accessed with rowid, oid or _rowid_.
Anyway database users can add the new column ...
2
votes
4answers
81 views
How to reliably load required JavaScript files?
I came across the problem when due to internet connection problems, some of the required JavaScript files are not loading. Body onload event gets fired however classes required for logic of the page ...
2
votes
5answers
211 views
Reliable TCP/IP in Java
Is there a way to have reliable communications (the sender get informed that the message it sent is already received by the receiver) using Java TCP/IP library in java.net.*? I understand that one of ...
2
votes
2answers
257 views
Reliable write to Java SocketChannel
I'd have a question regarding java SocketChannel.
Say I have a socket channel opened in blocking mode; after calling the the write(ByteBuffer) method, I get an integer describing how many bytes were ...
1
vote
3answers
69 views
Reliable server-to-iPhone messaging
My company offers an iPhone app for day traders which basically tells them when it's a good time to buy or sell. A cluster of servers generate these BUY and SELL signals and need to be delivered to a ...
1
vote
3answers
52 views
How to ensure that data doesn't get corrupted when saving to file?
I am relatively new to C# so please bear with me.
I am writing a business application (in C#, .NET 4) that needs to be reliable. Data will be stored in files. Files will be modified (rewritten) ...
1
vote
1answer
228 views
Reliable multicast communication in LAN
I have a network application working on Linux. What I want to do is to make my application able to announce it's presence in LAN and then notify other applications about some changes. Because I don't ...
1
vote
2answers
107 views
Ensuring send() data delivered
Is there any way of checking if data sent using winsock's send() or WSASend() are really delivered to destination?
I'm writing an application talking with third party server, which sometimes goes ...
1
vote
1answer
256 views
WCF Reliable session without transport security will not faulted event on time
I have encountered a very interesting behavior of reliable session. I am using netTcp binding + duplex channel + reliable session.
When I am trying to listen on channel.faulted , if there is security ...
1
vote
1answer
873 views
Adding Custom WCF header to Endpoint Programatically for Reliable Sessions
I'm building a WCF router and my client uses Reliable Sessions. In this scenario when the client opens a channel a message is sent (establishing a Reliable Session?). Its contents is as follows:
...
1
vote
3answers
438 views
Reliable(durable) distributed logging engine
Trying to find a commercial logging framework for distributed systems. This framework must allow .NET applications on a Remote Server to log messages which can then be collected in a Central Location. ...
0
votes
1answer
96 views
Basic OpenPGM Setup
I've recently begun to setup OpenPGM on a threesome of virtual linux machine with a fourth virtual machine acting as a gateway. Ideally I would like to observe the traffic using wireshark on the ...
0
votes
1answer
70 views
Logback reliability
Log4j is not reliable as per the following faq:
http://logging.apache.org/log4j/1.2/faq.html#a1.2
"No. log4j is not reliable. It is a best-effort fail-stop logging system."
Is Logback more reliable? ...
0
votes
1answer
164 views
Counting anonymous and logged in users - ASP.NET website
I would like to implement reliable user counter. Currently I'm using session variables. Here is a look on my implementation:
void Application_Start(object sender, EventArgs e)
{
// Code that ...
0
votes
1answer
250 views
Pub/Sub or Service Bus with Rails
We have a rails application that generates a lot of background tasks that need to be executed when certain events occur in the system (client notifications, third party data synchronization, dirty ...
0
votes
2answers
158 views
What are the required mechanisms for a reliable layer over UDP?
I've been working on writing my own networking engine for my own game development side projects. This requires the options of having unreliable, reliable, and ordered reliable messages. I have not, ...
0
votes
1answer
203 views
Is it safe to reference an object's properties by index?
Consider, I have this object:
var ob = {
"page1.html" : {...},
"page2.html" : {...},
"page3.html" : {...}
}
I am unable to change this to an array, I don't have access to that, what I'd like ...
0
votes
2answers
154 views
Reliable data transfer on a lossy channel
Suppose you have already an unreliable lossy channel between 2 peers. Which methods can you suggest to transfer data reliably and also without performance loss? Also the underlying protocol is not TCP ...
0
votes
1answer
456 views
Reliable UDP File Transport Protocol implementation
In computer networking, the Reliable User Datagram Protocol (RUDP) is a transport layer protocol designed at Bell Labs for the Plan 9 operating system. It aims to provide a solution where UDP is too ...
0
votes
3answers
207 views
Failure scenarios for Reliable UDP?
What could be good list of failure scenaros for testing a reliable udp layer?
I have thought of the below cases:
- Drop Data packets
- Drop ACK, NAK Packets
- Send packets in out of sequence.
- Drop ...
0
votes
5answers
266 views
“Reliable” file work with .NET
An application needs a counter, which value to be stored in a text file. Sometimes it happens on very short intervals.
This test code rewrites a text file very often (f.e. every 100 milliseconds):
...
0
votes
6answers
350 views
Which free database system is best to store, and compute/analyze large text comparisons out of which the database would make usable statistics?
I got to create script that would compare thousands of large texts (to each other). And I'm wondering if MySQL is the best solution for this. Is there any other free databse system I could use to do ...