[jboss-user] [JBoss Tools (users)] - Re: Warning when using multilanguage

2009-02-19 Thread six-p4ck
Yes i have; it doesnt work without that. It's work but i have warning in IDE. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211344#4211344 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4211344

[jboss-user] [Management, JMX/JBoss] - is there JBoss Admin tools

2009-02-19 Thread siamkom
Hi guru, Is there JBoss Admin Tool? I'd like deploy/redeploy or some configure in the JBoss application server. I have ever seen in GlashFish, they has it and look friendly. I hope JBoos has also. Please let me know if you've it or any comment. Thank you, siamkom. View the original

[jboss-user] [Installation, Configuration DEPLOYMENT] - not declared security domain in servlet init()

2009-02-19 Thread mikala
Hello !!! When I starting jboss 5.0GA with my ear deployed, and when servlet running init() method which calling ejb 2.0 session bean, jboss using different login module (UsersRolesLoginModule) other then I defined for my application (MyLoginModule), but when I redeploy ear (application is

[jboss-user] [J2EE Design Patterns] - Re: Components based application

2009-02-19 Thread FrankTheTank
Make your main project an ear and deploy your components as jars into the root. You will simply need to define your components in the META-INF/jboss.xml or application.xml Throw the whole thing into the deploy folder and you are good to go. For development you need not even package up the ear

[jboss-user] [Security JAAS/JBoss] - different security domain i servlet init method (deploy orde

2009-02-19 Thread mikala
Hello !!! When I starting jboss 5.0GA with my ear deployed, and when servlet running init() method which calling ejb 2.0 session bean, jboss using different login module (UsersRolesLoginModule) other then I defined for my application (MyLoginModule), but when I redeploy ear (application is

[jboss-user] [JCA/JBoss] - Problem in data source binding while server start

2009-02-19 Thread su...@jboss.org
Hi All, I am facing a problem in jboss deployment order while starting server. I am trying to deploy a .jar file which connects to mssql data source. While deploying I am getting the below exception: 14:36:48,795 ERROR [Alerter] Exception occurred in com.soa.alerter.Alerter : MSSQLDSA not

[jboss-user] [JCA/JBoss] - Re: Problem in data source binding while server start

2009-02-19 Thread vickyk
jars will be deployer before the datasource(-ds.xml), so if there are some classes that are getting initialized and require the datasource it will fail because the -ds.xml are not deployed untill the .jar's are deployed. You should look for the strict deployment as explained over here

[jboss-user] [JCA/JBoss] - Re: Integration with Oracle AQ via Sun Adapter

2009-02-19 Thread vickyk
anonymous wrote : Caused by: javax.resource.ResourceException: invalid arguments in call Some ConnectionProperties seems to be missing/wrong in the configuration file, this is my guess right now ;) Are you using the same rar file that is attached at the following location or you have been

[jboss-user] [JCA/JBoss] - Re: MESSAGE DRIVEN BEAN USING mail-ra.rar STOPS WORKING

2009-02-19 Thread vickyk
Did you hear anything about this from the EJB3 forums? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211380#4211380 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4211380 ___

[jboss-user] [JBoss Cache: Core Edition] - configuration of cache when moving from JBoss 4.2.3 to JBoss

2009-02-19 Thread tugman
Hi all. I have a EJB3 based app running in JBoss 4.2.3. I'm trying to move it to JBoss 5, but I'm having problems with the new cache configuration. I'm trying to configure it via jBoss microcontainer as seen in documentation:

[jboss-user] [JCA/JBoss] - Re: Integration with Oracle AQ via Sun Adapter

2009-02-19 Thread ryandavid
Yes, I am using the same rar file and the same xml file attached in that article. I have just included the Oracle libraries aqapi.jar, etc. in that rar (as described in the article). View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211383#4211383 Reply to

[jboss-user] [EJB 3.0] - Access Session Bean from a Servlet in external WAR

2009-02-19 Thread formica
Dear experts, I have an EAR containing some jar files (one with interfaces and POJOs, one with Session Beans, ...), which is correctly deployed and working in JBoss 5, and I'm trying to access some of the Session Beans methods from a separate WAR , which contains GWT based application. I did a

[jboss-user] [JCA/JBoss] - Re: Problem in data source binding while server start

2009-02-19 Thread su...@jboss.org
Hi Vicky, Thnx for the reply. I am changing the deployment order in org.jboss.deployment.MainDeployer-xmbean.xml for -ds.xml and .jar files as below: Allows the override of the suffix order declared by subdeployers, using the syntax [order:]suffix EnhancedSuffixOrder

[jboss-user] [Management, JMX/JBoss] - Re: is there JBoss Admin tools

2009-02-19 Thread jpviragine
Hi, Take a look at: http://www.jboss.org/jopr/ http://www.jboss.org/embjopr/ http://www.jboss.com/products/jbosson/ View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211389#4211389 Reply to the post :

[jboss-user] [JCA/JBoss] - Re: Integration with Oracle AQ via Sun Adapter

2009-02-19 Thread vickyk
Caused by: oracle.jms.AQjmsException: invalid arguments in call | at oracle.jms.AQjmsDBConnMgr.checkForSecurityException(AQjmsDBConnMgr.java:926) | at oracle.jms.AQjmsDBConnMgr.getConnection(AQjmsDBConnMgr.java:605) | at oracle.jms.AQjmsDBConnMgr.init(AQjmsDBConnMgr.java:172)

[jboss-user] [EJB 3.0] - Deployment EJB3 5.0 GA migration

2009-02-19 Thread horstL
hello all, i have a question about migration from jboss 4.2.3GA to 5.0.0GA with EJB3.0 (about 300 EJB's) my ear was working under 4.2.3GA without problems in 5.0.0GA i always get a Stackoverflow the xml deployment descriptors application.xml, jboss-app.xml, persistence.xml are all fixed and

[jboss-user] [JCA/JBoss] - Re: Problem in data source binding while server start

2009-02-19 Thread su...@jboss.org
Following is the org.jboss.deployment.MainDeployer-xmbean.xml configuration to make sure the deployment order: attribute access='read-write' setMethod='setEnhancedSuffixOrder' getMethod='getEnhancedSuffixOrder' descriptionAllows the override of the suffix order declared by subdeployers,

[jboss-user] [EJB 3.0] - Re: Deployment EJB3 5.0 GA migration

2009-02-19 Thread jaikiran
One other user too had reported this, a few days back. We have a JIRA for this https://jira.jboss.org/jira/browse/EJBTHREE-1724. However, i haven't been able to reproduce this because of lack of an application which shows this issue. If it's possible, could you please attach an application

[jboss-user] [Microcontainer] - Re: Accessing EJB's with custom annotations.

2009-02-19 Thread alesj
I think this relates to your question: - http://exitcondition.alrubinger.com/2008/12/20/doing-two-models-at-the-same-time/ View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211397#4211397 Reply to the post :

[jboss-user] [JCA/JBoss] - Re: Problem in data source binding while server start

2009-02-19 Thread vickyk
Hello Sunil, vickyk wrote : jars will be deployer before the datasource(-ds.xml) | I am wrong here ;( The default setting are like this descriptors | value value=250:.rar,300:-ds.xml,400:.jar,500:.war,550:.jse,650:.ear,800:.bsh/ | /descriptors Let us perform some of the

[jboss-user] [JCA/JBoss] - Re: Integration with Oracle AQ via Sun Adapter

2009-02-19 Thread ryandavid
Caused by: oracle.jms.AQjmsException: argomenti non validi nella chiamata | at oracle.jms.AQjmsDBConnMgr.checkForSecurityException(AQjmsDBConnMgr.java:321) | at oracle.jms.AQjmsDBConnMgr.getConnection(AQjmsDBConnMgr.java:541) | at

[jboss-user] [JCA/JBoss] - Re: Integration with Oracle AQ via Sun Adapter

2009-02-19 Thread vickyk
ryandavid wrote : | I debugged the aqapi.jar class file and I discovered that it is called the method createConnection (the first method that doesn't take user/password parameters) of AQjmsQueueConnectionFactory class. | | So the problem should be in classes of sun adapter. The jca

[jboss-user] [JBoss jBPM] - PVM, jBPM request

2009-02-19 Thread frantisek.ko...@gmail.com
Please make VariableMap or VariableScope instance of java.util.Map! At least methods put(Object, Object) | get(Object) | containsKey(Object) should be implemented. It is a problem to use it inside Wicket (put, get) or MVEL (put, get, containsKey), because they need this methods to bind

[jboss-user] [JCA/JBoss] - Re: Integration with Oracle AQ via Sun Adapter

2009-02-19 Thread ryandavid
Indeed I have arrived to method createManagedConection as you wrote. So, the username/password that I configured into the oracleaq-ds.xml file it should be found in ConnectionRequestInfo object ? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211411#4211411

[jboss-user] [EJB/JBoss] - Re: EJB Client hangs while performing context lookup

2009-02-19 Thread Anupkg4jboss
Hey Grim, Even am getting the same problem.But am xecuting in windows env. u got the real reason for this View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211412#4211412 Reply to the post :

[jboss-user] [Security JAAS/JBoss] - Re: different security domain i servlet init method (deploy

2009-02-19 Thread Wolfgang Knauf
Hi, env.setProperty(Context.SECURITY_PRINCIPAL, system); | env.setProperty(Context.SECURITY_CREDENTIALS, ...); | env.setProperty(Context.INITIAL_CONTEXT_FACTORY,org.jboss.security.jndi.JndiLoginInitialContextFactory); does not work any more in JBoss 5 as far as I know. Use this:

[jboss-user] [JCA/JBoss] - Re: Problem in data source binding while server start

2009-02-19 Thread su...@jboss.org
Hi, When I use the default deployment ordering it works fine. But I want to deploy the jar files before deploying the scheduler-service.xml. Alerter.jar is a java project for sending email alerts in specified time interval which is configured in scheduler-service.xml. scheduler-service.xml

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: not declared security domain in servlet init()

2009-02-19 Thread jaikiran
Being discussed here http://www.jboss.org/index.html?module=bbop=viewtopict=150814 View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211421#4211421 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4211421

[jboss-user] [Beginners Corner] - Oracle XA datasoruce with jboss

2009-02-19 Thread spaluvuri
Hi, I am trying to configure the jboss with oraclexa datasources. I want two databases to be configured in the configuration file. I do not know how to configure two databases in xa. The following is my one of the datasource. Can anyone please let me know how can i give the configuration for

[jboss-user] [Clustering/JBoss] - Re: Clustering JBoss 4.0.5, not working, stuck

2009-02-19 Thread sedina
Hi, I'm having same problem with my Jobss instances, same version same setup. So my first question is if you'v managed to cluster the services and how in that case? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211427#4211427 Reply to the post :

[jboss-user] [JCA/JBoss] - Re: Integration with Oracle AQ via Sun Adapter

2009-02-19 Thread ryandavid
Strangely if put the credentials into the createConnection QueueConnection queueConnection = queueFactory.createQueueConnection(scott,mypass); the conect is made. In some way the credentials aren't read from the XML file. Anayway I get then the following exception javax.jms.JMSException:

[jboss-user] [JBoss Tools (users)] - Re: Warning when using multilanguage

2009-02-19 Thread akazakov
I can't reproduce it :( Could you report it to JIRA with step-by-step description to reproduce it? And even maybe you can attache your project there. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211433#4211433 Reply to the post :

[jboss-user] [Security JAAS/JBoss] - Re: Calling protected ejb method from anoter

2009-02-19 Thread drfranknfurter
Excellent, @RunAs suites my requirements perfectly. Thank you very much. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211434#4211434 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4211434

[jboss-user] [EJB 3.0] - Re: Access Session Bean from a Servlet in external WAR

2009-02-19 Thread formica
I think I can answer to my own post: in the EAR I had a META-INF/jboss-app.xml containing this: | jboss-app | loader-repository | AlignServer:archive=AlignServer.ear | /loader-repository | /jboss-app | | and adding a jboss-web.xml to the WEB-INF/ of the WAR |

[jboss-user] [Security JAAS/JBoss] - Re: different security domain i servlet init method (deploy

2009-02-19 Thread mikala
Wolfgang Knauf wrote : | Use this: | SecurityClient client = SecurityClientFactory.getSecurityClient(); | | client.setSimple(user, mypass); | | client.login() | Thanks for reply When I using your sample code I have the same exception: | 13:36:54,291 ERROR [UsersRolesLoginModule]

[jboss-user] [JCA/JBoss] - Re: Integration with Oracle AQ via Sun Adapter

2009-02-19 Thread ryandavid
Ok, the last exception was due to the ExceptionListener that I was trying to set. So I removed that from my client code. Now I get this exception when I create a QueueSession java.lang.NoSuchMethodError: oracle.jdbc.internal.OracleConnection.getDbCsId()S | at

[jboss-user] [EJB 3.0] - Re: Deployment EJB3 5.0 GA migration

2009-02-19 Thread horstL
hi jaikiran, first thanx for response :-) yes bug seem to be the same, problem the ear has a size about 20Mb and is my work of the last year:-) therefore i don't want to upload it anywhere... i have a smaller test application (same style of implementation) but with this one the failure is not

[jboss-user] [Security JAAS/JBoss] - multiple server.log files like server.log.2009-01-12 etc

2009-02-19 Thread BrunoS
On one of our systems we see that several server.log files are created. They typically have names like server.log.2009-01-12, server.log.2009-01-07 etc. The server.log file is also present. System has not been restarted and we have not manually been changing the names. Because we are monitoring

[jboss-user] [Clustering/JBoss] - Clustering for a non-http based application on JBoss

2009-02-19 Thread sapan0832
Hi, I am trying to configure JBoss 4.2.3.GA for clustering applictions (not a web application). Since it is not a web application I am not configuring Apache and mod_jk. Here are the steps I followed for configuring clustering on JBoss: 1. Copied $JBOSS_HOME/server/all and renamed it

[jboss-user] [JBoss Tools (users)] - Re: Warning when using multilanguage

2009-02-19 Thread six-p4ck
Just download eclispe 3.4.1 , jbosstool 3GA nightly from link before, seam 2.1.1GA and JBOSS AS4.2 Dezip eclipse and jbosstools Make a new seam project with the wizzard and deploy it. Add core:resource-loader stuff in component.xml replace text by #{messages['validator.email']}. In web site

[jboss-user] [JBoss Cache: Core Edition] - Re: Rolled back transactions sometimes failing to release lo

2009-02-19 Thread nathanmesser
I thought you might be interested in feedback. In my local testing I was unable to reproduce the problem of orphaned locks, and after two days being in our product and tested here we've not had any problems. View the original post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - CURSOR_SHARING option help needed

2009-02-19 Thread mimmo67
Hi all. I'm working on an Hibernate project with Oracle database and I'm experimenting a huge performance problem on same queries. Our dba engineer suggested us to set the CURSOR_SHARING option to FORCE to solve these problems. My difficulty is that I need to set this option only for the single

[jboss-user] [JBoss Messaging] - Re: Message Driven Beans do not reconnect after restarting t

2009-02-19 Thread oisino
Hi, I believe I'm getting a similar issue to that outlined above, using JBoss Messaging jboss-messaging-1.4.0.SP3 installed on JBoss 4.2.2.GA app server. the version of jboss-remoting is 2.2.2SP4, so it should contain a fix for the issue above. The stack trace is as below, thanks, Oisín.

[jboss-user] [Management, JMX/JBoss] - Re: Service bean initialized twice

2009-02-19 Thread jaikiran
You seem to be marking it as @Service as well as @Stateless @Service | @Stateless | public class SessionManagerBean implements SessionManager, InternalSessionManager | Instead, mark it just as a @Service @Service | public class SessionManagerBean implements SessionManager,

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Hibernate query not smart!

2009-02-19 Thread mimmo67
Hi all. I have a query automatically generate by Hibernate derived from different classes often mapped on the same Oracle table. The problem is that I obtain something like this: select * from A action0_ left outer join B action0_1_ on

[jboss-user] [JCA/JBoss] - Re: Integration with Oracle AQ via Sun Adapter

2009-02-19 Thread ryandavid
I am downloaded and used libraries of OC4J Version 9.0.4 and I can successfully send a message in the queue. I think that OC4J 10 libraries doesn't wotk with JBoss 4.0.2 Anyway the other strange behaviour is that I cannot put the credentials into the oracleaq-ds.xml View the original post :

[jboss-user] [Security JAAS/JBoss] - Re: multiple server.log files like server.log.2009-01-12 etc

2009-02-19 Thread aamonten
This isn't security related at all, please post at the right forum. The conf of log4j is located at conf/jboss-log4j.xml, comment the following line | !-- Rollover at midnight each day -- | param name=DatePattern value='.'-MM-dd/ | and you will keep all the log in

[jboss-user] [JNDI/Naming/Network] - Lookup to SessionContext

2009-02-19 Thread Mailman2009
Hi, the lookup to SessionContext will fail with NameNotBoundException | InitialContext ic = new InitialContext(); | SessionContext sctxLookup = (SessionContext) ic.lookup (java:comp/env/SessionContext); | | I try this code in a Stateless SessionBean. Where is the problem? Need help.

[jboss-user] [EJB 3.0] - Re: ejb3.deployer does not have access to ear scoped loader

2009-02-19 Thread barakka
Hi! thanks for the replay. I've read the post you suggested and the one that was pointed by that one. I had already explored this topics and read everything I could find on the internet about the jboss classloader, loader repository, etc. The problem, however, is not related to hibernate

[jboss-user] [JBoss Tools (users)] - Re: Warning when using multilanguage

2009-02-19 Thread akazakov
I've checked JBossTools-ALL-win32-3.0.0.GA-N200902190001-H1442 Still can't reproduce. See http://screencast.com/t/4PtOfkWEmqq View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211501#4211501 Reply to the post :

[jboss-user] [JNDI/Naming/Network] - Re: TimerService issues

2009-02-19 Thread dolsen
Seems like the Command bean is deployed before the User bean and that the @Timeout happens to early. I guess the beans are deployed in alphabetical order? Changing the name to XXXCommandBean fixed the issue... Any ways of controlling this other than changing names of classes? There are still

[jboss-user] [Advanced Documentation] - Re: Is it possible to use Oracle CEP with JBOSS server?

2009-02-19 Thread PeterJ
I have no idea. What are the requirements for running CEP? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211515#4211515 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4211515 ___

[jboss-user] [JBoss Tools (users)] - Re: Warning when using multilanguage

2009-02-19 Thread six-p4ck
waw amazing demo!!! Thx a lot indeed it's work very fine in your demo. It's a problem in my configuration but i dont find where. I look again. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211518#4211518 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: update process definition instead of creating new versio

2009-02-19 Thread kukeltje
zoegraddy wrote : I've read that the preferred option is to 'migrate process instances' to the new definition, but cannot find any details about how to go about doing that. Are we supposed to modify the jbpm database's tables directly? | For jBPM 3? Yes, since you can only be the one that

[jboss-user] [JBoss jBPM] - Re: getting error when JBPM installer -3.2.4.GA has executed

2009-02-19 Thread kukeltje
- is your datasource file correct? - what version of the mysql driver do you use? Download the lates 5.1.x View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211522#4211522 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4211522

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: CURSOR_SHARING option help needed

2009-02-19 Thread PeterJ
If I recall by Oracle connection options correctly (it's been a while since I used Oracle), you should be able to add this option to the connection URL string. In that case, I would define two data sources, one that has this option, the other that does not. Then set your apps to use the

[jboss-user] [Beginners Corner] - how can you trace SOAP messages in JBoss?

2009-02-19 Thread maverickdc
Hi all, i'm using JBoss 4.2.3, and i got this problem. I have to trace Web Services request/response messages (SOAP messages), because i need to evaluate some WS performance metrics...as request time, service time, and so on... I looked at the server.log file in the

[jboss-user] [EJB/JBoss] - TimerService Restart Issue

2009-02-19 Thread dolsen
I have the following Timer service class defined: | @Stateless | @RemoteBinding(jndiBinding=XXXCommandRemote) | public class XXXCommandBean implements XXXCommandRemote | { | static Logger logger = Logger.getLogger(XXXCommandBean.class); | | @Resource TimerService

[jboss-user] [JBoss Cache: Core Edition] - Re: Rolled back transactions sometimes failing to release lo

2009-02-19 Thread nathanmesser
We've just had an orphaned lock again, so we may have an additional problem. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211528#4211528 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4211528

[jboss-user] [JCA/JBoss] - Re: Integration with Oracle AQ via Sun Adapter

2009-02-19 Thread vickyk
ryandavid wrote : Indeed I have arrived to method createManagedConection as you wrote. | | So, the username/password that I configured into the oracleaq-ds.xml file it should be found in ConnectionRequestInfo object ? Ideally yes, have a look at the CRI implementation of jms ra for Jboss

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: CURSOR_SHARING option help needed

2009-02-19 Thread mimmo67
Can you help me in modifying the data source I use introducing the option you refer? My current data source is something like: xa-datasource jndi-namejdbc/SOCRATEDS/jndi-name track-connection-by-tx/ isSameRM-override-valuefalse/isSameRM-override-value

[jboss-user] [JCA/JBoss] - Re: Integration with Oracle AQ via Sun Adapter

2009-02-19 Thread vickyk
ryandavid wrote : | Anyway the other strange behaviour is that I cannot put the credentials into the oracleaq-ds.xml What do you mean by this, I am unable to understand? It is already placed in -ds.xml anonymous wrote : config-property name=username type=java.lang.StringSCOTT/config-property

[jboss-user] [JBoss Cache: Core Edition] - Re: Rolled back transactions sometimes failing to release lo

2009-02-19 Thread nathanmesser
This one is less obscure, we had an OutOfMemoryError during rollback. 19-Feb-2009 15:50:06 o'clock GMT cdlwlprod01 prod_CDLWLPROD01 [ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)' WLS Kernel 1235058606291 BEA-00 182721306 [[ACTIVE] ExecuteThread:

[jboss-user] [JCA/JBoss] - Re: Problem in data source binding while server start

2009-02-19 Thread vickyk
su...@jboss.org wrote : | scheduler-service.xml looks for the Alerter class. | Can I see the contents of the scheduler-service.xml file? I don't understand how this issue is related to the jca forums now ;( View the original post :

[jboss-user] [JBossWS] - schema validation in JBossWS 2.0.GA

2009-02-19 Thread ailing.qin
Hello, I need do schema validation (like annotation @SchemaValidation since jbossws 3.0) in my project with Jbossws-native-2.0.1.SP2 and Jboss 4.3.0.GA_CP03 without update Jbossws. How can I do? Any help would be appreciated. Thanks View the original post :

[jboss-user] [JBoss jBPM] - Re: getting error when JBPM installer -3.2.4.GA has executed

2009-02-19 Thread santoshkumarsamala
my jbpm-mysql-ds contains the following entry, I have 5.0.51b mysql ?xml version=1.0 encoding=UTF-8? | | !-- The Hypersonic embedded database JCA connection factory config -- | | !-- $Id: hsqldb-ds.xml 63175 2007-05-21 16:26:06Z rrajesh $ -- | | datasources |

[jboss-user] [JNDI/Naming/Network] - Re: spi.NotBoundException

2009-02-19 Thread fatbatman
I'm getting a similar error when calling try to access a bean from a service even though I see messages in the log telling me the bean has been installed. Can anyone help? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211551#4211551 Reply to the post :

[jboss-user] [JBoss Cache: Core Edition] - Re: Rolled back transactions sometimes failing to release lo

2009-02-19 Thread manik.surt...@jboss.com
nathanmesser wrote : | java.lang.OutOfMemoryError: allocLargeObjectOrArray - Object size: 199376, Num elements: 49840 | at org.jboss.cache.util.ImmutableListCopy.(ImmutableListCopy.java:74) | at org.jboss.cache.util.Immutables.immutableListConvert(Immutables.java:66) | at

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Migration from JBoss 4.2.3.GA to JBoss 5.0.0.GA

2009-02-19 Thread fatbatman
I'm also getting; ... 17:44:32,601 WARN [InjectInterceptorsFactory] WEIRDNESS IN AOP: advisor org.jboss.ejb3.aop.extendedmanagedobjectadvi...@4d925d ... message while trying to migrate to JBoss 5. Any progress on why this is? View the original post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Transaction is not active

2009-02-19 Thread itechmani
Hi, am facing the very same exception, i tried changing the parameter you specifed as well. But am using JBOSS 4.2, so the jboss-service.xml said the block of code you specified is inactive and asked me to use the below lines of code instead. | mbean

[jboss-user] [JBoss jBPM] - where to set the database properties while installing jbpm-i

2009-02-19 Thread santoshkumarsamala
when I execute jbpm-installer-3.3.1GA, the wizard will run and I give the location of jboss and also in one of the screen i say that iam using mysql , then the wizard executes completely creating jbpm folder in jboss4.2.2./server/default/deploy/ when i open that newly created jbpm folder i am

[jboss-user] [JBoss jBPM] - Re: where to set the database properties while installing jb

2009-02-19 Thread salaboy21
anonymous wrote : Deployment FAILED reason: Trying to install an already registered mbean: jboss.jca:service | =DataSourceBinding,name=JbpmDS | You are trying to deploy two times the same Datasource.. please check the deploy directory and look for two files with *-ds.xml View the original

[jboss-user] [JBoss jBPM] - Re: Blocking call from Java to jBPM workflow

2009-02-19 Thread hkap...@ciber.com
I understand that processInstance.signal(); is a blocking call till first wait state, I apologize for incomplete post. I am looking for a call that blocks until the workflow is over. Use case is as follows: BusinessProcess that I am implementing includes webservice orchestration (done through

[jboss-user] [JBoss Messaging] - Re: Exception coming in creating our own Connection Factory

2009-02-19 Thread siddharth_2279
Hi, anonymous wrote : You can drop this file to jboss-5.0.0.GA\server\default\deploy and start the server. Please refer to the http example that comes up with jbm 1.4.1.GA. I dropped the file at the said location at then I started the server. It worked. The server started without any

[jboss-user] [JBoss jBPM] - Re: Deployment of jBPM3.3.1 under JBoss 4.2.3 via jbpm-conso

2009-02-19 Thread hkap...@ciber.com
Have a look at the following topic http://www.jboss.org/index.html?module=bbop=viewtopict=150244 -Harshit View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211584#4211584 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4211584

[jboss-user] [JBoss Messaging] - Upgrade JBoss Remoting on JBoss 5

2009-02-19 Thread jbabad
Hi, Using JBoss 5.0.0.GA and its JBM I've seen the following exception | Exception in thread Timer-2 java.lang.IllegalStateException: org.jboss.remoting.ConnectionValidator.run() should not be called directly; use org.jboss.remoting.ConnectionValidator.addConnectionListener() instead. |

[jboss-user] [JBoss jBPM] - Re: where to set the database properties while installing jb

2009-02-19 Thread santoshkumarsamala
there was only file mysql-ds.xml I have removed even that, now i am getting following error | 12:41:11,381 INFO [DatasourceConnectionProvider] Using datasource: java:JbpmDS | 12:41:11,381 WARN [JBossManagedConnectionPool] Throwable while attempting to get a new connection: null |

[jboss-user] [JCA/JBoss] - Re: Integration with Oracle AQ via Sun Adapter

2009-02-19 Thread ryandavid
I mean that I have filled the username and password in config-property element as you but I saw that the createConnection doesn't receive them. So it works only if I use QueueConnection queueConnection = queueFactory.createQueueConnection(scott,mypass); In addition I am trying to use a MDB.

[jboss-user] [JBoss Messaging] - Re: JBM clustering scenario

2009-02-19 Thread jbabad
I'm giving this one a nudge - to see if anyone has experience similar issues. It appears that I'm more likely to get messages stuck if the receiver client attempts to fail-over and then times out after 60 seconds. It is a though something loses track of the correct node IDs to use when pulling

[jboss-user] [JBoss Tools (users)] - JBT Nightly Deleting project does not clean up metadata

2009-02-19 Thread bdlink
Deleted a project created with new seam project (ear). Eclipse 3.4.1 builds deployment in .metadata\.plugins\org.jboss.ide.eclipse.as.core\JBoss_4.2_Server\deploy, including data source xml files. When I delete the project (right click on project and select delete), checking to delete all

[jboss-user] [JBoss Cache: Core Edition] - SPECjAppServer2004

2009-02-19 Thread zeravlai
Hi all, I'm trying to setup a cache to test the performance of JBC 3.0 within JBoss AS 5.0. I'm quite a newbie, so take it easy with me ;-) Application to be used is SPECjAppServer 2004, which uses CMP2.0 EBs. These are the steps I followed: 1.- I created a cache config in

[jboss-user] [JBoss Messaging] - Re: creating a private DLQ and redirect from a queue

2009-02-19 Thread ffranceschi
not works? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211616#4211616 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4211616 ___ jboss-user mailing list

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: CURSOR_SHARING option help needed

2009-02-19 Thread PeterJ
That should work. P.S. When posting XML text or source code, please enclose the text in UBBCode code tags - you can do this by selecting the text and clicking the Code button above the editor window. Also, click the Preview button to ensure that the formatting is correct and the XML text

[jboss-user] [Beginners Corner] - Re: how can you trace SOAP messages in JBoss?

2009-02-19 Thread PeterJ
Uncomment this entry in the jboss-log4j.xml file: !-- Enable JBossWS message tracing |category name=org.jboss.ws.core.MessageTrace | priority value=TRACE/ |/category |-- View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211620#4211620

[jboss-user] [Clustering/JBoss] - JBoss 5 Clustering Documentation Update

2009-02-19 Thread yulun74
Hi, Does anyone know where can find the updated JBoss 5 clustering guide? The one on the web right now doesn't have the corresponding specifications for JBoss 5. Your help is greatly appreciated. Thank you, Eric View the original post :

[jboss-user] [JBoss Portal] - Single Dashboard For Multiple Portal

2009-02-19 Thread sambit_dixit
Hi, I'm looking at a feature where i have created 3 different portals under a single jboss portal instance. Then based on the user log in i need to show dashboard of specific portal where user has access. One way i can think of is to put a controller in the front where it will check the user

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Transaction is not active

2009-02-19 Thread itechmani
I have made the connection time to an hour from the very huge time given above. Please find the below change that i made to jboss-service.config file in the conf folder under messaging profile where i deploy my application. | mbean

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Transaction is not active

2009-02-19 Thread itechmani
itechmani wrote : I have made the connection time to an hour from the very huge time given above. Please find the below change that i made to jboss-service.config file in the conf folder under messaging profile where i deploy my application. | | | | mbean

[jboss-user] [JBoss Portal] - Re: Dashboard configuration - drag and drop

2009-02-19 Thread diparc
I have set aside the multiple dashboard, will be working on it after sometime. currently, I am configuring authentication for JBoss portal and using the same authentication that is used by my web app - Authentication works fine when i access the portal page. However it gives me a Http 500 No

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Tomcat/Catalina is missing in JBoss 4.2.3

2009-02-19 Thread bryanpugh
I hope this question is as easy and dumb as it sounds to me... I am migrating an application from JBoss 3.2.5 to JBoss 4.2.3. My client has some custom code that uses and extends classes in the catalina.jar (Specifically Request, Response, ValveContext, and ValveBase). My problem is that in

[jboss-user] [Microcontainer] - Re: Setting up JBossMC_2.0 for Eclipse

2009-02-19 Thread SegFault
Does any one have a systematic way to setup the microcontainer source for development. I was shocked at not finding a proper readme except for the one in the third-party tools which is not that useful. View the original post :

[jboss-user] [Microcontainer] - Re: Setting up JBossMC_2.0 for Eclipse

2009-02-19 Thread obrien
SegFault wrote : Does any one have a systematic way to setup the microcontainer source for development. I was shocked at not finding a proper readme except for the one in the third-party tools which is not that useful. It's a maven project, so as long as your IDE supports it, just open it and

[jboss-user] [Microcontainer] - Re: Accessing EJB's with custom annotations.

2009-02-19 Thread bryan.kearney
I have seen it.. but does this work for EJB's as well? I ask becuase I have an EJB which looks like this: @Command(commandName = PingBackend) @AuditType(AuditLogType.PING_BACKEND) @Stateless public class PingBackendCommand extends VdcCommandBase { I then created an Annotation Resolver:

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Tomcat/Catalina is missing in JBoss 4.2.3

2009-02-19 Thread PeterJ
In JBoss AS 4.2.x, JBoss Web Server replaced Tomcat. Of course, JBoss WEb Server is just a variation of Tomcat. The classes you are looking for are probably in the jbossweb.jar file. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211640#4211640 Reply to the

[jboss-user] [JBoss jBPM] - The jbpm-installer-3.3.1 has not created DB tables

2009-02-19 Thread santoshkumarsamala
I have executed jbpm-installer-3.3.1.GA, after the installation there has been a folder created with name jbpm in jboss/server/default/deploy/ I have overwritten the url,username and password in jbpm-mysql-ds.xml with values in my local values when i start jboss it has not created any

[jboss-user] [JBoss Portal] - Re: Single Dashboard For Multiple Portal

2009-02-19 Thread rohit000
Sambit, Dashboard itself is another portal (like admin) in a JBoss Portal instance. So the architecture cannot support as is multiple dashboards each specific to 1 portal. Neither I think supporting this would make sense as concept of dashboard is something specific to a user and a user would

[jboss-user] [Security JAAS/JBoss] - Problems with db when using security domain

2009-02-19 Thread newmanw10
I am trying to use a custom login module but when I do so I have problems getting to my DB. So without the @SecurityDomain(customSecurityDomain) annotation everything works just fine. When I use that security domain things look good from and EJB security standpoint as the user is

[jboss-user] [JBoss jBPM] - Re: The jbpm-installer-3.3.1 has not created DB tables

2009-02-19 Thread srohanrao
I am not entirely sure, but as far as I know installer does not create any database. I ran the db scripts generated by JBPM installer to create the database and work of it. Then again I am not using JBPM demo web application just using the workflow engine in my application. View the original

[jboss-user] [Microcontainer] - Re: Setting up JBossMC_2.0 for Eclipse

2009-02-19 Thread SegFault
Does any one have a systematic way to setup the microcontainer source for development. I was shocked at not finding a proper readme except for the one in the third-party tools which is not that useful. View the original post :

[jboss-user] [Management, JMX/JBoss] - Re: is it possible to change maxpoolsize for MDB from JMX-Co

2009-02-19 Thread rksii
I would also like to change the maxpoolsize for an MDB at runntime. I don't care if it through the JMX console or not though that seems like the most likely place. Doesn't anyone have an answer for this? View the original post :

  1   2   >