[jboss-user] [JBoss Seam] - Re: tags not being rendered

2007-09-01 Thread jbenilov
To clarify the problem: when I access the page that I am working on, the links that are designated with the s:link Facelets tag have not been rendered. An inspection of the received HTML shows that the s:link tags have not been translated into real HTML tags, and remain as the s:link tag, whi

[jboss-user] [JBoss Seam] - Re: Problem with Seam mail

2007-09-01 Thread robin.hultman
Thank you very much! Now maybe I will be ready for the release on monday =) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080196#4080196 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080196 ___

[jboss-user] [JBoss Seam] - Re: Problems using ajax validation in seam-gen

2007-09-01 Thread vincent.latombe
I get the same result as Damian. There must be something wrong inside the handling of conversation View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080202#4080202 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080202 ___

[jboss-user] [JBoss Seam] - Re: tags not being rendered

2007-09-01 Thread [EMAIL PROTECTED]
No nothing to do with the filter. You've probably forgotten to declare the s: namespace at the top of your facelet (and make sure the jboss-seam-ui.jar is in WEB-INF/lib in your deployed project). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080203#4080203

[jboss-user] [JBoss Seam] - Re: naive seam developer tries eclipse

2007-09-01 Thread [EMAIL PROTECTED]
Also ask this in the JBoss Tools / RHDS forums View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080204#4080204 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080204 ___ jboss-us

[jboss-user] [JBoss Seam] - Re: Problems using ajax validation in seam-gen

2007-09-01 Thread vincent.latombe
The problem seems to lie in org.jboss.seam.core.Manager, method restoreAndLockConversation. The first call locks the conversation, the next ones can't lock it and are redirected to an error. Conversation should allow concurrent access, or at least wait for unlock instead of going to error handli

[jboss-user] [JBoss Seam] - newbie question about Seam

2007-09-01 Thread jiangliu
Hi everyone, I have generated a new problem by using Seam-gen, when i run the build script (for deploy) in Eclipse, the generated ear file always goes to: /Application/jboss-4.2.0.GA/blah, but my JBoss AS is installed at /Application/jboss-4.2.1.GA, how can i configure this build script to ge

[jboss-user] [JBoss Seam] - Re: Problems using ajax validation in seam-gen

2007-09-01 Thread vincent.latombe
In ConversationEntry : I tried to replace return lock.tryLock( Manager.instance().getConcurrentRequestTimeout(), TimeUnit.MILLISECONDS ); with | lock.lock(); | return true; | Which replacing the failing lock with a waiting lock. With the example from above with the loop, the flooding see

[jboss-user] [JBoss Seam] - Re: newbie question about Seam

2007-09-01 Thread [EMAIL PROTECTED]
"jiangliu" wrote : but my JBoss AS is installed at /Application/jboss-4.2.1.GA, how can i configure this build script to generate files and put them into the right place? Edit build.properties anonymous wrote : Also anther question, it seems like we have problem with the lastest version of Sea

[jboss-user] [EJB/JBoss] - Re: ClassCastException in JDBCMySQLCreateCommand

2007-09-01 Thread boniek
Same stuff here. JBossAS 4.2.1 JBM 1.4.0.CR2 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080210#4080210 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080210 ___ jboss-use

[jboss-user] [JBoss jBPM] - attach javascript to jpdl generated task form save button

2007-09-01 Thread rossputin
Hi, does anyone know a good way to attach a javascript function to a save button on a jpdl generated task form, so for example I can set a hidden input value with a value taken from a richfaces calendar input? On a similar note, is there a way I can do the same thing with a transition link on

[jboss-user] [JBoss jBPM] - Re: Help on Best Practice

2007-09-01 Thread tweedledee
Hi Jim, So what approach would you advocate in passing business-level exceptions back to the UI Layer? Regards, Paul. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080214#4080214 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mo

[jboss-user] [JBoss Seam] - Seam email problem

