[jboss-user] [JBoss Seam] - In attribute requires non-null value: authenticator.entityMa

2007-08-05 Thread mmakundi
Hi! Has anyone found a solution to the problem described here: http://www.mail-archive.com/jboss-user@lists.jboss.org/msg67427.html I am using MyFaces with Seam and similar configuration, but I do not even get the following initialization log line: 16:53:36,554 INFO [Component] Component:

[jboss-user] [JBoss Seam] - Bug in org.jboss.seam.core.Contexts.java

2007-08-05 Thread matt.drees
Hey Gavin, I'm pretty sure this isn't right. | @Scope(ScopeType.APPLICATION) | public class Contexts | { | |@Factory(org.jboss.seam.core.eventContext) |public Context getEventContext() |{ | return org.jboss.seam.contexts.Contexts.getEventContext(); |}

[jboss-user] [JBoss Seam] - Re: In attribute requires non-null value: authenticator.enti

2007-08-05 Thread mmakundi
This thread actually solved my problem, indirectly: http://www.jboss.com/index.html?module=bbop=viewtopict=112375 The key is: One other potential trap is that I have just upgraded from Seam 1.2.1 to 2.0b1 and managed-persistence-context has been moved from namespace core to persistence. If

[jboss-user] [JBoss/Spring Integration] - Using Spring to integrate POJOs as MBeans in JBoss

2007-08-05 Thread dima.frid
Hi, I am trying to use Spring to eliminate the need to use SAR XML method descriptors for MBeans (like the following: ?xml version=1.0 encoding=UTF-8? | !DOCTYPE mbean PUBLIC -//JBoss//DTD JBOSS XMBEAN 1.0//EN http://www.jboss.org/j2ee/dtd/jboss_xmbean_1_0.dtd; | mbean |

[jboss-user] [JBoss Seam] - bug in MockHttpSession.java

2007-08-05 Thread matt.drees
It's currently impossible to remove objects from the mock session. MockHttpSession.java line 94 | public void setAttribute(String att, Object value) |{ | if (value==null) | { | attributes.remove(value); | } | should be | public void

[jboss-user] [JBoss Seam] - Re: value for '#{org.jboss.seam.security.identity}' sometime

2007-08-05 Thread colablade
sorry, i forget to say i'm working on seam 1.2.1 GA and Jboss 4.0.5 GA View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070934#4070934 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4070934

[jboss-user] [JBoss Seam] - Re: Seam from CVS in Eclipse, missing files

2007-08-05 Thread demetrio812
Thank you! Demetrio View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070939#4070939 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4070939 ___ jboss-user mailing list

[jboss-user] [JBoss Portal] - Re: Necessary or example portal

2007-08-05 Thread pedalshoe
Thank you for the response, and also mentioning best practices... If any others or a link to a document that specifies, please pass that along. Thank you, -Christopher View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070940#4070940 Reply to the post :

[jboss-user] [JBoss Portal] - Re: Necessary or example portal

2007-08-05 Thread pedalshoe
The path to default-object.xml is in jboss-portal.sar\conf\data\ NOT in jboss-portal.sar\conf\ -Christopher View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070942#4070942 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4070942

[jboss-user] [JBoss Seam] - Re: bug in MockHttpSession.java

2007-08-05 Thread [EMAIL PROTECTED]
Please open a JIRA issue. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070943#4070943 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4070943 ___ jboss-user mailing list

[jboss-user] [JBossCache] - Problem in interceptors

2007-08-05 Thread AbdElrahman
Hi all i am trying simple method-execution interceptor , my jboss-aop.xml file is ?xml version=1.0 encoding=UTF-8? and the class is public class POJO { public void noop() { System.out.println(noop()); }

[jboss-user] [JBoss Seam] - Post-injection hook (or how to avoid injection races?)

2007-08-05 Thread thatrichard
Consider this component | @Name(personEditor) | @Stateful | @Scope(ScopeType.CONVERSATION) | @Conversational | public class PersonEditorBean implements PersonEditor { | |@In |private Person person; | |@In |public void setTitle(String title) { |

[jboss-user] [JBossCache] - Re: Problem in interceptors

2007-08-05 Thread AbdElrahman
the jboss-aop.xml file is ?xml version=1.0 encoding=UTF-8? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070949#4070949 Reply to the post :

[jboss-user] [JBossCache] - Re: Problem in interceptors

2007-08-05 Thread AbdElrahman
sorry, the pointcut is View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070950#4070950 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4070950 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Re: Detecting Presence of ProcessInstance Without Exception?

2007-08-05 Thread dleerob
Surely it wouldn't really be a performance hit to just catch the exception, and then you know that the definition does not exist? Either way, I don't currently know of another way. I generally retrieve the definitions by id anyway, and that ID is selected from a list of all definitions. View

[jboss-user] [JBoss jBPM] - Re: Problem using ProcessImageTag

2007-08-05 Thread dleerob
Okay so it's missing :) I figured it was using jsf, but unfortunately I haven't used jsf before, so when I looked through the source code, I found it difficult to try and figure out what was going on. And I needed to figure this out for a demo on Monday, so I didn't have time to learn jsf. I

[jboss-user] [JNDI/Naming/Network] - Re: Super slow initial lookup from standalone client

2007-08-05 Thread tldtld
No one else seeign slow lookup times? Phew - must be something on my servers then. *sigh* View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070955#4070955 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4070955

[jboss-user] [JBoss jBPM] - how using jbpm in an organization on personel

2007-08-05 Thread haf1971
we have a great company with some divisions in power plant. now we dicide to use a workflow engine,one of the wfm we select is jbpm,but we want to know more about its facilities. for example our employees have their posts(situation in organization),how jbpm handle flow a task form start untill

[jboss-user] [JNDI/Naming/Network] - Re: Super slow initial lookup from standalone client

2007-08-05 Thread tldtld
Definitely a Linux problem - testing same code on a windows box and it connects instantly. Time to figure out what the hell goes wrong. Clues are most welcome. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070956#4070956 Reply to the post :

[jboss-user] [JBoss jBPM] - JBPM customers

2007-08-05 Thread haf1971
Please give me a list of JBPM customers. thank you View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070962#4070962 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4070962 ___

[jboss-user] [EJB 3.0] - Re: Dependecy Injection in JMX Service Object

2007-08-05 Thread cleanerx
@EJB annotations cannot be injected within @Service Beans. The behavior changed from 4.0.4Patch1 to 4.2. The injected @EJB references are null within the start method of the jmx bean. However the @PersistenceContext annotation can be injected. I'm just curious if I'm missing something or if

[jboss-user] [JBoss jBPM] - Re: how using jbpm in an organization on personel

2007-08-05 Thread kukeltje
sorry, but I do not understand your question View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070963#4070963 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4070963 ___ jboss-user

[jboss-user] [JBoss jBPM] - Re: how using jbpm in an organization on personel

2007-08-05 Thread fady.matar
It looks like your question is about organizational roles and how to apply workflows on the proper personel. This is done in jBPM through swimlanes. You might need to take a look at the jbpm-identity module for that purpose. View the original post :

[jboss-user] [JBoss jBPM] - Re: how using jbpm in an organization on personel

2007-08-05 Thread haf1971
exactly i refer to organizational roles, but i don't know how use and implement it would you please tell me how and deifine some companies those use this workflow. best regards hossein View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070966#4070966 Reply to

[jboss-user] [JBoss Seam] - How to get seam booking example work in eclipse 3.2?

2007-08-05 Thread guiltyxsin
Hi, I installed Jboss IDE bundle(jboss ide beta2 + eclipse 3.2 + webtool 1.5) and try to follow the UseJBossEclipseIDEToDoJBossSeamsBookingExample from the Jboss Wiki and didn't really work when I got up to the debugger setup. I can't find any of the items called JBoss 4.0.x configuration. Is

[jboss-user] [JBoss Seam] - Re: CVS configuration

2007-08-05 Thread urswag
Could You please give me the concrete configuration? I use in Eclipse :pserver:[EMAIL PROTECTED]:/cvsroot/jboss Can I modify this configuration for the JBoss 4.0.5 server source? I would like to use JBoss 4.2.x but this server does not run in Eclipse. Urs View the original post :

[jboss-user] [JBoss Portal] - how to stick an onload javascript function in body tag?

2007-08-05 Thread saigon_man
Hello, I wonder is there a way to stick a javascript function using onload in body tag? For example: Is it possible to set this from within any xml file in my war project without modifying any file from jboss portal codes? Thanks, TL View the original post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Delete of joining entity in a oneToMany - joinEntity - one

2007-08-05 Thread JohnEChesher
I've read the FAQ and Hibernate docs on how to do this, but the examples are using Hibernate config files, whereas I am using EJB3 annotations, so I still have remaining problems/questions. I'm posting here instead of an EJB3 forum, as I suspect I am fundamentally misunderstanding how to use

[jboss-user] [JBoss Seam] - Re: Post-injection hook (or how to avoid injection races?)

2007-08-05 Thread michaelcourcy
I can't see why you need a setTitle method if the title is already provided by the person object. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070975#4070975 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4070975

[jboss-user] [JBoss Seam] - Re: How to get seam booking example work in eclipse 3.2?

2007-08-05 Thread michaelcourcy
My advice if you need to learn is Eclipse 3.2 Seam 1.2.1 JBoss 4.0.5 Build your first app with seam-gen Everything work fine. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070976#4070976 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Post-injection hook (or how to avoid injection races?)

2007-08-05 Thread thatrichard
Hi Michael I need the setTitle method because the title needs to be modified before being set. (I tried to indicate this with //modify the title.) Ultimately, I'm trying to support a combobox with an other field. In the full class, the values of the combobox and other textfield are bound to

[jboss-user] [JBoss Seam] - Re: CVS configuration

2007-08-05 Thread [EMAIL PROTECTED]
urswag wrote : Could You please give me the concrete configuration? | | :pserver:[EMAIL PROTECTED]:/cvsroot/jboss That is the configuration. anonymous wrote : Can I modify this configuration for the JBoss 4.0.5 server source? You mean Seam 1.2.1.GA? Well the source is in the download. Or

[jboss-user] [JBoss Seam] - Re: How to get seam booking example work in eclipse 3.2?

2007-08-05 Thread [EMAIL PROTECTED]
Or use Eclipse 3.3/JBossTools/Seam2/AS 4.2.1.GA View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070983#4070983 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4070983 ___ jboss-user

[jboss-user] [EJB 3.0] - @EJB injection with Struts2

2007-08-05 Thread prevsetko
Hi, I have problem with @EJB injection in Struts action. Using context.lookup works. import javax.ejb.EJB; | | public class ProjectListAction { | | @EJB | ProjectBean projectBean; | | projectBean remains null. Should it works also in struts? I am using JBoss AS

[jboss-user] [JBoss Seam] - Error in documentation for Seam-2.0.0-BETA1?

2007-08-05 Thread thatrichard
The documentation reads: anonymous wrote : 21.4.2. Remote calls within the current conversation scope | | In some circumstances it may be required to make a remote call within the scope of the current view's conversation. To do this, you must explicitly set the conversation ID to that of

[jboss-user] [Installation, Configuration DEPLOYMENT] - Splitting EJB components into multiple jar files

2007-08-05 Thread rjstanford
I'm splitting an existing Seam project into multiple EJB jars - one for the data model, one for the services, et cetera. During startup, I get this INFO log: 13:50:20,144 INFO [Component] Component: register, scope: EVENT, type: STATEFUL_SESSION_BEAN, class: com.kimbia.actions.RegisterAction,

[jboss-user] [JBoss Seam] - Re: Issues with AS 4.0.5 / Seam 2.0 Beta1

2007-08-05 Thread rvkishore
here is the solution that worked for me Add the following to the web.xml in the jbossweb-tomcat55.sar/conf directory | listener | listener-classcom.sun.faces.config.ConfigureListener/listener-class | /listener | View the original post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Splitting EJB components into multiple jar files

2007-08-05 Thread rjstanford
One more piece of information - earlier in the log, this was output: 13:50:17,113 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=Company.ear,jar=Stateful.jar,name=RegisterAction,service=EJB3 with dependencies: | 13:50:17,114 INFO [JmxKernelAbstraction]

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Splitting EJB components into multiple jar files

2007-08-05 Thread rjstanford
More possibly useful (or misleading) information.. changing the web.xml file to read core:init jndi-pattern=#{ejbName}/local debug=false / makes two changes - first, Seam states: 14:16:17,124 INFO [Component] Component: register, scope: EVENT, type: STATEFUL_SESSION_BEAN, class:

[jboss-user] [JBoss/Spring Integration] - Re: Using Spring to integrate POJOs as MBeans in JBoss

2007-08-05 Thread alesj
dima.frid wrote : But I do not see this bean in JBoss JMX management console. Who should register this bean with MBean server? Or who 'understands' your annotations? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070995#4070995 Reply to the post :

[jboss-user] [JBoss Seam] - Re: CVS configuration

2007-08-05 Thread urswag
Yes thanks for Your advice. I thought I can set a version number somewehere and check out the 1.2.1 GA. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070996#4070996 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4070996

[jboss-user] [JBoss jBPM] - Re: JBPM customers

2007-08-05 Thread kukeltje
jBPM is opensource, so a list of customers is hard to give. Besides that, many 'commercial' users of jBPM do not want to have their identities disclosed. So unfortunately this is hard to do. If it is really important to you, maybe you should contact JBoss. There is a list of JBoss JEMS

[jboss-user] [JBoss jBPM] - Re: how using jbpm in an organization on personel

2007-08-05 Thread kukeltje
just read the docs, look at the examples and most of it will be clear to you. Swimlanes is a very generic concept in UML, workflow etc View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070998#4070998 Reply to the post :

[jboss-user] [JBoss Seam] - Re: begin-conversation in Seam2 prevents data load

2007-08-05 Thread damianharvey
Pete, I made no changes to the pages.xml aside from removing the begin-conversation to get it working. The only changes that I made are outlined above. I'll put together the patch as you mentioned. I'll raise a JIRA and attach it to that. Cheers, Damian. View the original post :

[jboss-user] [JBoss Seam] - ejb-jar.xml must either obey the right xml schema or define

2007-08-05 Thread urswag
JBoss 4.0.5 and JBoss Seam Booking sample I can build this example. I use a different booking-dx.xml for MySQL. When the ear is deploy this exception is generated. All files are included, I have checked this. content of of ejb-jar.xml is | ?xml version=1.0 encoding=UTF-8? | ejb-jar

[jboss-user] [JBoss Seam] - Re: begin-conversation in Seam2 prevents data load

2007-08-05 Thread damianharvey
Ah, it works if I use Seam from CVS. Should have tried that earlier I suppose, but I still can't see why it doesn't work against the downloaded Seam 2.0.0.BETA. Here is the patch: | ### Eclipse Workspace Patch 1.0 | #P jboss-seam | Index: examples/ui/resources/import.sql |

[jboss-user] [JBoss Seam] - Re: begin-conversation in Seam2 prevents data load

2007-08-05 Thread [EMAIL PROTECTED]
Ok, glad it works. I can't immediately identify the change, but we've fixed a lot since 2.0.0.BETA :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4071002#4071002 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4071002

[jboss-user] [JBoss Seam] - Re: ejb-jar.xml must either obey the right xml schema or def

2007-08-05 Thread [EMAIL PROTECTED]
I think you haven't installed with the EJB3 profile. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4071003#4071003 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4071003 ___

[jboss-user] [JBoss Seam] - Exception to integrate with JasperReport

2007-08-05 Thread sherman04
I'm working on seam 1.2.1 GA and Jboss 4.0.5 GA, and trying to integrate with JasperReport 1.3.4. I've got a page for entering jasper report parameters, an SFSB to handle the parameters and pass them to a class method of a report util to generate the report. The method looks up a data source

[jboss-user] [JBoss Seam] - Re: value for '#{org.jboss.seam.security.identity}' sometime

2007-08-05 Thread [EMAIL PROTECTED]
Is this after redeploying a few times? You may need to increase your permgen size. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4071005#4071005 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4071005

[jboss-user] [JBoss Seam] - DocumentException, Invalid byte 3 of 3-byte UTF-8 sequence

2007-08-05 Thread wkzk
Hi. I 'm using seam 2.0b. When I put CJK character message in the in the pages.xml like this. | ?xml version=1.0 encoding=UTF-8? | pages xmlns=http://jboss.com/products/seam/pages; |xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; |

[jboss-user] [Beginners Corner] - Re: Before Start we need your advice

2007-08-05 Thread j_lalith
Hi, Thanks for the reply, Yes we know, ejb 3.0 also make use of Hibernate as the persistent mechanism, Is there any potential benefit if we go ahead with Hibernate independently instead of ejb 3.0, What are the advantages as disadvantages, is there any article written on this, am happy to

[jboss-user] [EJB 3.0] - Re: IllegalArgumentException on remove

2007-08-05 Thread waynebaylor
try changing the snippet: public void destroy (NewsEntity newsEntity) | { | em.merge (newsEntity); | if( em.contains (newsEntity)) | logger.info (The Entity is attached to current Persistence Context); | else | logger.error (Entity is not attached!); |

[jboss-user] [JBoss Seam] - Double click problem . Seam-Version: 1.2.1.GA

2007-08-05 Thread lilianas
Hi: I am using Seam-Version: 1.2.1.GA. I am using PageFlow. I have a problem when i press a lot of time the next buttom , i have the following error * 2007-08-06 09:15:04 StandardWrapperValve[FacesServlet]: Servlet.service() for servlet FacesServlet threw exception

[jboss-user] [JBoss Seam] - Re: File upload - performance has taken a dive

2007-08-05 Thread jazir1979
I reproduced it using the seam-ui example, with a large file for Pete Muir's Picture. I had loads of the following: | 2007-08-06 11:45:20,921 DEBUG [org.jboss.seam.contexts.Contexts] found in event context: person | 2007-08-06 11:45:20,921 DEBUG [org.jboss.seam.contexts.Contexts] found in

[jboss-user] [JBoss Seam] - Re: File upload - performance has taken a dive

2007-08-05 Thread jazir1979
For example, this change on Fisheye: http://fisheye.jboss.com/browse/JBoss/jboss-seam/ui/src/main/java/org/jboss/seam/ui/component/UIFileUpload.java?r1=1.3r2=1.4 I'll try it... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4071013#4071013 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: java.lang.NoClassDefFoundError: javax/transaction/Synchr

2007-08-05 Thread karstendausb
dleerob wrote : | | | activation.jar | | antlr-2.7.6.jar | | asm.jar | | bsh.jar | | cglib.jar | | commons-collections.jar | | commons-logging.jar | | dom4j.jar | | hibernate.cfg.xml | | hibernate3.jar | | hsqldb.jar | |

[jboss-user] [JBoss Seam] - convertEntity: mixing session and conversation data

2007-08-05 Thread awheeler
I am using Seam 1.2.1GA and I have problem with s:convertEntity such as: | h:selectOneMenu id=clientBranch value=#{loggedInUser.clientBranch} styleClass=input-field required=true style=width:50% | s:selectItems

[jboss-user] [EJB 3.0] - Equals and hashCode on Entities fails due to javassist

2007-08-05 Thread ejb3workshop
On a recent project we thought it would be a good idea to inherit a generic implementation of equals and hashCode, as well as the primariy key from an abstract entity. In the equals method we evaluate the class as well as the primary key. In most cases this worked really well for us, but in

[jboss-user] [JBoss Seam] - Re: File upload - performance has taken a dive

2007-08-05 Thread jazir1979
It worked. Like all my other recent troubles, I had to apply the fix manually after inspecting Fisheye. It would have been much easier if there was like a Seam 2 Beta 2 release or something. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4071018#4071018

[jboss-user] [Beginners Corner] - Issue with JBoss 4.2.1

2007-08-05 Thread j_lalith
Hi, I download the JBoss 4.2.1 zip and extracted it to a local folder, Plat form - Fedora Core 5 Java - Java 5 As instructed I executed the run.sh (JAVA_HOME set). but it gives the following exeception, then I thought it is something to do with the existing log4j libraries in my system, then

[jboss-user] [JBoss Portal] - Re: Portlet with Ajax4jsf

2007-08-05 Thread maiky
Thks for response. If I've got time, I try to work on it. PS: Sorry for my English. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4071021#4071021 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4071021

[jboss-user] [Security JAAS/JBoss] - Re: SSL with client Auth doesn't seem to work - Help

2007-08-05 Thread chandra_88
As Per the doc , i have imported the certificates to the keystores ie client certs to the server keystore and vice-versa. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4071022#4071022 Reply to the post :

[jboss-user] [JBoss Seam] - JBoss 4.2.1GA and Hibernate validator - broken

2007-08-05 Thread wschwendt
The following is not a Seam issue, even though it may be important to Seam users. Bug description: == JBoss AS 4.2.1GA is shipped with Hibernate Core 3.2.4.sp1 Hibernate Annotations 3.2.1.GA Hibernate EntityManager 3.2.1.GA The problem is that instantiation of a Hibernate