[jboss-user] [JBoss jBPM] - [jBPM 4 ]JBPMService

2009-07-23 Thread gleenders
The JBoss AS installation delivered with jBPM contains a JBoss Service (SAR) which hosts a jBPM Service (which is bound via JNDI). Since I don't want to use JBoss as AS, what are the other options? I assume that I always need some kind of service who hosts a process engine? Regards, Gert View

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: DEPLOYMENTS MISSING DEPENDENCIES: UNRESOLVED Demands 'pe

2009-07-23 Thread NSchweig
Hi, thanks for your answer. But was does this error really mean? My Appointment.java @Entity | public class Appointment implements Serializable{ | @Id | @GeneratedValue(strategy = GenerationType.AUTO) | private Long id; | | @ManyToMany(fetch=FetchType.EAGER,mappedBy

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: DEPLOYMENTS MISSING DEPENDENCIES: UNRESOLVED Demands 'pe

2009-07-23 Thread jaikiran
This looks like a Hibernate error. The best place would be the hibernate forums. A google search for this error does show up many results. One of them is https://forum.hibernate.org/viewtopic.php?p=2370167 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=424559

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Datasource injection not working on Web Services ?

2009-07-23 Thread jaikiran
"sannegrinovero" wrote : Hello, same problem here: | the DataSource returned is null, even from stateful beans: remoting beans, message driven beans, MBeans. (tryed them all!) | Packaging any jars containing javax.sql.* or any other javax.ejb.* or javax.annotation.* in your application? If

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Application deployment - returning value on deploy succe

2009-07-23 Thread matanderson
4.2.3 is what I am currently working with. If you know of a solution to 5 (or if it does, I have not downloaded or installed 5 yet) that might work out for us as well. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245594#4245594 Reply to the post : http:/

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: DEPLOYMENTS MISSING DEPENDENCIES: UNRESOLVED Demands 'pe

2009-07-23 Thread NSchweig
Oh, the first hint on the hibernate-thread was it. I had tested @Id | @GeneratedValue(strategy = GenerationType.AUTO) | private Long id; and the same the getter-Method @Id | @GeneratedValue(strategy = GenerationType.AUTO) | public Long getId() { | return id; | } ...and forgot

[jboss-user] [JBoss Tools (users)] - Re: Custom JSF components in VPE

2009-07-23 Thread niox
Thank you very much for the pointers. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245585#4245585 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245585 ___ jboss-user mailin

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Application deployment - returning value on deploy succe

2009-07-23 Thread jaikiran
Which version of JBossAS? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245587#4245587 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245587 ___ jboss-user mailing list jboss

[jboss-user] [Microcontainer] - Re: MC develop directory

2009-07-23 Thread jaikiran
And there's some discussion here too http://www.jboss.org/index.html?module=bb&op=viewtopic&t=156023 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245576#4245576 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245576 _

[jboss-user] [JNDI/Naming/Network] - Re: Problem creating self contained datasource and entity ma

2009-07-23 Thread jaikiran
Can you post the console logs (not server.log) when both these applications are deployed? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245588#4245588 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245588

[jboss-user] [EJB 3.0] - CNFE on business interface when injecting MBean in a MDB

2009-07-23 Thread sannegrinovero
Hello, env: JBoss 5.1.0.GA on Sun JDK 6, Fedora want to do: I'm defining a service using annotations and including the classes in a JAR package in EAR; in the same JAR, again using annotations, I define a quartz-activated MDB which is injecting the service. problem: Injection appears to work,

[jboss-user] [JBoss Portal] - Re: about portlet preference

2009-07-23 Thread piergiorgiolucidi
You can try in this way: | Object o = FacesContext.getCurrentInstance().getExternalContext().getRequest(); | PortletRequest request = (PortletRequest) o; | PortletPreferences pp = request.getPreferences(); | pp.setValue(preferenceKey,value); | pp.store(); | Hope this helps. View t

[jboss-user] [JNDI/Naming/Network] - Re: Using jndi from a web project

2009-07-23 Thread mornblues
I have tried that already, but it still doesn't work. I can't figure out why. When I first read about it (http://forums.sun.com/thread.jspa?threadID=626778) it looked like "java:myname" had to work, even without using the reference thing. So I thought the root of my problem was that I couldn't a

[jboss-user] [EJB 3.0] - Hibernate second level cache with manytomany relationships

2009-07-23 Thread angusm
I want to use the Hibernate Second level cache for Entity beans. It works fine with simple Entitys, but in the case of many to many relations (for example the 'Relationships' tutorial) it does not work. I think that, at a Hibernate level, there is an explanation here: http://www.javalobby.org/j

[jboss-user] [Clustering/JBoss] - weblogic jndi lookup from jboss in cluster

2009-07-23 Thread mannam.tessco
I am having a problem with the following code in a jboss cluster environment. javax.naming.Context context = null; | | Properties properties = new Properties(); | properties.setProperty( Context.PROVIDER_URL, "t3://hostname:6131" ); | properties.setProperty( Context.INITIAL_CONTEXT_FACT

[jboss-user] [JNDI/Naming/Network] - weblogic jndi lookup from jboss in cluster

2009-07-23 Thread mannam.tessco
I am having a problem with the following code in a jboss cluster environment. javax.naming.Context context = null; | | Properties properties = new Properties(); | properties.setProperty( Context.PROVIDER_URL, "t3://hostname:6131" ); | properties.setProperty( Context.INITIAL_CONTEXT_FACTO

[jboss-user] [JBoss Messaging] - Re: Defining a distributed / clustered queue

2009-07-23 Thread ejb3workshop
Do you have an example of how one create a clustered temporary queue. Maybe an explanation of why a standard clustered queue does not work. Not being able to receive responses in a consistent way on our external client it a major problem for us. I have had a look the distributed queue example, h

[jboss-user] [Microcontainer] - Re: MC develop directory

2009-07-23 Thread alesj
Check the MC home page. ;-) We list all of the svn locations: - http://jboss.org/jbossmc/ View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245561#4245561 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245561

[jboss-user] [JBoss jBPM] - Re: Can I configure the following

2009-07-23 Thread sushantgupta402
Can I keep it some where in JBPM so that whenever I change these it will take effect automatically. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245556#4245556 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245556 __

[jboss-user] [JBossMQ] - Re: How to send to remote JMS provider using JBossMQ

2009-07-23 Thread jgreiner
I am trying to do this as well, you ever get it working or find some documentation on the subject? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245571#4245571 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245571 ___

[jboss-user] [JBoss jBPM] - [JBPM4] How to maintain class files for different Process ve

2009-07-23 Thread sushantgupta402
If I have 2 different version of a Process having different class file versions. How can I maintain this in JBPM4 version. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245554#4245554 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&

[jboss-user] [EJB 3.0] - Re: Can't get @TransactionTimeout to work

2009-07-23 Thread jaikiran
Can you try upgrading to later versions of JBoss (like 4.2.3 GA or 5.1.0 GA) and try this. 4.0.5 GA by default did not have EJB3 support and required EJB3 patches to be applied. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245562#4245562 Reply to the post

[jboss-user] [JBoss jBPM] - Re: Can I configure the following

2009-07-23 Thread TejJBPM
Do you use JSF..you can retrieve task details, etc using JSF expressions. Or you can write a taskControllerHandler which will be executed every time task is actioned. You can write all your custom code in this handler View the original post : http://www.jboss.org/index.html?module=bb&op=viewtop

[jboss-user] [EJB 3.0] - Re: stateless vs stateful bean

2009-07-23 Thread jaikiran
Please post more details including the relevant code, the exception stacktrace and the JNDI tree view. While posting logs or xml content or code, please remember to wrap it in a code block by using the Code button in the message editor window. Please use the Preview button to ensure that your p

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: DEPLOYMENTS MISSING DEPENDENCIES: UNRESOLVED Demands 'pe

2009-07-23 Thread jaikiran
The real error is: Caused by: org.hibernate.MappingException: Could not determine type for: java.util.List, at table: Appointment, for columns: [org.hibernate.mapping.Column(appointmentOffers)] | This is causing the persistence unit deployment to fail from deploying which effectively result

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Migration application from jboss 4.0.4 to jboss 5.1 does

2009-07-23 Thread jaikiran
anonymous wrote : java.lang.NoClassDefFoundError: Could not initialize class org.apache.log4j.LogManager | Looks like the org.apache.log4j.LogManager isn't found in any of the jars. Do you package any jars containing org.apache.commons.logging.* or org.apache.log4j.*? If yes, then try removi

[jboss-user] [JBoss Portal] - Re: Login information cached? Interceptor?

2009-07-23 Thread mars76
Hi, I am trying to allow the users to login using either lowercase or uppercase username. I have updated the login-config.xml file to include the following setting false Still it doesn't allow the user to login using the lowercase. i have created the usernames in uppercase and they are

[jboss-user] [JBoss Portal] - about portlet preference

2009-07-23 Thread kiki2002d
Hi, I have a question. I am a new of Jboss portal. Before that, i use liferay portal. I want to move a portlet to jboss portal. But the portlet preference does't work. in java code is: FacesContext fc = FacesContext.getCurrentInstance(); ActionRequest req = (ActionRequest) fc.getExternalContext(

[jboss-user] [JBoss jBPM] - jbpm.cfg.xml

2009-07-23 Thread TejJBPM
I am running some Junit test cases in my eclipse. My test cases work great. But I dont understand where it looks for the jbpm configurations.especially the jbpm.cfg.xml..it says | 23-Jul-2009 14:36:44 org.jbpm.JbpmConfiguration getInstance | INFO: using jbpm configuration resource 'jbpm.cfg

[jboss-user] [Clustering/JBoss] - Re: HA-JNDI for JMS

2009-07-23 Thread jgreiner
Well it is on a server. But I think you misunderstood my question. I have a cluster with 3 servers. I can post to the topic and it works just fine, all 3 servers process my request. Now I want to post to a REMOTE Cluster. I can use the code in my example to post to the 3 servers in the remo

[jboss-user] [JBoss Messaging] - Re: Urgent! Clustered-queue on 2 nodes failed

2009-07-23 Thread glenwood
Timfox,thanks! I just basically neglected this setting. I have another question,I would like to implement this solution via JBM2 that we have a cluster with multiple nodes been connected each other,we deploy queue on every node with same queue name to form a messaging cluster,we deploy queue pr

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread kukeltje
Cool... then I make sure it gets into the source View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245537#4245537 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245537 ___ jboss-

[jboss-user] [JBoss Getting Started Documentation] - Re: jboss service in windows

2009-07-23 Thread icasanovas
The problem was that I don't send All parameters to configure the jvm for launch and deploy the applis. Thanks :) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245550#4245550 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=rep

[jboss-user] [JBoss Tools (users)] - Re: Using JBoss Tools in Maven projects

2009-07-23 Thread sanches
snjeza, Seems like I can not check Maven Integration Facet on Maven project with packaging type of jar. pom.xml: jar jar packaging is valid for complex Maven J2EE projects, where parent project contains some EJBs, container EAR and shared jars. Shared jar is not J2EE module, but is inclu

[jboss-user] [JBossWS] - Re: Problem JBOSS-5.1.GA-jdk6 and WebService:SOAP request ex

2009-07-23 Thread _guido
thank you jlankfo, this helps me a lot because i started the server with the run.sh script (usually i used the eclipse ide) and the webservice works fine (finally: without any changes at the script:)). eclipse uses the run.jar to start jboss. i added: -Djava.endorsed.dirs=...jboss-5.1.0.

[jboss-user] [JBoss jBPM] - Re: jBPM 4 reminders

2009-07-23 Thread gleenders
Ronald, Timers etc also don't work. My environment is a JSF (ADF Faces) Application who runs on a WebLogic 11g. Until now my app is more a 'quick and dirty' approach to see if I get everything working under this new environment. For the moment my process engine is in a singleton and is only cal

[jboss-user] [JBoss Tools (users)] - Re: Custom JSF components in VPE

2009-07-23 Thread mareshkau
niox, It's works for custom components which has source tag, it's not works for custom renders. As I understand DOM created in java code in you own render? It's not loads from some .xhtml file. If so there isn't possibility in VPE to display components it's implemented using custom java rende

[jboss-user] [JBoss jBPM] - Re: problem reagarding task node configuration in jbpm

2009-07-23 Thread kukeltje
than you can have version 'conflicts' if you use a newer version of jBPM e.g. 3.2.6sp1 and the scripts from the esb could be for 3.2.2 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245536#4245536 Reply to the post : http://www.jboss.org/index.html?module=b

[jboss-user] [JBossWS] - Re: JAXWS on JBoss 4.2.2

2009-07-23 Thread nikhilm
I shall switch over to jboss-5.*, but the problem was of few unwanted older jars kept on deploy, which probably were causing the problems. After cleaning up the deploy directory and putting jaxb-api-2.1 in endorsed.. the web service was up. Thanks.. View the original post : http://www.jboss.

[jboss-user] [JBoss jBPM] - Re: problem reagarding task node configuration in jbpm

2009-07-23 Thread vnm
Are you asking for jbpmdb? In this schema I have executed list of scripts given by jbpm to run persist your jpdl in mysql...Actually I am using jbpm and esb in integration...So on installation of jbossesb suit, I have found out the mysqlscript file for jbpm tables... Thanks and Regards vnm Vi

[jboss-user] [JBoss Tools (users)] - Re: Custom JSF components in VPE

2009-07-23 Thread niox
Maxim, Thank you for your reply. I had come across your work while investigating for my question. Does this work for custom components or custom renderers that are not defined as facelets components? Say I have a custom renderer for the UISelectOne component, and a Facelets tag that integrates

[jboss-user] [JBoss jBPM] - Re: problem reagarding task node configuration in jbpm

2009-07-23 Thread kukeltje
how did you create the schema? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245522#4245522 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245522 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread TejJBPM
why not..definitely..that is exactly what i meant.. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245525#4245525 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245525 ___ jbo

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread kukeltje
So? that means you are going to fix it IN jBPM and contribute that? ;-) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245524#4245524 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245524 _

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread TejJBPM
that is very true Ronald..Cant imagine this forum live without your contributions..no doubt..:)..thanks again.. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245520#4245520 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply

[jboss-user] [JBoss jBPM] - Re: jBPM 4 reminders

2009-07-23 Thread kukeltje
I would think reminders are jobs, so if timers etc work task-reminders should to. Designing your webapp is a totally different thing and not answered easily. Not that it is difficult to incorporate jBPM, but there are so many ways, also depending on frameworks you use (spring/seam, jsf/gwt, et

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread kukeltje
Sigh... That is why I said make a unit test and remember my first reply in this topic: anonymous wrote : What I would do is 'fix' it in the task-assign handler in jBPM where you e.g. try to find a template with that name -assign and use that if it does exist. If it does not, use the normal tem

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Unauthenticated caller null N sqlException

2009-07-23 Thread ravirachannavar
Hi Peter. yestrday when I run the run.bat . it has stopped at initialising recovery manager...did not proceed further.. (which was perfectly running showing the msg"sercer started successfully" ) Even I tried once restarting the system..still the same.. What might be the problemI did n

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread swatis
welcome boss :) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245516#4245516 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245516 ___ jboss-user mailing list jboss-user@list

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread swatis
Please see the sample code from prev reply. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245509#4245509 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245509 ___ jboss-user

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread TejJBPM
hey got it..i will try it and let you know .. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245504#4245504 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245504 ___ jboss-u

[jboss-user] [JBoss jBPM] - Re: [JBPM4] deleteProcessInstanceCascade throw an exception

2009-07-23 Thread kukeltje
but have you tried the 'fix'? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245493#4245493 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245493 ___ jboss-user mailing list j

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread TejJBPM
sorry..where do i specify the event type?..how do i specify it when calling the custom template? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245503#4245503 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245503 ___

[jboss-user] [JBoss Portal] - Re: JBoss 5 Integration

2009-07-23 Thread mposo...@redhat.com
This link to JBoss Portal blog should help you: http://blog.jboss-portal.org/2009/03/jboss-portal-running-on-jboss-as5.html View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245510#4245510 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread TejJBPM
works like a treat:) I thought there is no way of acheiving this other than jbpm code.. thanks a lot for your reply swati..you have saved my day ! :) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245513#4245513 Reply to the post : http://www.jboss.or

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread swatis
I said you can use taskInstance.id, taskInstance.name expressions in custom mail template and you will get the values as well. Use event "type" as "task-assign" View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245501#4245501 Reply to the post : http://www.j

