[jboss-user] [JBoss jBPM] - Re: Accessing the parent/super execution from a subprocess e

2009-08-13 Thread flavio.donze
hi shekharv That's how I'm getting the key right now and it works fine, but it's an ugly cast. I would like to have a getSuperProcessExecution() on the OpenExecution interface. OpenExecution has a method getSubProcessInstance() but no method to access the super ProcessInstance, that's basically

[jboss-user] [JBoss Portal] - Re: Incomplete deployment listing--> Packages waiting for de

2009-08-13 Thread murali67p
--- Packages waiting for a deployer --- org.jboss.deployment.deploymenti...@71f8d3f4 { url=file:/D:/JBoss/server/default/deploy/511.alaska.govProj } deployer: null status: null state: INIT_WAITING_DEPLOYER watch: file:/D:/JBoss/server/default/deploy/511.alaska.govProj altDD: null lastD

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Classloader Isolation (again)

2009-08-13 Thread jaikiran
anonymous wrote : 00:05:05,257 ERROR [StandardContext] Context [/county_library] startup failed due to previous errors | java.lang.RuntimeException: mapped-name is required for cxf of deployment county_library.war Not sure what this one is about. But i would first fix the xerces issue and la

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Incomplete Deployment listing (for the nth time)

2009-08-13 Thread sukumarp
Hi, Can you please elaborate the change you made on deploy/uuid-key-generator.sar/META-INF/jboss-service.xml file to fix this issue? Thanks, Sukumar. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249562#4249562 Reply to the post : http://www.jboss.org/in

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Classloader Isolation (again)

2009-08-13 Thread justinmiller
Gotcha. I'll try and remove xerces for now. Also, there is a cxf error in that stacktrace I posted. I definitely don't get that when I deploy to tomcat standalone. It made me think it was also a classloader issue. Any ideas with that error? What I haven't tried yet is removing xerces and redpl

[jboss-user] [EJB/JBoss] - Re: TxConnectionManager and enabling trace level logging

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

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Classloader Isolation (again)

2009-08-13 Thread jaikiran
"justinmiller" wrote : The jars in my deployment should not conflict with the server jars and vice versa given the configuration of my jboss-classloading.xml. | | Thanks, | Justin Just to make it clear - it's only the xerces jar(s) which are running into this issue. For all other thirdpa

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Classloader Isolation (again)

2009-08-13 Thread jaikiran
Honestly, i haven't been able to spend much time to look into this after the initial investigation. Maybe sometime later during this weekend. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249558#4249558 Reply to the post : http://www.jboss.org/index.html?

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: How to detect deployment failure

2009-08-13 Thread jaikiran
anonymous wrote : more interesting part is the war file (which contains a bunch of WS(s)) also show in JMX console. | | My solution was to try reading the war MBean attrs through JMX and see if has any WS(s) if not then .war is corrupt, What does WS(s) mean? Can you post the deployment fa

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Classloader Isolation (again)

2009-08-13 Thread justinmiller
Thanks for the quick reply! While that would most likely solve the problem, I agree with the poster of the linked thread that this really isn't a viable option. The jars in my deployment should not conflict with the server jars and vice versa given the configuration of my jboss-classloading.xml

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Issue with special characters in tree node names

2009-08-13 Thread jaikiran
Asking this in the RichFaces user forum might help http://www.jboss.org/index.html?module=bb&op=viewforum&f=261 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249554#4249554 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: make sure my hibernate config in jboss remains the same?

2009-08-13 Thread jaikiran
"Elhanan" wrote : | after placing jboss-app.xml in the meta-inf of the ear... | ... | the mdb extends an abstract class which implements MessageListener, MessageDrivenBean | ... | Looks like an old issue: http://www.jboss.org/index.html?module=bb&op=viewtopic&t=58037&postdays=0&posto

[jboss-user] [JBoss jBPM] - Re: jBPM4 process definition deployment.

2009-08-13 Thread jeff.yuchang
"JimDwyer" wrote : How do I deploy a process definition in jBPM4. I don't see a place to do it on the GWT console. The eclipse plugin doesn't have any tabs for deployment like the plugin for jBPM3. Obviously I can modify the ant install scripts but that seems like a last resort. How do I do

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Classloader Isolation (again)

