[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 the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245590#4245590

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245590
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=appointments) 
  | @IndexColumn(name=INDEX_COL)
  | private ListAppointmentOffer appointmentOffers= new 
ArrayListAppointmentOffer();
  | ...
  | 
  | 

My AppointmentOffer.java

@Entity
  | public class AppointmentOffer implements Serializable{
  | 
  | @Id
  | @GeneratedValue(strategy = GenerationType.AUTO)
  | private Long id;
  | 
  | @ManyToMany(fetch=FetchType.EAGER)
  | @IndexColumn(name=INDEX_COL)
  | private ListAppointment appointments = new ArrayListAppointment();
  | 
  | ...

I can´t see an error here. Do you have any other suggestions where I can look 
for the error?

Thank you.
Nschweig


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245591#4245591

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245591

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245592#4245592

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245592
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 yes then remove those jars.



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245593#4245593

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245593
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245594#4245594

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245594
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 to delete on of them so it was duplicate.

Now it works, thank you very much!
NSchweig


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245598#4245598

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245598
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245585#4245585

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245585
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245587#4245587

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245587
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopict=156023

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245576#4245576

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245576
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245588#4245588

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245588
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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, I get a reference to a proxy, but when using the 
reference I get ClassNotFoundException about the business interface.

MDB code:
import java.io.Serializable;
  | 
  | import javax.ejb.ActivationConfigProperty;
  | import javax.ejb.EJB;
  | import javax.ejb.MessageDriven;
  | 
  | import org.jboss.ejb3.annotation.ResourceAdapter;
  | import org.quartz.JobExecutionContext;
  | import org.quartz.JobExecutionException;
  | import org.quartz.StatefulJob;
  | import org.slf4j.Logger;
  | 
  | import com.revdriver.logging.LoggerFactory;
  | import 
com.revdriver.parking.optimization.databasetruncate.OldDataTruncatorManagement;
  | import com.revdriver.parking.optimization.sessionfactories.SessionFactoryIn;
  | 
  | @MessageDriven(activationConfig = { @ActivationConfigProperty(propertyName 
= cronTrigger, propertyValue = */15 * * * * ?) })
  | @ResourceAdapter(quartz-ra.rar)
  | public class ScheduledOptimization implements StatefulJob, Serializable {
  | 
  | private static final Logger log = LoggerFactory.make();
  | 
  | @EJB( name=MySessionFactory, beanInterface=SessionFactoryIn.class )
  | public SessionFactoryIn sf;
  | 
  | @Override
  | public void execute(JobExecutionContext arg0) throws 
JobExecutionException {
  | log.info( Schedule triggered, sf is null:  + ( sf == null ) );
  | {
  | log.info( using sf class:  + 
sf.getClass().getCanonicalName() );
  | log.info( sf.sayHello() ); //  CNFE EXCEPTION HERE
  | }

This deploys fine, and the management bean is usable from jmx-console, but when 
the timer triggers it prints:
anonymous wrote : Schedule triggered, sf is null: false
  | using sf class: $Proxy378
and then throws exception:
[org.jboss.aspects.tx.TxPolicy] javax.ejb.EJBTransactionRolledbackException: 
Specified calling class, 
com.revdriver.parking.optimization.sessionfactories.SessionFactoryIn could not 
be found for 
baseclassloa...@70dc5c99{vfszip:/home/sanne/jboss-5.1.0.GA/server/default/deploy/quartz-ra.rar/}
  | [org.quartz.core.JobRunShell] Job default.job.0.1248357986793 threw an 
unhandled Exception: 
  | javax.ejb.EJBTransactionRolledbackException: Specified calling class, 
com.revdriver.parking.optimization.sessionfactories.SessionFactoryIn could not 
be found for 
baseclassloa...@70dc5c99{vfszip:/home/sanne/jboss-5.1.0.GA/server/default/deploy/quartz-ra.rar/}
  | at 
org.jboss.ejb3.tx.Ejb3TxPolicy.handleInCallerTx(Ejb3TxPolicy.java:115)
  | at org.jboss.aspects.tx.TxPolicy.invokeInCallerTx(TxPolicy.java:130)
  | at 
org.jboss.aspects.tx.TxInterceptor$Required.invoke(TxInterceptor.java:194)
  | at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:102)
  | at org.jboss.ejb3.tx.NullInterceptor.invoke(NullInterceptor.java:42)
  | at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:102)
  | at 
org.jboss.ejb3.security.Ejb3AuthenticationInterceptorv2.invoke(Ejb3AuthenticationInterceptorv2.java:80)
  | at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:102)
  | at 
org.jboss.ejb3.BlockContainerShutdownInterceptor.invoke(BlockContainerShutdownInterceptor.java:67)
  | at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:102)
  | at 
org.jboss.aspects.currentinvocation.CurrentInvocationInterceptor.invoke(CurrentInvocationInterceptor.java:67)
  | at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:102)
  | at 