[jboss-user] [JBoss jBPM] - Re: Mail node template

2009-07-23 Thread swatis
in example you used "mail name="notification" template="blah-blah" right. And in action tag you used "notification" as ref-name "Mail" is "action" nto "node". So its perfectly all right to use the same. I got mail with same configuration. View the original post : http://www.jboss.org/index.html

[jboss-user] [JBoss Cache: Core Edition] - How to let jboss cache work with application server containe

2009-07-23 Thread niuxuetao_fiserv
Hello, I have several general questions about the transactionality of jboss cache (3.1.0GA): 1. Is it XA-transactional? 2. How do I make it participate into the global container managed XA transaction? Thanks, Xuetao View the original post : http://www.jboss.org/index.html?module=bb&op=vie

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread TejJBPM
Thanks Swati for all your contribution.. Thanks Ronald for your reply. The flip side of changing the jbpm code is you cant upgrade to the latest version whenever you want..If we can fix it in our code(if only it is possible) we always have the flexibility to upgrade...i hope you agree with me..

[jboss-user] [JBoss jBPM] - Can I configure the following

2009-07-23 Thread sushantgupta402
Hi, I have a requiement to manage following through configuration. Is it possible? a) Next Step for a task b) For whom the task will be generated c) To whom the e-mail will be sent Also is there a way to modify process definition programatically? The above question is applies to following ver

