[jboss-user] [jBPM Users] - Re: jbpm4.1 task duedate does not persist

2009-09-29 Thread sebastian.s
The first thing would indeed be to file a JIRA issue but only if you can supply a unit test or example code to demonstrate the problem. For information about how to contribute read the sticked post in the developper forum: http://www.jboss.org/index.html?module=bb&op=viewforum&f=219 View the or

[jboss-user] [JBoss Messaging Users] - Re: HA JNDI connection

2009-09-29 Thread roman.mandel...@gmail.com
btw that zip file seams to be corrupted I got the test samples directly from SVN View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257784#4257784 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257784 __

[jboss-user] [JBoss Messaging Users] - Re: HA JNDI connection

2009-09-29 Thread gaohoward
I suggest you try out jbm examples first. you can download it here: http://jboss.org/downloading/?projectId=jbossmessaging&url=/jbossmessaging/downloads/jbm-examples-1.4.3.zip the queue-failover example should be a good start. View the original post : http://www.jboss.org/index.html?module=bb&

[jboss-user] [JBoss Messaging Users] - Re: HA JNDI connection

2009-09-29 Thread roman.mandel...@gmail.com
Hi, Basically you are right but I have published it here because I am trying JBM samples and want to fix it. Now the problem it self: I have started the all configuration of jboss 5.1 GA and mbean shows that the service is there and listening, do you think I need to config something else ?

[jboss-user] [JBoss Messaging Users] - Re: HA JNDI connection

2009-09-29 Thread gaohoward
Hi, I think first you make sure the hajndi service is up and running and the port 1100 is listening. If you want to get more help, i think you put the question to the AS forum. Here we are more good at JBM issues. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopi

[jboss-user] [JBoss Tools Users] - Re: Can not install JBoss Tools in Eclipse Galileo

2009-09-29 Thread mcgilbertus
Thanks for the quick responses. I have downloaded the last Galileo version (SR1) today, and JBossTools worked at first time! Seems there were some dependencies which were added to this SR Ernesto View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257775#4257775

[jboss-user] [jBPM Users] - Re: jbpm4.1 task duedate does not persist

2009-09-29 Thread bixby
I'd like to contribute some code to fix this. Is there a guide or doc somewhere about submission of code for the project? I guess first thing is to file a JIRA issue. To clarify the problem, the task definition's due date is not persisted and obviously therefore not referenced when the task ac

[jboss-user] [Installation, Configuration & Deployment] - JBoss fallback mechanism for authentication methods

2009-09-29 Thread segal96
I am using the CLIENT-CERT authentication method and I would like to implement a fallback mechanism so that the user can login with a username/password, in the case that they do not posess a certificate. BEA has an easy way to do this, by allowing a comma separated list of 's. http://downloa

[jboss-user] [JBoss Cache Users] - Re: InstanceAlreadyExistsException During hot deployment

2009-09-29 Thread pavnesh
Thanks Mircea.Markus for pointing me in right direction. I am able to fix the problem. I upgraded my cache jars to 'Malagueta' version of JBC 3.2.0GA. Also there was one old jar file of JBC which was creating the conflict. Then I also tested the cluster name other than jboss.cache:service=Tree

[jboss-user] [Installation, Configuration & Deployment] - Re: issues with seting up jboss windows serivces.

2009-09-29 Thread nagavijay
Yes I ran service.bat at the command line. When I opened Services from Adminstration Tools--> Control pannel. I do not see the service installed. When I tried on XP every thing works fine. I see the same batch script doesnot work on Windows 2008. View the original post : http://www.jboss.org/

[jboss-user] [jBPM Users] - Ending task with timer - session is closed

2009-09-29 Thread Jimmy56
Hi, I'm using following configuration: JBoss AS 4.3 jBPM 3.2.2 Seam 2.0.2 Hibernate 3.3.0 jBPM is configured to use JTA. JbpmContext is injected with Hibernate session took from Seam managed EntityManager. When I end task, which has a timer, everything works fine but at the end of rendering ph

