[jboss-user] [JBoss Seam] - Re: Action argument is null when it shouldn't be null

2007-07-17 Thread gayatri.ramamurthi
1) something that skips the attention is the configuration settings which requires that the below code be added to the application config org.jboss.seam.ui.facelet.SeamFaceletViewHandler 2) Secondly what i noticed while running a similar app is, " #{accountMaintenanceAction.selectAccount(dto.

[jboss-user] [JCA/JBoss] - Re: 2 PersistenceUnits: Adding multiple last resources is di

2007-07-17 Thread baz
Thanks for the answer. After setting pad= true, ithe same(?) exception is raised: 08:59:38,133 INFO [ExperimentSiteList] ExperimentSiteList instantiated by SEAM | 08:59:38,508 INFO [STDOUT] Hibernate: select experiment0_.ExperimentID as Experime1_76_, experiment0_.Size as Size76_, experiment0_

[jboss-user] [JBoss Getting Started Documentation] - What's the difference between JBoss 4.0.5.GA and JBoss Porta

2007-07-17 Thread thomas2004ch
I think JBoss 4.0.5 GA is an Application Server where you can deploy ear on it but JBoss Portal 2.6.0 GA is just a web container which just contains web applications. Is that right? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064853#4064853 Reply to the

[jboss-user] [JBoss Seam] - Re: javax.persistence.PersistenceException: org.hibernate.Hi

2007-07-17 Thread thejavafreak
Check your persistence.xml Does it point to the right dbms? Does it has the correct URL? etc View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064854#4064854 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064854

[jboss-user] [JBoss jBPM] - Re: Data Persistence Question

2007-07-17 Thread Johan.Parent
Look at process variables. If the classes are mapped with hibernate or they are serializable then you should not have too much trouble. See chapter 10 of the doc. Regards, Johan View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064856#4064856 Reply to the pos

[jboss-user] [JBossWS] - Re: Can't access JBossWS user guide, quickstart guide

2007-07-17 Thread [EMAIL PROTECTED]
Sorry, we'd been migrating that box and experience network do problems throughout the last week. We'll get that fixed soon - thanks for your patience. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064858#4064858 Reply to the post : http://www.jboss.com/inde

[jboss-user] [JCA/JBoss] - Re: 2 PersistenceUnits: Adding multiple last resources is di

2007-07-17 Thread vickyk
6_, experiment0_.Replications as Replica17_76_ from EXPERIMENT experiment0_ limit ? | 16:17:17,984 WARN [loggerI18N] [com.arjuna.ats.internal.jta.transaction.arjunacore.lastResource.dis | | allow] [com.arjuna.ats.internal.jta.transaction.arjunacore.lastResource.disallow] Adding multiple

[jboss-user] [JBoss jBPM] - Re: EJB-JBPM: transaction clash (rollbacks)

2007-07-17 Thread Johan.Parent
Sorry for the late reply. anonymous wrote : The log message certainly doesn't jump out and bite you! anonymous wrote : Does it stand out if the queries are not displayed fully? The output I pasted in this thread is that with DEBUG set for log4j.logger.org.jbpm . So it is definitely insufficien

[jboss-user] [JCA/JBoss] - Re: 2 PersistenceUnits: Adding multiple last resources is di

2007-07-17 Thread vickyk
"baz" wrote : Any help is very appreciated. | Why does it work with 4.05GA but not with 4.2.0GA? | Look at the TransactionManager implementation in the jboss-service.xml it is configured differently. Enabling multiple last resource could be configured in the jbossjta-properties.xml . Vi

[jboss-user] [EJB 3.0] - Re: Removing a detached instance

