[jboss-user] [Security JAAS/JBoss] - Re: Authentification problems in Jboss 5

2009-04-28 Thread karltraunmueller
I have created a simple test scenario (that should demonstrate the issue) and attached it to the Jira. Can anyone comment on this? regards, Karl View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4227064#4227064 Reply to the post :

[jboss-user] [Security JAAS/JBoss] - Re: Authentification problems in Jboss 5

2009-04-07 Thread karltraunmueller
Hi all, we have also experienced these problems - the Principal associated with Stateless session beans seemed to be randomly wrong. I think the problem is in org.jboss.ejb3.EJBContextImpl.getCallerPrincipal: | public Principal getCallerPrincipal() |{ | if(beanPrincipal == null)

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: EjbModule is already installed JBossAS-5.0.0.GA

2009-02-02 Thread karltraunmueller
Similar issue with persistence units - if two ears (say, test1.ear and test2.ear) include the same ejb jar (with same META-INF/persistence.xml), you get 19:51:46,959 WARN [AbstractDeploymentContext] Unable to register deployment mbean

[jboss-user] [EJB 3.0] - Re: EJB 3.1 Embeddable

2008-11-11 Thread karltraunmueller
sisepago wrote : ... | but testing with mvn command mvn test doesn't work, because of java.lang.NoClassDefFoundError: org/jboss/metadata/process/chain/ProcessorChain. | here is the error trace: | | 12:39:59,564 INFO [HelloBeanTest] Test #1 | | 12:39:59,830 INFO [JBossEJBContainer]

[jboss-user] [EJB 3.0] - Re: EJB 3.1 Embeddable

2008-11-06 Thread karltraunmueller
Using JUnit instead of TestNG doesn't make a difference. JDK: same behavior with JDK 1.6.0_10 and 1.5.0_15. Karl View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4187325#4187325 Reply to the post :

[jboss-user] [EJB 3.0] - Re: EJB 3.1 Embeddable

2008-11-06 Thread karltraunmueller
Cool, thanks a lot Karl View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4187368#4187368 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4187368 ___ jboss-user mailing list

[jboss-user] [EJB 3.0] - Re: EJB 3.1 Embeddable

2008-11-06 Thread karltraunmueller
Carlo, Could you please apply the workaround (constructor injection definition in jboss-ejb3-embedded-1.0.0-SNAPSHOT.jar/embedded-bootstrap-beans.xml) and place an updated EJB3 embedded snapshot build in the JBoss maven repository? many thanks, Karl View the original post :

[jboss-user] [EJB 3.0] - Re: EJB 3.1 Embeddable

2008-11-04 Thread karltraunmueller
Carlo, thanks for responding. Yes, 2.0.9, maven output is: D:\sandbox\projects\green\EmbeddedEjbTestmvn -Dverbose=true dependency:tree | [INFO] Scanning for projects... | [INFO] Searching repository for plugin with prefix: 'dependency'. | [INFO]

[jboss-user] [EJB 3.0] - EJB 3.1 Embeddable

2008-11-03 Thread karltraunmueller
Hi all, I tried to get EJB 3.1 Embeddable prototype up running, and did exactly as described in http://www.jboss.org/community/docs/DOC-9618. However, I get the following exception: 12:15:39,581 INFO [JBossEJBContainer] Deploying

[jboss-user] [JBoss Seam] - Proposed solution for lost faces messages after navigation r

2008-02-08 Thread karltraunmueller
Hi all, I found that org.jboss.seam.core.FacesMessages.addToControl() does not work with redirects, if the target control is not contained in the current page. Example: | * user enters input data into page1 and hits submit | * validation finds that some input field on page2 is missing

[jboss-user] [JBoss Portal] - Re: JBoss Portal 2.6.4 on JBoss 5 HEAD

2008-02-06 Thread karltraunmueller
Thomas, thanks for answering. I understand that Portal 2.6.4 has not been released yet, and neither has JBoss 5. The rationale behind my attempt was grab the latest portal sources and see if it deploys inside the current JBoss 5, to check for basic interoperability. Your reply Portal 2.6

[jboss-user] [JBoss jBPM] - Re: Cannot build JBPM source from CVS

2008-02-03 Thread karltraunmueller
Hi Philipp, right, I get the same error. If I add org.eclipse.jface.text in the Dependencies section of the plugin.xml editor (jface.text was clearly missing), add dom4j-1.4.jar under Java Build Path / Libraries / Add Jars / org.jbpm.gd.bpel/lib, reorganize the imports (Ctrl + Shift + O),

[jboss-user] [JBoss jBPM] - Re: Cannot build JBPM source from CVS

2008-02-02 Thread karltraunmueller
Hi all, when compiling jBpm CVS HEAD, I stumbled upon the same problem, Missing required plug-in org.jbpm.gd.common_0.0.0, but managed to get the build run to completion with some manual intervention. Steps to reproduce (jbpm.3 is the local CVS module root folder): | * Set up a copy of

[jboss-user] [JBoss jBPM] - Re: Cannot build JBPM source from CVS

2008-02-02 Thread karltraunmueller
It's of course jmx-console, not JNDI View. JNDI View should show jbpm/JbpmConfiguration under the java: namespace. regards, Karl View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4125799#4125799 Reply to the post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Best Practices for using PersistentContexts in Seam Applicat

2007-11-26 Thread karltraunmueller
Hello, We have a regular Seam 1.2.1.GA Web Application under JBoss 4.0.5.GA with - JSF (MyFaces 1.1.4) for the UI, - (conversation and session-scoped) Seam Components for UI logic, - EJB3 entity beans for persistence, - and a POJO-based model for core product logic. We've had some bugs related