org.jboss.ejb3.mdb.MessagingContainer.localInvoke(MessagingContainer.java:282)
  | at 
org.jboss.ejb3.mdb.inflow.MessageInflowLocalProxy.delivery(MessageInflowLocalProxy.java:270)
  | at 
org.jboss.ejb3.mdb.inflow.MessageInflowLocalProxy.invoke(MessageInflowLocalProxy.java:140)
  | at $Proxy359.execute(Unknown Source)
  | at 
org.jboss.resource.adapter.quartz.inflow.QuartzJob.execute(QuartzJob.java:57)
  | at org.quartz.core.JobRunShell.run(JobRunShell.java:203)
  | at 
org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
  | Caused by: java.lang.RuntimeException: Specified calling class, 
com.revdriver.parking.optimization.sessionfactories.SessionFactoryIn could not 
be found for 
baseclassloa...@70dc5c99{vfszip:/home/sanne/jboss-5.1.0.GA/server/default/deploy/quartz-ra.rar/}
  | at 
org.jboss.ejb3.common.lang.SerializableMethod.getClassFromName(SerializableMethod.java:311)
  | at 
org.jboss.ejb3.common.lang.SerializableMethod.getClassType(SerializableMethod.java:282)
  | at 

[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 the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245577#4245577

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245577
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 access it in the 
first place.

I'm out of ideas, I think I'll just make a conditional in the code so it will 
work on jboss and tomcat differently.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245574#4245574

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245574
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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/java/forums/t48846.html
But I can not see how to implement his suggestion at EJB3 level. 
I suppose that what I am looking for is an annotation equivalent of
  many-to-one name=parent column=parent_id class=Person/
  |   set name=children
  |key column=parent_id/
  |cache usage=read-write/
  |one-to-many class=Person/
  |   /set
  | 
Specifically the cache usage=read-write/ bit.

Can anyone help? Thanks?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245582#4245582

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245582
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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_FACTORY, 
weblogic.jndi.WLInitialContextFactory );
  | 
  | context = new InitialContext( properties );
  | 
  | out.println( context.lookup( QueueConnectionFactory ) );  



The above code works fine in default jboss server. I am using the following

JBoss 5.1.0.GA ( using wlclient to connect )
Weblogic 8.1

I get CORBA.initialize exception in the cluster ( all environment ) and it 
works fine in default envirobment.

Could someone please help me in this.

Thanks,
Ram

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245586#4245586

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245586
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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_FACTORY, 
weblogic.jndi.WLInitialContextFactory );
  | 
  | context = new InitialContext( properties );
  | 
  | out.println( context.lookup( QueueConnectionFactory ) );

The above code works fine in default jboss server. I am using the following 

JBoss 5.1.0.GA ( using wlclient to connect )
Weblogic 8.1

I get CORBA.initialize exception in the cluster ( all environment ) and it 
works fine in default envirobment. 

Could someone please help me in this.

Thanks,
Ram

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245584#4245584

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245584
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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, however this does 
something quite different to what we do in our application.

Do you mean we must create a clustered temporary queue from the session like 
this :

session.createTemporaryQueue();

This would break our entire design. Currently the client and the MDB are only 
coupled by the queue name which is pre-defined. 

Do you know if there is a bug / jira raised on this issue ? or do you have any 
further details on why this works the way it does. I am guessing this is 
affecting 4.3 EAP as well ?

Grateful for any input on this.
Regard
Alex



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245583#4245583

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245583
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245561#4245561

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245561
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245556#4245556

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245556
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245571#4245571

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245571
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245554#4245554

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245554
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245562#4245562

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245562
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245553#4245553

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245553
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 post is correctly formatted.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245565#4245565

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245565
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 results in the application from failing.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245567#4245567

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245567
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 removing them from the application 
packaging.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245564#4245564

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245564
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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

   module-option name=validateUserNameCasefalse/module-option

Still it doesn't allow the user to login using the lowercase. i have created 
the usernames in uppercase and they are stored in a sql DB.

Thanks
Mars

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245568#4245568

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245568
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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().getRequest();
PortletPreferences p=req.getPreferences();
String url=**;
p.setValue(URL, url);
p.store();

Can I save some data in portlet with PortletPreferences object? And how? 
I use Jboss AS 4.2.3, jboss portal 2.7.2.
Thanks!

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245572#4245572

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245572
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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.xml'

But i would like know the complete path of the cfg file it uses.my questions are
1. In eclipse how does the junit refer to the runtime classpath location for 
jbpm.cfg.xml?
2. If i want to print the jbpm.cfg.xml path in the junit how do i do that? is 
there any method?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245563#4245563

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245563
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 remote cluster.   However I do not want the 
servers hard coded, I would rather make them a configuration value on jboss 
either using jndi or creating a topic destination and providing the server list 
via a parameter or attribute.   However I am finding it hard to locate any 
documentation supporting this.   

