Tagged Questions

0
votes
2answers
109 views

Message Queue OSS

Is there a robust OSS alternative to enterprise products like MSMQ? I had a little research and found: Apache ActiveMQ (wiki) RabbitMQ (homepage) However, I can't tell if t …
0
votes
2answers
59 views

Still need checksum in application protocol when tcp/ip already has it?

I am designing an application protocol, and i am wondering if i still need include checksum in the protocol since tcp/ip already has checksum. what's your opinion?
0
votes
2answers
23 views

How to verify external resources are available

How do you verify the state of the environment for a system without drastically increasing the scope of the system? I'm working on a system which talks to some remote servers. For …
1
vote
4answers
78 views

Ubiquitous computing and magnetic interference

Imagine the radio of a car, does the electro magnetic fields through which the car goes through, have interference in the processing? It's easy to understand that a strong field ca …
0
votes
4answers
127 views

How do I make this regex more general, sometimes it works and sometimes it doesn’t

I have the following regex that I am using in a java application. Sometimes it works correctly and sometimes it doesn't. <!-- <editable name=(\".*\")?> -->(.*)<!-- …
0
votes
5answers
147 views

Must web apps support back button

I did a system test on a new ASP.NET app. I encountered several exceptions when using the BACK button in my browser (IE 7). I stated in a review-record that the web-app must suppo …
0
votes
8answers
192 views

How to build a distributed robust linked list on several computers on the net?

I was thinking about building a program that use a raid(disk) like algorithms. If one computer dies. The next will step in. In it's place. And it need to scale from 1 - 1000 comput …
5
votes
8answers
238 views

How do you evaluate reliability in software?

We are currently setting up the evaluation criteria for a trade study we will be conducting. One of the criterion we selected is reliability (and/or robustness - are these the sam …
1
vote
3answers
221 views

Robust WCF service

What is the best way to ensure service robustness to prevent a service becoming unavailable, if it does become unavaliable is there a way of restarting the service? thanks in adva …
2
votes
7answers
267 views

Do you accept interfaces as constructor parameters?

Does Krzysztof's recommendation apply to constructors? If so, how do you implement it properly? We recommend using Collection, ReadOnlyCollection, or KeyedCollection for output …
2
votes
3answers
178 views

Converting a filepath to a url securely and reliably

I'm using php and I have the following code to convert an absolute path to a url. function make_url($path, $secure = false){ return (!$secure ? 'http://' : 'https://').str_rep …
4
votes
3answers
134 views

How do you manage external dependencies for your application?

There are many types of external dependencies. Interfacing with external applications, components or services (e.g. Outlook to send emails, TWAIN or WIA for scanning, ActiveX objec …
8
votes
9answers
305 views

Best Practices for Robustness

I just came across this question about initializing local variables. Many of the answers debated simplicity/readability vs. robustness. As a developer of (remotely deployed) embe …