2007-07-17 Thread idefix-free
Still the same error: | public String delete() | { | String id = FacesContext.getCurrentInstance() | .getExternalContext().getRequestParameterMap() | .get("selectedId"); | selectedSpielplatz = dao.findById(Long.valueOf(id), false); |

[jboss-user] [JBoss Portal] - Re: LDAPExtUserModuleImpl and userSearchFilter

2007-07-17 Thread roth
Update: With the help of OpenLdap's command line search tool 'ldapsearch', which gave me more verbose error messages than the Windows Gui Tools I was using before, I was able to find the cause for my problem: A filter with a single backslash for escaping the comma is not recognised as a correct

[jboss-user] [EJB 3.0] - Re: Problems with Reference Injection for @EJB-Annotation

2007-07-17 Thread markusschmitt
Thanks for your help, I added a dummy method call to the injected Calculator (calculator.add(1,1)), redeployed and the same exception occurs. Regards Markus View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064865#4064865 Reply to the post : http://www.jboss.

[jboss-user] [JBoss jBPM] - Re: Data Persistence Question

2007-07-17 Thread mailinator
Hi, okay thanks for your reply. Very useful. Best Regards, O.M. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064866#4064866 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064866 _

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: NIC address binding granularity

2007-07-17 Thread [EMAIL PROTECTED]
PeterJ is right. Every component that binds a socket would have to manually create many sockets and manage those. This is extremely hard to implement/impose on all components that make up the server, especially the 3rd party ones. View the original post : http://www.jboss.com/index.html?module

[jboss-user] [JBoss Portal] - Re: LDAPExtUserModuleImpl and userSearchFilter

2007-07-17 Thread bdaw
So to be clear - when you use double backslash coma in ldapsearch you get correct result but this still doesn't work in portal config? It may be a bug but I think that the usage of filter is as simple as passing it to the JNDI API. Could you try enabling DEBUG logging for package 'org.jboss.por

[jboss-user] [JBoss Seam] - Re: Recommended way of using Select boxes - The Seam Way

2007-07-17 Thread damianharvey
Does landmarkType have a value when fillLandmarkList() is called? I'm not sure if Seam will pick up landmarkType the way that you are using it. I would create getter/setter for it and then refer to it in your page as addressLocator.landmarkType. And there's no issue with handling landmarkType a

[jboss-user] [Security & JAAS/JBoss] - Re: RMI over SSL - mutual authentication

2007-07-17 Thread Evka
Hello rtrancoso. I am afraid, that JBoss doesn't support this functionality - as I described, the only thing to secure the RMI was, that the client had to have server certificate in its trust store. I also browsed over many JBoss tutorials and forums and nothing helped me in this way. Some info

[jboss-user] [EJB 3.0] - Re: what happen with my entity bean , need expert help

2007-07-17 Thread wolfc
Use AS 4.2.1 GA View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064871#4064871 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064871 ___ jboss-user mailing list jboss-user@list

[jboss-user] [JBoss Seam] - Re: javax.persistence.PersistenceException: org.hibernate.Hi

2007-07-17 Thread damianharvey
anonymous wrote : I don't want to use database at the moment So is your database not running then? That might explain the Hibernate errors. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064872#4064872 Reply to the post : http://www.jboss.com/index.html?modu

[jboss-user] [EJB 3.0] - Re: Removing a detached instance

2007-07-17 Thread wolfc
SpeilplatzCrudBean is probably a JSF bean. In that case it's living on the other side (in web space). Thus an entity bean which is returned by the DAO is first detached. You should have this code in a session bean. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&

[jboss-user] [EJB 3.0] - Re: Problems with Reference Injection for @EJB-Annotation

2007-07-17 Thread wolfc
Where does it deploy the Calculator bean? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064874#4064874 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064874 ___ jboss-user ma

[jboss-user] [EJB 3.0] - Re: what happen with my entity bean , need expert help

2007-07-17 Thread ejbiva
Dear wolfc ,why use AS 4.2.1 GA? any defect with AS 4.2.0?I am sorry one thing I should mentioned,that is I have never create related table in the oracle.because the ejb should create it indtead of me,that is true? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&

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

2007-07-17 Thread damianharvey
ping? This is preventing me from upgrading to Seam2.0.0 so any help would be appreciated. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064878#4064878 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064878 ___

[jboss-user] [JBoss jBPM] - Re: ProcessDefinition disapear from the database

2007-07-17 Thread mailinator
Hi, thanks for your reply, i dont understand why your are referring to a scheduler ? can you explain more about that scheduler ? where is it configured ? Best regards, O.M. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064875#4064875 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: ProcessDefinition disapear from the database

2007-07-17 Thread mputz
Look at 'Chapter 5.4 Web application' of the user guide http://docs.jboss.com/jbpm/v3.2/userguide/html/deployment.html#webapplication the web app starts the JobExecutor Ronald is referring to. I'm wondering about this: jbpmConfiguration.createSchema(); | ProcessDefinition processDefinition=P

[jboss-user] [Installation, Configuration & DEPLOYMENT] - HSQLDB troubles with JBoss 4 in Unix System Services on zOS

2007-07-17 Thread alois28
Hi JBoss-Gurus I tried to install a JBoss 4.0.4, 4.0.5 and 4.2 on a UNIX System Service on zOS. The installation itself is successfull. after some troubles with EBCDIC/ASCII JBoss seems to start - until HSQLDB... ... 09:10:46,579 INFO [WrapperDataSourceService] Bound ConnectionManager 'jboss.jc

[jboss-user] [JCA/JBoss] - Re: 2 PersistenceUnits: Adding multiple last resources is di

2007-07-17 Thread baz
Thanks for your time. When JBoss start a schema validation takes place. This is fully functional | 10:01:10,643 INFO [SchemaValidator] Running schema validator | 10:01:10,643 INFO [SchemaValidator] fetching database metadata | 10:01:10,752 INFO [TableMetadata] table found: EADB.DESCRIPTOR

[jboss-user] [JBoss Seam] - SEAM and XA datasources

2007-07-17 Thread baz
Hello, Can seam manage XA Datasources? I have configured one datasource for oracle and every time it is accessed i get 08:59:38,680 ERROR [XAManagedConnectionFactory] Start transaction failed for org.jboss.resource.adap | [EMAIL PROTECTED] | 08:59:38,680 WARN [TxConnectionManager] Connection

[jboss-user] [JBoss jBPM] - Re: ERROR JDBCExceptionReporter : Table not found in stateme

2007-07-17 Thread Johan.Parent
anonymous wrote : Hypersonic can work in multiple modes. TCP Server, Standalone, InMemory. | As far as I know the InMemory mode stores all your data in memory and | flushes them to the disk when you shutdown the server. (not 100% sure) The in-memory-db is a volatile db. Once closed it disappe

[jboss-user] [JBoss Seam] - Re: taskinstance attribute is invalid in ToDo example

2007-07-17 Thread wkzk
sorry, I missed http://jira.jboss.com/jira/browse/JBSEAM-1559 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064885#4064885 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064885

[jboss-user] [JCA/JBoss] - Re: 2 PersistenceUnits: Adding multiple last resources is di

2007-07-17 Thread baz
1. The schema validation succeeds. Everytime a transaction comes in play the error occurs:-( 2. setting com.arjuna.ats.jta.allowMultipleLastResources to true and using two local-tx-datasource has helped for the moment. But after reading all the docs vickyk gently pointed, i do want to use xa da

[jboss-user] [JBoss jBPM] - Re: ProcessDefinition disapear from the database

2007-07-17 Thread mailinator
Hi, you are right ! i'm doing this because i dont know how to get the process definition from the database ? for the createSchema, i shouldn't do it again ? Regards, O.M. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064887#4064887 Reply to the post : h

[jboss-user] [JBoss jBPM] - error Resource: org/jbpm/msg/Message.hbm.xml not found

2007-07-17 Thread galvino
Hello everybody. i have a strange problem. i can't use graphsession with my application and i have this error : anonymous wrote : | javax.servlet.ServletException: Resource: org/jbpm/msg/Message.hbm.xml not found | org.apache.struts.action.RequestProcessor.processException(RequestProces

[jboss-user] [JBoss Seam] - Re: Debug.seam page, the Business process context and data b

2007-07-17 Thread harpritt
Update: My first query about the empty business process context within the debug page has been poo poo'd, i had to click into the conversation id to see the business process context components so thats all cool. .my only thing now is that the string stored in the Business Process Conte

[jboss-user] [EJB 3.0] - Re: Problems with Reference Injection for @EJB-Annotation

2007-07-17 Thread markusschmitt
Ok, I found the reason for the excpetion. I extracted a Remote and a Local interface from the business interface. So "implements CalculatorRemote, CalculatorLocal" (both extends Calculator) is the reason for the exception but I dont understand why! (implements Calculator works) Regards Markus V

[jboss-user] [JBoss jBPM] - Re: error Resource: org/jbpm/msg/Message.hbm.xml not found

2007-07-17 Thread mputz
>From a first glance it looks like you are using a hibernate.cfg.xml from jBPM >version 3.1.x along with the code from jBPM 3.2.x, as this entity no longer >exists in the current version. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064892#4064892 Reply to

[jboss-user] [JBoss Portal] - Re: LDAPExtUserModuleImpl and userSearchFilter

2007-07-17 Thread roth
anonymous wrote : So to be clear - when you use double backslash coma in ldapsearch you get correct result but this still doesn't work in portal config? Yes, exactly. In the portal, LDAPExtRoleModule doesn't find any Role memberships for users with a comma in their username. If the user has no c

[jboss-user] [JBoss jBPM] - Re: ProcessDefinition disapear from the database

2007-07-17 Thread mputz
Look through the Database Example in the user guide to get an idea of what API functions to call to get a process definition and the like from the db: http://docs.jboss.com/jbpm/v3.2/userguide/html/tutorial.html#databaseexample (scroll down to the function processInstanceIsCreatedWhenUserSubmits

[jboss-user] [JBoss Portal] - Re: LDAPExtUserModuleImpl and userSearchFilter

2007-07-17 Thread roth
I forgot: The examples I was quoting are with LDAPRoleModuleImpl, but I see the same behaviour with LDAPExtRoleModuleImpl, which I am using for my AD. The examples I posted where set up after the first ldap example blog post here: http://jbossportal.blogspot.com/search/label/portal View the ori

[jboss-user] [JBoss Seam] - Re: Action argument is null when it shouldn't be null

2007-07-17 Thread fmars
anonymous wrote : org.jboss.seam.ui.facelet.SeamFaceletViewHandler I use Seam 2 and there is no more "SeamFaceletViewHandler". methsearch.xhtml displays my table. The generated URL looks like this: http://localhost:8080/methcancerdb2/methsearch.seam? | dataModelSelection=gene:genes[1]&cid=18&

[jboss-user] [JBoss Seam] - Re: What I wouldn't give for...

2007-07-17 Thread [EMAIL PROTECTED]
anonymous wrote : You eat your own dog food and you help yourselves at the same time. It's on its way. We still have some work to do. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064905#4064905 Reply to the post : http://www.jboss.com/index.html?module=bb

[jboss-user] [JBoss Portal] - Re: portal-migration autocommit exception

2007-07-17 Thread k3nnymusic
so could you tell me, how can I create all system tables and default datas in mysql database? jboss AS doing it? I saw wiki and I found info only about connect jboss AS/portal with mysql database, not about creating structure??? View the original post : http://www.jboss.com/index.html?module=bb

[jboss-user] [JBoss jBPM] - Re: ProcessDefinition disapear from the database

2007-07-17 Thread mailinator
Okay thanks for your assistance i will study those docs. Keep you posted. Regards, O.M. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064906#4064906 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064906

[jboss-user] [JBoss Portal] - Re: portal-migration autocommit exception

2007-07-17 Thread [EMAIL PROTECTED]
The tables will create automatically, you have nothing to do but start JBoss Portal (you just need to create the database) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064908#4064908 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&

[jboss-user] [JBoss Seam] - Re: Error using RuleBasedIdentity in Seam 2.0 beta 1

2007-07-17 Thread przemyslawo
I have the same error. Project generated by seam 2.0.0.BETA1 from entities in mysql. On jboss-4.2.0.GA just downloaded. java: jdk1.6.0_01. It happens when I put any rule to my security.drl file and I access any page of my application. versions of jars: antlr-2.7.6 antlr-3.0b7 drools-compiler-4.0

[jboss-user] [JCA/JBoss] - Re: 2 PersistenceUnits: Adding multiple last resources is di

2007-07-17 Thread vickyk
"baz" wrote : For now i do not know why the exception occur. Which exception are you referring to ? Are you still getting the exception Vicky View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064911#4064911 Reply to the post : http://www.jboss.com/index.html?m

[jboss-user] [JBoss Portal] - Re: portal-migration autocommit exception

2007-07-17 Thread k3nnymusic
ok thx! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064913#4064913 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064913 ___ jboss-user mailing list jboss-user@lists.jboss.

[jboss-user] [JBoss Seam] - Re: Error using RuleBasedIdentity in Seam 2.0 beta 1

2007-07-17 Thread przemyslawo
On the top it is: org.jboss.seam.InstantiationException: Could not instantiate Seam component: org.jboss.seam.security.identity | at org.jboss.seam.Component.newInstance(Component.java:1853) | at org.jboss.seam.Component.getInstance(Component.java:1756) | at org.jboss.seam.Compon

[jboss-user] [JBoss Portal] - How to manage User's Tabs and portlet from Admin?

2007-07-17 Thread ganeshraja
Hi, I want to create the page(tab) for a particular user from admin user. Is it possible in jboss portal 2.6 GA. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064914#4064914 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&

[jboss-user] [JBoss jBPM] - Re: error Resource: org/jbpm/msg/Message.hbm.xml not found

2007-07-17 Thread galvino
i copied the real hybernate configuration file. now it doesn't load the identity component even if i copy the identiy jar. i have this error: anonymous wrote : | 2007-07-17 11:49:58,476 ERROR [org.jboss.security.auth.spi.UsersRolesLoginModule] Failed to load users/passwords/role files | jav

[jboss-user] [JBoss Portal] - Re: How to manage User's Tabs and portlet from Admin?

2007-07-17 Thread [EMAIL PROTECTED]
It is per role, so if the user has the correct role he can access it, the others won't be able to see it. Please see the doc View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064916#4064916 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posti

[jboss-user] [JBoss AOP] - Installation problem on jboss 3.2.7

2007-07-17 Thread fdifonzo
I'm triyng to install jboss-aop_1.5.5.GA into jboss-3.2.7 (In nned it to use pojocache). After copying all jboss-32-install libs and modifying jboss-service.xml, I get the following error when starting jboss: org.jboss.deployment.DeploymentException: create operation failed for package file:/tm

[jboss-user] [JBoss jBPM] - Re: JBPM - concurrent process execution fails

2007-07-17 Thread [EMAIL PROTECTED]
Best is to extract a minimum setup that produces the problem and attach that to the JIRA issue (http://jira.jboss.com/jira/browse/JBPM-983). Regards, Koen View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064918#4064918 Reply to the post : http://www.jboss.co

[jboss-user] [JBoss Portal] - Re: How to manage User's Tabs and portlet from Admin?

2007-07-17 Thread ganeshraja
My requirement is user should not modify the page and portlet. it should be controlled by admin privilage user only. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064919#4064919 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=r

[jboss-user] [JBoss AOP] - Re: Installation problem on jboss 3.2.7

2007-07-17 Thread [EMAIL PROTECTED]
We're not really paying any attention to ancient AS releases like 3.2.x anymore. We support AS 4.0.x, 4.2.x and AS 5 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064921#4064921 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=r

[jboss-user] [JBoss jBPM] - Re: error Resource: org/jbpm/msg/Message.hbm.xml not found

2007-07-17 Thread fady.matar
You need to create the user properties file and create your users within. The file name is users.properties. Another approach is to set the jbpm identity component to explode into the database and create your users and roles in the database View the original post : http://www.jboss.com/index.ht

[jboss-user] [JBoss Seam] - Re: bug in exception handling ?

2007-07-17 Thread Kruno
I've encountered similar problem, even with latest version from cvs. I tried to handle exception from pages.xml | | | | #{org.jboss.seam.handledException.message} | | | It redirects to Error.jsp but I do not get message and in console I ge

[jboss-user] [Installation, Configuration & DEPLOYMENT] - RMI argument in EJB method

2007-07-17 Thread moskvach
I'm beginner in j2EE, but i suppose that all I do is correct :) JBoss 4.0.5 throws exception for RMI argument in my EJB method during deploying of my application. | 12:59:41,260 WARN [verifier] EJB spec violation: | Bean : AccountSessionEJB | Method : public abstract boolean addAccou

[jboss-user] [JBoss Seam] - Re: Usage for downloading uploaded file

2007-07-17 Thread tino4
"twocoasttb" wrote : You have to write a servlet to do this. I think the seamspace app provides a good example. hi, could you plz give some more infos ? i can't find it in seamspace examples thx View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064925#4064925

[jboss-user] [JCA/JBoss] - Re: 2 PersistenceUnits: Adding multiple last resources is di

2007-07-17 Thread baz
Sorry, The exception is this "baz" wrote : Thanks for the answer. | After setting pad= true, ithe same(?) exception is raised: | 08:59:38,133 INFO [ExperimentSiteList] ExperimentSiteList instantiated by SEAM | | 08:59:38,508 INFO [STDOUT] Hibernate: select experiment0_.ExperimentID as E

[jboss-user] [Beginners Corner] - trigger some method from jboss-service.xml

2007-07-17 Thread [EMAIL PROTECTED]
hello, is it possible to trigger some method of a running service in jboss from jboss-service.xml? I am trying to create some application consisting of a few different sar modules.And i want to deploy the first one,and when deploying the other ones i need to trigger a method from the first servi

[jboss-user] [JBoss Seam] - Re: Seam 2.0 BETA

2007-07-17 Thread ellenzhao
"cpopetz" wrote : Is there any timeline or roadmap for 2.0? Or can someone from the JBoss team wager a guess and when 2.0 will be final? Quarter-year accuracy would be enough for me. | | We've been considering transitioning a rather large codebase to Seam, as it seems to do a lot of th

[jboss-user] [JBoss Portal] - Re: How to manage User's Tabs and portlet from Admin?

2007-07-17 Thread ganeshraja
Is there any document for jboss portal database table structure? How do i create a page thru SQL query? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064929#4064929 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=406492

[jboss-user] [JBoss Seam] - Inserting value in primary and secondry table

2007-07-17 Thread kaviarasu
Hi i have two tables one have primary key and the secondry table has foreign key. i generate a autoId increment which want to inserted in primary and secondary table when the user enters the register button hw to do the exercise can any one give the solution @Name("user3") | @Table(name = "T

[jboss-user] [EJB 3.0] - Re: what happen with my entity bean , need expert help

2007-07-17 Thread wolfc
Don't install any of the preview release into AS 4.2. Use 4.2.1 as installed, by default it has the latest EJB 3 installation. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064931#4064931 Reply to the post : http://www.jboss.com/index.html?module=bb&op=post

[jboss-user] [EJB 3.0] - Re: Problems with Reference Injection for @EJB-Annotation

2007-07-17 Thread wolfc
So Calculator is neither a local nor a remote business interface. Thus the exception. Try:@EJB CalculatorLocal calculator; View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064932#4064932 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting

[jboss-user] [JCA/JBoss] - Linkage Error While returning the OrderedMap from EJB

2007-07-17 Thread _pankie
I am Using Jboss 4.2.0 GA. I have deployed the Stateless Session Bean (EJB 2.1) in Jboss 4.2.0 GA I can lookup the bean can invoke the method properly. My Method returns the VO Object properly but i have a getter & setter for the OrderedMap. OM get set properly but while retriving it i get Li

[jboss-user] [JBoss Portal] - Re: How to manage User's Tabs and portlet from Admin?

2007-07-17 Thread [EMAIL PROTECTED]
That's the default behavior, only the admin change the page and windows of the portal. Please read the documentation. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064933#4064933 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode

[jboss-user] [Datasource Configuration] - Multiple database configuration

2007-07-17 Thread yoav200
Hello, I have developed a webapp with EJB3, JSF and seam. it run on Jboss and i use MYSQL for my database. currently i have 5 different databases with 5 datasources. my question is how can i configure a single datasource for all 5 databases ? is it even possible ? thanks View the original post

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Using JPA from web tier

2007-07-17 Thread mikaelstaldal
What is the correct way of accessing a Java Persistence unit from the web tier (no EJB session beans)? I use JBoss 4.2.0. I can't get the resource injection annotations @PersistenceUnit or @PersistenceContext to work, so I have done like this: public class MyServletContextListener implements S

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Multiple database configuration

2007-07-17 Thread yoav200
Hello, I have developed a webapp with EJB3, JSF and seam. it run on Jboss and i use MYSQL for my database. currently i have 5 different databases with 5 datasources. my question is how can i configure a single datasource for all 5 databases ? is it even possible ? thanks View the original

[jboss-user] [Remoting] - Re: ejb3 and NO_THROW_ON_ERROR, how can it be set.

2007-07-17 Thread itsme
We have the same problem using ejb3 over http with jboss-remoting coming along with jboss4.2.0. We also get the right exception when making calls over rmi but getting UndeclaredThrowable caused WebServerError when making the same calls using http as transport. Any solutions to this? Is there a

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: RMI argument in EJB method

2007-07-17 Thread [EMAIL PROTECTED]
AFAIR, you shouldn't be passing arround Remote objects. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064951#4064951 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064951 ___

[jboss-user] [JBoss jBPM] - Re: LinkageError

2007-07-17 Thread ricardomarques
"kukeltje" wrote : from what I read in other forums and on the internet, could be related to classsloading issues or two things accessing the same transaction. Sorry, but I hope you can investigate this a little further yourself. That would be very helpful yeah, but i'm following the code to a

[jboss-user] [EJB 3.0] - Re: what happen with my entity bean , need expert help

2007-07-17 Thread ejbiva
wolfc,I tried it again.but is same. sessionBean is initiated succeesfuly,but the accessing to entity bean failed.why?The Exception is same View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064952#4064952 Reply to the post : http://www.jboss.com/index.html?modul

[jboss-user] [JBoss Portal] - Re: Handling Portal/Portlet Preferences

2007-07-17 Thread brownfielda
anonymous wrote : actually, you should seriously consider that even for development I concur. I actually found it much easier to understand the environment when using a full database. There are more tools out there to dig through MySQL than there are for hypersonic. I'm not sure what the per

[jboss-user] [EJB 3.0] - Re: Problems with Reference Injection for @EJB-Annotation

2007-07-17 Thread markusschmitt
OK, thanks problem resolved successfully :-) Regards Markus View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064957#4064957 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064957 __

[jboss-user] [Messaging, JMS & JBossMQ] - Removing a message from the queue

2007-07-17 Thread adoorsarath
Sir, I have a JMS client written using Apache Common Messanger APIs. I have configured the messenger to create a session which is not transacted and the Acknowledgement mode as AUTO_ACKNOWLEDGE This jms client program is running as a Timer Task [executing every 1

[jboss-user] [JBoss Portal] - Re: Expanded Programmatic Security

2007-07-17 Thread brownfielda
Thanks for the information. Any known workarounds or would it be best to modify the descriptors for the time being? --Andrew View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064959#4064959 Reply to the post : http://www.jboss.com/index.html?module=bb&op=post

[jboss-user] [JBoss Portal] - Re: LDAPExtUserModuleImpl and userSearchFilter

2007-07-17 Thread roth
I created JBPORTAL-1592, but I couldn't assign it to you. Thanks, Tobias View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064960#4064960 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064960 _

[jboss-user] [Installation, Configuration & DEPLOYMENT] - EAR hotdeployed calling external JAR

2007-07-17 Thread manny88
We have an EAR file that invokes an external JAR class. We are trying to hotdeploy the JAR class but to no avail. If the EAR is redeployed, the classloader loads the latest instance of the JAR class. Is there a way to hotdeploy the JAR class without having to redeploy the EAR file? I assume the

[jboss-user] [JBoss AOP] - Re: Installation problem on jboss 3.2.7

2007-07-17 Thread fdifonzo
Of course, it might sound good, but jboss-aop reference states the compatibilty with jboss 3.2.x. jboss-aop reference is an ufficial document, it shouldn't talk about that if no longer supported. jboss-aop_1.5.5.GA is provided with a set of classes to integrate into 3.2.x and those seem not to wor

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Unable to start the JBOSS 4.2.0 GA in Customized Linux envir

2007-07-17 Thread ramanwee
Hi, I have installed the JBoss-4.2.0 GA server in a Linux box for our project. The linux version is a customized version. The OS name is Linux 2.6.18.custom_1.2,i386. When i start the default JBoss server, the server got automatically shutdown. The hostname is BSB1 in our case. I have attached a

[jboss-user] [Beginners Corner] - Re: Linkage Error While returning the OrderedMap from EJB

2007-07-17 Thread jaikiran
Looks like that class is present in multiple jar files (which are loaded by different classloaders). Have a look at http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassCastExceptions. See if it helps identify those jars. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtop

[jboss-user] [JBoss Portal] - Re: LDAPExtUserModuleImpl and userSearchFilter

2007-07-17 Thread bdaw
Got it! At the moment I'm on different things but I will look at it later this week, and will let you know here. Big thanks for being so proactive with this! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064967#4064967 Reply to the post : http://www.jboss.

[jboss-user] [JBoss AOP] - Re: Installation problem on jboss 3.2.7

2007-07-17 Thread [EMAIL PROTECTED]
Thanks, I will update the documentation View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064969#4064969 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064969 ___ jboss-user mail

[jboss-user] [JBoss jBPM] - Re: LinkageError

2007-07-17 Thread estaub
Ricardo, I'm no expert, but I'd be looking at your database and transaction configurations. What database are you using? It looks like you're running in Tomcat - yes? At the point that you're failing, you're probably opening a Job session for the first time. Jobs are interesting because the

[jboss-user] [JBoss/Spring Integration] - Re: Exploded deployment problem

2007-07-17 Thread alesj
This looks like some weird ClassLoading going on. Can you check if you don't have duplicated jars in your classpath - even the core one's. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064971#4064971 Reply to the post : http://www.jboss.com/index.html?modul

[jboss-user] [JBoss jBPM] - Re: error Resource: org/jbpm/msg/Message.hbm.xml not found

2007-07-17 Thread galvino
i had created two files in server/jbpm/conf : users.properties ans roles.properties into the file users.properties: ernie=ernie roles.properties:ernie=manager,administrator,participant View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064973#

[jboss-user] [JBoss jBPM] - Re: error Resource: org/jbpm/msg/Message.hbm.xml not found

2007-07-17 Thread galvino
but i have the same error. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064974#4064974 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064974 ___ jboss-user mailing list jbo

[jboss-user] [JBossWS] - Re: Error: Unable to createEndpointReference Provider

2007-07-17 Thread merapyaraJboss
I m also facing same problem Can any body help me View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064968#4064968 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064968 ___ jboss

[jboss-user] [Beginners Corner] - Re: Linkage Error While returning the OrderedMap from EJB

2007-07-17 Thread _pankie
"jaikiran" wrote : Looks like that class is present in multiple jar files (which are loaded by different classloaders). Have a look at http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassCastExceptions. See if it helps identify those jars. | | Nops, There is only one jar file common-collections.

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: RMI argument in EJB method

2007-07-17 Thread moskvach
Big thanks. Could you clarify, why argument type Account is not RMI/IIOP? I've supposed that value has to be passed by reference, but it not so ... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064978#4064978 Reply to the post : http://www.jboss.com/index.

[jboss-user] [JBoss Seam] - Does data In(jection) occur before or after @Create

2007-07-17 Thread harpritt
my @Create annotated method uses a BUSINESS_PROCESS scoped variable, Im sure ive read that the Injected Variable should be available to the @Create method ... but all i get is a null value... so does data In(jection) occur before or after @Create? Many thanks H View the original post :

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: RMI argument in EJB method

2007-07-17 Thread moskvach
Lets see ejb 2.1 specification section 7.11.5 anonymous wrote : | The methods defined in this interface must follow the rules for RMI/IIOP. This means that their argument and return values must be of valid types for RMI/IIOP, and their throws clauses must include the java.rmi.RemoteException

[jboss-user] [JBoss Messaging] - Re: distributed-queue example fails

2007-07-17 Thread stwhit
Please disregard this question. I figured out what I had done wrong. I had copied oracle-persistence-service.xml instead of clustered-oracle-persistence-service.xml during installation. My apologies for the unnecessary post. View the original post : http://www.jboss.com/index.html?module=bb

[jboss-user] [JBoss jBPM] - Users - Groups in JBPM - Oracle

2007-07-17 Thread mailinator
Hi, i was wondering if i could use my own schema for users-groups in my jbpm ? i have seen that there was a jbpm jbpm_id_user ans i was wondering if it was mandatory to use it ? Regards, O.M. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064984#4064984 Re

[jboss-user] [JBoss Seam] - Re: MDB or MD Pojo.

2007-07-17 Thread [EMAIL PROTECTED]
Is this in JBoss AS? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064985#4064985 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064985 ___ jboss-user mailing list jboss-user

[jboss-user] [EJB 3.0] - Re: Problem with Threads and Transactional context

2007-07-17 Thread zerok
Dear waynebaylor, Ty very much for your answer. Although, I'm not trying to persist anything inside my threads. What I'm doing inside my threads in to use the genericDAOBean to perform some searchs. About the thread spawning, can you or anyone suggest a better way to do it? Ty again. Roberto C

[jboss-user] [JBoss Seam] - Re: taskinstance attribute is invalid in ToDo example

2007-07-17 Thread [EMAIL PROTECTED]
Works fine for me in CVS. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064989#4064989 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064989 ___ jboss-user mailing list jboss

  1   2   3   >