Re: Request can't identify

2011-09-12 Thread Thiago H. de Paula Figueiredo
On Mon, 12 Sep 2011 16:38:09 -0300, Lenny Primak wrote: Also, tapestry annotations only work in the tapestry module package, i.e. .{components,pages,mixins} etc. Make sure your tapestry filter points to the right package and you have them set up correctly. You can always use constructor

Re: Request can't identify

2011-09-12 Thread Lenny Primak
Also, tapestry annotations only work in the tapestry module package, i.e. .{components,pages,mixins} etc. Make sure your tapestry filter points to the right package and you have them set up correctly. On Sep 12, 2011, at 1:06 PM, Steve Eynon wrote: > You may want to check you imports and check

Re: Request can't identify

2011-09-12 Thread Steve Eynon
You may want to check you imports and check you're using the Tapestry @Inject (assuming you're on T5.2.x) import org.apache.tapestry5.ioc.annotations.Inject; Steve. On 13 September 2011 01:01, Howard Lewis Ship wrote: > A little more source would be helpful, as would the version of > Tapestry

Re: Request can't identify

2011-09-12 Thread Howard Lewis Ship
A little more source would be helpful, as would the version of Tapestry you are using. On Mon, Sep 12, 2011 at 8:53 AM, Olga wrote: > Hello, it is my first project, because i have this question. > > I make Login page using Spring+Ibatis. In my service i have >    @Inject >    private Request requ

Request can't identify

2011-09-12 Thread Olga
Hello, it is my first project, because i have this question. I make Login page using Spring+Ibatis. In my service i have @Inject private Request request; but when i call request in function is null. Can you help me and tell me which annotation, properties etc i must to add to my project.