Seems like a topic for the jboss messaging forum.   I posted here since I was 
working with a remote cluster.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=424#424

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=424
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 
producer on several nodes and also deploy consumer on some nodes as well with 
messaging load balance(server side),our requirement is once one node 
down(completely server down) which has consumer ,the other consumers will 
consume the messaging sent to down server,once this server up ,it will resume 
to consume the queue messages as messages been load balanced to this node again.

I have configured the messaging cluster and queue messaging redistribution,but 
seems it didn't work as I expected.

Sometime,after I shutdown server2,and sent 10 messages to queue,server1 only 
consume 5 of them,looks like redistribution failed.Once I restarted the 
server2,it got rest of 5 messages!

I also keep getting this WARN message after I shutdown/restart 2nd server 3 
times,
WARNING [DiscoveryGroupImpl] There seem to be more than one broadcasters on the 
network broadcasting the same node id

Do you have any suggestion?Thanks in advance!

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245551#4245551

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245551
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245537#4245537

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245537
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245550#4245550

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245550
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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:
packagingjar/packaging

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 included into resulting EAR

Alex.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245539#4245539

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245539
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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.GA/lib/endorsed 

to the server vm arguments in eclipse and everything works perfect.

thanks for the push to the solution,

guido




View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245546#4245546

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245546
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 called if needed.

But to get the jobs working I suppose I have to get the process engine running 
as service (According the dev guide chapter 15.4) and bound to JNDI. Since I 
have little experience in this area and since the dev guide explanation is very 
brief I could use some help here.

I remember from my jBPM 3 experience that the process engine was polling the DB 
all the time (on JBoss). My current jBPM 4 WebLogic app's process engine is not 
polling at all. So my first concern is to set it up as a service.

Regards,
Gert


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245545#4245545

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245545
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 render. We are thinking 
about how we can do it, here some diagrams which show how VPE processing 
elements and my proposals for feature
http://www.jboss.org/community/wiki/VPEcurrentstateandpossibleideastomovingtoo/
Here diagram how vpe process ui:composition 
http://www.jboss.org/community/wiki/VPEprocessingincludefilesuicompositiontemplatecustomcomponentsandetc[/url].
 Code which I have changed you can find in 
[url]https://jira.jboss.org/jira/browse/JBIDE-3197, here exists FishEye tab 
where will be displayed source code changes which related to this issue.
https://jira.jboss.org/jira/browse/JBIDE-3197?page=com.atlassian.jira.ext.fisheye%3Afisheye-issuepanel

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245544#4245544

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245544
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245536#4245536

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245536
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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.org/index.html?module=bbop=viewtopicp=4245532#4245532

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245532
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245533#4245533

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245533
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 the UISelectOne with my new 
renderer. How can I make it display right in VPE?

Also could you point me to the classes you changed for this?

Thanks again,
Nikos

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245529#4245529

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245529
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245522#4245522

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245522
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245525#4245525

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245525
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245524#4245524

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245524
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245520#4245520

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245520
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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, etc..etc...) So a more 
specific question would be handy

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245521#4245521

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245521
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 template. This way you get per 
task templates without changes to the jPDL or database. If you 'fix' it this 
way and include a testcase, I might try to get it incorporated in jBPM.

Then you will not have the problem you describe.. not at all, never 
again Your processdefinitions stay cleaner etc...etc...etc... it is not 
that hard to contribute in return for getting lots of my free time ;-)

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245519#4245519

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245519
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 
msgsercer started successfully )

Even I tried once restarting the system..still the same.. 
What might be the problemI did not made any changes...

Calling C:\Jboss 5.1.0\jboss-5.1.0.GA\bin\run.conf.bat
===

  JBoss Bootstrap Environment

  JBOSS_HOME: C:\Jboss 5.1.0\jboss-5.1.0.GA

  JAVA: C:\jdk1.5.0\bin\java

  JAVA_OPTS: -Dprogram.name=run.bat -Xms128M -Xmx512M -XX:MaxPermSize=256M -Dsun
.rmi.dgc.client.gcInterval=360 -Dsun.rmi.dgc.server.gcInterval=360 -Dorg
.jboss.resolver.warning=true -server

  CLASSPATH: C:\Jboss 5.1.0\jboss-5.1.0.GA\bin\run.jar

===

14:32:21,785 INFO  [ServerImpl] Starting JBoss (Microcontainer)...
14:32:21,896 INFO  [ServerImpl] Release ID: JBoss [The Oracle] 5.1.0.GA (build:
SVNTag=JBoss_5_1_0_GA date=200905221053)
14:32:21,896 INFO  [ServerImpl] Bootstrap URL: null
14:32:21,912 INFO  [ServerImpl] Home Dir: C:\Jboss 5.1.0\jboss-5.1.0.GA
14:32:21,912 INFO  [ServerImpl] Home URL: file:/C:/Jboss%205.1.0/jboss-5.1.0.GA/