[jboss-user] [Installation, Configuration & Deployment] - JBOSS runs as a service, but will not autostart

2009-09-29 Thread geneellis
I can successfully get JBOSS to start by typing service jboss start from the command line, but cannot get it to auto start as a service. I believe I have done everything necessary: 1) Placed chkconfig: 2345 80 20 in my start script 2) Executed chkconfig --list to make sure it has been added 3) C

[jboss-user] [EJB 3.0 Users] - Re: Design: When the line between domain objects and service

2009-09-29 Thread ttarhan
Don't read too much into my specific example. I'm trying to illustrate a point. My point is that EJB and JPA force us into a model where our domain objects cannot rely on any container provided services. I fully understand the reasoning behind it. However, I'm asking for ideas on elegant ways

[jboss-user] [EJB 3.0 Users] - Re: Design: When the line between domain objects and service

2009-09-29 Thread le_garcon_enerve
Hello! In the case of the mail-box, why not push the functionallity of reacting to an email into the implementation of the mailbox? E.g. change the mailbox.addMessage() method and dynamically set up a reference to the mailbox when you startup the bean. In general, you could use an Adapter/Notif

[jboss-user] [JBoss Portal Users] - links from portlet content to another portal page

2009-09-29 Thread hamptont
I need to create inline hyper-links in the content (JSP fragment) of a portlet to another portal page. What is the best way to do this. I would like to do this from the JSP not from the portlet's Java code. I am not building a menu but simply hyper-linking some of the content that appears in

[jboss-user] [JBoss Cache Users] - What is an invocation, and the related option override?

2009-09-29 Thread alllle
I'd appreciate some clarification regarding the Invocation concept. What is considered an invocation? It looks like JBC uses ThreadLocal to store transaction and InvocationContext, so it appears to me that a invocation is basically having the same lifespan as a thread. Is this correct? What i

[jboss-user] [EJB] - Loading classes from client for EJB 2 / RMI Class loading fr

2009-09-29 Thread evgens
Imagine you have a SessionBean with the method: | Object executeTask(Task t) throws RemoteException { | return t.execute(); | } | where | public interface Task { | Object execute(); | } | This means, the client of this EJB can call the method executeTask with

[jboss-user] [EJB 3.0 Users] - Design: When the line between domain objects and service obj

2009-09-29 Thread ttarhan
I have a design question in the fight about domain driven design, the anemic domain model, and the way EJB/JPA force us to do things. Consider a web-mail application which is built using JPA for persistence and EJB for the services layer. Let's say we have a service method in our EJB like this:

[jboss-user] [JBoss Cache Users] - Re: JDBCCacheLoader failed to obtain connection with JNDI na

2009-09-29 Thread alllle
After some trial and error, I finally located the problem. It seems that the org.jboss.util.naming.NonSerializableFactory class in the required jboss-common-core.jar dependent library is causing any JNDI lookup to fail. I've created a issue with the JBoss Common project: https://jira.jboss.org/j