2007-09-01 Thread martin.krajci
Hi all, I'm trying to send an email using seam, but with exception. Seam version: 1.2.1GA Jboss AS version: 4.2.1.GA JSF version 1.2 SUN RI I have: 1) created mail-service.xml | java:/CechieMailService | martin.krajci | mypwd | | | |

[jboss-user] [JBoss jBPM] - Re: JBoss + JBPM + Mysql - Deployment is not going through

2007-09-01 Thread kukeltje
well, you *should* have *two*, but with different jndi names. one for DefaultDS and one for jBPMDS as martin stated. Besides that, I strongly advise you to learn the basics of JEE and appservers since I get the impression (no offence) you lack a great deal of knowledge in this area. View the

[jboss-user] [JBoss jBPM] - Re: attach javascript to jpdl generated task form save butto

2007-09-01 Thread kukeltje
ending a task will also save the data, so no need for this. Regaring the attaching of the javascript in general, I have no idea and unfortunately currently no time to investigate. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080217#4080217 Reply to the po

[jboss-user] [JBoss jBPM] - Re: Help on Best Practice

2007-09-01 Thread kukeltje
well, there are differences between engine exceptions and businessservice exceptions. The latter in our case were stored in specific processvariables called error__ they were used to direct the process (e.g. decisionnodes) to nodes where appropriate action could betaken. So that is kind of what

[jboss-user] [JBoss Seam] - End the existing and create new conversation

2007-09-01 Thread amitev
Hi all! I'm in a conversation but want to quit it and create a new conversation. I'm using but in the debug page i see that the old conversation stays, it's not destroyed. Idea how to to this? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080219#4080219 Re

[jboss-user] [JBoss Seam] - Re: Themes question

2007-09-01 Thread [EMAIL PROTECTED]
I installed a custom filter (@Filter(within = "org.jboss.seam.web.contextFilter")) and the filter is called as expected. I can also get and access the ThemeSelector via Context ctx = new SessionContext(new ServletRequestSessionMap(sreq)); ThemeSelector ts = (ThemeSelector) ctx.g

[jboss-user] [JBoss Seam] - Re: End the existing and create new conversation

2007-09-01 Thread vincent.latombe
Hum it seems you can't end a conversation and begin a new one at the same time. You may specify propagation="end" on the link, and add a in the matching page.xml for your destination. Anyway, even if you don't end the previous conversation, it will eventually timeout. View the original post :

[jboss-user] [JBoss Seam] - Re: please help me out of this problem

2007-09-01 Thread mnrz
my User's scope is SESSION is this the issue which cause this problem? because I just read somewhere in seam reference about @Role that we can define many roles for an entity but I don't know how to use them? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=40

[jboss-user] [JBoss Seam] - how to use @Roles?

2007-09-01 Thread mnrz
Hello I've read something in Seam reference about @Roles which you can define many roles for an entity, a User stated as an example as follows: | @Roles({ | @Role(name="user", scope=ScopeType.CONVERSATION), | @Role(name="currentUser", scope=ScopeType.SESSION) | })

[jboss-user] [JBoss Seam] - Re: End the existing and create new conversation

2007-09-01 Thread [EMAIL PROTECTED]
You can use before-redirect="true" View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080227#4080227 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080227 ___ jboss-user mailing l

[jboss-user] [JBoss Seam] - Conversation troubles - don't understand the principle

2007-09-01 Thread maku01
Hi, I've problems using (and understanding) the conversation scope (using Seam 2 CVS) What I want to achieve is to have a menu with the following behavior: Behind a menu entry is a component instance (and a view) When I activate a menu entry an own "workspace" should be created (when no exists

[jboss-user] [JBoss Seam] - Re: how to use @Roles?

