On Thu, 26 Aug 2004, Amit V Shah wrote: > Thanks for all the replies !!! > > - I think you can just comment out all the Intake stuff in the > TurbineResources.properties file > > The only other choice I have to get the form fields in Turbine Action is > using the HttpRequestApi from action - data.getParameter() right ?? Or there > is some other alternative apart from intake that turbine offers for this > task ??
You can use that or the ParameterParser object returned by data.getParamaters() (or data.getParameterParser()), or if you prefer, data.getRequest() to get the request object. So yes, you can have apps that don't use intake at all (I've done that). > - Make sure that the object you are creating the group with implements the > org.apache.turbine.om.Retrievable interface. Also look for errors in your > logs about badly formed xml documents. > > I am not using any objects that correspond to OneTOOne basis to any of > the forms. I was only trying to use intake to receive the form field data. I > am planning on using Hibernate as my O/R Mapping tool. Just want intake to > do some automatic validations. > > Thanks, > Amit > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
