Hello,

Can someone help me get started?

Where/when is the proper place/time to create an ejb (Entity bean)?
Should I create access methods in the mapping class,
the form class or both or should I just create the objects
in the action class?

I want to create a complex entry form that may create/update
three different tables in the database

Say my JSP looks like:

<H1>
    .....
</H1>
<HR>
<H2>
    .....
</H2>
<HR>
<H3>
    .....
</H3>

The entry fields associated with H2 are directly related to H1 and
The entry fields associated with H3 are independant of H1 and H2

Is there a document that would outline the logic flows and database
interactions?
I first want to initialize H1 area stuff.
Based on user activity in H1 I want to then redisplay H1 and display H2
The user is then expected to complete H3
This would create/update an H1 entity bean
This would create/update an H2 entity bean
and create an H3 entity bean

probably using three round trips to the JSP server.

Any thoughts?

--
Thank you,
David Lauta
[EMAIL PROTECTED]



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to