[jboss-user] [JBoss Seam] - Re: 2.0.0 CR2 is out

2007-10-05 Thread rlhr
Is there any plan to fix that issue for 2.0.0GA? http://jira.jboss.org/jira/browse/JBSEAM-1770 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4092212#4092212 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4092212

[jboss-user] [JBoss Seam] - Re: 2.0.0 CR2 is out

2007-10-05 Thread rlhr
I'll have to be creative then :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4092218#4092218 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4092218 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Switching to Hibernate or not

2007-09-04 Thread rlhr
Hello, I started project using Seam-managed persistence context with JPA. Later I needed some of the hibernate feature, so I used the delegation pattern wherever I needed it | Session session = (Session)entityManager.getDelegate(); | session.persist(myEntity); |

[jboss-user] [JBoss Seam] - Re: Switching to Hibernate or not

2007-09-04 Thread rlhr
Thanks for the info :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4081100#4081100 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4081100 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Login Redirection

2007-08-29 Thread rlhr
I'm using JBoss4.2.0.GA with jboss-seam-CVS.2007-08-22_00-49-47 I have the following pages.xml configuration: | pages xmlns=http://jboss.com/products/seam/pages; |xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; |xsi:schemaLocation=http://jboss.com/products/seam/pages

[jboss-user] [JBoss Seam] - Re: Login Redirection

2007-08-29 Thread rlhr
It appeared I just forgot the following in components.xml | event type=org.jboss.seam.notLoggedIn | action expression=#{redirect.captureCurrentView}/ | /event | event type=org.jboss.seam.postAuthenticate | action

[jboss-user] [JBoss Seam] - Re: Render a without href using JSF

2007-08-20 Thread rlhr
I think the proper way of using and anchor tag with no source is to set the href to # | h:outputLink value=# | h:outputText value=Click on this link / | /h:outputLink | View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4075928#4075928 Reply to the

[jboss-user] [JBoss Seam] - java.lang.NoClassDefFoundError: com/vladium/emma/rt/RT

2007-08-17 Thread rlhr
Hello, I took the lastest build #125 (Aug 17, 2007 10:09:02 AM) this morning to check it out. I get the following exception: | 11:50:21,093 INFO [EARDeployer] Init J2EE application: file:/C:/Jboss/jboss-4.2.0.GA/server/test/deploy/test.ear/ | 11:50:23,609 WARN [ServiceController]

[jboss-user] [JBoss Seam] - Re: Seam 2, pages.xml and pageflow

2007-08-07 Thread rlhr
Sounds good. http://jira.jboss.org/jira/browse/JBSEAM-1770 Thanks a lot. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4071611#4071611 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4071611

[jboss-user] [JBoss Seam] - Re: Seam 2, pages.xml and pageflow

2007-08-06 Thread rlhr
Hi Pete, Did you get time to take a look at this? I really need this to work or at least to have a workaround. I'm willing to look into it but I'll need some hints. If you have an idea what the problem is and what need to be done, I'll be happy to implements a fix and test it, then at least

[jboss-user] [JBoss Seam] - Re: Seam 2, pages.xml and pageflow

2007-08-01 Thread rlhr
Thanks Pete. I actually tries all the following variant in pages.xml with no success: 1: | page view-id=/animalPage.xhtml | navigation evaluate=#{navigation.outcome} | | ... | where #{navigation.outcome} returns outcome - redirection to /animalPage.xhtml (which doesn't exist)

[jboss-user] [JBoss Seam] - Re: Seam 2, pages.xml and pageflow

2007-08-01 Thread rlhr
I forgot one case: 5: | page view-id=/animalPage.xhtml action=#{navigation.animalOutcome} | navigation evaluate=#{navigation.outcome} | ... | where #{navigation.animalOutcome} returns outcome and #{navigation.outcome} returns outcome - We enter a loop where action is called

[jboss-user] [JBoss Seam] - Re: Seam 2, pages.xml and pageflow

