[jboss-user] [JBoss Cache: Core Edition] - transaction management with multiple caches

2009-07-23 Thread sridhar_ratna
Hi, I am using JBoss Cache 3.1 integrated with Gridgain 2.1. I built three jboss cache instances with Cache Mode as LOCAL. Each of these cache instance is associated to a single GridNode. These grids are running in separate machines. For a particular operation, i need to delete data from two c

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

2009-07-23 Thread sridhar_ratna
Hi, I am using JBoss Cahe 3.1 integrated with Gridgain 2.1. I built two jboss cahe instances with Cache Mode as LOCAL. Each of these cache instance is associated to a single GridNode. These grids are running in two separate machines. For a perticular opeartion, i need to delete data from one c

[jboss-user] [JBoss jBPM] - notification to the user of specific role.

2009-07-23 Thread @tul
Hi, I am using jBPM 4.0 in my project. I have to implement that once a task is assign to the role, all the user who has that role should be notify by mail. So please tell me is anything available in jBPM 4.0 which i can use directly?? Thanks View the original post : http://www.jboss.org/ind

[jboss-user] [JBoss jBPM] - Re: [JBPM4] How to maintain class files for different Proces

2009-07-23 Thread camunda
Sorry for the broken link: http://www.bpm-guide.de/2008/10/16/jbpm-deployer-for-jbpm-in-enterprise-environments/ http://www.bpm-guide.de/2008/11/14/jbpm-deployer-status-and-sourcecode/ View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245730#4245730 Reply to th

[jboss-user] [JBoss jBPM] - Re: [JBPM4] How to maintain class files for different Proces

2009-07-23 Thread camunda
Hi sushantgupta402. True, jbpm 3 deployed class files to the database. We discussed that for jbpm 4 but at least moved it to a later stage. Actually I thiunk it is not a good idea to deploy classes to the database. YOu could still achieve something like that if you use the JBoss deployer, but

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

2009-07-23 Thread vnm
I have not tried 3.2.6SP1 yet..The only thing I know about 3.2.6SP1 is that it has inbulit installer which we can directly point to standalone Jboss AS ..I have also downloaded 3.2.6SP1 installer jar but hav nt used it yet... Regards vnm View the original post : http://www.jboss.org/index.html

[jboss-user] [JBoss jBPM] - Re: jBPM 4.0 instance creation results in single task

2009-07-23 Thread holla2040
shekhar, I agree, that's what I determined and now understand why from your example. Here's a couple more questions, if you don't mind Is the 'task creation when necessary' approach common with all BPM engines? Does jBPM 3.x have the same approach? Thanks for your time. Craig View the origi

[jboss-user] [JBoss Portal] - deploy jbpm workflow: how to

2009-07-23 Thread lpiccoli
portal 2.7.2 jboss 4.x hi all, i dont know how to deploy a jbpm process definition archive (PAR) to jboss portal. normally it is deployed through a servlet which persists the archive. However i cant find such a servlet in jboss portal. if took the sample servlet from the jbpm distro where doe

[jboss-user] [JBossWS] - Re: javax.xml.ws.WebServiceException: WSDL metadata is missi

2009-07-23 Thread ashutoshdeora
i am posting the web.xml here please tell what to change in this | http://java.sun.com/xml/ns/j2ee"; | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; | xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"; | version="2.4">

[jboss-user] [JBoss jBPM] - Re: [JBPM4] How to maintain class files for different Proces

2009-07-23 Thread sushantgupta402
But in JBPM3 even if there is a chnage in the class definition one need not version their classes. JBPM takes care of the class versioning itself. But it seems that facility is not there in the JBPM4 please refer /doc/userguide/html_single/index.html#deployingclasses. But once discussing with one

[jboss-user] [JBoss jBPM] - Re: [JBPM4] How to maintain class files for different Proces