14:32:21,912 INFO  [ServerImpl] Library URL: file:/C:/Jboss%205.1.0/jboss-5.1.0.
GA/lib/
14:32:22,055 INFO  [ServerImpl] Patch URL: null
14:32:22,118 INFO  [ServerImpl] Common Base URL: file:/C:/Jboss%205.1.0/jboss-5.
1.0.GA/common/
14:32:22,213 INFO  [ServerImpl] Common Library URL: file:/C:/Jboss%205.1.0/jboss
-5.1.0.GA/common/lib/
14:32:22,324 INFO  [ServerImpl] Server Name: default
14:32:22,372 INFO  [ServerImpl] Server Base Dir: C:\Jboss 5.1.0\jboss-5.1.0.GA\s
erver
14:32:22,483 INFO  [ServerImpl] Server Base URL: file:/C:/Jboss%205.1.0/jboss-5.
1.0.GA/server/
14:32:22,578 INFO  [ServerImpl] Server Config URL: file:/C:/Jboss%205.1.0/jboss-
5.1.0.GA/server/default/conf/
14:32:22,689 INFO  [ServerImpl] Server Home Dir: C:\Jboss 5.1.0\jboss-5.1.0.GA\s
erver\default
14:32:22,784 INFO  [ServerImpl] Server Home URL: file:/C:/Jboss%205.1.0/jboss-5.
1.0.GA/server/default/
14:32:22,895 INFO  [ServerImpl] Server Data Dir: C:\Jboss 5.1.0\jboss-5.1.0.GA\s
erver\default\data
14:32:22,990 INFO  [ServerImpl] Server Library URL: file:/C:/Jboss%205.1.0/jboss
-5.1.0.GA/server/default/lib/
14:32:23,086 INFO  [ServerImpl] Server Log Dir: C:\Jboss 5.1.0\jboss-5.1.0.GA\se
rver\default\log
14:32:23,197 INFO  [ServerImpl] Server Native Dir: C:\Jboss 5.1.0\jboss-5.1.0.GA
\server\default\tmp\native
14:32:23,292 INFO  [ServerImpl] Server Temp Dir: C:\Jboss 5.1.0\jboss-5.1.0.GA\s
erver\default\tmp
14:32:23,450 INFO  [ServerImpl] Server Temp Deploy Dir: C:\Jboss 5.1.0\jboss-5.1
.0.GA\server\default\tmp\deploy
14:32:34,013 INFO  [ServerImpl] Starting Microcontainer, bootstrapURL=file:/C:/J
boss%205.1.0/jboss-5.1.0.GA/server/default/conf/bootstrap.xml
14:32:40,420 INFO  [VFSCacheFactory] Initializing VFSCache [org.jboss.virtual.pl
ugins.cache.CombinedVFSCache]
14:32:40,531 INFO  [VFSCacheFactory] Using VFSCache [CombinedVFSCache[real-cache
: null]]
14:32:42,879 INFO  [CopyMechanism] VFS temp dir: C:\Jboss 5.1.0\jboss-5.1.0.GA\s
erver\default\tmp
14:32:45,480 INFO  [ZipEntryContext] VFS force nested jars copy-mode is enabled.

14:33:02,669 INFO  [ServerInfo] Java version: 1.5.0,Sun Microsystems Inc.
14:33:02,716 INFO  [ServerInfo] Java Runtime: Java(TM) 2 Runtime Environment, St
andard Edition (build 1.5.0-b64)
14:33:02,826 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Server VM 1.5.0-b64,Su
n Microsystems Inc.
14:33:02,920 INFO  [ServerInfo] OS-System: Windows XP 5.1,x86
14:33:02,983 INFO  [ServerInfo] VM arguments: -Dprogram.name=run.bat -Xms128M -X
mx512M -XX:MaxPermSize=256M -Dsun.rmi.dgc.client.gcInterval=360 -Dsun.rmi.dg
c.server.gcInterval=360 -Dorg.jboss.resolver.warning=true -Djava.endorsed.di
rs=C:\Jboss 5.1.0\jboss-5.1.0.GA\lib\endorsed
14:33:03,376 INFO  [JMXKernel] Legacy JMX core initialized
14:33:27,348 INFO  [ProfileServiceBootstrap] Loading profile: profile...@eeabe8[
domain=default, server=default, name=default]
14:35:41,083 INFO  [WebService] Using RMI server codebase: http://127.0.0.1:8083
/
14:37:39,674 INFO  [NativeServerConfig] JBoss Web Services - Stack Native Core
14:37:39,690 INFO  [NativeServerConfig] 3.1.2.GA
14:37:44,858 INFO  [AttributeCallbackItem] Owner callback not implemented.
14:37:48,849 INFO  [LogNotificationListener] Adding notification listener for lo
gging mbean jboss.system:service=Logging,type=Log4jService to server org.jboss
.mx.server.mbeanserveri...@1e6696c[ defaultDomain='jboss' ]
14:48:49,356 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFS
deploymentcont...@352322{vfsfile:/C:/Jboss%205.1.0/jboss-5.1.0.GA/server/default
/deploy/profileservice-secured.jar/}
14:48:49,418 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFS

[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=bbop=viewtopicp=4245516#4245516

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245516
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245509#4245509

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245509
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/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=bbop=viewtopicp=4245504#4245504

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245504
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245493#4245493

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245493
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245503#4245503

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245503
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245510#4245510

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245510
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245513#4245513

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245513
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245501#4245501

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245501
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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?module=bbop=viewtopicp=4245514#4245514

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245514
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245506#4245506

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245506
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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..

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245517#4245517

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245517
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 versions:
jbpm-4.0, jbpm-3.3.1 and jbpm-3.2.2


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245494#4245494

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245494
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 automatically). 

How do I have to design  my web application to achieve the best jBPM 
integration?

Regards,
Gert


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245512#4245512

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245512
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 also the template name

If before this line you check if a template with e.g. the name 
task-name-task-assign exists, you pass in this string, otherwise you pass in 
just the notificationEvent. 

Write a testcase for this et voila...

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245515#4245515

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245515

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 syntax. Or, 
like I said, use transition *to* a mail node to make it work. Functionality 
wise it makes no difference

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245495#4245495

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245495
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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.jboss.system.server.profileservice.repository.ProfileDeployAction] (main) 
Failed to add deployment: admin-console.war
org.jboss.deployers.spi.DeploymentException: Error populating deployment 
vfsfile:/E:/jboss-5.1.0.GA/server/default_am/deploy/admin-console.war/

...

Any idea?

Thanks for all.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245511#4245511

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245511
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 placed in JBOSS_HOME/server/myserver/lib

ADF uses xmlparserv2 which is the oracle implementation that conflicts with the 
default xerces implementation that comes with JBOSS.

I think I tried everything to make that thing works.


1. I tried to set JAVA_OPTS to make oracle parser the priority:
-Djavax.xml.xpath.XPathFactory=oracle.xml.xpath.JAXPXPathFactory 
-Djavax.xml.transform.TransformerFactory=oracle.xml.jaxp.JXSAXTransformerFactory
 
-Djavax.xml.parsers.SAXParserFactory=oracle.xml.jaxp.JXSAXParserFactory 
-Djavax.xml.parsers.DocumentBuilderFactory=oracle.xml.jaxp.JXDocumentBuilderFactory

-- JBOSS server is waiting to start with xerces implementation: it doesn't 
start anymore.

2. I tried to declare oracle implementation in META-INF/services/... in my EAR:

JBOSS starts normally, when i tried to invoke the wsdl document generated by 
jboss with it's URL, i get another error:

java.lang.AbstractMethodError
  | at org.jboss.wsf.common.DOMUtils$1.initialValue(DOMUtils.java:89)
  | at org.jboss.wsf.common.DOMUtils$1.initialValue(DOMUtils.java:110)
  | at 
java.lang.ThreadLocal$ThreadLocalMap.getAfterMiss(ThreadLocal.java:374)
  | at java.lang.ThreadLocal$ThreadLocalMap.get(ThreadLocal.java:347)
  | at java.lang.ThreadLocal$ThreadLocalMap.access$000(ThreadLocal.java:225)
  | at java.lang.ThreadLocal.get(ThreadLocal.java:127)
  | at org.jboss.wsf.common.DOMUtils.getDocumentBuilder(DOMUtils.java:149)
  | at org.jboss.wsf.common.DOMUtils.parse(DOMUtils.java:173)


3. I tried to do nothing special (no JAVA_OPTS, no META-INF/services):

-- Obviously i can invoke the webservice and when it's time for ADF to look 
for a xml parser, I get ClassCastException between xerces and xmlparserv2




I've been looking for a while and I've started to think ears using different 
kinds of frameworks only work in JBOSS when everything is embedded in the ear.

So if anyone has the solution i would be s gratefull

Regards,

Julien

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245499#4245499

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245499
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245478#4245478

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245478
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245469#4245469

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245469
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245485#4245485

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245485
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245468#4245468

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245468
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245470#4245470

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245470
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245486#4245486

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245486
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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://www.jboss.org/index.html?module=bbop=viewtopicp=4245466#4245466

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245466
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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, System.getProperty(bind.address) + 
:1100); // HA-JNDI port.
  | 


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245480#4245480

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245480
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 registering to one destination 
will give you the info from all.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245477#4245477

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245477
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


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

2009-07-23 Thread swatis
 task-node name=task2-have-fun
  |task name=hello
  |assignment expression=user(swati) /assignment
  |event type=task-assign action ref-name=send mail//event
  |  /task
  |  transition to=end1/transition
  |/task-node
  |mail name=send mail template=my-custom-template /


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=bbop=viewtopicp=4245481#4245481

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245481
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 
{taskInstance.id} is not working..it returns blank..

i need the email to have this id so they can click on the link and directly go 
to the process task..