2007-08-01 Thread rlhr
I uploaded a very simple app built from a seam example. No need for database setup. There is a readme file explaining what to do. But in short, just unzip the navigation.zip from in http://www.jboss.com/wiki/Wiki.jsp?page=JBossSeam into the examples directory of Seam 2.0.Beta and build it as

[jboss-user] [JBoss Seam] - Re: I'm back

2007-07-31 Thread rlhr
Another Pages.xml topic. I'd like to have someone looling at the last reply I posted and tell me their thoughts on it: http://www.jboss.com/index.html?module=bbop=viewtopict=114237 Thanks :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069254#4069254 Reply

[jboss-user] [JBoss Seam] - Re: Seam 2, pages.xml and pageflow

2007-07-30 Thread rlhr
So I'm still struggling with that issue. I created a small example based on the numberguess example that reproduce the problem (zip file available if needed). I have the following classes: | @Name(user) | @Scope(ScopeType.CONVERSATION) | public class User implements Serializable { |

[jboss-user] [JBoss Seam] - Re: Seam 2, pages.xml and pageflow

2007-07-27 Thread rlhr
So I finally fixed my problem. I had to use: | page view-id=/flow/itemSelection.xhtml | navigation evaluate=#{flow.itemSelectionOutcome} | rule if-outcome=listA | redirect view-id=/flow/A/itemSelection.xhtml/ | /rule | rule

[jboss-user] [JBoss Seam] - Breaking Pages.xml into multiple files

2007-07-27 Thread rlhr
I was used to have multiple faces-config.xml files. Now I'm trying to use pages.xml instead and this is also supported for pages.xml? For instance, configuring a pages components that would take a list of pages definition files. View the original post :

[jboss-user] [JBoss Seam] - Re: Breaking Pages.xml into multiple files

2007-07-27 Thread rlhr
That's just perfect, thanks :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4068347#4068347 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4068347 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Seam 2, pages.xml and pageflow

2007-07-26 Thread rlhr
I'd appreciate any help to debug this problem. Maybe I'd doing something wrong... Where should I put a breakpoint in Seam to get a chance to understand while I get into that loop? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4067841#4067841 Reply to the

[jboss-user] [JBoss Seam] - Re: Seam 2, pages.xml and pageflow

2007-07-26 Thread rlhr
I still don't understand why it is not working, but here is what I found out. After the transition (false), we go to the page /flow/itemSelection.xhtml That page is defined on pages.xml as: | page view-id=/flow/itemSelection.xhtml action=#{flow.itemSelectionOutcome} / | The action is

[jboss-user] [JBoss Seam] - Seam 2, pages.xml and pageflow

2007-07-23 Thread rlhr
After moving to Seam 2, I have a pageflow that goes into infinite loop. I have the following pageflow definition: |decision name=isItemDefined expression=#{myFlow.isItemDefined} | transition name=true to=itemPage/transition | transition name=false

[jboss-user] [JBoss Seam] - Re: Seam 2 migration and core:resource-bundle

2007-07-22 Thread rlhr
Thanks for the help. I think http://jboss.com/products/seam/core-2.0.xsd needs also to be updated. The tag definition is not in there yet :) Richard View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4066474#4066474 Reply to the post :

[jboss-user] [JBoss Seam] - Seam 2 migration and core:resource-bundle

2007-07-20 Thread rlhr
hello, I'm finally migrating from Seam 1.2.1GA to Seam 2.0 (took the last version from CVS) I followed the migration guide and everything went fine. I started my application and got the exception below. It seems that the core:resource-bundle component is not working as described in the doc

[jboss-user] [JBoss Seam] - s:formattedText / doesn't render quote on IE

2007-07-10 Thread rlhr
Hello, I'm using Seam 1.2.1GA. Maybe this has been fixed on Seam2 but I wasn't able to try it yet. The s:formattedText / tag replaces any instance of double quote by a q tag tag. This work fine with Firefox but unfortunately Internet Explorer ignores the tag and doesn't render any quote at

