[jboss-user] [JBoss Seam] - Re: Gavin King: Bad tools of Seam is kill its uses!!!

2007-09-18 Thread cwash
[EMAIL PROTECTED] wrote : Max has a big list of ideas we came up with: | | http://jira.jboss.com/jira/secure/IssueNavigator.jspa?reset=truepid=10020resolution=-1component=12311179sorter/field=prioritysorter/order=DESC Cool stuff - wasn't expecting to see the Seam icon! View the original

[jboss-user] [JBoss Seam] - seam in a portal

2007-09-15 Thread cwash
I haven't had the opportunity to test this, but I imagine anyone with a pretty good understanding of how conversations are implemented could answer, so I pose it here first... In developing a BEA Portal application for a client, I've come across this idea of a refreshAction for a portlet -

[jboss-user] [JBoss Seam] - Re: seam in a portal

2007-09-15 Thread cwash
cwash wrote : BEA's solution for this is to set a property on the portlet called refreshAction that will get called in this scenario - if the page is refreshed your you switch to another page can come back. Sorry - writing this late-night if you can't tell... this should read if the page

[jboss-user] [JBoss Seam] - Re: Recommendation for layered architecture???

2007-06-26 Thread cwash
[EMAIL PROTECTED] wrote : Well, basically, I think these problem becomes much easier once you stop thinking in terms of what layers should I have, and start thinking in terms of what code do I have that is reusable when the client is not JSF, and what code do I have that is not reusable?, and

[jboss-user] [JBoss Seam] - Re: Migrate my current application to Seam?

2007-06-25 Thread cwash
anonymous wrote : Anyone care to share the typical architecture to be used in a Seam project. Take a look at some of the larger example projects in the Seam distribution. AppFuse provides you with some cool stuff right away, but definitely imposes many architectural and layering constraints on

[jboss-user] [JBoss Seam] - Re: Mail sending through Seam

2007-05-14 Thread cwash
anonymous wrote : | But if i call it as a seam component i.e if the class does not implement ActionHandler and i call the method, #{mail.sendmail} from a .xhtml file directly Renderer object gets assigned. | I might be wrong, but I think you need to have a component in order to inject

[jboss-user] [JBoss Seam] - Re: Injection of SESSION POJO into event/session scoped POJO

2007-05-14 Thread cwash
Maybe a dumb question, but first one that pops in my head is... do you have getters/setters for the User on your component? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045561#4045561 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Embedded EJB

2007-05-14 Thread cwash
There is an embedded EJB container available to you if you want to deploy Seam code that utilizes EJBs outside of an EJB container. If you follow most of the Seam tutorials, they have you set up JBoss with an EJB3 profile enabled, so you use JBoss's EJB container. So there is no need to use

[jboss-user] [JBoss Seam] - Re: Conversation processing another request error when using

2007-05-14 Thread cwash
anonymous wrote : The problem with that approach is that the proper value for requestDelay depends on the responsiveness of the server (which depends on load, hardware, etc). | | Would there be a way for seam to handle this more gracefully? This is an interesting question, if it's only a

[jboss-user] [JBoss Seam] - Re: Injection of SESSION POJO into event/session scoped POJO

2007-05-14 Thread cwash
anonymous wrote : I got it to work now. | Looks like the problem had to do with referencing the injected user object in the balance objects constructor. if the reference is done in a method other than the constructor, it works. Ah, cool... yeah I'm pretty sure everything works off of setter

[jboss-user] [JBoss Seam] - Re: Conversation processing another request error when using

2007-05-14 Thread cwash
reind wrote : Another alternative would be for A4J to just queue any new requests until the response has been received and only then send the newest request (discarding all those in the middle). That sounds good to me, but will the a4j guys go for it? View the original post :

[jboss-user] [JBoss Seam] - Re: submit on enter

2007-05-11 Thread cwash
anonymous wrote : | I could be wrong but I think seam finds the nearest command button and automagically presses that when you hit enter! | Shuffle the button round so that submit is nearest the password field. | Works for me! | I think you're right in that this is how JSF determines

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

2007-04-19 Thread cwash
petemuir wrote : Note that JBoss AS 4.2.0.CR2 is now out - CVS is running well on it :) FYI http://sourceforge.net/project/showfiles.php?group_id=22866package_id=16942release_id=491475 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4039111#4039111 Reply to

[jboss-user] [JBoss Seam] - security in UI

2007-03-23 Thread cwash
Sorry, this more of a JSF than Seam question... If I've got an arbitrary block of JSF code I'd like to hide based on some security API call, what is the best component to wrap it in and slap a render attribute on? h:panelGroup works, but is there anything better? View the original post :

[jboss-user] [JBoss Seam] - Re: security in UI

2007-03-23 Thread cwash
Wow I must be blind. RTFM -- anonymous wrote : The rendered attribute can generally be used on the control itself, or on a surrounding s:div or s:span control. Sorry for the noise! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031101#4031101 Reply to the

[jboss-user] [JBoss Seam] - Re: Audit Interceptor with State

2006-11-29 Thread cwash
I'm interested in this type of functionality, too. In the past I've used a Hibernate Interceptor and had an extension to my base model object that encapsulated the fields I wanted audited. I was able to do a type check in the interceptor code and persist the encapsulated audit log entries

[jboss-user] [JBoss Seam] - Re: Seam app on slashdot

2006-11-28 Thread cwash
ellenzhao wrote : i got a 404could you please fix the link? http://it.slashdot.org/it/06/11/28/2037237.shtml is the link to the story and http://www.10minutemail.com/ is the link to the app. View the original post :

[jboss-user] [JBoss Seam] - Re: how can I do optimistic locking with crud framework?

2006-11-17 Thread cwash
[EMAIL PROTECTED] wrote : I have just tested this and it all works. | | All I did was: | | (1) Added a version attribute | (2) set scope=conversation on contactHome (actually I will make this the default scope for a Home) | (3) put propagation=begin on the Edit link. I'm going to