Any suggestion?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245467#4245467

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245467
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopict=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 the jbm serivces XML 
file. Is there any additional configuration required ? The linked thread 
contains my example configuration.

Thanks in advance
Alex

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245475#4245475

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245475
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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.StartupServletContextListener
  | java.lang.ExceptionInInitializerError
  | at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  | at 
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
  | at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
  | at java.lang.Class.newInstance0(Class.java:355)
  | at java.lang.Class.newInstance(Class.java:308)
  | at 
org.jboss.web.tomcat.service.TomcatInjectionContainer.newInstance(TomcatInjectionContainer.java:242)
  | at 
org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3859)
  | at 
org.apache.catalina.core.StandardContext.start(StandardContext.java:4393)
  | at 
org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:367)
  | at 
org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:146)
  | at 
org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:460)
  | at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)
  | at org.jboss.web.deployers.WebModule.start(WebModule.java:96)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:597)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
  | at 
org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)
  | at $Proxy36.start(Unknown Source)
  | at 
org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)
  | at 
org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)
  | at 
org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
  | at 
org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
  | at 
org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
  | at 
org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
  | at 
org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:286)
  | at 
org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
  | at 
org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
  | at 
org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
  | at 
org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
  | at 
org.jboss.system.ServiceController.doChange(ServiceController.java:688)
  | at org.jboss.system.ServiceController.start(ServiceController.java:460)
  | at 
org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:146)
  | at 
org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:104)
  | at 
org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:45)
  | at 
org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
  | at 
org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
  | at 
org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1157)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1178)
  | at 

[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=bbop=viewtopicp=4245608#4245608

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245608
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245465#4245465

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245465
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245461#4245461

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245461
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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#1]
  | at 
org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:94)
  | at 
org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:66)
  | at 
org.hibernate.persister.entity.AbstractEntityPersister.delete(AbstractEntityPersister.java:2559)
  | at 
org.hibernate.persister.entity.AbstractEntityPersister.delete(AbstractEntityPersister.java:2715)
  | at 
org.hibernate.action.EntityDeleteAction.execute(EntityDeleteAction.java:97)
  | at org.hibernate.engine.ActionQueue.execute(ActionQueue.java:279)
  | at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:263)
  | at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:172)
  | at 
org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:321)
  | at 
org.hibernate.event.def.DefaultAutoFlushEventListener.onAutoFlush(DefaultAutoFlushEventListener.java:64)
  | at 
org.hibernate.impl.SessionImpl.autoFlushIfRequired(SessionImpl.java:997)
  | at org.hibernate.impl.SessionImpl.list(SessionImpl.java:1142)
  | at org.hibernate.impl.QueryImpl.list(QueryImpl.java:102)
  | at 
org.hibernate.impl.AbstractQueryImpl.uniqueResult(AbstractQueryImpl.java:835)
  | at 
org.jbpm.pvm.internal.hibernate.DbSessionImpl.findProcessInstanceByIdIgnoreSuspended(DbSessionImpl.java:208)
  | at 
org.jbpm.pvm.internal.hibernate.DbSessionImpl.deleteProcessInstance(DbSessionImpl.java:248)
  | at 
org.jbpm.pvm.internal.cmd.DeleteProcessInstance.execute(DeleteProcessInstance.java:49)
  | at 
org.jbpm.pvm.internal.cmd.DeleteProcessInstance.execute(DeleteProcessInstance.java:31)
  | at 
org.jbpm.pvm.internal.svc.DefaultCommandService.execute(DefaultCommandService.java:42)
  | at 
org.jbpm.pvm.internal.svc.EnvironmentInterceptor.execute(EnvironmentInterceptor.java:54)
  | at 
org.jbpm.pvm.internal.svc.RetryInterceptor.execute(RetryInterceptor.java:55)
  | at 
org.jbpm.pvm.internal.svc.ExecutionServiceImpl.deleteProcessInstanceCascade(ExecutionServiceImpl.java:124)
  | at com.vc.mm.jbpm.JbpmTest.testJBPM(JbpmTest.java:107)
  | 
  | Caused by: java.sql.SQLException: L'instruction DELETE est en conflit avec 
la contrainte REFERENCE 'FK_HACTI_HPROCI'. Le conflit s'est produit dans la 
base de données 'JBPM_TEST', table 'dbo.JBPM4_HIST_ACTINST', column 
'HPROCI_'.
  | at 
net.sourceforge.jtds.jdbc.SQLDiagnostic.addDiagnostic(SQLDiagnostic.java:365)
  | ...

I also found the following thread in this forum:
http://www.jboss.org/index.html?module=bbop=viewtopicp=4242638#4242638

But the given fix does not seem to be applied in the 4.0.0 GA.



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245462#4245462

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245462

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 error still prevails...

