Re: [java ee programming] alternate to request,getParameter

2010-03-22 Thread bambang teleinfocom
Yes, JSF is cool also On Tue, Mar 23, 2010 at 3:05 AM, Senthil Chidambaram wrote: > You should consider the available frameworks out there or consider writing > your own. JSF has built in support for validation, you can consider > Richfaces. > > thx > Senthil > > On Mon, Mar 22, 2010 at 4:37 AM,

Re: [java ee programming] alternate to request,getParameter

2010-03-22 Thread Senthil Chidambaram
You should consider the available frameworks out there or consider writing your own. JSF has built in support for validation, you can consider Richfaces. thx Senthil On Mon, Mar 22, 2010 at 4:37 AM, vinay basavanal wrote: > Hi all, > > If i have a b to b application in which in my jsp

Re: [java ee programming] alternate to request,getParameter

2010-03-22 Thread bambang teleinfocom
HI, I suggest if you have real b2b, you might considering using web framework : like spring webflow, struts2, etc --- you need mvc2 ( front controller design pattern ) to handle such traffics. This is just my idea thx bb On Mon, Mar 22, 2010 at 7:37 PM, vinay basavanal wrote: > Hi all, >

[java ee programming] alternate to request,getParameter

2010-03-22 Thread vinay basavanal
Hi all, If i have a b to b application in which in my jsp there more then hundreds of input boxes and they could be string,int,float so in my servlet i have to do requset.getParameter("name ") for all the field and also conversion ,is there a better way then this. -- You received thi