[jboss-user] [JBoss Seam] - Re: @Unwrap question

2007-07-07 Thread rlhr
As far as I know, one difference is the way you are going to access your object. If you use @Factory, you'll have to access it through the bean: #{myBeanName.myMethodName} (any first reference to myBeanName will trigger a call to the factory method) Using unwrap, you directly use the bean

[jboss-user] [JBoss Seam] - Re: page action not called when login-required=

2007-07-04 Thread rlhr
I'm not quite ready to switch to Seam2 now, so I will look as soon as I can and let you know. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4060532#4060532 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4060532

[jboss-user] [JBoss Seam] - page action not called when login-required=true

2007-07-03 Thread rlhr
Hello, This is about the issue: http://jira.jboss.org/jira/browse/JBSEAM-1157 Is it going to be fixed in Seam2? Regards, Richard View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4060216#4060216 Reply to the post :

[jboss-user] [JBoss Seam] - Multiple jpdl.xml files for complex pageflow

2007-07-03 Thread rlhr
Hello, I have a rather complex pageflow that separate in multiple distinct branches at one point. Instead of describing the entire flow in one single file, I was wondering if there is a way to break the file into mutiple files that will contain only portion of the flow? Regards, Richard

[jboss-user] [JBoss Seam] - Possible new heature in Remoting?

2007-04-26 Thread rlhr
Hello, I'd like to be able to associate a context to the callback method. At this point, we perform a remote call as: | Seam.Component.getInstance(myComponent).myMethod(param1, myCallback); | I have the need for something like: | Seam.Component.getInstance(myComponent).myMethod(param1,

[jboss-user] [JBoss Seam] - Exception when page is re-rendered after missing required fi

2007-04-18 Thread rlhr
hello, I'm using jboss-4.2.0.CR1 and jboss-seam-CVS.20070416. This flow was working fine with jboss-4.0.5.GA and previous version of Seam I have xhtml page containing multiple required fields. The page is part of a page flow. If I click the next button without filling out the required field,

[jboss-user] [JBoss Seam] - Re: Exception when page is re-rendered after missing require

2007-04-18 Thread rlhr
So I got the lasted from cvs and built Seam (the build doesn't seem to be broken anymore, I had no problem). Replaced all the Seam jar in my project by the new ones. Replaced jboss-el.jar in my project by the one found in jboss-seam/lib folder. I still get the same exception though. View the

[jboss-user] [JBoss Seam] - Re: About the s:selectDate / tag

2007-04-18 Thread rlhr
I know this is not that exciting, but any comment on this? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4038570#4038570 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4038570 ___

[jboss-user] [JBoss Seam] - Re: Exception when page is re-rendered after missing require

2007-04-18 Thread rlhr
Actually, lastest from CVS + jboss-4.2.0.CR2 fix it :) (I was still using jboss-4.2.0.CR1 earlier) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4038575#4038575 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4038575

[jboss-user] [JBoss Seam] - Re: Exception when page is re-rendered after missing require

2007-04-18 Thread rlhr
Actually I spoke too fast. The page is re-rendered properly this time, but the log still has the exception. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4038579#4038579 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Exception when page is re-rendered after missing require

2007-04-18 Thread rlhr
Here is the new exception stacktrace: | 13:37:09,953 ERROR [STDERR] java.lang.ClassNotFoundException: No ClassLoaders found for: com.app.ui.util.ELUtils | 13:37:09,953 ERROR [STDERR] at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:306) | 13:37:09,953 ERROR [STDERR]

[jboss-user] [JBoss Seam] - Re: Exception when page is re-rendered after missing require

2007-04-18 Thread rlhr
In development, the class is under project.ear/project.war/WEB-INF/classes/... in the Jboss deploy folder. In production mode, the jar is in the war file under WEB_INF/lib. And the war file is in the ear file that is itself in the Jboss deploy folder. I tried both (ear file and exploded) just

[jboss-user] [JBoss Seam] - Re: Exception when page is re-rendered after missing require