Regards
vnm

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245457#4245457

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245457
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245455#4245455

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245455
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 assignee... 
hope its clear :)


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245454#4245454

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245454
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245452#4245452

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245452
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245453#4245453

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245453
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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-4.0.5.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245450#4245450

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245450
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 projects like 
deployer/classloader, is this activated developer directory?

Where I can find MC 2.2.X code? I find in microcontainer/mc-release/trunk/, but 
just unfinshed little code?

thanks

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245448#4245448

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245448
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 
InBoundQueue in each node and a consumer 
consuming messages from the InBoundQueue and distributes them over the 100 
queues depending on the message content, each queue of the 100 ones 
has a consumer that consumes messages and copy them to a common distributed 
outBoundQueue.
I have a consumer producer per Queue except for the outBound queue where I have 
a pool of 100 producer and 1 consumer

The InBoundQueue producer has a rate of 500msg/s which leads to a 1000msg/s for 
the cluster.

After 30 min of running, I had the following error: 

  | Jul 22, 2009 6:37:11 PM org.jboss.messaging.core.logging.Logger warn
  | WARNING: Connection failure has been detected Did not receive data from 
server (or ping).:3
  | 18:37:42,055 ERROR @Thread-12 (group:JBM-client-global-threads-621631806) 
[SmppQueueListener] Exception in onMessage():
  | javax.jms.JMSException: Timed out waiting for response when sending packet 
43
  | at 
org.jboss.messaging.core.remoting.impl.RemotingConnectionImpl$ChannelImpl.sendBlocking(RemotingConnectionImpl.java:1155)
  | at 
org.jboss.messaging.core.client.impl.ClientSessionImpl.commit(ClientSessionImpl.java:420)
  | at 
org.jboss.messaging.jms.client.JBossMessage.acknowledge(JBossMessage.java:969)
  | at 
com.clairmail.test.happypath.SmppQueueListener.onMessage(SmppQueueListener.java:56)
  | at 
org.jboss.messaging.jms.client.JMSMessageListenerWrapper.onMessage(JMSMessageListenerWrapper.java:97)
  | at 
org.jboss.messaging.core.client.impl.ClientConsumerImpl.callOnMessage(ClientConsumerImpl.java:670)
  | at 
org.jboss.messaging.core.client.impl.ClientConsumerImpl.access$100(ClientConsumerImpl.java:41)
  | at 
org.jboss.messaging.core.client.impl.ClientConsumerImpl$Runner.run(ClientConsumerImpl.java:787)
  | at 
org.jboss.messaging.utils.OrderedExecutorFactory$OrderedExecutor$1.run(OrderedExecutorFactory.java:105)
  | at 
java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
  | at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
  | at java.lang.Thread.run(Thread.java:619)
  | Caused by: MessagingException[errorCode=3 message=Timed out waiting for 
response when sending packet 43]
  | 

then the system failover took over for 5 min or so then all connections were 
destroyed.

I Followed Tim's docs (CH.36 and 37) to set the cluster and the backup nodes.
Do you think it's the network switched that's causing the problem?
Thought I have 1G switch.

Thanks,
Abdel

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245446#4245446

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245446
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 instead of assigned=native. 

ProcessDefinition:



  | 
  | ?xml version=1.0 encoding=UTF-8?
  | 
  | process name=SimpleProcess xmlns=http://jbpm.org/4.0/jpdl;
  | 
  |   start g=20,20,48,48
  | transition name=review1 to=review1 /
  |   /start
  | 
  |   task name=review1 g=96,16,127,52
  | assignment-handler class=test.TaskHandler
  | /assignment-handler
  | transition name=review2 to=review2 /
  |   /task
  | 
  | task name=review2 g=96,16,127,52
  |   assignment-handler class=test.TaskHandler
  |   /assignment-handler
  |   transition name=review3 to=review3 /
  | /task
  | 
  | task name=review3 g=96,16,127,52
  |   assignment-handler class=test.TaskHandler
  |   /assignment-handler
  |   transition name=endstate  to=endstate /
  | /task
  | 
  |   end name=endstate g=255,16,88,52 /
  | 
  | /process
  | 
  | 
  | 

Error:


  | 
  | Caused by: java.sql.BatchUpdateException: ORA-02291: integrity constraint 
(JBPM4.FK_HTI_HTASK) violated - parent key not found
  | 
  | at 
oracle.jdbc.driver.DatabaseError.throwBatchUpdateException(DatabaseError.java:343)
  | at 
oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedStatement.java:10768)
  | at 
com.p6spy.engine.logging.P6LogPreparedStatement.executeBatch(P6LogPreparedStatement.java:329)
  | at 
org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:294)
  | at 
org.hibernate.jdbc.BatchingBatcher.doExecuteBatch(BatchingBatcher.java:70)
  | at 
org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:268)
  | ... 72 more
  | 
  | 
  | 
  | 


