Well, the idea is that i can make a web interface so that i can administrate from home. Other considerations,
JDBC connection pooling, write once, deploy anywhere.
Also i want to try to provide some kind of failover, in case something goes wrong it won't have to start all over again. In
Jboss Stateful session beans provide failover by replication.
(I made a
test for this and it works. The report can be retrieved after a server crash.) Of course, I could also write the report to disk periodically.
I guess it's not good j2ee design. Anyway I find it hard to decide what the best solution for a problem is because they all seem to have their disadvantages. I'm really curious to your opions on this issue.