[jboss-user] [JBoss Seam] - Re: s:fragment in dataTable

2007-04-20 Thread petemuir
Not really, this is just JSF ;) Better errors/warnings for this kind of thing are on the cards for JSF 2. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4039446#4039446 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4039446

[jboss-user] [Messaging, JMS JBossMQ] - Re: confirming that referential integrity is not possible.

2007-04-20 Thread genman
Er, the SQL statements are in the .xml file, the order and use are in the class file. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4039449#4039449 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4039449

[jboss-user] [JBoss Seam] - Re: s:fragment in dataTable

2007-04-20 Thread [EMAIL PROTECTED]
Well I hope that this post helps someone who got as frustrated as myself. tis like second nature to do this: | h:column | s:fragment rendered=#{eachDisplayableCategory.refined} |

[jboss-user] [JBoss Seam] - Re: Integrating Tomahawk with Seam

2007-04-20 Thread atao
anonymous wrote : | I was thinking perhaps we need to add the configuration to JBoss not our app, since the MyFaces stuff is in JBoss but I couldnt find anything on the JBoss site except in some forums people say they do have this configured. | Tomahawk works fine with application

[jboss-user] [JBoss Seam] - Seems to be a bug

2007-04-20 Thread KoniKoni
Environment jboss as 4.2.0CR2, seam 1.2.1 cvs today. Value of selectOneMenu will not be set: 1. |@In(required=false) | @Out(required=false) | private Kfz kfz; | | @DataModel | private ListKfz bearbkfzList; | |@Begin(join=true) | public String

[jboss-user] [JBossCache] - Re: Node locking question

2007-04-20 Thread genman
Look at this example: http://labs.jboss.com/file-access/default/members/jbosscache/freezone/docs/1.4.0/TreeCache/en/html/transactions.html View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4039457#4039457 Reply to the post :

[jboss-user] [JBoss Seam] - Re: How To Cancel Update in Home Object

2007-04-20 Thread gzoller
Many thanks for the tip. No, this isn't quite what I'm after, but it looks quite handy for something else, so much obliged. I finally got the old/new thing working by simply holding a transient property that is saved off in the setter of the field I want to access old/new values for. View

[jboss-user] [JBoss Seam] - Using enhanced EL

2007-04-20 Thread twocoasttb
When selecting an entity from a list (like in the hotel booking example), does the source of the list have to be a DataModel? The following isn't working for me: rich:dataTable id=users value=#{organizationUsers.resultList} var=u | f:facet name=footer | s:link

[jboss-user] [JBoss Seam] - @PersistenceUnit in error: EMPTY STRING unitName

2007-04-20 Thread anarinsky
I am trying to use TestNG in my application. When I included resources into the application classpath I received the following exception: java.lang.RuntimeException: Field private javax.persistence.EntityManager com.scea.sp8.ProjectAddBean.em @PersistenceUnit in error: EMPTY STRING unitName

[jboss-user] [JBoss Seam] - Re: Conversation binding workaround

2007-04-20 Thread petemuir
Exactly. @Name(binding) | @Scope(EVENT) | public class Binding { | // Do your binding here | } @Name(numberGuess) | @Scope(ScopeType.CONVERSATION) | public class NumberGuess implements Serializable { | |@In Binding binding | |// Do work on the binding in your method

[jboss-user] [JBoss Seam] - Conversation Id in custom servlet

2007-04-20 Thread dustismo
Hello, I have a custom servlet that serves custom generated graphs (many of them per page). I notice that every time there is a request to the servlet a new conversation is created, even though I am passing the conversationId to the servlet. My page code looks like: | h:graphicImage

[jboss-user] [JBoss Seam] - Is there an easy way to create a pulldown with all available

2007-04-20 Thread zzztimbo
I have a more specific question about how to create a pull down with all available time zones. There is localeSelector.supportedLocales that gives me available locales so that I can populate my selectItems, but is there something similar for TimeZone? View the original post :

[jboss-user] [JBoss Seam] - What is the difference between EJB and POJO transactions?

2007-04-20 Thread grettke_spdr
Reading the excellent Yuan/Heute book, he talks about the fact that transactions are enabled by default for all EJB 3 session beans. The transaction begins when the conversation begins, and ends when the conversation ends. It goes on to talk about POJO transactions, this is where it gets a bit

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Query with Order By Statement fails with EJBException:Nu

2007-04-20 Thread fhh
task.project could evaluate to null. Regards Felix View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4039480#4039480 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4039480 ___

[jboss-user] [JBoss Seam] - Re: Conversation Id in custom servlet

2007-04-20 Thread [EMAIL PROTECTED]
Are you using the ContextFilter? And is your conversation-id-parameter really conversationId, or is it something else? (e.g. cid) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4039481#4039481 Reply to the post :

[jboss-user] [JBoss jBPM] - Integrating jBPM - DuplicateMappingException

2007-04-20 Thread dilipdalton
We are looking at integrating a workflow engine into our product and I am currently investigating jBPM. I am having some problems trying to integrate the jBPM library into our existing JBoss application. Our existing application uses Hibernate. I get a DuplicateMappingException with jBPM

[jboss-user] [JBoss Seam] - Re: Handling Expired Password Best Practice

2007-04-20 Thread [EMAIL PROTECTED]
How about something like this? page view-id=/home.xhtml | navigation from-action=#{identity.login} | rule if=#{user.passwordExpired} | redirect view-id=/changepassword.xhtml/ | /rule | rule if-outcome=loggedIn |

[jboss-user] [JBoss Seam] - Re: HowTo: When going to a page to enter data, pull from db

2007-04-20 Thread saeediqbal1
CptnKirk wrote : | | For the most part though, if I'm simply going to initialize a variable that I'll use later within a controller's action method, putting the @Factory on a method within the controller is the way I go. Where would you initialize the variable? In the same object right?

[jboss-user] [JBoss Seam] - Re: HowTo: When going to a page to enter data, pull from db

2007-04-20 Thread saeediqbal1
Awesome it worked first time i tried. OK i have a suggestion or just brainstorming for what was produced initially by seam-gen in my code. For example in the xhtml it had this s:decorate id=entryaDecoration template=layout/edit.xhtml | ui:define name=labelentrya/ui:define

[jboss-user] [JBoss Seam] - Re: Handling Expired Password Best Practice

2007-04-20 Thread saeediqbal1
shane you coming to java one? who will come from jboss seam team? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4039487#4039487 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4039487

[jboss-user] [JBoss Seam] - Re: Integrating Tomahawk with Seam

2007-04-20 Thread aront54
As noted in my post, I added the mappings to my web.xml and that just made my application crash. I tried both the servlet-name alternative and the url-pattern one. Does the tomahawk,jar have to be in the web-inf/lib director or is it sufficient that its in the server--jbossas-tomcat-- lib

[jboss-user] [JBoss jBPM] - How to integrate jboss-jbpm with myeclipse

2007-04-20 Thread trekker880
hi all, i am facing the problem to switch to the jbpm view in myeclipse. can anybody sort it out how to switch to the view specifice to the jbpm. thanks in advance View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4039490#4039490 Reply to the post :

<    1   2   3