So, you are using Submit components inside a Form, right? What's happening is that the direct service is rejecting the incoming request because there isn't an active HttpSession (because you bounced Resin).
You need to bind the stateful parameter of your Form to false. This will clue in the framework that its ok for there not to be an active HttpSession for the request. -- [EMAIL PROTECTED] http://tapestry.sf.net > Hello Tapestry-developers, > > I've got a simple external page showing item property in edit text > fields. and 2 submit buttons - save & delete. > > When i open this page edit and click save: > Tapestry invokes engine, engine determines that there's Direct > Service(button submit, i think), then Direct Service invoke External > Service for my page and everything's OK. > > But if i open this page then restart Resin and then click save: > Tapestry invokes engine, engine determines that there's Direct > Service(button submit, i think), then Direct Service doesn't > determines that my page is external and it tries to work with it like > simple page, but there's no any data and item is null, so there's > NullPointerException. > > What shuld I do to solve this problem ? > > Thank you > > -- > Best regards, > DarkIT mailto:[EMAIL PROTECTED] > > > > > ------------------------------------------------------- > This SF.NET email is sponsored by: AMD - Your access to the experts > on Hammer Technology! Open Source & Linux Developers, register now > for the AMD Developer Symposium. Code: EX8664 > http://www.developwithamd.com/developerlab > _______________________________________________ > Tapestry-developer mailing list > [EMAIL PROTECTED] > https://lists.sourceforge.net/lists/listinfo/tapestry-developer ------------------------------------------------------- This SF.NET email is sponsored by: AMD - Your access to the experts on Hammer Technology! Open Source & Linux Developers, register now for the AMD Developer Symposium. Code: EX8664 http://www.developwithamd.com/developerlab _______________________________________________ Tapestry-developer mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/tapestry-developer
