Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
519 views

Are there any programs that can simulate an unstable network connection?

We need to simulate an unstable network connection to try to debug some connectivity issues in our server/client application and I was wondering if there are any programs out there that can simulate ...
6
votes
6answers
243 views

Strategies for Java ORM with Unreliable Network and Low Bandwidth

I am looking at Hibernate for a system which needs to work in an unreliable network. There is a single central database that we need read-write access to, but it is available over a pretty patchy ...
4
votes
1answer
155 views

Are there any libraries or samples for non-duplex WCF chunking?

I'm looking for a way of implementing a file transfer service over HTTPS which uses chunking to cope with intermittent connectivity loss and to reduce the large timeouts required by using Streaming. ...
3
votes
1answer
430 views

Reliable UDP and ACK method question

I am reading about implementations of reliable UDP (ie. sending ACK packets and resending non-ACKed packets again). Of the two main patterns I seem to find arround the net: Client sends an ACK for ...
1
vote
3answers
436 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. ...
1
vote
1answer
313 views

Handle Unstable Internet Connection in Server-Client App

what technology can i use to manage unstable internet connection in a Server-Client App. i know mainly PHP (+Zend Framework), learning C# & ASP.NET MVC. i heard WCF/MSMQ is something that can ...
0
votes
1answer
16 views

Application design for data persistence over unreliable internet

I've an Flex actionscript 3 schedule reminding app which talks to a web-service through the internet over wifi. The problem is the wifi connection is unreliable and there are frequent dropouts. The ...
0
votes
1answer
57 views

Two generals' agreement

I am trying to figure an agreement protocol on an unreliable channel. Basically two parties (A and B) have to agree to do something, so it's the two generals' problem. Since there is no bullet-proof ...
0
votes
2answers
122 views

PubSub + Reliable message delivery to unreliably present subscribers

I need to build a system that uses a Publish/Subscribe bus (e.g. Mule, ZeroMQ, RabbitMQ), but the literature all implies that subscriber applications are reliably available to receive messages from ...