[jboss-user] [jBPM Users] - Re: EventListener questions

2009-11-03 Thread sebastian.s
I haven't found a way to achieve this using the HistoyTaskQuery. I would like to retrieve the task where the transition originates from. | HistoryTask task = HistoryService.createHistoryTaskQuery().executionId(execution.getId()).unique | worked fine for me as long as I just had one task i

[jboss-user] [Installation, Configuration & Deployment] - Re: Setting Multiple Instances for JBoss-4.2.3 GA

2009-11-03 Thread mawenzel
Ok, now it's working. I copied the original server.xml in the directory jboss-web.deployer - and that's was. But I can't see any differences between my old file and the original file. The only change I hade made was setting the port from 8080 to 8480. Hmm, very strange. View the original post :

[jboss-user] [EJB 3.0 Users] - Re: Simple hibernate web app

2009-11-03 Thread pepelara
Hi Wolfgang, You are absolutely right. That is what I did and the web app works ok. Thanks a lot for your help. Besta Regards, Jose View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263854#4263854 Reply to the post : http://www.jboss.org/index.html?module=bb

[jboss-user] [JBoss Portal Users] - Re: How to diplay a portlet in a popup?

2009-11-03 Thread ozguy
How about using AJAX call and display the content in a div popup. Depending on which portal container version you are using, in version 2.0+ there are ways to request resources from portlet container. Or you can call a servlet request and display the content in the div. View the original post

[jboss-user] [jBPM Users] - Re: JpdlProcessDefinition cannot be cast to java.util.List

2009-11-03 Thread sebastian.s
Forgot to mention that if I use a different process definition to be started like this it works fine. So it must be something with the definition or the implementation classes?? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263849#4263849 Reply to the post

[jboss-user] [JBoss Cache Users] - Re: Buddy location issue

2009-11-03 Thread b...@jboss.com
127.0.0.1 won't work unless both of your processes run on the same box. Use -Djgroups.bind_addr=192.168.x.x to pick a correct NIC. Yes, JGroups can use TCP and TCPPING for a static list instead of multicasting, read the details in the manual at jgroups.org. View the original post : http://www.j

[jboss-user] [EJB] - Re: EJB2 Entity bean: Max length of a string stored in DB?

2009-11-03 Thread marksbennett
Sorry. Let me elaborate a bit more: I'm using EJB2 CMP. When a database table is created, if nothing is specified, what is the default VARCHAR length of string/character data? Is it 255? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263838#4263838 Reply to

[jboss-user] [JBoss Messaging Users] - Re: sybase-persistence-service.xml

2009-11-03 Thread PeterJ
There might be a way to add that option to the URL in the *-ds.xml file. You'll have to check with the Sybase JDBC driver documentation for how to add options to the URL. Or you could use the connection-property element in *-ds.xml to set such properties. View the original post : http://www.jb

[jboss-user] [EJB] - EJB2 Entity bean: Max length of a string stored in DB?

2009-11-03 Thread marksbennett
Hi, What is the maximum character length of a string that can be stored in a database when the table is created by an EJB2 Entity Bean? Is it configurable? Thanks in advance. Mark View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263837#4263837 Reply to the

[jboss-user] [jBPM Users] - Re: Using Process variables as parameters for method calls

2009-11-03 Thread kukeltje
Sorry, forgive me, I forgot to read the subject of the post. It's about static methods. Nevertheless, the usage of the same variable and 'Object' type could be an issue as well. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263800#4263800 Reply to the post

[jboss-user] [JBoss Tools Users] - Re: JBoss Tools 3.1.0.M4 is available

2009-11-03 Thread fabricio.lemos
Should I uninstall 3.1.0.M3 before I install 3.1.0.M4? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263801#4263801 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4263801 ___

[jboss-user] [JBoss Tools Users] - Re: JBoss Tools 3.1.0.M4 is available

2009-11-03 Thread rob.stry...@jboss.com
nickboldt> need to tell user "no uninstallation required, just update using the update site!" ;) posting for Nick Boldt View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263814#4263814 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&m

