[jboss-user] [JBoss Seam] - Re: Parameters and @Factory

2007-12-21 Thread amorfis
But this old values are used when @Factory method is called, and then new values are set. This is not what I want, I need @Factory to be called after setting new values. How can I do it? And why "blog" example behaves differently? View the original post : http://www.jboss.com/index.html?module=

[jboss-user] [JBoss Seam] - Parameters and @Factory

2007-12-20 Thread amorfis
Hi, This is something I made based on "blog" example from seam 2.0.0GA (the one I use). I have such component in my app: @Name("search") | public class SearchBean { | | private String province; | | private String category; | | @Factory("searchResults") | publi

[jboss-user] [JBoss Seam] - Re: @Factory method kills my @In fields

2007-12-20 Thread amorfis
As far as I understand this, exception is thrown because testEntity is not initialized. I don't see any relation to @Factory here. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114827#4114827 Reply to the post : http://www.jboss.com/index.html?module=bb&op=

[jboss-user] [JBoss Seam] - Re: Redirect and GET parameters

2007-12-12 Thread amorfis
I read the documentation. I have something like | | in my pages.xml. Is this what you meant? If not, please give me some more hints. Best regards Pawel Stawicki View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4112200#4112200 Reply to the post : htt

[jboss-user] [JBoss Seam] - Redirect and GET parameters

2007-12-12 Thread amorfis
Hi, There is page in my application with list of articles. I want to put there also links to articles, but I want to use redirect, for user to bookmark article page. Unfortunately I have problems putting this parameter into URL. In pages.xml I have something like this: | | |

[jboss-user] [JBoss Seam] - Re: trouble with h:commandLink and f:param...

2007-12-11 Thread amorfis
doesn't s:link submit form too? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4112156#4112156 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4112156 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Simple Action Redirect with Parameters

2007-12-11 Thread amorfis
I have similar problem. Is your parameter passed in URL, can you see it there? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4112155#4112155 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4112155

[jboss-user] [JBoss Seam] - Re: Eclipse JbossIDE - how to get pageflow editor?

2007-12-10 Thread amorfis
Ok, I just found it :) I need to right click xml file in eclipse, then list of available editors appears. There is no pageflow editor, but there is option "Other..." - and there I can find it :) Regards Pawel Stawicki View the original post : http://www.jboss.com/index.html?module=bb&op=viewto

[jboss-user] [JBoss Seam] - Eclipse JbossIDE - how to get pageflow editor?

2007-12-10 Thread amorfis
Hi, I have eclipse and I installed JbossIDE. I still cannot edit pageflow in graphical mode. What should I do? Is there some tutorial maybe? Regards Pawel Stawicki View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4111795#4111795 Reply to the post : http://www

[jboss-user] [JBoss Seam] - Re: What to do to make @Factory method working?

2007-12-04 Thread amorfis
Ok, it looks like seam was not even started. I had put jboss-seam.jar file to web module to WEB-INF/lib. Now when I moved it to main project it is starting, but another problem occurs. When seam tries to instantiate it's component (one with @Name annotation) I get exception with "No application

[jboss-user] [JBoss Seam] - Re: What to do to make @Factory method working?

2007-12-03 Thread amorfis
"Andy Gibson" wrote : Do you have your bean setup as a seam component with a @Name annotation? It should be like : | | | | @Name("articleManager") | | @Scope(ScopeType.Conversation) | | public class ArticlesManagerBean ... { | | | | @Factory("article") | | p

[jboss-user] [JBoss Seam] - What to do to make @Factory method working?

2007-12-02 Thread amorfis
Hi, I have an enterprise application, and web module inside. In this module, I have some jsf page, in which I am referring to #{article.title}. I have also ArticlesManagerBean with @Factory("article") method and private variable article. In this method I am initializing variable. It should be c