2009-08-13 Thread jaikiran
All i can say at this point is - remove the xerces jar file(s) from your application http://www.jboss.org/index.html?module=bb&op=viewtopic&t=158645 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249551#4249551 Reply to the post : http://www.jboss.org/index.

[jboss-user] [Beginners Corner] - Re: how does jboss find jboss-log4j.xml

2009-08-13 Thread jaikiran
JBoss registers a custom protocol handler org.jboss.net.protocol.resource.Handler http://anonsvn.jboss.org/repos/common/common-core/trunk/src/main/java/org/jboss/net/protocol/resource/Handler.java to handle the resource: URLs. View the original post : http://www.jboss.org/index.html?module=bb&

[jboss-user] [Beginners Corner] - Re: Getting Server's 'Config Name' to display in JSP

2009-08-13 Thread jaikiran
There's a simpler way. You can use the system properties that JBoss sets http://www.jboss.org/community/wiki/JBossProperties: System.getProperty("jboss.server.name"); View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249549#4249549 Reply to the post : http://w

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Classloader Isolation (again)

2009-08-13 Thread justinmiller
Hey all, I'm trying to deploy a war to jboss 5.x. I want complete classloader isolation. I want my war completely isolated from everything else in the app server. I've read the forum postings on how to do classloader isolation in jboss 5.x and thus I have the following jboss-classloading.xml:

[jboss-user] [JBoss Portal] - Hotel booking demo not working

2009-08-13 Thread pjputhenvila
Hi I am trying to run he hotel booking demo as per the tutorial by Wesley Hales . I have checkout the project but I could not run the mvn install command. I am getting this error C:\JBossSeamPortalRun\booking>mvn install [INFO] Scanning for projects... Downloading: http://repo1.maven.org/maven2/o

[jboss-user] [EJB/JBoss] - TxConnectionManager and enabling trace level logging