[jboss-user] [Beginner's Corner] - Re: determining version of servlet in Jboss

2009-09-29 Thread asookazian
apparently the manifest.mf in servlet-api.jar has it View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257734#4257734 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257734 __

[jboss-user] [Beginner's Corner] - determining version of servlet in Jboss

2009-09-29 Thread asookazian
I am downloading JBOss 3.2.7 to see if I can get a JSF 1.2 app running in it. How do I determine which servlet spec (jar) a particular version of JBoss AS is using? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257731#4257731 Reply to the post : http://ww

[jboss-user] [JBoss Portal Users] - Re: SSO / LDAP Integration

2009-09-29 Thread javaspack
Update: I have my own login module for doing Single Sign-on. That part works. What doesn't work is the ability to get UserProfile information from the Active Directory server. Using this forum, the closest problem I could find is: http://www.jboss.org/index.html?module=bb&op=viewtopic&t=135866

[jboss-user] [Installation, Configuration & Deployment] - Re: using error-page in web.xml for custom error page

2009-09-29 Thread asafz
Just wanted to add that when mapping 404 errors to custom disaply page it works just fine: 404 /pages/error.html so it looks like there is some special problem with 500 errors... any ideas? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257728#4257728

[jboss-user] [jBPM Users] - Re: jbpm 4.1 installation problems on jboss 4.2.3

2009-09-29 Thread sridhar18
i have it as java:/JbpmDS View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257727#4257727 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257727 ___ jboss-user mailing list jboss

[jboss-user] [jBPM Users] - Re: jbpm 4.1 installation problems on jboss 4.2.3

2009-09-29 Thread c4s4l
And you have the hibernate.connection.datasource = java:JbpmDS ? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257724#4257724 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257724 __

[jboss-user] [jBPM Users] - Re: jbpm 4.1 installation problems on jboss 4.2.3

2009-09-29 Thread sridhar18
Yes. In the jbpm-*-ds.xml I have it as JbpmDS so jboss prefixes it with java: when it tries to load it. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257722#4257722 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=425772

[jboss-user] [Clustering] - JBoss Cache Replication not happening in a clustered environ

2009-09-29 Thread ramesh-smx
Hi, We have couple of JBoss nodes set up in a clustered mode and we are testing whether the JBoss cache is getting replicated properly. The nodes are coming up properly and joining the cluster as far as we can verify. The only problem is that changes to the cache is not getting replicated betwe

[jboss-user] [jBPM Users] - Re: jbpm 4.1 installation problems on jboss 4.2.3

2009-09-29 Thread c4s4l
"sridhar18" wrote : It's java:JbpmDS both in the console and the ds config file. By ds config you mean the jbpm-*-ds.xml? One should set to java:JbpmDS? It guives the error : Could not create deployment: file:/C:/jboss/jboss-4.2.3.GA/server/default/deploy/jbpm/jbpm-hsqldb-ds.xml | org.jbos

[jboss-user] [JBoss Web Services Users] - Re: avoid lazy-initialization exceptions

2009-09-29 Thread alessio.sold...@jboss.com
INteresting link to better follow this topic: http://blogs.sun.com/searls/entry/jaxb_custom_accessor_for_marshalling View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257712#4257712 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=r

[jboss-user] [JBoss Web Services Users] - Re: avoid lazy-initialization exceptions

2009-09-29 Thread alessio.sold...@jboss.com
You can provide your own JAXBContextFactory, take a look at org.jboss.ws.core.jaxws.CustomizableJAXBContextFactory for instance. This way you can setup the property you need in the context at creation. Then make sure your context factory is loaded by the JBossWS ServiceLoader (basically you mig

[jboss-user] [JBoss Messaging Users] - HA JNDI connection

2009-09-29 Thread roman.mandel...@gmail.com
Hi, I have tried to run HA-JNDI sample the question is what port to use for java.naming.provider.url the one that is specified in Naming service usually 1099 or the port that is specified in HAJNDI service usually 1100. I have tried both options: if I connect to the Naming service port the sam

[jboss-user] [jBPM Users] - Re: Hibernate, Sessions, and Sync - Oh my!

2009-09-29 Thread michaelholtzman
I think this may help us out a lot! You've got the right idea - a custom node sends off an async request to our central application and waits. Some time later, our jBPM app receives the results of that request, then creates a new jbpmContext, loads the token, signals it, and closes the context.

[jboss-user] [Installation, Configuration & Deployment] - Re: unified invoker startup error

2009-09-29 Thread bwarren
I should point out that I've tried binding to 0.0.0.0, localhost, 127.0.0.1, my machine's actual IP address, and the hostname and got the same error in all cases. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257702#4257702 Reply to the post : http://www.j

[jboss-user] [jBPM Users] - Re: Implementing Escalation in jBPM 4.1

2009-09-29 Thread sebastian.s
Okay, thanks for all the hints. It was really due to a classpath problem. Here's what I found: Logging and using Tom's hint with the DBManager showed that there was a query for an execution which did not exist anymore. Before the executing of the job (transition with timer to task "escalation"

[jboss-user] [JNDI and Naming] - Re: HA JNDI , failed to connect from stand alone

2009-09-29 Thread roman.mandel...@gmail.com
One more thing also seams strange: the fact that I can connect and lookup to Naming service port, specified in service=Naming but it doesn't supports fail over. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257700#4257700 Reply to the post : http://www.jbo

[jboss-user] [Installation, Configuration & Deployment] - using error-page in web.xml for custom error page

2009-09-29 Thread asafz
I'm trying to create custom error page for my application to 500 errors, so I added these lines to my application web.xml file: 500 /pages/error.html I tested it by throwing custom exception from my ejb code (I'm using jsf+ejb)This does not do anything and I still see jboss error page. I

[jboss-user] [Installation, Configuration & Deployment] - unified invoker startup error

2009-09-29 Thread bwarren
I'm trying to enable JNDI, EJB, and JMS over HTTP using the instructions from here: http://www.jboss.org/community/wiki/EJBJMSandJNDIoverHTTPwithUnifiedInvoker I'm getting this error message when I deploy the unified invoker SAR: | 2009-09-29 09:21:15,016 ERROR [org.apache.catalina.core.Con

[jboss-user] [Installation, Configuration & Deployment] - Re: issues with seting up jboss windows serivces.

2009-09-29 Thread PeterJ
I don't have my Server 2008 system available just now, but I thought for sure that the service installed just fine for me. Did you run service.bat within a command prompt that you opened with the Run as Administrator option? Also, you should be aware of the problem discussed in this post: http:/

[jboss-user] [jBPM Users] - Re: org.jbpm.persistence.db.DbPersistenceService commit

2009-09-29 Thread kukeltje
You are probably posting the rest now, but try with the latest 3.2.6SPx first View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257691#4257691 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257691 _

[jboss-user] [Installation, Configuration & Deployment] - issues with seting up jboss windows serivces.

2009-09-29 Thread nagavijay
jboss Version:jboss-5.1.0.GA Java Version:JDK 6 Operating System: Window 2008. I am having issues with setting up windows services on Windows 2008. Executed service.bat install from bin directry and it says that it installed Jboss Application Server 5.0. But when I look at the windows service. I

[jboss-user] [JBoss Messaging Users] - No ping on secondaryBindPort or no reporting to JBM of conne

2009-09-29 Thread enriqueam
Hello there, We are running Jboss AS 4.2.3.GA with JBoss Messaging 1.4.4.GA on one box behind a firewall, and we are connecting to one of the topics in the server using a stand alone client running on a different box. In remoting-bisocket-service.xm we have configured the secondaryBindPort to

[jboss-user] [MQ] - Re: Old JMS out of threads error back again in 4.02??

2009-09-29 Thread mkgtvm
Has this got been fixed. If so, in which version. We are having the same issue. Any urgent help is much appreciated. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257685#4257685 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=r

[jboss-user] [jBPM Users] - Re: jbpm 4.1 installation problems on jboss 4.2.3

2009-09-29 Thread sridhar18
It's java:JbpmDS both in the console and the ds config file. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257682#4257682 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257682 __

[jboss-user] [jBPM Users] - Re: jbpm 4.1 installation problems on jboss 4.2.3

2009-09-29 Thread c4s4l
I have the same problem, the JbpmDS is deployed and started as I can see in jmx-console. I also am installing jbpm4.1 on jboss 4.2.3, any ideas? Thanks, Sergio View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257680#4257680 Reply to the post : http://www.jbo

[jboss-user] [Beginner's Corner] - Re: one log4j config for entire ear

2009-09-29 Thread PeterJ
See if this helps: http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4125552#4125416 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257678#4257678 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257678 __

[jboss-user] [jBPM Users] - Re: jbpm 4.1 installation problems on jboss 4.2.3

2009-09-29 Thread kukeltje
with or without the java: prefix? And what about the name in the config file? Does that contain the prefix or not? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257677#4257677 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=rep

[jboss-user] [JBoss Tools Users] - Re: Can not install JBoss Tools in Eclipse Galileo

2009-09-29 Thread nickboldt
The missing update sites required to install the maven or birt integration are listed here: https://www.jboss.org/tools/download/dev.html and here: http://download.jboss.org/jbosstools/updates/JBossTools-3.1.0.M3/ and here: http://download.jboss.org/jbosstools/updates/development/ Add

[jboss-user] [EJB 3.0 Users] - Transaction Demarcation : Same vs Different Server

2009-09-29 Thread enagy
Greetings Am running JBoss 4.0.5 Application Server Deployed thereon, as an ear file, is an EJB 3 Stateless Session Bean The Bean, by neccessity performs its own transaction demarcation (i.e the Bean performs explicit beginTransaction and commitTransaction via calls to Hibernate V 3.2.5). The

[jboss-user] [jBPM Users] - Re: jbpm 4.1 installation problems on jboss 4.2.3

2009-09-29 Thread sridhar18
Yes. I'm able to see JbpmDs from the jmx-console. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257663#4257663 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257663 ___ jboss

[jboss-user] [jBPM Users] - Re: Implementing Escalation in jBPM 4.1

2009-09-29 Thread tom.baey...@jboss.com
configuration file looks good. maybe you have multiple logging.properties files on your classpath. check that you have only one. another thing that you can do when you are in your ide is put this text in your Display window: org.hsqldb.util.DatabaseManager.main(new String[]{}) | select it

[jboss-user] [jBPM Users] - Re: Translation of task node from jBPM3 to 4

2009-09-29 Thread kukeltje
no there is not. And not sure if it will return as it was or whether alternative ways (more bpmn like) will be implemented. What is the behaviour you need? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257650#4257650 Reply to the post : http://www.jboss.o

[jboss-user] [jBPM Users] - Re: Violation of unique constraint with two splits (JBPM-255

2009-09-29 Thread kukeltje
ok, now the pd looks correct. Can you make a full unitest like described in my post in http://www.jboss.org/index.html?module=bb&op=viewtopic&t=158610 So we can see in what step it fails, use that to (probably) fix the problem. Can you also provide debug logs for the accompanying test? If you

[jboss-user] [jBPM Users] - Re: Translation of task node from jBPM3 to 4

2009-09-29 Thread newcomer1
Bumping this. Is there any equivalent for task-node in jbpm 4? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257647#4257647 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257647 __

[jboss-user] [jBPM Users] - Re: JBPM 4.0 HistoryEvent, HistorySession

2009-09-29 Thread sirfrancisdrake
Hi tcr, do you have found a solution for your problem ? or does anybody else have a solution for this problem. i would also like to use a customized history event for tracking and some informational tasks. regards SirFrancis View the original post : http://www.jboss.org/index.html?module=b

[jboss-user] [EJB 3.0 Users] - Re: @Resource and systemproperties-service.xml

2009-09-29 Thread jaikiran
"jprio" wrote : but I want to be able to use the values défined in the systemproperties-service.xml also ! That's a bit tricky actually. Because of the way the deployers work in AS-5, the dependency jboss:type=Service,name=SystemProperties should actually be added on the deployer which pars

[jboss-user] [jBPM Users] - Re: How to stop a process instance

2009-09-29 Thread kukeltje
Do you have a unittest that I can run? You do not demonstrate where you want to end the process instance. And what doe you mean by 'over-complicated'? Nothing from your post points to something that is complicated, let alone over-complicated. It might be a bug, yes, but over-complicated it is n

[jboss-user] [jBPM Users] - Re: Violation of unique constraint with two splits (JBPM-255

2009-09-29 Thread Alkero
With the following process definition the problem still occurs, I don't think the nesting is the source of the problem: | | http://jbpm.org/4.0/jpdl";> | | | | | | | | | | | | | | |

[jboss-user] [Security] - Re: NullPointerException @ DatabaseServerLoginModule.java:14

2009-09-29 Thread kagato11
a little update. Now I know that ctx.lookup(dsJndiName); returns null. dsJndiName is bounded otherwise if I write there some wrong string like ctx.lookup("blablabla'); I get error that "blablabla" was not bound, so my dsJndiName is bounded, but empty? View the original post : http://www.jboss.

[jboss-user] [JNDI and Naming] - HA JNDI , failed to connect from stand alone

2009-09-29 Thread roman.mandel...@gmail.com
Hi, I am trying to connect from a stand alone program to a 2 nodes cluster started on binding set ports-02 and ports-03, all the start and node discovery seams to be ok, but the JNDI lookup fails. here is the client code: | Connection connection = null; | InitialContext initialC

[jboss-user] [jBPM Users] - How to stop a process instance

2009-09-29 Thread fdegrigny
Is it possible to programatically terminate a process instance ? I tried the ProcessIntance.end() method but it doesn't work. After this method was called the token continue to the next task node and the process status in not equal to "terminated". The method ProcessInstance.hasEnded() return fals

[jboss-user] [jBPM Users] - Re: Implementing Escalation in jBPM 4.1

2009-09-29 Thread sebastian.s
I don't manage to turn up the loglevel. Any hints? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257632#4257632 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257632 ___ jbos

[jboss-user] [JBoss Messaging Users] - Re: NoClassDefFound Exception from Sun AS 8.2 to JBM 1.4.0

2009-09-29 Thread bodrin
anonymous wrote : jbossall-client.jar is an evil aggregation of jars. You will need to use the individual client jars from /jboss/client. I have changes the examples to make use of the correct jars, and we have documented the minimal set for JBM, but depending on the other EE features you use yo

[jboss-user] [JBoss Tools Users] - Re: JBoss BRMS Enterprise and JBoss Tools

2009-09-29 Thread max.ander...@jboss.com
afaik it should be ok. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257626#4257626 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257626 ___ jboss-user mailing list jboss-u

[jboss-user] [jBPM Users] - Re: Jbmp task recovery

2009-09-29 Thread kukeltje
But do this IN your NEW command, not using one of 'ours' and do filtering afterwards. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257622#4257622 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257622 ___

[jboss-user] [jBPM Users] - Re: org.jbpm.persistence.db.DbPersistenceService commit

2009-09-29 Thread kukeltje
Sebastian is partly right, for the full meaning of my 'great' look at http://www.jboss.org/index.html?module=bb&op=viewtopic&t=158610 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257621#4257621 Reply to the post : http://www.jboss.org/index.html?module=bb&

[jboss-user] [jBPM Users] - Re: Jbmp task recovery

2009-09-29 Thread kukeltje
yes look at the query api's View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257619#4257619 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257619 ___ jboss-user mailing list jbo

[jboss-user] [jBPM Users] - Re: jbpm 4.1 - Task assignment

2009-09-29 Thread kukeltje
- Yes - Yes, but you might need other changes as well if there have been core/console related enhancements (check the jira, but even that is not always a guarantee) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257618#4257618 Reply to the post : http://www.

[jboss-user] [Security] - Re: NullPointerException @ DatabaseServerLoginModule.java:14

2009-09-29 Thread kagato11
Hi, I've the same problem as mactex. Struggling for 3 days with: javax.security.auth.login.LoginException: java.lang.NullPointerException I try to use database as user repository in Drools 4 BRMS or Drools 5 Guvnor. Got similar configuration as mactex except that I had to point policy from logi

[jboss-user] [Clustering] - Re: Java Heap Space error in JBOSS 5.1.0 GA

2009-09-29 Thread sridhar1985
Hi, Thanks for your reply. But in Jboss 5.1.0 GA these are the default values. Sridhar View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257602#4257602 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257602

[jboss-user] [JBoss Messaging Users] - Re: java.lang.RuntimeException: Error setting up server invo

2009-09-29 Thread timfox
Looks to me there is an extra "." on the address: | Caused by: java.net.UnknownHostException: 0.0.0.0.. | Should be 0.0.0.0 not 0.0.0.0. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257577#4257577 Reply to the post : http://www.jboss.org/index.htm

[jboss-user] [JBoss Messaging Users] - Re: java.lang.RuntimeException: Error setting up server invo

2009-09-29 Thread gaohoward
Hi, What's your version of JBoss and JBM? how did you start it from command line? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257576#4257576 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257576 __

[jboss-user] [Beginner's Corner] - one log4j config for entire ear

2009-09-29 Thread SkyMe
Hello! Please, help me to solve the problem. I need to provide logging for my ear. I want to have only one log4j.xml file in the ear and this file should configure logging for all war's and beans inside ear. I don't want to use JBoss' log4j.xml. Is it possible and how can I do that? Thank you!

[jboss-user] [EJB 3.0 Users] - Re: synchronized @Service

2009-09-29 Thread f_marchioni
It shouldn't be an issue using synchronized in your @Service POJO, however I would suggest you to check out for EJB 3.1 as soon as it will be available on JBoss. There the new @Singleton POJOs have specific synchronization tags. Have a look here: http://www.mastertheboss.com/en/jboss-server/219-e

[jboss-user] [JBoss Messaging Users] - java.lang.RuntimeException: Error setting up server invoker

2009-09-29 Thread harcar1000
Hello, I currently get the following error during start of the JBoss server (from console): 2009-09-29 10:29:14,290 DEBUG [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Creating jboss:service=TransactionManager 2009-09-29 10:29:14,290 DEBUG [com.arjuna.ats.jbossatx.jta.TransactionMa

[jboss-user] [Clustering] - Re: weblogic jndi lookup from jboss in cluster

2009-09-29 Thread mos_lene
Copying weblogic.jar into "JBoss/common/lib" solves the problem. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257569#4257569 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257569 _

[jboss-user] [Clustering] - Re: Java Heap Space error in JBOSS 5.1.0 GA

2009-09-29 Thread f_marchioni
set Java options in JBOSS_HOME/bin/run.cmd (or run.sh in Unix) Ex. set JAVA_OPTS=%JAVA_OPTS% -Xms128m -Xmx512m -XX:MaxPermSize=256m View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257568#4257568 Reply to the post : http://www.jboss.org/index.html?module=bb&op=

[jboss-user] [EJB] - Re: JBOSS PROBLEM

2009-09-29 Thread f_marchioni
Please state -which version of JBoss AS you are running -the JDK is set in JAVA_HOME. -if any libraries in the WEB-INF/lib folder regards View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257566#4257566 Reply to the post : http://www.jboss.org/index.html?modul

[jboss-user] [JBoss Tools Users] - JBoss BRMS Enterprise and JBoss Tools

2009-09-29 Thread Javim
I'm trying to know if i can use my rules, which I generated with JBoss BRMS Enterprise, in my elclipse with JBoss Tools (from community). Are them the same engine? Would have there any problem? Thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257560#42

[jboss-user] [Installation, Configuration & Deployment] - Re: Redirect JBoss root page to a different URL

2009-09-29 Thread f_marchioni
you have JBoss running on port 80 ? maybe you mean you have Apache Web Server fronting JBoss AS ? If you have such a configuration you could use mod rewrite for example. If you are running jBoss standalone you could add an index.jsp page containing something like that. <% response.sendRedirect

[jboss-user] [JBoss Cache Users] - Re: InstanceAlreadyExistsException During hot deployment

2009-09-29 Thread mircea.markus
Once you disabled the jmxStats, JBossCache does not try to bind anything to the mbean server. Even more, the mbean object name for JBC3.0.0 or greater should be jboss.cache:service=JBossCache, and not jboss.cache:service=TreeCache. Can you double check the JBC version you are using? View the o

[jboss-user] [jBPM Users] - Re: org.jbpm.persistence.db.DbPersistenceService commit

2009-09-29 Thread sebastian.s
You should read Ronald's "great" as: Why don't you post a full stacktrace? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257546#4257546 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257546

[jboss-user] [JBoss Cache Users] - Re: Eviction queue fills up causing threads to block

2009-09-29 Thread Jeremy Stone
Unfortunately, I don't seem to have the necessary rights to create JIRA issues :-( View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257545#4257545 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4257545 ___

[jboss-user] [JBoss Messaging Users] - Re: JBoss Messaging Issues

2009-09-29 Thread agohar
Hi, Thanks for the reply but I am not creating a cluster of jboss4 and jboss5, instead I am trying to run both on same machine with different ports. I am running jboss4 on default ports and jboss5 on ports-02 with same bind address (0.0.0.0 or ip). cheers View the original post : http://www.

[jboss-user] [JBoss Portal Users] - Help required for implementing SSO for Jboss Portal with Act

2009-09-29 Thread vijay2p
Hello Everyone, We need to do Single Sign On(SSO) implementation of Jboss portal with Actuate Report Server. The version of Actuate we are using is Actuate10 The version of Jboss portal is jboss-epp-4.3 Any help/reference document related to this will be really appreciated. Cheers Vijay View

[jboss-user] JBoss Deployment Issue on 4.2.3

2009-09-29 Thread Pranav Aggarwal
Hi, I am trying to deploy an application on JBoss 4.2.3 and am getting the below errors. This application is running well on Jboss 3.0.5. All the beans and stuff is defined and files were not changed. Could any one please suggest what could be the issue? Is there some changes with the deployment

[jboss-user] JBoss version 3.0.5 Vs 4.2.3

2009-09-29 Thread Pranav Aggarwal
Hi, I have an application which works on JBoss 3.0.5. But when I try to deploy the same application on JBoss 4.2.3 following warn/error occurs: 2009-09-28 10:09:27,817 WARN [org.jboss.system.ServiceController] Problem starting service jboss:service=invoker,type=http,target=Naming java.lang.NoSu

[jboss-user] [jBPM Users] - Re: org.jbpm.persistence.db.DbPersistenceService commit

2009-09-29 Thread Saravanan.P
Hi The following exception i am getting org.jbpm.persistence.db.DbPersistenceService commit whenever i am calling the following API jbpmContext = JbpmConfiguration.getInstance().createJbpmContext(); TaskInstance taskInstance = jbpmContext.getTaskInstance(taskInstanceId); taskInstance.end();

[jboss-user] [jBPM Users] - SignalCommand problems

2009-09-29 Thread puag
Good morning, I'm starting with jBPM and need to move a task that this stop. I do it: SignalCommand signalCommand = new SignalCommand(); signalCommand.setTokenId(processInstance.getRootToken().getId()); signalCommand.setVariables(aWorkItem); remoteCMDService.execute(signalCommand); but, beside

[jboss-user] [jBPM Users] - Re: Jbmp task recovery

2009-09-29 Thread puag
i made : command = new GetTaskListCommand(aUsuario, true); result =(ArrayList)remoteCMDService.execute(command); for( Object task : result ) { and here i filter and order tasks by (TaskInstance)task).getProcessInstance().getContextInstance().getVariables() } but if i have too task java will

[jboss-user] [JBoss Messaging Users] - Re: jboss message recieve issue

2009-09-29 Thread gaohoward
Hi, I suggest you create a JIRA for this, attach the test if you have. That will help a lot to investigate the issue. Thanks Howard View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257530#4257530 Reply to the post : http://www.jboss.org/index.html?module=bb

[jboss-user] [JBoss Messaging Users] - jboss message recieve issue

2009-09-29 Thread cammette
i used 16 threads to send 5kmessage to a queue,it has 1000tps but i used 16 threads to recieve messages from the queue,it only has 10tps. i used jboss 4.3+jboss message 1.4.4 sp3+oracle10g View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257528#4257528 Reply t

[jboss-user] [EJB 3.0 Users] - Re: @Resource and systemproperties-service.xml

2009-09-29 Thread jprio
It's ok, it works fine, but I want to be able to use the values défined in the systemproperties-service.xml also ! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4257526#4257526 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=re

[jboss-user] [JBoss Cache Users] - Re: Eviction queue fills up causing threads to block

2009-09-29 Thread galder.zamarr...@jboss.com
Or you could just simply catch any Throwable which would include other Exceptions, RuntimeExceptions and Errors. Also, I'd do so at the top level, in EvictionTimerTask.Task class. How about you fill up a JIRA and attach a source patch with your suggestion? :) View the original post : http://ww