passing objects

Hi , I have around 200 clob objects in my jsp page.Each of them have a hyperlink.On clicking the hyperlink , form submit has to take place and clob object has to be passed on to the servlet.How could objects be passed on request submission?ThanksVivek
[279 byte] By [vivek.shankara] at [2007-11-26 18:43:03]
# 1
how did you load the clob object into JSP, hope its from a servlet...submit an id for the clob that is being clicked, and access the actual object refering to this id from the servlet...
ganesh_renganathana at 2007-7-9 6:16:58 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
You can achieve that using request.setAttribute() methodin the JSP. In your servlet, you would call request.getAttribute().But I would discourage doing that, as clob objects are quite heavy.Try a smarter and simpler workaround that goes easy on performance.
FUN_ONEa at 2007-7-9 6:16:58 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...