2007-09-01 Thread atao
With @Name and @Role you can define only two components, with the same scope or not: | @Name("user") | @Scope(SESSION) | @Role(name="user2", scope=SESSION) | There is no such limitations with @Roles | @Name("user") | @Scope(SESSION) | @Roles({ | @Rol

[jboss-user] [JBoss Seam] - Authenticator problem in Seam 2 beta

2007-09-01 Thread [EMAIL PROTECTED]
Hi, I had a working Authenticator class something as below: | @Name("authenticator") | public class Authenticator { | @Logger | Log log; | | @In | Identity identity; | | @In(create=true) | EntityManager entityManager; | | public boolean

[jboss-user] [JBoss Seam] - Re: Authenticator problem in Seam 2 beta

2007-09-01 Thread [EMAIL PROTECTED]
You need to upgrade drools to the version shipped in Seam2 beta View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080232#4080232 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080232 ___

[jboss-user] [JBoss Seam] - Re: Problem using JBPM in Seam 2

2007-09-01 Thread [EMAIL PROTECTED]
read the seam2migration guide View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080233#4080233 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080233 ___ jboss-user mailing list j

[jboss-user] [JBoss Seam] - Re: Authenticator problem in Seam 2 beta

2007-09-01 Thread [EMAIL PROTECTED]
Thank You for the reply but as I migrated I also copied drools-core-4.0.0.MR2.jar and drools-compiler-4.0.0.MR2.jar into my project. So the problem exists with these new libraries :( Is it something else about drools to upgrade? View the original post : http://www.jboss.com/index.html?module=b

[jboss-user] [JBoss Seam] - Re: Authenticator problem in Seam 2 beta

2007-09-01 Thread [EMAIL PROTECTED]
You should upgrade drools + dependencies. I suspect you have stale jars lying around. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080235#4080235 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080235 ___

[jboss-user] [JBoss Seam] - Re: Authenticator problem in Seam 2 beta

2007-09-01 Thread [EMAIL PROTECTED]
As far as jars in /lib directory are considered I deleted all jars from my project and then copied the ones which were generated in a new template project. And that new project was generated using Seam 2 beta. So I don't think this is stale jars problem :( View the original post : http://www.j

[jboss-user] [JBoss Seam] - Re: Seam email problem

2007-09-01 Thread fhh
Is this secure SMTP? This is a highly unsual setting. I think before TLS could be initialized during the session the port was used for secure SMTP. Anyway since you are transfering to localhost port 25 should be fine. Regards Felix View the original post : http://www.jboss.com/index.html?m

[jboss-user] [JBoss Seam] - Re: how to use @Roles?

2007-09-01 Thread mnrz
ok, I know about it. Assume that we defined those roles, now, in our session beans how we can use it? for example, I have an Authenticator Session bean in which a User instance variable is defined as follows: | | @Stateless | @Name("authenticator") | class Authenticator { | |

[jboss-user] [JBoss AOP] - Re: New AOP users forum

2007-09-01 Thread chrisrevilla
Hi I am new using jboss aop... I understand about AOP.. I can use that "jboss aop" standalone, but I can not run a simple interceptor that say hello in my jboss server 4.05 GA, please , is there any manual about a simple interceptor (HelloWorld) in jboss server, please helpe Kabir.. Thanks Vie

[jboss-user] [Security & JAAS/JBoss] - No Principal propagation to SessionBean

2007-09-01 Thread pvelarde
Hi everybody, I've developed a EJB3.0 Application; now I want to add security using JAAS. The client is a rich Delphi application that comunicates with server via HTTP througth a servelt. This servlet has this login JAAS code: loginContext = new LoginContext("GTSPDB", new MyCallbackHand

[jboss-user] [Messaging, JMS & JBossMQ] - Mails status

2007-09-01 Thread soussou97
Hi; Questions : 1- How to verify the status of a mail send by a J2ee application : mail correctly send (OK), error case the mail does not send to messaging server ( unavailable server, acces denied, ...) ? 2- How to check that the user he definitely read his mail with a answer denied ? 3- Its

[jboss-user] [JBoss Seam] - Re: Authenticator problem in Seam 2 beta

2007-09-01 Thread kukeltje
I had the same problem and DID have older drools jars somewhere. Was solved when I removed those. So look in other projects etc... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080250#4080250 Reply to the post : http://www.jboss.com/index.html?module=bb&op=

[jboss-user] [EJB 3.0] - Re: Can not seem to name foreign keys in relationships

2007-09-01 Thread lafr
did you try to specify the name with referencedColumnName: @JoinColumn(name="catalogueFk",referencedColumnName="catalogue") View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080251#4080251 Reply to the post : http://www.jboss.com/index.html?module=bb&op

[jboss-user] [JBoss jBPM] - how list all tasks?

2007-09-01 Thread simonbaker
JbpmContext.getTaskList() fetches the TaskInstance list for the current authenticated actor. Is there a way to get a list of TaskInstances for all actors in the process? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080252#4080252 Reply to the post : http

[jboss-user] [JBoss jBPM] - Re: Help on Best Practice

2007-09-01 Thread tweedledee
Ronald, Do you mean the Business Process Management with JBoss jBPM book by Matt Cumberlidge? I've just finished reading it and it gives a very good overview on both BPM and jBPM with a good starter application. I would have liked to seen more developer oriented topics discussed in greater de

[jboss-user] [JBoss jBPM] - Re: attach javascript to jpdl generated task form save butto

2007-09-01 Thread dleerob
I don't use JSF, I use plain JSP. So I simply create my JSP pages as I want them, with javascript and everything, and deploy them with my process definition. I use a similair mechanism that the jbpm-console uses to retrieve the form from the database. ie. look at the forms.xml file, determine th

[jboss-user] [JBoss Seam] - Re: Stateless or Statefull

2007-09-01 Thread taga
thanks for reply i just wanna tell u that im using DataModel and DataModelSelection and some Out Variable, is that mean i must use statfull SB does that statfull SB expires when the session ends unders session scope View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopi

[jboss-user] [JBoss jBPM] - Re: how list all tasks?

2007-09-01 Thread simonbaker
I realize I've asked questions like these before, but the threads wandered off the topic. I'd have to think there are enumerators for all processinstances, taskinstances, etc., but I haven't found them. One answer was to write your own query against the hibernate db, but that bypasses the API

[jboss-user] [JBoss jBPM] - Re: about Jbpm scheduler

2007-09-01 Thread norwaytoheaven
Make sure you have created a JbpmContext, and haven't closed it before starting your process. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080265#4080265 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080265 ___

[jboss-user] [JBoss Seam] - TransactionSuccessEvent and TransactionCompletionEvent

2007-09-01 Thread tuxzilla
What is the difference between the two? Based on the source code javadoc: TransactionSuccessEvent: An event that is processed when a transaction completes succesfully TransactionCompletionEvent: An event that is processed when a transaction ends But I am not sure what the real difference is.

[jboss-user] [JBoss Portal] - Authorization and authentication in Jboss Portal

2007-09-01 Thread likon
Hello everybody! I am rather new to JBoss Portal but I've met my first problem that I can't solve for a long time... On the forum authorization/authentication theme is one of the most popular and I've got common goal also. In couples of words I want to do following: 1) Authenticate user and find

[jboss-user] [JBoss Seam] - What is the scope of JSF's UI component tree in Seam

2007-09-01 Thread mgrouch
In pure JSF app JSF's UI component tree would be in session. However in Seam there is a concept of conversation and (I believe) in different conversations UI tree could be different. Does it mean Seam would store UI tree in conversation context? Thanks View the original post : http://www.jbo

[jboss-user] [JBossWS] - Re: Strange - Entry Point not receive WS Message data

2007-09-01 Thread ronari2
| http://schemas.xmlsoap.org/soap/envelope/";> | | | | | http://model.login.ep.ws.asbl.zoomix.com/";> | | | 123456 | |