[jboss-user] [Beginner's Corner] - Re: ManyToMany problem

2009-11-03 Thread swenu
Hi Wolfgang close to Germany from [ + ] ;) thanks i will have a look at it again - hope to get it work now. Will return if i get questions or if it's done. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263792#4263792 Reply to the post : http://www.jboss.o

[jboss-user] [JBoss Cache Users] - NAKACK, not found in retransmission table

2009-11-03 Thread dannoakes
I am running a jboss cache clustered. It appears to be working but i have a number of these warnings in the logs |03112009|21:58:02|OOB-1,JBossCache-cluster,192.168.2.245:7800|WARN|||org.jgroups.protocols.pbcast.NAKACK|(requester=192.168.2.246:7800, local_addr=192.168.2.245:7800) message 192.168

[jboss-user] [jBPM Users] - Can I use EJB as ActionHandler?

2009-11-03 Thread zman12345
Hi, Is there a way to configure jBPM process definition to automatically lookup and use deployed EJB as one of the transition action handler? Thanks, -Z View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263829#4263829 Reply to the post : http://www.jboss.org/

[jboss-user] [jBPM Users] - Re: Using Process variables as parameters for method calls

2009-11-03 Thread sebastian.s
Hello Joram, no, everything works fine for me. I had an error in reasoning. I was trying to access process variables which were not set yet. But I noticed one thing of which I was not aware before because I wasn't that proficient with reflection: Supposing you want to use an integer process var

[jboss-user] [jBPM Users] - Re: Using Process variables as parameters for method calls

2009-11-03 Thread kukeltje
Strange, I would have thought it to be a similar issue, but in Toms case it might be that Integer.parseInt(Object) does not exist as a method signature. Oh, and the argument and the return value are the same variable, But the types are different... Is that the usecase? Then he should add more in

[jboss-user] [JBoss Messaging Users] - Re: sybase-persistence-service.xml

