Hi Kiran,
If i understand your requirement correctly, you want to bind the
values on the screen to some beans simialr to DTO and transfer it to
server layer so that you can persist the data? If my understanding is
correct then you can create ValueObject, similar to java POJO (DTO),
and bind those variables with controls on screen.
In your POJO, make sure you use [Managed] tag.
e.g. [Managed]
[RemoteClass(alias="div.test.samples.model.Student")] where
Sturdent is your ValueObject(VO) in java at the mentioned location.
While making calles using remote objects this will map the data to and
from while making calls to server.
Hope this helps.
Div