vote up 0 vote down star

What are the best practices for implementing reliable and safety-critical Java middleware?

flag
1  
that's a really broad question... what do you want your middleware to do? – Cogsy Jun 23 at 1:49
@Cogsy, I'm not sure how to answer you...in essence the middleware reads data off remote sensors and this data is then used to make decisions to move mechanical parts of a machine – boggled Jun 23 at 2:38

1 Answer

vote up 0 vote down

The following properties come into my mind:

  • You might use Real-time Java for time-critical operations
  • Build fault tolerance and lots of retry into the communication if you have a proprietary protocol
  • You might consider a SOAP provider with WS-Reliability extension for example.
  • Have an industrial PC and hardware, not a desktop one.
  • You might want to use watchdogs on both ends and for example stop/pause the mechanical movements
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.