2009-11-03 Thread bdamato
| 2009-11-03 14:21:44,515 DEBUG [org.jboss.messaging.core.impl.JDBCSupport] (main) Failed to execute: CREATE TABLE JBM_MSG_REF (MESSAGE_ID DECIMAL(19, 0) NOT NULL, CHANNEL_ID DECIMAL(19, 0) NOT NULL, TRANSACTION_ID DECIMAL(19, 0) NULL, STATE CHAR(1), ORD DECIMAL(19, 0), PAGE_ORD DECIMAL(19, 0

[jboss-user] [JBoss Cache Users] - Re: Buddy location issue

2009-11-03 Thread thogha
Hi! I'm running two servers. Same config each, and same log output from both. The servers are Xen-provisioned VSP in the same data center. I'm thinking this may be an issue with Xen multicast configuration. Can JGroups can be configured to use TCP and a list of IP addresses instead of multicast

[jboss-user] [Beginner's Corner] - Re: ManyToMany problem

2009-11-03 Thread swenu
Sorry back again *grml* I don't get it - cause i'm doing the assignment in the entity not in the bean. Imho there's a difference to the text you've wrote. I tried to remove the refernces within the remove loop from both sides. No effect =( View the original post : http://www.jboss.org/index.h

[jboss-user] [jBPM Users] - Re: Customization of jBPM GPD

2009-11-03 Thread koen.a...@jboss.com
The difference is that for 4.x a number of issues still have to be solved to make pluggability possible (see GPD-292 and http://www.jboss.org/index.html?module=bb&op=viewtopic&t=160930) For 3.x pluggability is already possible. The best place to start to see how it is done is to look at the ESB

[jboss-user] [EJB] - EJB Transaction lifecycle

2009-11-03 Thread aeka
I have a situation where I want to delete a set of entries (68) from a database tables via its primary keys. I have a EJB method that loops through the set of primary keys and calls a Storage EJB that in turn calls the database layer to perform the individual delete. What I find is that after

[jboss-user] [EJB 3.0 Users] - Re: NotBoundException when @Service POJO invoke EJB

2009-11-03 Thread steeven
Still not work, whatever how long I sleep in start() void start(){ ... sleep(5); moService.xxx(); //NotBound } I'm crazy now View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263840#4263840 Reply to the post : http://www.jboss.org/index.html?module=b

[jboss-user] [jBPM Users] - Re: Customization of jBPM GPD

2009-11-03 Thread benhu
I don't mind doing some eclipse plugin development, but the less work the better. So Koen, I have not followed the development of 4.x, what is the difference between these two version in terms of customization? Thanks! View the original post : http://www.jboss.org/index.html?module=bb&op=viewt

[jboss-user] [Beginner's Corner] - Re: cannot be cast to javax.portlet.Portlet

2009-11-03 Thread saravanam
Figured out that including the portal core jar files in the web archive(war) creates this issue. Once I removed those jar files from the archive it started working. Because of classloader conflict the exception thrown at deploy time as jboss itself has its own portal jars and loaded when started

[jboss-user] [Security] - NPE JBossWebRealm.hasRole Line 537

2009-11-03 Thread pcarrollnf
I am using JBoss 5.1.0 GA with JDK 1.6_16. I have a menu bar at the top of each of my JSPs. It performs a check to determine the roles a user is a member. Based on this information, the user will see certain links on the menu bar. However, when navigating through the pages, the following is

[jboss-user] [Beginner's Corner] - cannot be cast to javax.portlet.Portlet

2009-11-03 Thread saravanam
I am getting the following error when deploying a portlet in jboss portal server. Caused by: java.lang.ClassCastException: com.xxx.JbossBirtPortlet cannot be cast to javax.portlet.Portlet at org.jboss.portal.portlet.impl.jsr168.PortletContainerImpl.start(PortletContainerImpl.java:254)

[jboss-user] [EJB 3.0 Users] - Re: Clustered Session Beans with additional HTTP Remote Prox

2009-11-03 Thread jkonieczny
Done. https://jira.jboss.org/jira/browse/EJBTHREE-1946 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263759#4263759 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4263759 ___

[jboss-user] [JBoss Portal Users] - Re: Writing a log4j email service

2009-11-03 Thread PeterJ
I have always used a valid "from" field, even the log4j book I have is silent as to if the "from" address needs to be valid. You don't have to add the extra category - what you did earlier for root should be fine. The one thing I don't see for the SMTPAppender is authentication handling. I kno

[jboss-user] [jBPM Users] - Re: JpdlProcessDefinition cannot be cast to java.util.List

2009-11-03 Thread sebastian.s
Hello Joram, I will try to provide the stacktrace tomorrow. The situation is the following. I've got a process definition with a couple of automated activities, a bunch of java classes mainly used to invoke Axis2 webservices and 2 tasks for users. The process definition is deployed with no pro

[jboss-user] [Advanced Documentation] - Re: can I deploy all my shared libs in one single file ?

2009-11-03 Thread iltrex
"PeterJ" wrote : You could do this: unjar all 20-some JARs into a common directory and then JAR the contents of that directory. Then you will have one JAR file which contains all the classes in the 20-some JAR files. that is a very good suggestion. I will make some tests right now. thank you ver

[jboss-user] [JBoss Messaging Users] - Re: sybase-persistence-service.xml

2009-11-03 Thread PeterJ
I would tell you to look in the server.log file because in that file you should see some DEBUG entries (with exception stack traces) that indicate that JMS discovered that the tables did not exist, after which it then creates them. But for some reason AS 5.1.0.GA was released with the logging le

[jboss-user] [jBPM Users] - Re: jBPM 4.x : roadmap BAR/PAR format

2009-11-03 Thread kukeltje
I would go for testing if there is a processdefinition file. I do not like adding a dirtectory structure in a directory structure (which a zip actually is, albeit compressed) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263746#4263746 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: sybase-persistence-service.xml

2009-11-03 Thread bdamato
They work when I enter them directly into Sybase. It just appears that they are never being executed. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263743#4263743 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4263743

[jboss-user] [Advanced Documentation] - Re: can I deploy all my shared libs in one single file ?

2009-11-03 Thread PeterJ
You could do this: unjar all 20-some JARs into a common directory and then JAR the contents of that directory. Then you will have one JAR file which contains all the classes in the 20-some JAR files. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263740#42637

[jboss-user] [JBoss Messaging Users] - Re: sybase-persistence-service.xml

2009-11-03 Thread PeterJ
I don't know Sybase, but it sounds as if the DDL statements to create some of the tables are incorrect. The sybase-persistence-service.xml file contains the DDL statements, try entering them in by hand into Sybase (using a sybase query tool). That should tell you what it wrong with them, so that

[jboss-user] [Advanced Documentation] - can I deploy all my shared libs in one single file ?

2009-11-03 Thread iltrex
I have a war file that uses some shared libs (20, more or less) I copy them in the lib folder, and the application works perfectly But, in order to make deployment easyer, I would like to create ONE single jar file will all the shared libs, so that deploying the application will require to copy

[jboss-user] [Beginner's Corner] - Re: ManyToMany problem

2009-11-03 Thread Wolfgang Knauf
I see that I posted this link already earlier in this thread. Sorry for this duplicate ;-)! Wolfgang View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263736#4263736 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4263736

[jboss-user] [JBoss Messaging Users] - Problem with custered Queue + Message Selector

2009-11-03 Thread camunda
Hi all. We currently face a problem with a clustered queue and a message consumer using a message selector. The use case is, that an EJB3 SessionBean waits for a response on a queue with a certain correlation id. The consumer just gets messages from one cluster node, so basically it gets some

[jboss-user] [Beginner's Corner] - Re: ManyToMany problem

2009-11-03 Thread Wolfgang Knauf
Hi Sven (from Germany?), another fast answer, but it will give you a bit to read and think about: http://www.jboss.org/community/wiki/EJB3relationships I hope the section "Managing the (bidirectional) relationship" will provide you with explanations on how to fix this. Wolfgang View the origin

[jboss-user] [JBoss Messaging Users] - sybase-persistence-service.xml

2009-11-03 Thread bdamato
I'm trying to switch from hypersonic to sybase. I've replaced the hsqldb-ds.xml with a copy of the sybase-ds.xml configured as my DefaultDS (it's working fine). I've also replaced the hsqldb-persistence-service.xml with a copy of sybase-persistence-service.xml. For some reason, when the server

[jboss-user] [Installation, Configuration & Deployment] - Re: Setting Multiple Instances for JBoss-4.2.3 GA

2009-11-03 Thread PeterJ
Most likely the XSL transform is failing, which can happen if you modify the server/xxx/deploy/jboss-web.deploy.service.xml file. The transform can be found in sample-bindings.xml, lines 364-387 (or look for the "*** tomcat ***" section). View the original post : http://www.jboss.org/index.htm

[jboss-user] [Installation, Configuration & Deployment] - Re: ERROR [AjpMessage] Invalid message recieved with signatu

2009-11-03 Thread john_es
OK - so forget the browser error, the client is giving me more output... | = | | JBoss Bootstrap Environment | | JBOSS_HOME: /opt/jboss | | JAVA: java | | JAVA_OPTS: -Dprogram.name=run.sh -Xms128

[jboss-user] [jBPM Users] - History of Tasks assossciated with a Specified Process Insta

2009-11-03 Thread JC4061
=== Environment == - jBPM Version : 4.1 - Database : Oracle 10g - JDK : 1.6 - Configuration : jbpm.cfg.xml only importing files from the jbpm.jar lib - Libraries : exact versions of the libs from inside the jbpm distribution I would like to query the persisted data to

[jboss-user] [Beginner's Corner] - Re: ManyToMany problem

2009-11-03 Thread swenu
Booah thanks for the fast answer :D New to all the things here - i'm so sorry! Next question i got! After i remover the roleFunction from the listRoleFunctions (i've checked, it's okay) and save the removed item is still available in the database! Bad news: there's no stack trace neither in cons

[jboss-user] [Beginner's Corner] - Re: ManyToMany problem

2009-11-03 Thread Wolfgang Knauf
Hi, that's a standard iterator problem, no EJB3 issue ;-): for(RoleFunction roleFunction:this.listRoleFunctions){ | ... | this.listRoleFunctions.remove(roleFunction); You remove an item from the list over which you iterate. Use this "for (int index = th

[jboss-user] [Installation, Configuration & Deployment] - Re: ERROR [AjpMessage] Invalid message recieved with signatu

2009-11-03 Thread john_es
I thought that ant ear would have deployed the thing... am I wrong is assuming that? I see errors now being output along the lines of: | Missing configuration resource for path /WEB-INF/struts-config.xml | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=

[jboss-user] [Installation, Configuration & Deployment] - Re: ERROR [AjpMessage] Invalid message recieved with signatu

2009-11-03 Thread john_es
Interesting... so if I copy the myproj.ear file into /opt/jboss/server/myproj/dist and then go to htttp://localhost:8080/myprog, I then get: | HTTP Status 503 - Servlet action is currently unavailable | | type Status report | | message Servlet action is currently unavailable |

[jboss-user] [Installation, Configuration & Deployment] - Re: ERROR [AjpMessage] Invalid message recieved with signatu

2009-11-03 Thread john_es
I run ant ear and that gives me: | je...@myproj-dev:~/myprojDev/workingfolder/trunk$ ant ear | Buildfile: build.xml | | generate: | [ejbdoclet] (XDocletMain.start 47 ) Running | [ejbdoclet] (XDocletMain.start 47 ) Running | [ejbdoclet] (XDocl

[jboss-user] [jBPM Users] - Re: jBPM 4.x and BPEL

2009-11-03 Thread briansbeard
Sorry for the post, I just stumbled across Riftsaw, which looks like where BPEL migrated to. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263712#4263712 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4263712 _

[jboss-user] [EJB 3.0 Users] - Re: EJB3.0 MDB example

2009-11-03 Thread rodedh
You can use Message Driven POJOs. | import org.jboss.annotation.ejb.DeliveryMode; | import org.jboss.annotation.ejb.MessageProperties; | import org.jboss.annotation.ejb.Producer; | | @Producer(connectionFactory="java:/JmsXA") | @MessageProperties(delivery=DeliveryMode.NON_PERSISTENT

[jboss-user] [jBPM Users] - jBPM 4.x and BPEL

2009-11-03 Thread briansbeard
Is there a BPEL engine implementation for jBPM 4? It looks like the latest BPEL version is for jBPM 3. If there is no implementation for version 4, does the version 3 carry forward to work with Jboss 5? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263709#42

[jboss-user] [Installation, Configuration & Deployment] - Setting Multiple Instances for JBoss-4.2.3 GA

2009-11-03 Thread mawenzel
I try to run two instances of JBoss 4.2.3 on one machine. I use the sample-bindings.xml (via the ServiceBindingManager) to override the various ports. All other ports are being overridden except the webservice which continue to run on port 8080. I googelized this, but I only found: anonymous wro

[jboss-user] [JBoss Messaging Users] - Once again: Could not find new XAResource to use for recover

2009-11-03 Thread uiterlix
Hi, I've been searching the forums quite extensively on the following warning message. | WARN [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.resources.arjunacore.norecoveryxa] [com.arjuna.ats.internal.jta.resources.arjunacore.norecoveryxa] Could not find new XAResourc

[jboss-user] [jBPM Users] - Re: EventListener questions

2009-11-03 Thread sebastian.s
This works for me. Note that I am using the process engine built by the default configuration which is stored in a static field in Configuration. | public class ApprovalListener implements EventListener { | | private static final long serialVersionUID = 1L; | | @Override

[jboss-user] [Performance Tuning] - Re: JBoss 5.1.0.GA performance tuning

2009-11-03 Thread PeterJ
anonymous wrote : But I did not see tuning Connection pools and exact file and what parameters need to change Section 14.6.1, configuring datasources anonymous wrote : Thread pools Section 14.6.2, Configuring the HTTP request thread pool anonymous wrote : Object/Component pools If all access i

[jboss-user] [jBPM Users] - Re: Conditional Task Assignment with Fork

2009-11-03 Thread sebastian.s
There is a discussion going on about this "issue" at the moment. Right now you can only complete tasks which belong to an execution and you can only delete tasks which were created independently. However if modelling an escalation from one task to a second one the first tasks remainds open and i

[jboss-user] [Security] - Re: (frustrated) cannot authenticate client against JAAS ena

2009-11-03 Thread Wolfgang Knauf
Hi Zsolt, one thing to check: did you activate logging of the security layer (see sticky post "FAQ" in this forum, question 4)? Provide more details on your app, as I assume that you don't have the same config. Best regards Wolfgang View the original post : http://www.jboss.org/index.html?m

[jboss-user] [Installation, Configuration & Deployment] - Re: ERROR [AjpMessage] Invalid message recieved with signatu

2009-11-03 Thread jaikiran
I don't see your application being deployed. Have you placed it in /opt/jboss/server/myproj/deploy folder? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263689#4263689 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=42

[jboss-user] [jBPM Users] - Re: Conditional Task Assignment with Fork

2009-11-03 Thread pradeep.gulla
hi, I've tried a different look around for this. viz., Assign all tasks with fork and delete unnecessary tasks with taskService.deleteTask(); But I'm getting error like this: org.jbpm.api.JbpmException: tasks related to an execution must be completed. they cannot just be deleted Conversely ja

[jboss-user] [Installation, Configuration & Deployment] - Re: ERROR [AjpMessage] Invalid message recieved with signatu

2009-11-03 Thread john_es
Ah, OK... just didn't want to post a huge thing if it wasn't necessary... or if I miss an obvious this in this output. Here it is. Let me know if there's anything else I can post. | = | | JBoss Bootstrap Environme

[jboss-user] [EJB 3.0 Users] - Re: Simple hibernate web app

2009-11-03 Thread Wolfgang Knauf
Hi Jose, better ask this in the hibernate forums: https://forum.hibernate.org/index.php I don't know how hibernate searches its config files, but hopefully in the forums someone can help. According to Hibernate docs, "The XML configuration file is by default expected to be in the root of your C

[jboss-user] [jBPM Users] - Re: Customization of jBPM GPD

2009-11-03 Thread koen.a...@jboss.com
do you want to customize the 4.x or the 3.x GPD? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263678#4263678 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4263678 ___ jboss-

[jboss-user] [jBPM Users] - Re: Processs defintion deployment failed on SQLServer2000

2009-11-03 Thread sebastian.s
Thanks for getting back to us. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263677#4263677 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4263677 ___ jboss-user mailing list

[jboss-user] [jBPM Users] - Re: Processs defintion deployment failed on SQLServer2000

2009-11-03 Thread pradeep.gulla
I've changed blob_ datatype form varbinary to image, which supports upto 2GB data. It's more than i required ;) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263676#4263676 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=r

[jboss-user] [jBPM Users] - jBPM 4.x : roadmap BAR/PAR format

2009-11-03 Thread dtoch
I'm evaluating jBPM 4.1. Currently if you take for example a simple PDF file and rename the extension to BAR/PAR to indicate it's a process archive, it will get deployed without any warnings or errors! The solution we envisage to avoid this problem is by imposing the presence of a file JBPM_LIS

[jboss-user] [Installation, Configuration & Deployment] - Re: MBean service either has no business interface or does n

2009-11-03 Thread brettcave
Its resolved - removed the jboss-service.xml mbean mapping, and let ejb3 handle the service deployment from the annotations. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263673#4263673 Reply to the post : http://www.jboss.org/index.html?module=bb&op=post

[jboss-user] [Installation, Configuration & Deployment] - MBean service either has no business interface or does not i

2009-11-03 Thread brettcave
I found the following thread, but no response as yet: http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4180208 We are busy with a jbas4.2.2 -> 5.1.0.GA migration, and have an mbean: MyMBeanService.java: | @Service(objectName = "mycompany:service=MyMBeanService") | @Management(MyMBean

[jboss-user] [Clustering] - The requested URL /XXX-war/index.html was not found on this

2009-11-03 Thread prudvi.vk
Hi I am able to create cluster and deploy a web application on jboss5.1GA. I am also able to deploy EAR successful, but when i want access that application i am getting the following error in cluster mode "The requested URL /XXX-war/index.html was not found on this server." but i'm able

[jboss-user] [EJB 3.0 Users] - Re: EJB3.0 MDB example

2009-11-03 Thread Wolfgang Knauf
Hi, the only "dynamic" way of creating the queues I know is to tell JBoss to autocreate them: https://jira.jboss.org/jira/browse/JBAS-6013 Hope this helps Wolfgang View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263661#4263661 Reply to the post : http://ww

[jboss-user] [JBoss OSGi Users] - Re: Deployment of EJBs as OSGi Bundles

2009-11-03 Thread thomas.dies...@jboss.com
You can vote here https://jira.jboss.org/jira/browse/JBOSGI-198 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263654#4263654 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4263654 __

[jboss-user] [JBoss OSGi Users] - Re: Deployment of EJBs as OSGi Bundles

2009-11-03 Thread wark2007
anonymous wrote : Yes, we are planning to deploy EJBs as OSGi bundles. Are there any news on that topic of deploying EJBs as an OSGi bundle? Is it already scheduled (I couldn't find it in JIRA)? Thanks in advance! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&

[jboss-user] [JBoss Web Services Users] - Re: IllegalStateException Cannot find property

2009-11-03 Thread roopas
I am facing the similar issue. Please let me know if you have the solution.Thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263637#4263637 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4263637

[jboss-user] [Installation, Configuration & Deployment] - Re: ERROR [AjpMessage] Invalid message recieved with signatu

2009-11-03 Thread jaikiran
"john_es" wrote : | For the console log, are you looking for the output from my running the following command?: | | sudo $JBOSS_HOME/bin/run.sh -c myproj Yes. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263636#4263636 Reply to the post : http://w

[jboss-user] [Beginner's Corner] - Re: ManyToMany problem

2009-11-03 Thread swenu
Hi again :D i found a solution - at least i'm close to a solution. I added this function to the Role. | @OneToMany(mappedBy="role") | private List listRoleFunctions; | ... | public List getFunctions(){ | List functions = new ArrayList(); | if(this.listRoleFunc

[jboss-user] [JBoss Cache Users] - Re: CacheLoader saves but rollbacks

2009-11-03 Thread chtimi2
If i comment the following: TransactionManager tm = Spring.getBean ( TransactionManager.class , "atomikosTransactionManager" ); | cache.getCache().getConfiguration().getRuntimeConfig().setTransactionManager(transactionManager); the behaviour is completely different: -instead of a single transa

[jboss-user] [Installation, Configuration & Deployment] - Re: ERROR [AjpMessage] Invalid message recieved with signatu

2009-11-03 Thread john_es
Thanks for the reply. My application.xml seems to be in my working folder and looks like: | | | http://java.sun.com/dtd/application_1_3.dtd";> | | myproj | | | myproj.war | /myproj | | | | myproj-ej

[jboss-user] [jBPM Users] - Re: Using Process variables as parameters for method calls

2009-11-03 Thread jbarrez
@Sebastian: Tom ran into a similar issue this morning: https://jira.jboss.org/jira/browse/JBPM-2622. Does the issue fit with your original problem? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263619#4263619 Reply to the post : http://www.jboss.org/index.

[jboss-user] [jBPM Users] - Re: Timer throwing exception intermittently

2009-11-03 Thread jbarrez
If the functionality is as you describe, then it is a bug. Can you debug the code and find out why exactly the id is still in the DispatcherThread (coincidence?) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263618#4263618 Reply to the post : http://www.jb

[jboss-user] [JBoss Cache Users] - Re: CacheLoader saves but rollbacks

2009-11-03 Thread chtimi2
At last here is the complete replSync-service.xml. Sorry for the inconvenience. | http://www.w3.org/2001/XMLSchema-instance"; xmlns="urn:jboss:jbosscache-core:config:3.2"> | | | | | | | | |

[jboss-user] [Installation, Configuration & Deployment] - JBOSS 5 - WEB CONSOLE - BEAN STATISTICS

2009-11-03 Thread Torsten Knopp
How can I get the Bean Statistics and Invocation Statistics on the WEB-CONSOLE at JBOSS 5? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263614#4263614 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4263614 __

[jboss-user] [JBoss Tools Users] - Re: Sending vm args

2009-11-03 Thread OChikvina
Double click the server to open the server editor and then click the 'Open launch configuration' link. In the Edit Configuration dialog you'll be able to set the VM arguments. See the docs: http://download.jboss.org/jbosstools/nightly-docs/en/as/html_single/index.html#server_editor View the ori