Re: Post parameters get removed from Request object

2010-02-12 Thread Thiago H. de Paula Figueiredo
On Fri, 12 Feb 2010 12:16:45 -0200, Jux wrote: This is how the the Dispatcher (AccessController) is set up: public static void bind(ServiceBinder binder) { binder.bind(AccessController.class).withId("AccessController"); } Shouldn't that work? If it wasn't added to the Maste

Re: Post parameters get removed from Request object

2010-02-12 Thread Jux
This is how the the Dispatcher (AccessController) is set up: public static void bind(ServiceBinder binder) { binder.bind(AccessController.class).withId("AccessController"); } Shouldn't that work? kristian.marinkovic wrote: > > how is your dispatcher contributed? > > if it on

Re: Post parameters get removed from Request object

2010-02-12 Thread Thiago H. de Paula Figueiredo
On Fri, 12 Feb 2010 07:33:09 -0200, Jux wrote: I also must add, that even though in Dispatcher, the request object have 0 parameters, the form gets submitted with all the right data in the application. I just want to add some additional application logic in the dispatcher and there I need

Re: Post parameters get removed from Request object

2010-02-12 Thread Jux
I also must add, that even though in Dispatcher, the request object have 0 parameters, the form gets submitted with all the right data in the application. I just want to add some additional application logic in the dispatcher and there I need to know what parameters were submitted. -- View this

Re: Post parameters get removed from Request object

2010-02-12 Thread Kristian Marinkovic
request. g, kris Jux 12.02.2010 10:21 Bitte antworten an "Tapestry users" An users@tapestry.apache.org Kopie Thema Re: Post parameters get removed from Request object In my .tml I have a element and inside that I have a custom component that just writes html: That co

Re: Post parameters get removed from Request object

2010-02-12 Thread Jux
In my .tml I have a element and inside that I have a custom component that just writes html: That component is not binded with any value object (web form object). The Dispatcher has a method: dispatch(Request request, Response response) and inside that I just ask that parameter: String value =

Re: Post parameters get removed from Request object

2010-02-12 Thread Kristian Marinkovic
hi, can you post some code? how is your dispatcher contributed? g, kris Jux 12.02.2010 09:58 Bitte antworten an "Tapestry users" An users@tapestry.apache.org Kopie Thema Post parameters get removed from Request object Hi I am not Tapestry developer and don't know if and w