2009-07-23 Thread shekharv
OK, I do not think we are on the same page, Why do you want to change the class name or package name in the first place? The reason I recommended as an option was if you had to change the behavior of a certain class that gets invoked as part of the jbpm process execution. Say you have an assignm

[jboss-user] [JBoss jBPM] - Re: jBPM 4.0 instance creation results in single task

2009-07-23 Thread shekharv
The task is created when the execution reaches that stage in the processDefinition. eg: | | | | | | | 'review2' will not be created until 'review1' is completed. Consider this: | | | | | | | |

[jboss-user] [JBoss jBPM] - Re: [JBPM4] How to maintain class files for different Proces

2009-07-23 Thread sushantgupta402
In JBPM3 even if there is some change in the class what all you have to do is make relevant changes in the class and deploye the whole process. No need to change the package of the class or class name. But in JBPM 4 you have to change the class name of class package both of which will result in

[jboss-user] [JBoss jBPM] - Re: [JBPM4] How to maintain class files for different Proces

2009-07-23 Thread shekharv
Which would mean, bundled within your own application? What do you mean by jbpm3 not caring for class packaging? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245718#4245718 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&

[jboss-user] [JBoss jBPM] - Re: [JBPM4] How to maintain class files for different Proces

2009-07-23 Thread sushantgupta402
Using repositoryService.createDeployment() .addResourceFromClasspath("org/jbpm/examples/services/Order.jpdl.xml") .deploy(); View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245717#4245717 Reply to the post : http://www.jboss.org/index.html?module=bb&op

[jboss-user] [JBoss jBPM] - Re: [JBPM4] How to maintain class files for different Proces

2009-07-23 Thread shekharv
How are you deploying these processes? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245716#4245716 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245716 ___ jboss-user mail

[jboss-user] [JBoss jBPM] - Re: jBPM 4.0 instance creation results in single task

2009-07-23 Thread holla2040
Thanks for replying. Here's my quick jBPM HW hack. | | | http://jbpm.org/4.0/jpdl";> | | | | | | | | | | | | | | | | | | | | | View the original post

[jboss-user] [JBoss jBPM] - Re: [JBPM4] How to maintain class files for different Proces

2009-07-23 Thread sushantgupta402
You understood it correctly but does is there any otehr way because changing the class name doesn't looks like a clean approach. Is there something like JBPM3 where u need not care for the class packaging? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245714

[jboss-user] [JBoss jBPM] - Re: [JBPM4] How to maintain class files for different Proces

2009-07-23 Thread shekharv
I am not sure i understand, Are you saying ur process definitions refer to different versions of the same class? As in an updated process def has the updated version and older one uses the original. Give it a name spaced package name? version1.Handler, version2.Handler? Any one consistent stra

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - jboss problem with persistence.xml

2009-07-23 Thread jboss_fan1056
Hi Everyone, I am using Struts2, Spring,Hibernate, JPA entity classes in order to develop a website. I am getting an annoying error while deploying it on the JBOSS AS 5.1.Informix11.5 is used as the database server. Here is the snapshot of persistence.xml: xml version="1.0" persistence vers

[jboss-user] [JBoss jBPM] - Re: jBPM 4.0 instance creation results in single task

2009-07-23 Thread kukeltje
Please show us your processdefinition. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245711#4245711 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245711 ___ jboss-user maili

[jboss-user] [JBoss Tools (users)] - Re: jtools(from trunk jul/24/09) and Mavenized Seam booking

2009-07-23 Thread snjeza
I have created https://jira.jboss.org/jira/browse/JBIDE-4655 A workaround is fixing application.xml manually. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245710#4245710 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4

[jboss-user] [EJB 3.0] - Re: ant test failed.

2009-07-23 Thread samwan809
Thanks for the hints. After copied the jar file to the "current" directory where the "ant test" is running, now I got th following error: | calling_card_reg # ant test | Buildfile: build.xml | | compile-test: | | test: | [junit] Testsuite: com.ip6networks.calling_card_registr