2007-04-18 Thread rlhr
So I move that particular class in the jar that contains the ebj and I don't see the exception anymore. So it seems that being in the war file is the problem. I guess I'll keep that class there (It was in the war because I only use this class in custom functions through tags) View the original

[jboss-user] [JBoss Seam] - Re: Exception when page is re-rendered after missing require

2007-04-18 Thread rlhr
Yes it would be nice to be able to keep it in the war. But for now I think I can live having it with the ebj :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4038621#4038621 Reply to the post :

[jboss-user] [JBoss Seam] - Re: About the s:selectDate / tag

2007-04-18 Thread rlhr
http://jira.jboss.org/jira/browse/JBSEAM-1208 I agree with you that it is not critical, especially if it becomes deprecated. Actually I will try the RichFaces date control. As long as it does the job, I'm fine with it. And if it doesn't, then I'll file bugs to the RichFaces guys :) View the

[jboss-user] [JBoss Seam] - Re: Seam CVS now on JBoss AS 4.2 CR1

2007-04-17 Thread rlhr
Two things that are broken moving to JBoss AS 4.2 CR1 (This is not due to JBoss or Seam, but from switching from MyFaces the Sun JSF implementation) - TinyMCE: the content of the textarea is not saved. I have to investigate was going on there. - form submission: when posting a form like:

[jboss-user] [JBoss Seam] - Re: Seam CVS now on JBoss AS 4.2 CR1

2007-04-17 Thread rlhr
The progressbar (remoting) is broken in JBoss AS 4.2 CR1. This is due to what I mentioned earlier. | h:form onsubmit=queryProgress();return true; | | h:commandButton style=width:80px value=Go! action=#{progressBarAction.doSomething} class=button/ | | /h:form |

[jboss-user] [JBoss Seam] - Re: Seam CVS now on JBoss AS 4.2 CR1

2007-04-17 Thread rlhr
Actually the progressbar works fine (it uses a commandButton and not a link). So just in case, some have this broken too, the fix is fairly easy for a commandLink. Just remove the form.onclick method and write an onclick method for the commandLink tag (See spec). View the original post :

[jboss-user] [JBoss Seam] - Re: Email and internationalization

2007-04-16 Thread rlhr
Using JBoss AS 4.2 CR1 fixed the problem :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4037727#4037727 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4037727 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Email and internationalization

