> I am starting to write a Java Client Server App, I am comming from VB and
> VC++. I have done much reading and am ready to start laying out the class's
[quoted text clipped - 6 lines]
> for articles on this in the java world but can not find any.
> Please help.
I'm not a professional, but...
You should learn more about stateless & stateful session beans.
There's no one way to solve a problem, so you have to decide
what to do depending on your situation. If you are just connecting to
the database, chances are you will be using stateless session beans.
About the concurrent access issue, since only one client has access to
the session bean instance, you don't have to worry about it.
hope this helps
Taki