[jboss-user] [JBoss jBPM] - jBPM 4.0 instance creation results in single task

2009-07-23 Thread holla2040
FYI, I've poked around for about 6 hours looking for an answer before posting. I'm evaluating 4.0 for a handheld project where a user's current task list is downloaded for the day (ie. all their tasks are viewable). I've modified Jeff Yu's jpbm-helloworld process to include 5 tasks. It de

[jboss-user] [JBoss Messaging] - Queue client failover solution while jboss5.1 crashed

2009-07-23 Thread glenwood
As nobody answer my question on another post with different meaning subject,I created a new topic here. 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 cl

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

2009-07-23 Thread snjeza
Could you please create a jira and attach an example of your project? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245706#4245706 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245706 _

[jboss-user] [JBoss Cache: Core Edition] - Re: Transactions Created On Reads Holding Up Writers ???

2009-07-23 Thread snacker
If we change the EJB to @TransactionAttribute(value=TransactionAttributeType.NEVER), then we can use the GenericTransactionManager and it prevents the lockups. So, why is it locking on a read? Also, since this cache is supposed to persist until explicitly removed we've commented the node. Ot

[jboss-user] [JBossWS] - Re: Inspecting Web application

2009-07-23 Thread sasanplus
actually I meant programmatically. I am getting Jboss local MBeanServer and I am querying my domain, but I can not get to my MBean through queries. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245700#4245700 Reply to the post : http://www.jboss.org/index.

[jboss-user] [JBoss Tools (users)] - jtools(from trunk jul/24/09) and Mavenized Seam booking exam

2009-07-23 Thread asafs
Hey, I tried to follow the mavenized booking example (with seam 2.1) but as it seems, Jtools deploys the app exploded as 'jboss_instance/deploy/booking-ear.ear' folder with 'booking.war'/'booking-ejb.jar' beneath it, while in META-INF/application.xml 'booking-ejb-1.0.0.jar' / 'booking-1.0.0.w

[jboss-user] [JBossWS] - Re: WS on a web project

2009-07-23 Thread PeterJ
Look at the free chapter 9 at http://manning.com/jamae/, it covers web services. While the book is geared towards AS 5.x, the web services should work the same on 4.2.3 since both 4.2.x and 5.x use fairly compatible versions of JBoss WS. View the original post : http://www.jboss.org/index.html

[jboss-user] [JBoss Getting Started Documentation] - Re: Cannot find file when try to download jboss application