Logs (I used p6spy driver to see values being passed)


  | Hibernate: select * from ( select deployment1_.OBJNAME_ as col_0_0_, 
deployment1_.DEPLOYMENT_ as col_1_0_ from test.JBPM4_DEPLOYMENT deployment0_, 
test.JBPM4_DEPLOYPROP deployment1_, test.JBPM4_DEPLOYPROP deployment2_, 
test.JBPM4_DEPLOYPROP deployment3_ where deployment1_.KEY_='pdid' and 
deployment1_.DEPLOYMENT_=deployment0_.DBID_ and deployment2_.KEY_='pdkey' and 
deployment2_.OBJNAME_=deployment1_.OBJNAME_ and 
deployment2_.DEPLOYMENT_=deployment0_.DBID_ and deployment3_.KEY_='pdversion' 
and deployment3_.OBJNAME_=deployment1_.OBJNAME_ and 
deployment3_.DEPLOYMENT_=deployment0_.DBID_ and 
deployment2_.STRINGVAL_='SimpleProcess' order by deployment3_.LONGVAL_ desc ) 
where rownum = ?
  | 
  | Hibernate: select * from ( select deployment0_.DBID_ as DBID1_13_, 
deployment0_.DEPLOYMENT_ as DEPLOYMENT2_13_, deployment0_.OBJNAME_ as 
OBJNAME3_13_, deployment0_.KEY_ as KEY4_13_, deployment0_.STRINGVAL_ as 
STRINGVAL5_13_, deployment0_.LONGVAL_ as LONGVAL6_13_ from 
test.JBPM4_DEPLOYPROP deployment0_ where deployment0_.KEY_='pdid' and 
deployment0_.STRINGVAL_='SimpleProcess-1' ) where rownum = ?
  | 
  | Hibernate: select test.S_JBPM4_EXECUTION.nextval from dual
  | 
  | Hibernate: insert into test.JBPM4_EXECUTION (DBVERSION_, ACTIVITYNAME_, 
PROCDEFID_, HASVARS_, NAME_, KEY_, ID_, STATE_, SUSPHISTSTATE_, PRIORITY_, 
HISACTINST_, PARENT_, INSTANCE_, SUPEREXEC_, SUBPROCINST_, CLASS_, DBID_) 
values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 'pvm', ?)
  | 
  | Hibernate: select test.S_JBPM4_HIST_PROCINST.nextval from dual
  | 
  | Hibernate: select test.S_JBPM4_TASK.nextval from dual
  | 
  | [2009-07-22 18:05:31,062] (TaskHandler:assignTask:24) - TaskHandler
  | 
  | Hibernate: select historypro0_.DBID_ as DBID1_4_0_, historypro0_.DBVERSION_ 
as DBVERSION2_4_0_, historypro0_.ID_ as ID3_4_0_, historypro0_.PROCDEFID_ as 
PROCDEFID4_4_0_, historypro0_.KEY_ as KEY5_4_0_, historypro0_.START_ as 
START6_4_0_, historypro0_.END_ as END7_4_0_, historypro0_.DURATION_ as 
DURATION8_4_0_, historypro0_.STATE_ as STATE9_4_0_, historypro0_.ENDACTIVITY_ 
as ENDACTI10_4_0_, historypro0_.NEXTIDX_ as NEXTIDX11_4_0_ from 
test.JBPM4_HIST_PROCINST historypro0_ where historypro0_.DBID_=?
  | 
  | Hibernate: select test.S_JBPM4_HIST_ACTINST.nextval from dual
  | 
  | Hibernate: insert into test.JBPM4_HIST_PROCINST (DBVERSION_, ID_, 
PROCDEFID_, KEY_, START_, END_, DURATION_, STATE_, ENDACTIVITY_, NEXTIDX_, 
DBID_) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  | 
  | Hibernate: insert into test.JBPM4_TASK (DBVERSION_, NAME_, DESCR_, STATE_, 
SUSPHISTSTATE_, ASSIGNEE_, FORM_, PRIORITY_, CREATE_, DUEDATE_, PROGRESS_, 
SIGNALLING_, EXECUTION_ID_, ACTIVITY_NAME_, HASVARS_, SUPERTASK_, EXECUTION_, 
PROCINST_, SWIMLANE_, TASKDEFNAME_, CLASS_, DBID_) values (?, ?, ?, ?, ?, ?, ?, 
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 'T', ?)
  | 
  | Hibernate: insert into test.JBPM4_HIST_ACTINST (DBVERSION_, HPROCI_, TYPE_, 
EXECUTION_, ACTIVITY_NAME_, START_, END_, DURATION_, 

[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=bbop=viewtopicp=4245438#4245438

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245438
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245613#4245613

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245613
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245615#4245615

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245615
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245430#4245430

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245430
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245431#4245431

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245431
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245425#4245425

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245425
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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=bbop=viewtopicp=4245428#4245428

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245428
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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, especially ram_buffer_size

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245424#4245424

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245424
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[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 which one I should use, 
ConnectionFactory or XAConnectionFactory? I don't use transaction in the code.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245423#4245423

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245423
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


  1   2   3   4   >