[jboss-user] [JBoss jBPM] - jBPM 4 reminders

2009-07-23 Thread gleenders
Hi, If I want to implement reminders in jBPM 4 what do have to set up to get this working? It is not clear to me when the jBPM engine poll's the tasks to see if it has to send a reminder. So for the moment nothing happens with the reminders attached to my tasks (no reminders mails are send au

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread kukeltje
making the task-template configurable via the jBPM source should not take more than 2 hours... itś fairly obvious. In JpdlXmlReader there is a line: Delegation delegation = createMailDelegation(notificationEvent, null, null, null, null); notificationEvent contains 'task-assign' what is als

[jboss-user] [JBoss jBPM] - Re: Mail node template

2009-07-23 Thread kukeltje
no, your syntax was *not* correct. You referenced a node instead of an action. That does *not* work. There might have been a warning when *deploying* this process that a reference to an action could not be found but I'm not sure. Changing it to an action makes it work since that is the correct s

[jboss-user] [JBoss Getting Started Documentation] - jboss service in windows

2009-07-23 Thread icasanovas
Hi, sorry but my english is very bad. We have instaled Jboss AS v 5.1.0.GA and work fine if I launch the run.bat with the parameters. The problem is when I launch the jboss with the wrapper services in windows server 2003. Apear an exception in log file: 2009-07-23 10:18:43,121 ERROR [org.jbo

[jboss-user] [Installation, Configuration & DEPLOYMENT] - oracle xmlparserv2 in JBOSS 5.1.0 GA

2009-07-23 Thread jguyard
Hi, here is the context: - JBOSS 5.1.0 GA - last release of JBOSSWS installed on it - my application uses JAX-WS webservices Ear i want to deploy uses ADF 10.1.3.3. The thing is that I really don't want to deploy my application with all ADF's jars placed in WEB-INF/lib. So ADF's jars have been

[jboss-user] [JBoss Messaging] - Re: Defining a distributed / clustered queue

2009-07-23 Thread timfox
As I mentioned in my previous reply you need to either a) use a clustered *temporary* queue b) use a response *topic* View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245478#4245478 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=