2009-07-23 Thread PeterJ
That link was broken a little while back also (earlier this week, late last week??? can't remember exactly when). But it seems to be working now. Though I dislike having to hunt for the download I want on the huge list of downloads that Source Forge lists. Yuck. I've heard that this was a Source

[jboss-user] [JBossWS] - Re: Inspecting Web application

2009-07-23 Thread PeterJ
With the app server running, go to http://loclahost:8080/jbossws, and click the "View a list of deployed services" link. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245693#4245693 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mo

[jboss-user] [JBossWS] - WS on a web project

2009-07-23 Thread mornblues
Hello, I'm a little lost around here, I need pointers where to start. I have a web project deployed on jboss 4.2.3 as a war. I want to export some of its model as an web service. I'm hoping to be able to simply annotate a few interfaces and have them exported as web services, not sure if that's

[jboss-user] [JBoss Portal] - Re: Enabling CaseInsensitiveness for username

2009-07-23 Thread PeterJ
The easiest thing would be to place the usernames in lowercase in the setup.txt file (the load is done directly by Hibernate and thus the validateUserNameCase is not used). Or you could extend the existing IdentifyLoginModule and use uppercase names. All you would have to provide is the getUserN

[jboss-user] [Beginners Corner] - Unresolved references exist in JBossWebMetaData

2009-07-23 Thread loren_
I'm porting a working app from glassfish to jboss-5.1.0.GA, but I can't seem to get injection to work in my web application. I'm deploying the ejb separate from the war, and it deploys without error and tells that it's bound to the following names: 2009-07-23 16:06:37,033 INFO [org.jboss.ejb

[jboss-user] [JBoss jBPM] - Re: Advices needed on process definitions deployment strateg

2009-07-23 Thread kukeltje
A properties file should not be needed since for jBPM4 the version can be in the processdefinition Besides that , I do think that this belongs 'hidden' in the implementation of the deployer and silently to nothing (or maybe log just a warning) Please file a jira issue for this. View the orig

[jboss-user] [JBoss Getting Started Documentation] - Cannot find file when try to download jboss application serv

2009-07-23 Thread quintenjiang
Go to download page and try to download jboss application server, and ger error "Cannot find file" View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245682#4245682 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245682 ___

[jboss-user] [JBossWS] - Inspecting Web application

2009-07-23 Thread sasanplus
Hi, I am trying to get the list of web services from a given .war file. I do not want to use JMX or lookinto web.xml. is there a way through JBossWS API? Thanks, Sasan View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245681#4245681 Reply to the post : http:

[jboss-user] [JBoss Portal] - Re: Enabling CaseInsensitiveness for username

2009-07-23 Thread mars76
Hi Peter, Thanks for your response.. We actually loaded the Users and Roles using the setup.txt file and using the HibernateUserImpl and HibernateRoleImpl Classes in it. So when the Portal Server starts up and i guess it checks for the existence of the Portal specific tables in the oracle

[jboss-user] [JBoss Cache: Core Edition] - Re: Transactions Created On Reads Holding Up Writers ???

2009-07-23 Thread snacker
BTW we are using "JBossCache 'Cascabel' 3.1.0.GA" View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245679#4245679 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245679 ___ jboss

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

2009-07-23 Thread kukeltje
There is a jira issue about taskhistory, can you refer in that to this discussion? Regarding the sequence, assigned=native should use a sequence in oracle afaik, so maybe a sequence reference is wrong in the hibernate schema? View the original post : http://www.jboss.org/index.html?module=bb&o

[jboss-user] [JBoss AOP] - Re: jboss aop deployment exception - Failed to parse source:

2009-07-23 Thread flavia.rain...@jboss.com
Hi You need to put the namespace in the jboss-aop.xml file. It is mandatory when using JBoss 5: | ... | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245677#4245677 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&

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

2009-07-23 Thread rams.rapo
The more i look into it, i feel HistoryTaskImpl should have HistoryActivityInstanceImpl as a set, so that we can have hibernate mapping as inverse=true which would then prevent this error... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245673#4245673 Rep

[jboss-user] [JBoss jBPM] - Re: Advices needed on process definitions deployment strateg

2009-07-23 Thread rams.rapo
This is how we are working around for this issue.. | You can get the list of process definitions deployed with given process def name.. | | List processDefList = repositoryService.createProcessDefinitionQuery() | .processDefinitionName(processDefName) |

[jboss-user] [JBoss Cache: Core Edition] - Transactions Created On Reads Holding Up Writers ???

2009-07-23 Thread snacker
We have a cache which is read by 100's of threads per second. The threads are all reading one node. The first thread that finds the node missing loads the data (which takes 5-10 seconds) the others wait (with a timeout) for it to be populated. If we dump the stack traces, one of the threads is w

[jboss-user] [JBoss Messaging] - Re: Queue Creation at Deployment Time

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

[jboss-user] [JBossWS] - How to Connect to a JBoss WS Protected by FORM Based Authent

2009-07-23 Thread sanrosh95
Hi , I have a Jboss Web Service and the URL is Protected using Form Based authentication . How can i consume a web service which is protected by FORM Based authentication i have seen example of only BASIC authentication Thanks San View the original post : http://www.jboss.org/index.html?modu

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: JBOSS 4.0.2 and java 1.6

2009-07-23 Thread PeterJ
No. See this: http://www.jboss.org/community/wiki/JBossVsJavaJDKVersionMatrix View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245067#4245067 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245067 _

[jboss-user] [Beginners Corner] - Re: classloading in JBoss web applications

2009-07-23 Thread PeterJ
anonymous wrote : and WEB-INF/lib of an EAR file Is this a typo? Did you mean "..of a WAR file"? Also, can I assume that you declared a loader-repository in jboss-web.xml? What version of JBoss AS? I assume that you already tried this and the results were not what you expected. Could you share

[jboss-user] [JBoss jBPM] - Re: Whether the JBPM4.0 support informix

2009-07-23 Thread shekharv
what dialect do you have for hibernate? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245060#4245060 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245060 ___ jboss-user mail

[jboss-user] [JBoss jBPM] - Re: About integrating JBPM in an existing EAR

2009-07-23 Thread RonanKER
Hello both of you, I'm on the same way. I succeed to inject my sessionFactory to jBPM thanks to shekharv's tips. I set in my config file: But I notice that jBPM create it own transaction (and in my case, also close the session I injected !!). I think that why your process is saved even if yo

[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - RESTEasy .war deploys, but doesn't do anything...

2009-07-23 Thread andrewe
Putting this here, not sure where else RESTeasy questions would go. Downloaded the RESTEasy 1.1.GA release and am trying to deploy into JBoss 4.2.3. I added a really simple class/application, re-jar'd the resteasy.war file (I have renamed it, didn't think that would be a problem) and put it into

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Any resource control in JBoss 5.1.0?

2009-07-23 Thread PeterJ
Multiple apps can happily share one instance of JBoss AS. But if you need really high capacity, then it is often best to separate out the apps into separate app server instances to better manage and scale them. But that all depends on your needs. And for that you need to do some capacity plannin

[jboss-user] [JBossWS] - Re: Problem deploy WS in JBOSS 4.3

2009-07-23 Thread PeterJ
Are you working in Eclipse or some other IDE? It sounds like the MiClase.class file is invalid. Check the description of ClassFormatError in the javadocs. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245065#4245065 Reply to the post : http://www.jboss.org/

[jboss-user] [JBoss Messaging] - JBM2 Beta3 with JBAS5.1.0 - Configuring Destinations

2009-07-23 Thread simon_temple
Should it be possible to create a destination using a jbm-queues.xml file? I'm looking for a way to create destinations but store the configuration file(s) with the deployable services rathar than in the messaging.sar folder. This gives me a NPE http://www.w3.org/2001/XMLSchema-instance"; |

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Can JBoss have DB Multipools (or pool of pools)?

2009-07-23 Thread PeterJ
You can define only a single URL for each datasource, thus you can connect to only one database. You can define multiple datasource entries in a *-ds.xml file, though. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245068#4245068 Reply to the post : http://

[jboss-user] [JBoss jBPM] - Re: About integrating JBPM in an existing EAR

2009-07-23 Thread shekharv
Could you post your entire jbpm config again? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245072#4245072 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245072 ___ jboss-use

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

2009-07-23 Thread sannegrinovero
for reference: https://jira.jboss.org/jira/browse/EJBTHREE-1876 it appears it's not limited to MBeans, I can't inject any bean either. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245657#4245657 Reply to the post : http://www.jboss.org/index.html?module=b

[jboss-user] [JBoss Portal] - Re: Enabling CaseInsensitiveness for username

2009-07-23 Thread PeterJ
>From the code it looks like this option converts the entered name to lowercase >and then does the lookup. When using the predefined security mechanism, where >the portal creates and maintains the user names, this makes sense, and even >works. Since you are validating against an existing databas

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: ClassCastException due to Xerces conflict during app dep

2009-07-23 Thread rodos77
Yes, exactly. However, I think it's not just a file inside my app that is being parsed. I didn't include the whole stacktrace initially, but I actually get that exception 3 times: | ... | | 14:09:32,465 ERROR [JBossContextConfig] XML error parsing: context.xml | | ... | | 14:

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: ClassCastException due to Xerces conflict during app dep

2009-07-23 Thread jaikiran
Just to understand this better - Are you saying that when the "server" is parsing some xml files within your app, then it uses the xerces jar shipped in your application instead of the one shipped in JBoss? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=424565

[jboss-user] [EJB 3.0] - Re: Re: ant failed.

2009-07-23 Thread PeterJ
Please quit quoting my posts - it only makes your replies more difficult to read. Why are you using tar to view the jar file? Use the jar utility instead: jar tf calling_card_reg.jar Why are you placing the client JAR file into Tomcat? Where are you running your client from? View the origi

[jboss-user] [JBoss jBPM] - Advices needed on process definitions deployment strategies

2009-07-23 Thread RonanKER
Hello, I'm facing a problem of process definitions deployment strategies in our production environment. This environment is not accessible using an IDE or ant. The prod team is only awaiting for an ear and sql scripts. I'm not sure it's possible to generate SQL scripts to deploy processes. So,

[jboss-user] [JBossWS] - Problem with getting port

2009-07-23 Thread vav
Hi, I'm using JBoss 4.0.4 + jbossws-native-2.0.3.GA. I have created a simple ws: | @WebService | ( | name = "TestJSE", | serviceName = "TestJSEService", | portName = "TestJSEPort", | targetNamespace = "http://com.tbs.webservice/test"; | ) | @SOAPBinding(style = S

[jboss-user] [JBoss Portal] - Enabling CaseInsensitiveness for username

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

[jboss-user] [JBoss Messaging] - Re: Queue Creation at Deployment Time

2009-07-23 Thread PeterJ
Try this: place the queue-service.xml file in the base directory of the EAR and add this entry to the META-INF/jboss-app.xml file: | | queue-service.xml | | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245642#4245642 Reply to the post

[jboss-user] [JBoss jBPM] - Re: Custom mail class

2009-07-23 Thread kukeltje
Oh I forgot to say something. Configuring a new Custom mail class *only* takes effect when you deploy a new process Processes that are already deployed will use the old mail provider. Maybe that is your issue View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&

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

2009-07-23 Thread PeterJ
Saving possible typos that I made, what I posted is what I use for one of my apps, only the datasource name was changed. Of course, that's not to say it is the only way. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245639#4245639 Reply to the post : http:

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

2009-07-23 Thread PeterJ
mars76, please do not ask unrelated questions in someone else's topic. Instead, start a new topic (and when you do, state which database you are using). View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245638#4245638 Reply to the post : http://www.jboss.org/in

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

2009-07-23 Thread PeterJ
Try this: delete the directories server/default/data, server/default/tmp and server/default/work. Then try starting the app server. I don't know why the recovery manager is handing, but deleting the above directories should give you a clean start. View the original post : http://www.jboss.o

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

2009-07-23 Thread kukeltje
what is "it"? I have no clue what you mean View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245635#4245635 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245635 ___ jboss-us

[jboss-user] [JBoss jBPM] - Re: Custom mail class

2009-07-23 Thread swatis
i tried with extending existing mail class.. then i put this class in classes folder of jbpm-console war. and set mail.class.name property to custom class... it worked... start the services after making changes View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic

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

2009-07-23 Thread kukeltje
Maybe try a different version of the driver or a different dialect in hibernate View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245633#4245633 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245633 ___

[jboss-user] [JBoss jBPM] - Re: Installation issues with jBPM 4.0.CR1 on JBoss AS 4.2.3.

2009-07-23 Thread osvaldo.pina
I forgot to mention that the workaround is just for the JNDI bind. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245118#4245118 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245118

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: ClassCastException due to Xerces conflict during app dep

2009-07-23 Thread rodos77
Hi guys, Any chance I can get a response to this? As can be seen from the Exception StackTrace, there is absolutely no involvement of the application at this point so I really fail to understand why the application classloader (the war classloader) is being used by the JBoss deployer to load t

[jboss-user] [JBoss jBPM] - Re: Custom mail class

2009-07-23 Thread kukeltje
The JpdlXmlReader class does this: | String mailClassName = Mail.class.getName(); | if (JbpmConfiguration.Configs.hasObject("jbpm.mail.class.name")) | { | mailClassName = JbpmConfiguration.Configs.getString("jbpm.mail.class.name"); | } | else if (JbpmConfigu

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

2009-07-23 Thread RonanKER
I tried but without success. I set the following code cascade = "all-delete-orphan" on-delete="cascade" inverse="true" on the "historyActivityInstances" set definition in the hbm.xml file in my jbpm.jar but it did not work. I don't undestand why. On the other side, I also don't understand how

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: JBAS5.1 - custom DeploymentFilter in profile.xml CNFE

2009-07-23 Thread simon_temple
That's it many thanks :-) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245626#4245626 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245626 ___ jboss-user mailing list

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

2009-07-23 Thread kukeltje
Then I would even switch to 3.2.6SP1... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245625#4245625 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245625 ___ jboss-user mail

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: redeployable webapp strategy

2009-07-23 Thread bdamato
No, I don't have any EJBs at this point. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245084#4245084 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245084 ___ jboss-user mai

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Install succesful but no localhost:8080 or 127.0.0.1:808

2009-07-23 Thread PeterJ
Looking at the console log you posted again, it appears that you ran the 'minimal' configuration (even though the log entries identify the 'default' config) because the console log you posted is exactly what I get when running minimal. View the original post : http://www.jboss.org/index.html?m

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: redeployable webapp strategy

2009-07-23 Thread PeterJ
Are there EJBs in your EAR? If so, the app server creates an mbean for each EJB, thus you could have the WAR depend on one of those mbeans. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245076#4245076 Reply to the post : http://www.jboss.org/index.html?modu

[jboss-user] [JBossWS] - Re: NotImplementedException

2009-07-23 Thread jlankfo
That makes sense but it leaves me with a few more questions. Why is it using sun web services for the client and jbossws for the server? Is there a way I can make the client use jbossws services or do I need metro? And finally why would metro work differently? View the original post : http://w

[jboss-user] [JBoss jBPM] - Re: Spring integration: No platformTransaction manager defin

2009-07-23 Thread shekharv
Refer to this and let us know if it works, https://jira.jboss.org/jira/browse/JBPM-2315 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245126#4245126 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245126 __

[jboss-user] [JBoss jBPM] - Re: Installation issues with jBPM 4.0.CR1 on JBoss AS 4.2.3.

2009-07-23 Thread osvaldo.pina
I developed a workaround and described it into the jira issue. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245109#4245109 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245109 _

[jboss-user] [JBoss jBPM] - Re: Whether the JBPM4.0 support informix

2009-07-23 Thread kukeltje
Shekarv, This topic was by accident started in the dev forum, I asked him to repost here, but funny enough we continued in the dev forum: http://www.jboss.org/index.html?module=bb&op=viewtopic&t=158754 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245128#4

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: redeployable webapp strategy

2009-07-23 Thread PeterJ
There might be some other mbeans created for your EAR. You can use JNDIView to look for them - use your browser's search capability to look for any mbean containing your EARs name. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245085#4245085 Reply to the po

[jboss-user] [JBoss jBPM] - How is jBPM subscription support?

2009-07-23 Thread johnhurtchan
Anyone has the subscription? Please send me any comments you have on the support level, good and bad. You can send me private email if you want. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245129#4245129 Reply to the post : http://www.jboss.org/index.htm

[jboss-user] [JBoss jBPM] - Jbpm-Spring app deployment to jboss

2009-07-23 Thread rmoskal
Well now that I've been making good headway in integrating Jbpm4 and Spring I realize I haven't a clue as to how to deploy such an application to Jbpm living in JBoss, like when you install from the distribution ant scripts. Has anyone been thinking about this? Regards, Robert View the origi

[jboss-user] [JBossWS] - Re: NotImplementedException

2009-07-23 Thread jlankfo
So I can't edit my posts but what I ment to say instead of jbossws is native... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245106#4245106 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245106 ___

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

2009-07-23 Thread krishnact
Thanks kukeltje, I am new to this and these versions make my head spin. Is there any docs that mention how to install JBPL 4.x on JBoss 4.x ? After building from source I do see there are some integration files for JBoss 4.x but no docs about how to go about. Thanks. View the original post :

[jboss-user] [JBoss jBPM] - Re: Deploying jbpm.war(3.1.3) to jboss as 4.0.5GA

2009-07-23 Thread ngtdave
I am not sure my answer has to do with 3.1.2, I was talking about 3.1.3. I have to ask, if you're new to JBPM and just trying to get it working, why not use 3.2.x or even 4.0? Just a suggestion. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245099#424509

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Running JBoss as windows service with procrun

2009-07-23 Thread PeterJ
#2 sounds like a defect in procrun - I don't think that JVM launchers are supposed to exit until all threads exit. Have you looked to see if there is some procrun option related to this? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245075#4245075 Reply to

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

2009-07-23 Thread kukeltje
A service yes, but not specifically in a sar. Like you don't have a sar when running unittests from e.g. Eclipse. It's a 'convenience' to be able to deploy the engine once in JBoss and use it from different applications. View the original post : http://www.jboss.org/index.html?module=bb&op=vi

[jboss-user] [JBoss jBPM] - Re: About integrating JBPM in an existing EAR

2009-07-23 Thread shekharv
OK, I took a few minutes out and whipped up a post about this, I will fleshing out the details today and tomorrow, but you guys can download the code and test it out. The blog post is @: http://shekharv.blogspot.com/2009/07/sample-hibernate-and-jbpm-application.html Right now there is just a Te

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Can JBoss have DB Multipools (or pool of pools)?

2009-07-23 Thread PeterJ
anonymous wrote : What I want to know is if JBoss has a way to define a dataSource pointing to multiple db's or DataSources. Like I said, the JBoss AS datasource descriptor file allows you to specify only one connection URL. If the JDBC driver permits you to specify multiple databases, great. I

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: redeployable webapp strategy

2009-07-23 Thread bdamato
Okay, I think I'm close now. I couldn't find any MBeans for my ear, so I created one. | package bob.bobtest; | public interface BobTestMBeanInterface { | void create() throws Exception; | void start() throws Exception; | void stop(); | void destroy(); | } | | pa

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: redeployable webapp strategy

2009-07-23 Thread bdamato
Anyone? Here's a simpler question that may help me on my way. Is it possible to configure a war (outside of an ear) to be reloaded if the ear is redeployed? I read somewhere else that it's supposedly possible if I put something like this in my ear's jboss-app.xml: | myservice:service=OwnServ

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: JBAS5.1 - custom DeploymentFilter in profile.xml CNFE

2009-07-23 Thread jaikiran
You probably have to add your jar to the classloader configuration in the profile.xml: | | ${jboss.lib.url}jboss-profileservice-spi.jar | ${jboss.lib.url}myjar.jar | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245623#4

[jboss-user] [JBoss Messaging] - Exception during message publsih

2009-07-23 Thread desuraghu
I have configured my own security config for a topic. When i am trying to publish a message on that topic i m getting the following exception. Can any one help in resolving this problem. I have configured security config in destination-service.xml file. 2009-07-21 23:51:33,078 TRACE [org.jbos

  1   2   3   4   >