2007-04-12 Thread rlhr
So after a little debugging, it seems that the problems lies in the UISubject.encodeChildren method. |@Override |public void encodeChildren(FacesContext facesContext) throws IOException |{ | try | { | String subject = encode(facesContext,

[jboss-user] [JBoss Seam] - Re: Email and internationalization

2007-04-12 Thread rlhr
I created http://jira.jboss.org/jira/browse/JBSEAM-1177 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4036838#4036838 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4036838 ___

[jboss-user] [JBoss Seam] - Re: Email and internationalization

2007-04-11 Thread rlhr
Right, but I'm using the cvs version I built myself from later that day. So I'm going to try to use the lastest just in case I don't have your fix. I saw there are few changes in the jars for the latest build. Any hint about it? View the original post :

[jboss-user] [JBoss Seam] - Re: Email and internationalization

2007-04-11 Thread rlhr
Well, I took today's build and still have the same problem... The email template is defined as followed: | ?xml version=1.0 encoding=ISO-8859-1 ? | m:message xmlns=http://www.w3.org/1999/xhtml; |xmlns:m=http://jboss.com/products/seam/mail; |

[jboss-user] [JBoss Seam] - Re: Email and internationalization

2007-04-10 Thread rlhr
So I added charset=ISO-8859-1 to the template but still it doesn't work for the subject. I'm still using the build from 4/5/2007 because it seems that a lot is going on in the last builds and I'm not quite sure how to properly setup the application... View the original post :

[jboss-user] [JBoss Seam] - Re: About Identity login

2007-04-09 Thread rlhr
Overriding the message work fine. So I guess there is no need for a JIRA issue. Thanks a lot. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035728#4035728 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035728

[jboss-user] [JBoss Seam] - Re: Email and internationalization

2007-04-09 Thread rlhr
here is my email template: | ?xml version=1.0 encoding=ISO-8859-1 ? | m:message xmlns=http://www.w3.org/1999/xhtml; | xmlns:m=http://jboss.com/products/seam/mail; | xmlns:h=http://java.sun.com/jsf/html; | xmlns:f=http://java.sun.com/jsf/core; |

[jboss-user] [JBoss Seam] - Re: Email and internationalization

2007-04-09 Thread rlhr
I should add that EMAIL_TEST_SUBJECT and EMAIL_TEST_BODY are defined in a properties file and contains non utf8 characters. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035735#4035735 Reply to the post :

[jboss-user] [JBoss Seam] - page action not called when login-required=

2007-04-09 Thread rlhr
hello, I try to achieve the following behavior. When a user want to see his account, he will be directed an account page that depends on certain user information. The account page is in the restricted area that requires login. So when the user click on a View account link, I'd like to go first

[jboss-user] [JBoss Seam] - Re: page action not called when login-required=

2007-04-09 Thread rlhr
yes, I use the Security framework (jboss-seam-1.2.1.GA) which works great except for that particular case. http://jira.jboss.org/jira/browse/JBSEAM-1157 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035858#4035858 Reply to the post :

[jboss-user] [JBoss Seam] - About Identity login

2007-04-06 Thread rlhr
hello, I have a pageflow in which the user can choose to login. I'm using Seam security framework and I set the action of the login button to #{identity.login}. When the login is successful, the user sees the next page of the flow. The page of the flow are all using a template that contains

[jboss-user] [JBoss Seam] - Email and internationalization

2007-04-05 Thread rlhr
Hello, Non UTF8 characters in the subject line are not rendered properly: For instance the word 'Café' becomes 'Caf# 233;' The email body is fine. Is this a bug or I'm missing something? Thanks, Richard View the original post :

[jboss-user] [JBoss Seam] - Re: Email and internationalization

2007-04-05 Thread rlhr
I tried jboss-seam-CVS.20070405 and still see the problem. Is the fix in that build or is it going to be in the next build? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035164#4035164 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Email and internationalization

2007-04-05 Thread rlhr
I'm afraid the fix didn't do it. I still get the same problem. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035177#4035177 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035177

[jboss-user] [JBoss Seam] - About the s:selectDate / tag

2007-04-03 Thread rlhr
hello, I'm using jboss-seam-CVS.20070402 build. I noticed 2 behaviours that should be changed IMO. First when the calendar is open, the user can click anywhere to close it but on the calendar icon. A click to this icon will close the calendar and reopen it right away. I find it a little

[jboss-user] [JBoss Seam] - fileUpload styleClass attribute is not rendered properly

2007-03-31 Thread rlhr
Hello, I'm using Seam 1.2.1GA When using the s:fileUpload / styleClass attribute, a styleClass attribute is rendered instead of a class attribute. I haven't checked the latest build, so maybe this is already fixed. Richard View the original post :

[jboss-user] [JBoss Seam] - Re: fileUpload styleClass attribute is not rendered properly

2007-03-31 Thread rlhr
In org.jboss.seam.uiUIFileUpload, line 147: | writer.writeAttribute(HTML.STYLE_CLASS_ATTR, styleClass, null); | should be (I believe): | writer.writeAttribute(HTML.CLASS_ATTR, styleClass, null); | View the original post :

[jboss-user] [JBoss Seam] - Re: Weird behaviour with outjection

2007-03-06 Thread rlhr
So I'm finally back to this issue and narrowed down the problem. I have 2 SFSB named testAction (defined in previous post) and anotherAction that actually outject the User bean. The scope of both SFSB is conversation and the outjection on both SFSB is defined as: | @Out(required=true) |

[jboss-user] [JBoss Seam] - Re: Weird behaviour with outjection

2007-02-27 Thread rlhr
It is called by clicking a link (h:outputLink / that call the page /home.xhtml. So I checked that the view method is properly called and the id of the user is properly passed, the user retrieved and set. The interesting thing is that I added a getTest() method to the SFSB that just return a

[jboss-user] [JBoss Seam] - Weird behaviour with outjection

2007-02-26 Thread rlhr
Hello, I'm using jboss-seam-1.1.7.RC1 with jboss-4.0.5.GA. I have a SFSB defined as followed: | @Stateful | @Name(testAction) | @Scope(ScopeType.CONVERSATION) | public class TestAction implements Test { | | @In(create=true) | private EntityManager entityManager; |

[jboss-user] [JBoss Seam] - Problem reaching oujected object in the EVENT context

2007-01-31 Thread rlhr
Hello, I'm using jboss-4.0.5.GA and jboss-seam-1.1.1.GA. I define in pages.xml the following: | page view-id=/public/browseAction.xhtml action=#{browseAction.perform} / | The action bean is defined by: | @Stateless | @Name(browseAction) | @Scope(ScopeType.EVENT) | public

[jboss-user] [JBoss Seam] - Re: Problem reaching oujected object in the EVENT context

2007-01-31 Thread rlhr
Actually I focused on getResults to describe the problem, but the same happen to browseAction.category. It is not null at first and then it goes null. What I don't understand is why while rendering the page, we lose the context... View the original post :

[jboss-user] [JBoss Seam] - Re: Problem reaching oujected object in the EVENT context

2007-01-31 Thread rlhr
I get the same problem with Page scope. I don't think this is a context issue, because I do get the right values at first. I'll try to investigate to find out what's going on. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4008786#4008786 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Problem reaching oujected object in the EVENT context

2007-01-31 Thread rlhr
Actually I must be tired! Since I outject the value, I should not access it as #{browseAction.results} but directly as #{results} Since I used a SLSB, I guess I could still get the data for a while but that was luck. My bad :) View the original post :

[jboss-user] [JBossCache] - Re: Good Practice

2007-01-17 Thread rlhr
Thanks for your advice View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4002897#4002897 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4002897 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Seam, Hibernate and caching

2007-01-15 Thread rlhr
Hello, To use Hibernate second level of cache, these two lines must be added in the persistence.xml file: | property name=hibernate.cache.provider_class value=org.jboss.ejb3.entity.TreeCacheProviderHook / | property name=hibernate.treecache.mbean.object_name

[jboss-user] [JBoss Seam] - About pageflow

2007-01-04 Thread rlhr
Hello, I ran into some trouble trying to start properly a pageflow. First of all, let me explain the situation. I'm using JBoss 4.0.4GA with Seam 1.1.0GA I have a SFSB that is responsible for choosing a flow and start it. | @Begin | public void init() { | ... |

[jboss-user] [JBoss Seam] - Re: About pageflow

2007-01-04 Thread rlhr
Actually I spoke too early. The flow starts properly and bring the first page, but then from the first page, it doesn't go to the second page of the flow. It seems that the conversation is lost. I need to investigate more. View the original post :

[jboss-user] [JBoss Seam] - Re: About pageflow

2007-01-04 Thread rlhr
Done: http://jira.jboss.org/jira/browse/JBSEAM-635 Regards, Richard View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3998013#3998013 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3998013

[jboss-user] [JBoss Seam] - Re: Using ui:include with page action

2006-12-14 Thread rlhr
No I haven't a solution yet. When I get more time, I'll try to implement it and post it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3993721#3993721 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3993721

[jboss-user] [JBoss Seam] - Using ui:include with page action

2006-12-13 Thread rlhr
Hello, I'm using the facelets library composition tag and came up with the following need: | ui:composition xmlns=http://www.w3.org/1999/xhtml; | xmlns:ui=http://java.sun.com/jsf/facelets; | xmlns:h=http://java.sun.com/jsf/html; |

[jboss-user] [JBoss Seam] - Re: JSF requiredMessage does not work with seam bundle

2006-11-29 Thread rlhr
I ran in that problem few days ago while struggling with @NotNull validation. I then wanted to use the requiredMessage attribute and could not manage to have it work After looking at the code, I discovered that it is not implemented in myfaces-core-1.1.4! I don't know if there are any

[jboss-user] [JBoss Seam] - Re: JSF requiredMessage does not work with seam bundle

2006-11-29 Thread rlhr
You can look at these 2 links (they explained a lot about validations): http://www.jboss.com/index.html?module=bbop=viewtopict=90636 http://www.jboss.com/index.html?module=bbop=viewtopict=93507 So my understanding at this point is that the jsf framework will not call any validator when a value

[jboss-user] [JBoss Seam] - Re: i18n validation message during test

2006-11-26 Thread rlhr
Hello, I tried to setup custom messages for the hibernate validation annotation but without success yet. I have a ValidatorMessages.properties (defining all the default message for hibernate validators) file in my ear file so that I don't get an exception at server startup. All my properties

[jboss-user] [JBoss Seam] - Re: Using seam-gen with JBoss IDE (Eclipse), where are all t

2006-11-26 Thread rlhr
Hi Ellen, So I downloaded the beta version and everything seemed fine until I tried to run the server (in debug mode or not). The server and the webapp seem to start fine from what I see in the console, but the web app is not reachable from the browser... Did you run into anything like this?

[jboss-user] [JBoss Seam] - Re: Using seam-gen with JBoss IDE (Eclipse), where are all t

2006-11-26 Thread rlhr
I think something goes wrong at one point. The CPU usage stays close to 100% even after the server is done starting. I'll investigate and try to find out what's going on. Maybe some options is not setup properly... View the original post :

[jboss-user] [JBoss Seam] - Re: Using seam-gen with JBoss IDE (Eclipse), where are all t

2006-11-26 Thread rlhr
So I reinstalled the all-in-one bundled and set up the project again. I think I must have done something wrong configuring the project earlier, but I don't know why :) Now everything work great. Thanks View the original post :

[jboss-user] [JBoss Seam] - Re: i18n validation message during test

2006-11-26 Thread rlhr
Hi Pierre, Thanks for the link, I'm going to take a look at it. Richard View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3988685#3988685 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3988685

[jboss-user] [JBoss Seam] - Re: Using seam-gen with JBoss IDE (Eclipse), where are all t

2006-11-25 Thread rlhr
Hi Ellen, This is off Seam topic, but since you mentioned using the lastest JBoss IDE, I would like to know if you encountered any problem yet. I was thinking about giving it a try, so I'm interested to know about what you think. Thanks, Richard View the original post :

[jboss-user] [JBoss Seam] - Re: Using seam-gen with JBoss IDE (Eclipse), where are all t

2006-11-25 Thread rlhr
I realized I forgot to mentioned that I was already using JBoss IDE 1.6, and was thinking about switching to 2.0 (but being a beta version and knowing that 1.6 wasn't fully compatible with all the JBoss features, I was wondering if I should do the move yet). I'll give it a try and will use

[jboss-user] [JBoss Seam] - Re: Seam FileUpload Problem

2006-11-23 Thread rlhr
Yes this is a path from the local drive (/files in UNIX like system or C:\files for windows). Now I never looked into having that path relative to any server context. I suggest you look into the source to see if that's even possible. View the original post :

[jboss-user] [JBoss Seam] - Re: ELContext exception

2006-11-22 Thread rlhr
You need to add in your application.xml: | module | javael-api.jar/java | /module | module | javael-ri.jar/java | /module | And your ear file must contains these 2 jars along with your jboss-seam.jar I hope it helps. Richard View the original

[jboss-user] [JBoss Seam] - Re: Seam FileUpload Problem

2006-11-22 Thread rlhr
It is not your war that should contain a /files directory. The server running your application should have access to a /files path that already exists. This is the path where all the files will be uploaded and stored by the serveur. View the original post :

[jboss-user] [JBoss Seam] - Re: ICEfaces

2006-11-18 Thread rlhr
Does anyone know about the behaviour of ICEfaces in a clustered environment? From what I read, the Enterprise Edition work well in cluster. Now it seems to me that the Community Edition does too (but since their sale speech is based on the cluster support for the Enterprise version, they are not

[jboss-user] [JBoss Seam] - Re: What do you guys think of this idea?

2006-11-17 Thread rlhr
In my opinion, I usually like to keep different things in different files. In a large application, it is nice to be able to split a page.xml file so that each file groups related definitions. It can be also nice to have the flexibility to have these differents page.xml in various location as

[jboss-user] [JBoss Seam] - Re: Road Map

2006-11-17 Thread rlhr
I went through the road map and I must say I'm really excited to what's coming up :) Thanks a lot for the hard and good work. Richard View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3986759#3986759 Reply to the post :

[jboss-user] [JBoss Seam] - Re: ICEfaces

2006-11-14 Thread rlhr
I just took a look at the ICEfaces web site and I believe that having it integrated with seam would be great. That's great news! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3985966#3985966 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Beta 2: exception resolving EL expression

2006-11-12 Thread rlhr
Done. http://jira.jboss.org/jira/browse/JBSEAM-494 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3985189#3985189 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3985189 ___

[jboss-user] [JBoss Seam] - Beta 2: exception resolving EL expression

2006-11-11 Thread rlhr
I'm using a function that calculate the key to be passed to messages: h:outputText value=#{messages[pc:getKey(context, bean.name)]} / | This was used to work in Beta 1 but is broken in Beta 2. I didn't change anything to my code, do I need some change with the new version? The exception is:

[jboss-user] [JBoss Seam] - Cleanup when a conversation expires

2006-11-08 Thread rlhr
Hello, I have a conversation that goes through several steps. During one step, files can be uploaded. When the user finished the flow, the @end methods is called, and an entity is persited into the database (with the info how to retrieve the uploaded files in the file system). Now if the user

[jboss-user] [JBoss Seam] - Re: Cleanup when a conversation expires

2006-11-08 Thread rlhr
Yes it seems to be the obvious solution since there is no easy way to detect the conversation expiration. Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3984329#3984329 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Application Startup Actions

2006-11-08 Thread rlhr
I have a couple of components accessing the database and caching data for the application. I didn't get any trouble moving from Seam 1.0 to Seam 1.1 They are defined as follow: | @Scope(ScopeType.APPLICATION) | @Name(someComponent) | public class SomeComponent { | |@Create |

[jboss-user] [JBoss Seam] - Re: Application Startup Actions

2006-11-08 Thread rlhr
That's right, I'm not using the @Startup annotation. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3984412#3984412 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3984412 ___

[jboss-user] [JBoss Seam] - Re: Application Startup Actions

2006-11-08 Thread rlhr
Actually I do. I think the previous code is not the one I intended to copy. Here is what I use: | @Scope(ScopeType.APPLICATION) | @Intercept(InterceptionType.NEVER) | @Startup(depends = {pojoCache}) | @Name(resourcesManager) | public class ResourcesManager { | | private static

[jboss-user] [JBoss Seam] - Re: java.lang.UnsupportedOperationException

2006-10-18 Thread rlhr
Works fine in jboss-seam-CVS.20061018 Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3979042#3979042 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3979042 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: java.lang.UnsupportedOperationException

2006-10-17 Thread rlhr
In build jboss-seam-CVS.20061016 I get this: java.util.NoSuchElementException | at org.jboss.seam.util.EnumerationEnumeration.nextElement(EnumerationEnumeration.java:34) | at org.jboss.seam.core.Messages$1.entrySet(Messages.java:87) | at

[jboss-user] [JBoss Seam] - Re: java.lang.UnsupportedOperationException

2006-10-17 Thread rlhr
I'll check the next build then :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3978774#3978774 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3978774 ___ jboss-user mailing list

  1   2   >