2009-08-13 Thread asookazian
I am trying to debug and understand how the TxConnectionManager enlists XA resources for a 2PC/XA tx. I would like to know how to get the trace variable to be true below: | public boolean enlist() | { | if (trace) |log.trace("Enlisting resource " + T

[jboss-user] [JNDI/Naming/Network] - Re: Understand JNDI naming convention

2009-08-13 Thread PeterJ
Yes, that is correct. And if you go into the jmx-console you can see that MBean, and if you examine the MBean you might see some interesting data regarding your EJB (such as response times). View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249539#4249539 Reply

[jboss-user] [JBoss Tools (users)] - Re: Find Usages

2009-08-13 Thread Kragoth
JIRA raised https://jira.jboss.org/jira/browse/JBIDE-4771 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249538#4249538 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4249538 _

[jboss-user] [Beginners Corner] - Re: Beginners problem with ((StubExt)port).setSecurityConfig

2009-08-13 Thread soboko
I was running into a similar ClassCastException. The difference is that I'm using Maven and NetBeans 6.7 to generate my test client. To get this to work, I had to change my project dependencies from this (which was generated by NetBeans)... | com.sun.xml.ws |

[jboss-user] [JBoss jBPM] - Re: jBPM4 process definition deployment.

2009-08-13 Thread kukeltje
Hmmm There was limited time. Since deploying is possible in another way and showing definitions/tasklists/taskforms/... isn't, it is not a really a strange choice I think. If missing this makes you feel like you describe, I unfortunately cannot do much for you, how much I'd like to. Vi

[jboss-user] [JBoss jBPM] - Re: From

2009-08-13 Thread kukeltje
I know... it is indeed sometimes difficult... Oh and I did not want to offend you in anyway with my remark. Re-reading it makes it sound a bit harsh. Was not intended this way. More a comment to myself that I was a bit sloppy for not remembering. View the original post : http://www.jboss.or

[jboss-user] [JNDI/Naming/Network] - Re: Understand JNDI naming convention

2009-08-13 Thread mohitanchlia
ok ..starting to make little sense: | jar=ee-messaging.jar,name=RouterBean,service=EJB3 | So if I see something like this (above) it really means this is a Mbean managing "RouterBean" in this example? So for every Bean there is a Mbean that is created to manage the resource? Am I saying

Re: [jboss-user] Message Driven Bean config

2009-08-13 Thread Stephen Davidson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Sid. How do you know there are 30 MDB instances actually created? Just a random thought. In the meantime, you probably want to post this to the forums. This mailing list does not seem to be monitored by anyone from JBoss Group any more. Regards

[jboss-user] [JBoss jBPM] - Re: Accessing the parent/super execution from a subprocess e

2009-08-13 Thread shekharv
@flavio.doze Do you think you can setup a test case? Can you add a log statement to your assignment handler and check what value you are getting for this? logger.debug(((ExecutionImpl) execution).getSuperProcessExecution().getKey()); View the original post : http://www.jboss.org/index.html?mo

[jboss-user] [Installation, Configuration & DEPLOYMENT] - How to detect deployment failure

2009-08-13 Thread sasanplus
Hi, I copied a faulty .war file and tried detecting a deployment failure, but I still get org.jboss.deployment.SubDeployer.creat and org.jboss.deployment.SubDeployer.start more interesting part is the war file (which contains a bunch of WS(s)) also show in JMX console. My solution was to tr

[jboss-user] [JNDI/Naming/Network] - Re: Understand JNDI naming convention

2009-08-13 Thread PeterJ
java:comp/env is the enterprise naming context (ENC) and contains entries from the resource-ref section of your web.xml file. anonymous wrote : regarding my second question who uses the namespace? I hope you mean your third question. The namespace (within an MBean name) has no special meaning

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Problem changing default ports

2009-08-13 Thread PeterJ
The proper way to change ports in AS 5.0.x is to edit the server/xxx/conf/bootstrap/bindings.xml file. The 8080 and 8443 ports are defined in there, with an XSLT transform (located at the end of the file) used to locate an dynamically update the server.xml file at runtime. View the original pos

[jboss-user] [Security & JAAS/JBoss] - jaxws\samples\wssecurity\simple-username - How to get meanin

2009-08-13 Thread Naragansett
I'm running jbossws-native-src-dist-3.1.2 example ... jaxws\samples\wssecurity\simple-username. On Windows, against jboss-5.0.0 it runs fine. On RHEL 4 - 64 bit against Jboss-5.1 I only get (Client-side) - javax.xml.ws.WebServiceException: java.io.IOException: Could not transmit message ... C

[jboss-user] [JBoss jBPM] - Re: From

2009-08-13 Thread unsavory
Thank you very much for pointing me to the existing JIRA. Believe me, I have searched and searched over the past few days but searches don't always turn up the correct results unless you know exactly what you are looking for. View the original post : http://www.jboss.org/index.html?module=bb

[jboss-user] [JBoss jBPM] - Re: jBPM4 process definition deployment.

2009-08-13 Thread JimDwyer
I am a little confused as to why this wasn't added when the gwt-console was built. Wouldn't that be one of the most obvious things to have in there? I will write a small web app. Maybe I will write some GWT and contribute it. I can't believe loading a process definition was left out. It rea

[jboss-user] [JBoss OSGi] - Re: OSGi and MicroContainer

2009-08-13 Thread alesj
It depends which approach did you take? Embedded in AS? Then it's the same as always - JBOSS_HOME/server/CONFIG/deploy/. I guess for Runtime it's frmwrk specific. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249518#4249518 Reply to the post : http://www.j

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: make sure my hibernate config in jboss remains the same?

2009-08-13 Thread Elhanan
it also has one public onMessage method which delegates to the handleMessage method. it's ejb 2.x View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249517#4249517 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4249517 __

[jboss-user] [JNDI/Naming/Network] - Re: Understand JNDI naming convention

2009-08-13 Thread mohitanchlia
My previous post is not formatter correctly Thanks! What's the difference between java:comp and java:com/env? Also, regarding my second question who uses the namespace? For eg: In jmx console under jboss.j2ee I see: | jar=ee-messaging.jar,name=RouterBean,service=EJB3 | I am not sure w

[jboss-user] [JNDI/Naming/Network] - Re: Understand JNDI naming convention

2009-08-13 Thread mohitanchlia
Thanks! What's the difference between java:comp and java:com/env? Also, regarding my second question who uses the namespace? For eg: In jmx console under jboss.j2ee I see: | jar=efe-messaging.jar,name=RouterBean,service=EJB3 | | | | | I am not sure why it's defined this way? And

[jboss-user] [JBoss jBPM] - Re: From

2009-08-13 Thread kukeltje
This was a known issue and is already fixed. (I did not remember it, and assumed you already searched the jira and the forums... .stupid me. Assumptions. https://jira.jboss.org/jira/browse/JBPM-2407, try the latest source. View the original post : http://www.jboss.org/index.html?module=bb&

[jboss-user] [JBoss jBPM] - Re: How to Generate ad-hoc Task, activities & process ??

2009-08-13 Thread kukeltje
Look in the sourcecode of the pvm and jpdl. Lots of examples on how to create processes from code. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249512#4249512 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4249512 __

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Problem changing default ports

2009-08-13 Thread devj2ee
I am using jboss-5.0.0.GA. I have changed values of the default ports from 8080 to 80 and 8443 to 443 in the server.xml file located in the %JBOSS_HOME%\server\default\deploy\jbossweb.sar directory | | | | I have place my server.keystore file in the %JBOSS_HOME%\serve

[jboss-user] [Security & JAAS/JBoss] - Re: JBoss 4.2.3 and Security Annotations

2009-08-13 Thread bacooper81
Awesome. I see jboss-annotations-ejb3.jar. Thanks so much for the reply. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249510#4249510 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4249510

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: make sure my hibernate config in jboss remains the same?

2009-08-13 Thread PeterJ
Here is part of the error message: Warning: The message driven bean must declare one onMessage() method. And you stated your MDBs implement: protected abstract Object handleMessage(Message msg) ; (By the way, use the 'code' tags when posting XML text - select the text and click the Code butto

[jboss-user] [JBoss Tools (users)] - Generating DDL from annotated POJOs

2009-08-13 Thread JPAV
I'm trying to figure out how to use the JPA/Hibernate-related functionality in JBDS 2.0 and am having a few problems with JBDS either locking up on me or doing nothing when I choose the JPA Tools->Generate DDL... context menu option. I'm starting with JPA-annotated classes from which I want to

[jboss-user] [JBoss jBPM] - Re: From

2009-08-13 Thread unsavory
I've found the issue in the source. There is a bug in the code in JoinBinding.java Here is the defective source for that class: public Object parse(Element element, Parse parse, Parser parser) { | JoinActivity joinActivity = new JoinActivity(); | | if (element.hasAttribute("mu

[jboss-user] [JBossWS] - Re: Printing Service with thread unsave drivers

2009-08-13 Thread PeterJ
How about doing the printing from a Message-Driven Bean (MDB). Have your web service send the label information to a queue and have one MDB per printer reading from the queue (probably same source code, but deployed multiple times - once per printer - each with its own config). Then your web ser

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: make sure my hibernate config in jboss remains the same?

2009-08-13 Thread Elhanan
and before i forget, the mdb extends an abstract class which implements MessageListener, MessageDrivenBean the abstract class has 2 abstract methods: protected abstract Object handleMessage(Message msg) ; protected abstract void sendResponse(Object res,Message msg) ; View the original post :

[jboss-user] [Installation, Configuration & DEPLOYMENT] - well, i tried that and as i feared this happend:

2009-08-13 Thread Elhanan
after placing jboss-aop.xml in the meta-inf of the ear which contained this: com.pnx:archive=underwrite.ear java2ParentDelegation=false the deployment failed with mdbeans: 21:01:59,956 WARN [verifier] EJB spec violation: Bean : LCRequestHandlerMDB Section: 15.7

[jboss-user] [JBoss jBPM] - Re: How to Generate ad-hoc Task, activities & process ??

2009-08-13 Thread faisalgeek
But, i am not getting "ProcessFactory" class in jbpm4 lib, but its mentioned in jbpm4 docs ? any clue ? and yes, if any one can help creating new process + task by code, I will be thankful to you. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249502#424950

[jboss-user] [EJB 3.0] - Re: Many to Many realtionship question

2009-08-13 Thread EladKatz
Hi jaikiran, Thanks for the quick reply, I have actually read this article before and indeed in my implementation I use Sets instead of a Collection as is recommended there. However, that article doesn't address my issue directly though it does say this: anonymous wrote : | For a @ManyToMany re

[jboss-user] [JBoss jBPM] - Re: From

2009-08-13 Thread unsavory
No, it does not. I have tried so many different ways of getting this to work but with no success. No matter what I do, I cannot get it to move past the join. Here is an updated process flow that I am trying to simplify things: | | | |

[jboss-user] [Management, JMX/JBoss] - Re: Errors running multiple applications inside one Jboss 3

2009-08-13 Thread PeterJ
The classloader repository should do what you want. For each app you will have a different repository, and that repository will be used for all the JARs packaged with your app (the "com.example" used in the wiki pages is not a package name but rather a namespace for the MBean name, and thus has

[jboss-user] [JNDI/Naming/Network] - Re: Understand JNDI naming convention

2009-08-13 Thread PeterJ
1) For each web app deployed to the app server there is a "java:comp" namespace whose content is accessible only by that app. The app server prefills some names but you have to do some work (such as add resource-ref entries to your web.xml) to get others. mapped-name for what? In an @Stateless

[jboss-user] [JBoss jBPM] - Re: How to Generate ad-hoc Task, activities & process ??

2009-08-13 Thread kukeltje
Yes, two different scenarios, but he both requested them. In 4 the jpdl is not only persisted as lob, al implementing classes are instantiated and that (java) object graph is persisted and executed once a process instance is started. If you take a look at the internals of the PVM, you can see

[jboss-user] [JBoss jBPM] - Re: jBPM4 process definition deployment.

2009-08-13 Thread kukeltje
look at the ant task in the examples dir of the installation. If you used 'ant demo.setup' the examples can be deployed with an ant task. Just copy that for now. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249493#4249493 Reply to the post : http://www.jb

[jboss-user] [JBoss jBPM] - Re: jbpm4 and oracle application server integration

2009-08-13 Thread kukeltje
jndi and names etc has always been tricky, so I'm not sure there is an easy 'fix'. If this is just the thing, you are lucky ;-) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249492#4249492 Reply to the post : http://www.jboss.org/index.html?module=bb&op=pos

[jboss-user] [EJB 3.0] - Re: Many to Many realtionship question

2009-08-13 Thread jaikiran
This wiki https://www.jboss.org/community/wiki/EJB3relationships has good informative explanations on EJB3 entity relationships. See if it covers your case (probably does). View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249491#4249491 Reply to the post : h

[jboss-user] [JBoss jBPM] - Re: exception-handler with custom exception in jbpm 3.2.6

2009-08-13 Thread kukeltje
With simple unit tests you do not use the process classloader from the database, but the normal classloader. Since the custom exception is on the latter it works. Afaik (but I'm not sure) jBPM only supports loading actionhandlers from the processclassloader and not all other classes. The 'solut

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Issue with special characters in tree node names

2009-08-13 Thread tulip
Hi, I am using Richfaces Tree and have a context menu attached to each tree node. The problem is that the context menu does not get displayed when you right click a tree node whose name either has a apostrophe (example May '09) or ampersand in it. Context menu gets displayed for other nodes.

[jboss-user] [EJB 3.0] - Many to Many realtionship question

2009-08-13 Thread EladKatz
Hi, I'm using a manyToMany relationship in my project and I have a question: Is it possible to update the relationship from both sides? I'll show you an example of what i mean: | @Entity | public class Student { | @Id @GeneratedValue(strategy=GenerationType.IDENTITY) | private int id

[jboss-user] [JBoss Tools (users)] - Re: JBoss ESB 4.6 not supported in nightly builds

2009-08-13 Thread mferguson
"max.ander...@jboss.com" wrote : post in jira please Done. https://jira.jboss.org/jira/browse/JBIDE-4767 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249485#4249485 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=42494

[jboss-user] [JBoss Messaging] - javax.jms.IllegalStateException: Cannot find session with id

2009-08-13 Thread mmoorcroft
JBoss 4.2.3GA + Messaging 1.4.2.GA I keep seeing the following stack trace in our server.log. 2009-08-11 00:02:57,310 ERROR [org.jboss.messaging.util.ExceptionUtil] ConnectionEndpoint[leg72-2xa188yf-1-xz6nb3yf-03cvpk-k562ka] sendTransaction [hqm72-a5i788yf-1-xz6nb3yf-03cvpk-k562ka] javax.jms.Il

[jboss-user] [JBoss jBPM] - Re: How to Generate ad-hoc Task, activities & process ??

2009-08-13 Thread tcr
Hi, as far as I understand there is a difference in the two code examples. Rogerofyan is changing a running execution by adding additional steps. The process definition currently used is still in place, right? Is there no impact of the mismatch between process definition and running execution

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: DeploymentScanner

2009-08-13 Thread PeterJ
anonymous wrote : The guys on my team are not very supportive on making this work because they want a clean build Could you explain this point, please? I fail to understand why deleting the old war file and then copying over the new war file is not considered a "clean build". The Deployment Sc

[jboss-user] [JBoss OSGi] - Re: OSGi and MicroContainer

2009-08-13 Thread speleomaniac
One additional question, if I integrate the JBoss Osgi with Jboss AS 5.1 and if I want to make hot deployment where I must place the bundles for hot deploy... In osgi.deployer or Osgi runtime deploy directory because it is not making any hot deploy from osgi.deployer, I must install all the bund

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: make sure my hibernate config in jboss remains the same?

2009-08-13 Thread PeterJ
"and on was 6.1"?? Huh, what was 6.1? You can create a classloader repsitory to isolate classes. See if this helps: http://www.jboss.org/community/wiki/ClassLoadingConfiguration View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249472#4249472 Reply to the post

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Hibernate, jBoss Portal, jta?

2009-08-13 Thread thinwath
Hi guys, I'm facing a problem and don't rly know what I'm doing wrong. Scenario: I got serveral portlets deployed on my jBoss Portal 2.7.0 those are using hibernate to access a DB2 database, there is one servlet which provides a PDF generation this needs access to the database. I'm managed t

[jboss-user] [Beginners Corner] - Getting Server's 'Config Name' to display in JSP

2009-08-13 Thread zmcmahon
Hi - I'd like to develop a JSP page which we can use to determine which jboss server instance we are connected to. The idea is to use this page to determine which server your session is on when you are hitting a clustered application. I see in the ServerInfo.jsp page within the web-console, th

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

2009-08-13 Thread PeterJ
senan, please describe your problem in more detail. Specifically, which version of JBoss AS and what tool are you using to run it as a service? And be specific about the tool, there are several that use the description "wrapper service". View the original post : http://www.jboss.org/index.html

[jboss-user] [Microcontainer] - Re: Class loading conflict

2009-08-13 Thread objectiser
Yes, still picking up the xbeans-2.2.0.jar from the esb.deployer lib, instead of my local xmlbeans-2.3.0.jar in my sar's lib folder. Tomorrow is ok. Thanks. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249464#4249464 Reply to the post : http://www.jboss.

[jboss-user] [Microcontainer] - Re: Class loading conflict

2009-08-13 Thread alesj
"objectiser" wrote : I hadn't tried with all those attributes, so I just tried it with the same result :( So, you're still picking up esb.deployer's classes? I'll try to re-create this tomorrow, ok? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249456#424945

[jboss-user] Message Driven Bean config

2009-08-13 Thread Sid
I have a simple ejb application where I have one MDB which reads from a TIBCO EMS Queue and persists the message in db. I have defined MDB pool size as 30 still I see only 2 readers on EMS Queue. Any ideas, I thought if there are 30 MDB instances there should be 30 readers on EMS Queue? (for runnin

[jboss-user] [Microcontainer] - Re: Class loading conflict

2009-08-13 Thread objectiser
I hadn't tried with all those attributes, so I just tried it with the same result :( Just to make sure, this is what I have used: | | | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249452#4249452 Reply to the post : http://www.jboss.org/index

[jboss-user] [EJB 3.0] - Re: setProperty must be overridden by allsubclasses of SOAPM

2009-08-13 Thread jaikiran
Being discussed in your other post here http://www.jboss.org/index.html?module=bb&op=viewtopic&t=159848 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249450#4249450 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=424945

[jboss-user] [JBoss jBPM] - jBPM4 process definition deployment.

2009-08-13 Thread JimDwyer
How do I deploy a process definition in jBPM4. I don't see a place to do it on the GWT console. The eclipse plugin doesn't have any tabs for deployment like the plugin for jBPM3. Obviously I can modify the ant install scripts but that seems like a last resort. How do I do it? Jim View the

[jboss-user] [Microcontainer] - Re: Class loading conflict

2009-08-13 Thread alesj
What about if you just have this jboss-classloading.xml in your deployment: | and leave esb.deployer as it is. Or did you already try this? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249443#4249443 Reply to the post : http://www.jboss.org/index.html?

[jboss-user] [Microcontainer] - Re: Class loading conflict

2009-08-13 Thread objectiser
No, still no luck - just to check, the jboss-classloading.xml in esb.deployer is: and it causes exceptions like: 15:34:00,679 ERROR [AbstractKernelController] Error installing to Instantiated: name=jboss.esb:service=PropertyService state=Described mode=Manual requiredState=Configured java

[jboss-user] [EJB 3.0] - setProperty must be overridden by allsubclasses of SOAPMessa

2009-08-13 Thread JBOSSFREEBEE
I am trying to run a standalone java client which will invoke a webservice. My webservice is a session bean implementation and is running and tested with SOAP UI. My client code looks like the following : 1 URL url = new URL ("wsdlURL"); 2 QName qname = ("ServiceURI", "ServiceName") 3 Servi

[jboss-user] [EJB 3.0] - Re: Problem with EJB Injection in Servlet

2009-08-13 Thread jaikiran
If you are starting with EJB3 then i would recommend you to use the latest AS5 version (i.e. 5.1.0) because it has better spec compliant support for EJB3. Injection of EJB3 in servlets isn't supported in 4.2.x for reasons mentioned in our Sticky here http://www.jboss.org/index.html?module=bb&op=

[jboss-user] [JBoss Messaging] - Re: JBoss Messaing EAR scope persistence configuration

2009-08-13 Thread jcarnegi
Sorry, my mistake, JBM 1.4.3.GA it is of course. Thanks for your answer. I think we need to accept that different applications need different configurations of JBoss, whether that be for messaging or anything. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=42

[jboss-user] [Microcontainer] - Re: Class loading conflict

2009-08-13 Thread alesj
What about if you add parentDomain="DefaultDomain" to the esb.deployer's jboss-classloading.xml? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249420#4249420 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4249420 _

[jboss-user] [Microcontainer] - Re: Use of JBoss MC Pojo from in distributed env

2009-08-13 Thread mukulb
Thanks Ales and Manik. I can definitely add information to Wiki but i haven't used infinispan. But if whatever we discussed only needs to be documented then i will do it. Thanks, View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249416#4249416 Reply to the p

[jboss-user] [Microcontainer] - Re: Class loading conflict

2009-08-13 Thread objectiser
Hi, Tried that approach, but now I have a problem in that the ESB is complaining about classes not being found. The jboss-classloading.xml is placed in the esb.deployer, so I assume that isolation is now causing the jbossesb.sar to not resolve classes that it previously referenced from the esb.

[jboss-user] [JBoss Portal] - Re: Help!!! HTTP Status 500 Error

2009-08-13 Thread prabhat....@jboss.com
When does it happen? You may want to create a new forum thread for your problem. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249408#4249408 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4249408 __

[jboss-user] [Microcontainer] - Re: Class loading conflict

2009-08-13 Thread alesj
You need to "mimic" this isolation code | String domain = getJMXName(deployment, unit) + ",extension=LoaderRepository"; | classLoadingMetaData = new ClassLoadingMetaData(); | classLoadingMetaData.setName(unit.getName()); | classLoadingMetaData.setDomain(domain); |

[jboss-user] [EJB 3.0] - Re: Problem with EJB Injection in Servlet

2009-08-13 Thread sarabjit
My ear structure is EAR |->Meta-inf |---|->application.xml-(defines-the-two-ejb-and-war-modules) |---|->jboss-app.xml-(empty) |->my-war.war |---|->WEB-INF |--|->web.xml-(no-declaration-of-ejb-here) |->myejb.jar |---|->META-INF |--|->jboss.xml-(which-is-basic

[jboss-user] [EJB 3.0] - Problem with EJB Injection in Servlet

2009-08-13 Thread sarabjit
Hey Guys, I know there is another similar thread but i couldn't find an answer there. It might be because am really new to EJB so well, please bear with me. I have a war and an ejb.jar which i package in an ear. I have 2 questions 1. Am not able to access the ejb from the servlet. Can someone t

[jboss-user] [Microcontainer] - Re: StructureDeployer that supports subdeployments

2009-08-13 Thread beve
Thanks for you help on this Ales! Regards, /Daniel View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249392#4249392 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4249392 ___ jb

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - JBoss crashed under peak load

2009-08-13 Thread panpur
Hello, I'm using JBoss 4.2.1 GA for my app. The app must regularly process & save a lot of data every 1 minute. After running the app scheduler on a few minutes, I got this error: | javax.ejb.EJBTransactionRolledbackException: EntityManager must be access within a transaction | Some forum

[jboss-user] [JBoss jBPM] - Re: in timer

2009-08-13 Thread bestage
The previous problem has disappeared after I changed my jbpm.cgf.xml like this: | | | http://jbpm.org/xsd/cfg";> | | | | | | | | | | | | | | | | But now I am getting another exception: 13:13:51,115 INF |

[jboss-user] [JBoss Portal] - Re: Search Portlet?

2009-08-13 Thread TomHombergs
Hi Alberto, thanks for the reply. I guess the code you posted only searches the jboss-cms content, though. However, I now built a custom solution using Apache Lucene as search engine. Sadly, it's not a generic solution but rather specific for our purposes. View the original post : http://www

[jboss-user] [JBoss Messaging] - Re: JBoss Messaing EAR scope persistence configuration

2009-08-13 Thread gaohoward
JBoss 5.1.0GA comes with JBM 1.4.3.GA. It uses a persistence manager to do persistence. It's configured at server side only. I don't think it's possible to make it based on clients (EAR). View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249387#4249387 Reply to

[jboss-user] [JBoss jBPM] - Re: Accessing the parent/super execution from a subprocess e

2009-08-13 Thread flavio.donze
Thanks kukeltje, added a feature request: https://jira.jboss.org/jira/browse/JBPM-2485 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249386#4249386 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4249386

[jboss-user] [JBoss jBPM] - Re: using

2009-08-13 Thread bestage
:-))) 3rd attempt "bestage" wrote : Has anyone used this tag in jBPM4? | | I am getting this error: | | 12:40:34,379 INF | [DeployerManager] errors during deployment of deployment(213): | error: couldn't interpret the dom model: no 'jbpm.duedatetime.format' in current environment : o

[jboss-user] [JBoss jBPM] - jbpm4 and oracle application server integration

2009-08-13 Thread stup
Hi friends! I am facing some problems during jbpm4 and OAS integration. I am using default jbpm configs with one exception - i switched to JTA transaction interceptor to use oas bean-managed transactions. I configured hibernate to use my datasource also. My test process could not connect to data

[jboss-user] [JBoss jBPM] - using "duedatetime" in timer

2009-08-13 Thread bestage
Has anyone used this tag in jBPM4? I am getting this error: 12:40:34,379 INF | [DeployerManager] errors during deployment of deployment(213): error: couldn't interpret the dom model: no 'jbpm.duedatetime.format' in current environment : org.jbpm.api.JbpmException: no 'jbpm.duedatetime.format'

[jboss-user] [JBoss jBPM] - in timer

2009-08-13 Thread bestage
Has anyone used this tag in jBPM4? I am getting this error: 12:40:34,379 INF | [DeployerManager] errors during deployment of deployment(213): error: couldn't interpret the dom model: no 'jbpm.duedatetime.format' in current environment : org.jbpm.api.JbpmException: no 'jbpm.duedatetime.forma

[jboss-user] [JBoss Messaging] - Re: Messaging and transactions together

2009-08-13 Thread damian.sinczak
Changing ConnectionFactory to java:/JmsXA solved the problem. Thank you very much, you saved me a lot of time. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249378#4249378 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p

[jboss-user] [Microcontainer] - Re: Use of JBoss MC Pojo from in distributed env

2009-08-13 Thread manik.surt...@jboss.com
@mukulb wdyt? :) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249377#4249377 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4249377 ___ jboss-user mailing list jboss-user@li

[jboss-user] [Microcontainer] - Re: Use of JBoss MC Pojo from in distributed env

2009-08-13 Thread alesj
"manik.surt...@jboss.com" wrote : We should document this on a wiki somewhere. I guess we can ask mukulb if he's willing to do this once he's done? :-) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249376#4249376 Reply to the post : http://www.jboss.org/inde

[jboss-user] [Microcontainer] - Re: Use of JBoss MC Pojo from in distributed env

2009-08-13 Thread manik.surt...@jboss.com
Nice and easy! :-) We should document this on a wiki somewhere. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249375#4249375 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4249375 _

  1   2   >