[jboss-user] [JBoss Messaging] - Re: Urgent! Clustered-queue on 2 nodes failed

2009-07-23 Thread timfox
You're not specify your hostname on your acceptors, this will default to localhost which is clearly not visible from other machines. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245469#4245469 Reply to the post : http://www.jboss.org/index.html?module=bb&o

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread swatis
I forgot to mention one point is if you use expressions like "#{taskInstance.name}" it gives you the task name. So your main concern is solved. :) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245485#4245485 Reply to the post : http://www.jboss.org/index.h

[jboss-user] [JBoss jBPM] - Re: Mail Template Font

2009-07-23 Thread TejJBPM
That was very useful to know..thanks for the link Ronald... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245468#4245468 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245468 ___

[jboss-user] [JBoss Messaging] - Re: JBM2 cluster fails under heavy load

2009-07-23 Thread timfox
Also it would help a lot if you always mention what exact version you are running. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245470#4245470 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245470 ___

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread TejJBPM
thanks for your reply.. I need the #{taskInstance.id} but it works in "task-assign" template but not in custom template... So it is still a problem :( View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245486#4245486 Reply to the post : http://www.jboss.org/in

[jboss-user] [JBoss jBPM] - Re: Mail node template

2009-07-23 Thread TejJBPM
thanks swatis..i used a mail action instead of ref-name and it worked fine.. The previously it was not sending the email and there was no error log as well.. It was a bit strange as i thought i am using the syntax correctly.. sorted now..thanks for your reply View the original post : http://ww

[jboss-user] [Clustering/JBoss] - Re: HA-JNDI for JMS

2009-07-23 Thread FrankTheTank
Is this on the server's side only? Then you can use your own ip. i.e. ${bind.address} | p.put(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory"); | p.put(Context.URL_PKG_PREFIXES, "jboss.naming:org.jnp.interfaces"); | p.put(Context.PROVIDER_URL, S

[jboss-user] [Clustering/JBoss] - Re: Publishing JMS msg from clustered AS

2009-07-23 Thread FrankTheTank
I have not enough knowledge of 5.x to give a usable answer, but iirc 5.x uses JBossMessaging and if the destinations are configured correctly (i.e. as clustered destinations), any messages sent to these destinations will be distributed automatically. Thus you will not have to worry about it and

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread swatis
| | | | | | | Now here instead of using action ref-name you can use mail action also. this works. :) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245481#4245481 Reply to the post : http://www.jboss.org/index.

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread TejJBPM
Thanks for your reply.. Yes I found that i can use the task-assign template or custom template but there is a big difference in using them If I use task-assign I am able to use the expression {taskInstance.id} and it picks up the task id correctly. .but if i use my custom template {taskInstanc

[jboss-user] [JBoss Messaging] - Defining a distributed / clustered queue

2009-07-23 Thread ejb3workshop
I have this issue with not being able to receive responses which I reported in this thread http://www.jboss.org/index.html?module=bb&op=viewtopic&t=158725. In one of the responses the suggestion was made to define a distributed queue. I though this was done using the CLUSTERED=TRUE parameter in

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Migration application from jboss 4.0.4 to jboss 5.1 doesn't

2009-07-23 Thread sunnykid
Hi, I have to migrate an application from jboss 4.0.4 to jboss 5.1. In jboss 4 the application works well. But under jboss 5 i am not able to get the application run :( Here is the exception: Error configuring application listener of class org.apache.myfaces.webapp.StartupServletContextListen

[jboss-user] [JBoss Tools (users)] - Re: Custom JSF components in VPE

2009-07-23 Thread mareshkau
Any feedback is appreciated. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245608#4245608 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245608 ___ jboss-user mailing list j

[jboss-user] [JBoss jBPM] - Re: Mail node template

2009-07-23 Thread swatis
Hmm... I tried example given by you and was able to successfully execute the same. What error you are getting? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245465#4245465 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p

[jboss-user] [EJB 3.0] - Re: Can't get @TransactionTimeout to work

2009-07-23 Thread mihai.ratiu
Can this problem occur from the fact that I'm using the @TransactionTimeout annotation from org.jboss.* package, and the others from javax.ejb.*? Did anyone faced this problem? Thx, Mihai View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245461#4245461 Reply t

[jboss-user] [JBoss jBPM] - Re: [JBPM4] deleteProcessInstanceCascade throw an exception

2009-07-23 Thread RonanKER
Here is the stacktrace: | | INFO [DefaultCommandService] - exception while executing command org.jbpm.pvm.internal.cmd.deleteprocessinsta...@169c398 | org.hibernate.exception.ConstraintViolationException: could not delete: [org.jbpm.pvm.internal.history.model.HistoryProcessInstanceImpl#

[jboss-user] [JBoss jBPM] - Re: problem reagarding task node configuration in jbpm

2009-07-23 Thread vnm
hi Ronald, Thanks for your reply.. As per your instruction I changed dialect property as below in my hibernate.cfg.xml because we are using innodb as default storage engine org.hibernate.dialect.MySQLInnoDBDialect which was priviously org.hibernate.dialect.MySQLDialect But the err

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Problem while creating EAR

2009-07-23 Thread sridhar1985
Thanks for the reply. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245455#4245455 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245455 ___ jboss-user mailing list jboss-use

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread swatis
Purpose of having "notify" attribute in task-node is to send "task-assign" template mail to the assignee. Now, you can achieve the same thing i.e. you can send notification mail to the assignee but dont use "notify" attribute instead use "mail" action which will send your custom template mail to

[jboss-user] [JBoss Messaging] - Re: Urgent! Clustered-queue on 2 nodes failed

2009-07-23 Thread glenwood
I has verified UDP broadcast is working,both servers can receive UDP message,so there should be no networking issue within our jboss cluster Env View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245452#4245452 Reply to the post : http://www.jboss.org/index.html

[jboss-user] [JBoss Messaging] - Re: JBM2 cluster fails under heavy load

2009-07-23 Thread clebert.suco...@jboss.com
Any chance you could try it using a build from trunk? There was a ping problem on trunk that was fixed. In any case, if you have a test to share it would be really nice, we would give a try replicating your issue. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic

[jboss-user] [JBoss jBPM] - Re: Compatible jBPM Version to use with jBoss 4.0.5 Server ?

2009-07-23 Thread vignesh57
I'm also facing the same problem. The installation instructions for jBPM4 is clear as a crystal but it's predecessors lags 'em. The installer type of versions like jBPM-3.2.6-installer is better with step-by-step GUI based installation. I will try jBPM-3.2.6-SP1 and let you know if it works with

[jboss-user] [Microcontainer] - MC develop directory

2009-07-23 Thread jeff.zhang
Hi, I am confused about MC svn directory currently. before MC use http://anonsvn.jboss.org/repos/jbossas/projects/microcontainer/trunk, it seems it is moved into microcontainer/branches/Branch_2_0/ right? it is only updated for MC 2.0.X? And microcontainer/branches/2_0/, it include many MC pr

[jboss-user] [JBoss Messaging] - JBM2 cluster fails under heavy load

2009-07-23 Thread adridi
I have set a cluster of 2 nodes, each node has it's own backup. Each pair (Live/backup) is installed in a 64bits Linux box. Configuration of 4 nodes is the same except "backup" is set to false in each live node. In each node I have 102 distributed queues; A producer produces message to an InBoun

[jboss-user] [JBoss jBPM] - JBPM4.0 Oracle Parent Key Not Found Error

2009-07-23 Thread rams.rapo
Environment: JBPM4.0 Hibernate 3.3.1GA Database: Oracle 10 When i try to create a process instance out of the following process definition, it fails with below error. The same when i run against hsql on my local it works fine. Only difference we have in oracle is the sequence are our own inste

[jboss-user] [JBoss jBPM] - Re: [JBPM4] deleteProcessInstanceCascade throw an exception

2009-07-23 Thread kukeltje
no jira issues related to foreign key constraint violations? H... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245438#4245438 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245438 _

[jboss-user] [JBoss Messaging] - Re: JBM2 cluster fails under heavy load

2009-07-23 Thread adridi
Thanks Tim and Clebert, I am using the latest version; JBM2-Beta3. I will try with a build from the trunk as Clebert suggested, else can I create a Jira and attach my code? Abdel View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245613#4245613 Reply to the pos

[jboss-user] [JBoss Messaging] - Re: JBM2 cluster fails under heavy load

2009-07-23 Thread clebert.suco...@jboss.com
Yeah... please create a JIRA if you still see an issue: https://jira.jboss.org/jira/browse/JBMESSAGING If you attach your code with instructions to replicate it, we will give it a try. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245615#4245615 Reply

[jboss-user] [JBoss jBPM] - Re: problem reagarding task node configuration in jbpm

2009-07-23 Thread kukeltje
use the innodb dialect which is currently commented out. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245430#4245430 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245430 __

[jboss-user] [JBoss jBPM] - Re: [JBPM4] deleteProcessInstanceCascade throw an exception

2009-07-23 Thread rams.rapo
Can you post the error? is it parent key not found? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245431#4245431 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245431 ___ jbo

[jboss-user] [JBoss jBPM] - Re: How to get Task based on Task Variables.

2009-07-23 Thread kukeltje
then use a custom hibernate query on the session that you can retrieve from the context View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245425#4245425 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245425 __

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Datasource injection not working on Web Services ?

2009-07-23 Thread sannegrinovero
sorry forgot to mention some info: testing on JBoss 5.1.0.GA the datasource I'm trying to retrieve is correctly used by other apps, and I can see it's fine in the jmx console. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245428#4245428 Reply to the post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Hibernate Search - fluchtoindexes slooooowww!

2009-07-23 Thread sannegrinovero
hi, sorry for late answer, I'd really recommend to direct this kind of questions to the Search forums: https://forum.hibernate.org/viewforum.php?f=9 (were the Search developers hang around mostly). Did you solve this in the meantime? I'd suggest looking into the IndexWriter parameters, especiall

[jboss-user] [JBoss Messaging] - Re: Urgent! Clustered-queue on 2 nodes failed

2009-07-23 Thread glenwood
Our jboss5 clustering works fine,2 nodes can find each other,if jboss cluster uses UDP as well? I already confirmed with our network engineer,UDP was allowed on our testing Env,I will create a simple socket UDP application to verify this through. BTW,for connection factory look up,I wonder whic

  1   2   3   4   >