[jboss-user] [EJB 3.0] - Re: EJB Timer still active even after the bean is undeployed

2009-03-04 Thread jaikiran
anonymous wrote : but this does not work, and the timer remains active even after the bean is undeployed. How did you verify this? Can you post the appropriate logs which show this behaviour? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214788#4214788

[jboss-user] [Beginners Corner] - MQ solution

2009-03-04 Thread eng_shaheen
Hi ALL, I am developing application that requires connectivity to multiple 3rd party servers ,so, some times I may lose the connection with one of those servers . I think then message queuing must be implemented . so, what is the best MQ tech available ?, can use JMS to implement such

[jboss-user] [JBossWS] - Re: WebServices logging

2009-03-04 Thread richard.opa...@jboss.com
Read Records Management Framework documentation above, please. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214792#4214792 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214792

[jboss-user] [JBoss Tools (users)] - JBoss tools and Eclipse 3.5?

2009-03-04 Thread jar...@jab.fi
Yes yes, Eclipse 3.5 is not yet out ;) Some of the plugins (like JBoss ESB plugin) seems to work, others, like JBoss AS plugin doesn't. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214794#4214794 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Urgent: ear Deployment fail on JBoss 5.0 GA with interce

2009-03-04 Thread jaikiran
Could you please attach a sample application, which shows this issue, to that JIRA? I am not seeing this issue on my system. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214795#4214795 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: How to make jboss to see the new added jar to it's jbos

2009-03-04 Thread ercanclk
Hi, Firstly, thank you for your reply. I tried what u say. I put the jar into the WEB-INF\lib of my web project. But when i test the application it throws error: classnotfoundexception. My web project needs some jars to run. The jars except my java project's jar are in jboss-home/common/lib

[jboss-user] [Beginners Corner] - Re: Connetion timeout in jboss

2009-03-04 Thread venuwin
Hi, Have i posted my query in the wrong forum ?? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214798#4214798 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214798 ___

[jboss-user] [JBoss Tools (users)] - Re: Can't intall jbossas plugin on eclipse 3.4.2

2009-03-04 Thread max.ander...@jboss.com
stable updates only have JBoss Tools 2 so use Eclipse 3.3 with that. Eclipse 3.4 requires JBoss Tools 3 which is from the dev updatesite - which at the moment is having issues. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214802#4214802 Reply to the post :

[jboss-user] [JBoss Tools (users)] - Re: 3.0.0 ?

2009-03-04 Thread Juergen.Zimmermann
We'll to start a new project with several newbies. Therefore, I'd like to have a fixed IDE. Thus mid of March is fine for me. Thank's a lot! View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214804#4214804 Reply to the post :

[jboss-user] [JBoss Tools (users)] - Re: JBoss tools and Eclipse 3.5?

2009-03-04 Thread max.ander...@jboss.com
got a patch ? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214805#4214805 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214805 ___ jboss-user mailing list

[jboss-user] [EJB 3.0] - Service Bean that depends on two queues

2009-03-04 Thread rnicholson10
I have two queues A and B, and I want my service bean to be dependent on these two queues. So my depends clause looks like this but it's wrong: | @Depends(jboss.messaging.destination:service=Queue,name=A,jboss.messaging.destination:service=Queue,name=B) | My service bean is working fine

[jboss-user] [EJB 3.0] - Re: Service Bean that depends on two queues

2009-03-04 Thread jaikiran
Post the queue configuration files. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214818#4214818 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214818 ___ jboss-user mailing

[jboss-user] [JBoss jBPM] - Re: org.hibernate.PersistentObjectException - after creating

2009-03-04 Thread MikeSchulze
Hi - sorry for the late answer. I couldn't solve the problem but used a workaround. - I set the second DueDate by using only the duration without any EL. That worked so far. Sorry - Mike View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214819#4214819 Reply to

[jboss-user] [Security JAAS/JBoss] - Kerberos, ejb, rmi

2009-03-04 Thread ruhe
Hello. I'm trying to develop a swing desktop application which uses EJBs deployed on jboss. The connection should take place on secure channel using kerberos. From all the posts I found on this forum, I understood that I have to implement some steps: 1. Need to get jboss tgt from kerberos.

[jboss-user] [EJB 3.0] - Re: Service Bean that depends on two queues

2009-03-04 Thread Wolfgang Knauf
Hi, you need an array syntax here: @Depends(value={jboss.messaging.destination:service=Queue,name=A, | jboss.messaging.destination:service=Queue,name=B}) Hope this helps Wolfgang View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214833#4214833

[jboss-user] [EJB 3.0] - Re: Service Bean that depends on two queues

2009-03-04 Thread rnicholson10
|mbean code=org.jboss.jms.server.destination.QueueService | name=jboss.messaging.destination:service=Queue,name=A | xmbean-dd=xmdesc/Queue-xmbean.xml | depends optional-attribute-name=ServerPeerjboss.messaging:service=ServerPeer/depends |

[jboss-user] [EJB 3.0] - Re: Service Bean that depends on two queues

2009-03-04 Thread rnicholson10
Perfect thanks! View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214838#4214838 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214838 ___ jboss-user mailing list

[jboss-user] [EJB 3.0] - ClassCastException on Stateless Session Bean

2009-03-04 Thread robert.geisler
hello everybody, currently we are migrating our EJB 2.1 (about 850 EJBs) to EJB 3.0. till now there have not been too many problems, but today i meet a special challeng when i migrated a Stateful Session Bean. the SFSB, lets call it MyStatefulSessionBean implements a Remote Business

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

2009-03-04 Thread jcw_at_mjc
I know a publish or clean/full publish should redeploy it, the problem is it doesn't! Does it matter that my WAR is on a samba share? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214843#4214843 Reply to the post :

[jboss-user] [EJB 3.0] - Re: ClassCastException on Stateless Session Bean

2009-03-04 Thread jaikiran
anonymous wrote : the MyStatefulSession.class is packaged in server/MyServer/lib/MyLibrary.jar and in our EAR, too. Ideally, nothing from your application should go in the server/ serverName/lib folder. The bean interfaces can be packaged in a jar (MyLibrary.jar) and the jar can be placed in

[jboss-user] [EJB 3.0] - Session Bean call from an MBean, isolation and the TCCL

2009-03-04 Thread os
Hi, I have an EAR containing an MBean and a Session Bean. Isolation is turned on. The Session Beans interface is not visible, since it should only be called via the MBean. When I call the EJB3 Session bean from an MBeans method the

[jboss-user] [EJB 3.0] - Re: ClassCastException on Stateless Session Bean

2009-03-04 Thread robert.geisler
thank you very, very much for your quick response, jaikiran. the EAR/lib folder is new for Java EE 1.5, i think. thats why we are not using it so far. but that could be a good solution. thanks. another question: if our WAR is not packaged into our EAR, then EAR/lib will not work for us, right?

[jboss-user] [EJB 3.0] - Re: ClassCastException on Stateless Session Bean

2009-03-04 Thread jaikiran
robert.geisler wrote : | another question: if our WAR is not packaged into our EAR, then EAR/lib will not work for us, right? where are we supposed to put our library in this case? or should our WAR always be packaged into our EAR? | | regards | robert In such scenarios, you can

[jboss-user] [JBoss jBPM] - Runtime Task Why not ?

2009-03-04 Thread AlClientView
Hi everyone, I have a question about what change can(not)/should(not) be allowed to be done at runtime. More specifically I'm thinking about Task: The way Jbpm is implemented (if I'm not wrong) allows client application to create task instance(s) for one Task at runtime. This can be done

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

2009-03-04 Thread max.ander...@jboss.com
Possible - but only for incremental updates. Forced build should. Any errors in Server log view or Error Log ? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214857#4214857 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Does Jboss4.2.3.GA provide any specific support for Whit

2009-03-04 Thread minchu.jboss
WE can't move the JAVA because it is the same JVM used by different containers apart from Jboss View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214858#4214858 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214858

[jboss-user] [Installation, Configuration DEPLOYMENT] - Does Jboss4.2.3.GA specific support for Whitespace and Unico

2009-03-04 Thread minchu.jboss
We are having the JBOSS located at following location in japanes locale box C:\サンタフェ サンタフェ サンタフェ\jboss-4.2.3.GA\bin So now when we run the jboss server it giving us the following exception

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Does Jboss4.2.3.GA provide any specific support for Whit

2009-03-04 Thread jaikiran
minchu.jboss wrote : WE can't move the JAVA because it is the same JVM used by different containers apart from Jboss Not even copy/paste to a different location? And then in run.bat set JAVA_HOME=newlocation of java for jboss View the original post :

[jboss-user] [JBoss jBPM] - Re: gwt-console datasource problems

2009-03-04 Thread jjrs
My datasource is in [Jboss.4.2.3.GA]\server\default\deploy\jbpm and the content is ... datasources | local-tx-datasource | jndi-nameJbpmDS/jndi-name | connection-urljdbc:oracle:thin:@dbServer:1521:dbInstance/connection-url | |

[jboss-user] [JBoss jBPM] - Re: RuntimeException when ending subprocess

2009-03-04 Thread spidek
I've opened a new issue: https://jira.jboss.org/jira/browse/JBPM-2084 View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214870#4214870 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214870

[jboss-user] [JBoss jBPM] - List all deployed process definitions

2009-03-04 Thread bestage
Hi everyone, I am writing a generic ProcessService to be put in front of the JbpmService. Now I would to give the user the possibility to list all deployed process names (string) in a web form. What is the best way to implement such a method? Of course I can scan certain folders in my project

[jboss-user] [EJB 3.0] - Service Bean - Strange behaviour on redeploy

2009-03-04 Thread rnicholson10
I have a service bean, that spawns a thread, which reads messages from one queue and sends them out on another. The thread is correctly stopped in both the stop and destroy methods of the bean. Everything works as expected if it's a fresh startup of JBoss or the service bean is deployed for

[jboss-user] [EJB 3.0] - Re: EJB Timer still active even after the bean is undeployed

2009-03-04 Thread Nouredine13
I'm sure the timer is not killed because I see in the logs that the timer is still active. i will post the log file in the afternoun. Thank's. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214876#4214876 Reply to the post :

[jboss-user] [Beginners Corner] - your current Jboss evaluation

2009-03-04 Thread Aldian_00
Hi everybody I am currently working on a comparative study of Jonas, Jboss, Glassfish, Geronimo. For all technical questions, I already have the information on the internet, and those four are the only one application servers that can meet my needs. But I would like to know what do experienced

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Urgent: ear Deployment fail on JBoss 5.0 GA with interce

2009-03-04 Thread Nouredine13
i have attached a sample application a sample which shows this issue. you can download it here : https://jira.jboss.org/jira/secure/attachment/12325121/testInterceptor_EAR.ear Regard's. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214887#4214887 Reply to

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Deployment error with net beans

2009-03-04 Thread gmaheshwari
I am getting the error while deployment of my project for the war file. The exact error is : 16:48:51,812 ERROR [Tomcat5] Problem in init java.util.zip.ZipException: unexpected EOF . .. . . . . . 16:48:52,406 ERROR [MainDeployer] Could not initialise deployment:

[jboss-user] [EJB 3.0] - Re: ClassCastException on Stateless Session Bean

2009-03-04 Thread robert.geisler
ok, i'll try it this way and let you know what happened ; ) thank you again View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214890#4214890 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214890

[jboss-user] [JBoss jBPM] - Re: List all deployed process definitions

2009-03-04 Thread kukeltje
jBPM 4? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214891#4214891 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214891 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [JBoss Portal] - Re: Partial Refresh with Multiple Submit Buttons

2009-03-04 Thread chris.lap...@jboss.com
Indeed, there seems to be an issue with this particular scenario. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214885#4214885 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214885

[jboss-user] [JNDI/Naming/Network] - Re: JNDI look up from ServletContextListener

2009-03-04 Thread Nikita1828
Yes. Looks like you were right. I've switched to JBoss 5.0.1.GA, and added to conf\bootstrap\deployers.xml: | bean name=topContextComparator | constructor factoryClass=org.jboss.system.deployers.LegacyDeploymentContextComparator factoryMethod=getInstance/ | property name=suffixOrder

[jboss-user] [JBoss jBPM] - Re: Enterprise Timers - Load Order

2009-03-04 Thread bradsdavis
Here is the exception that comes up when the server starts: | 08:30:43,109 ERROR [LogInterceptor] EJBException in method: public abstract void javax.ejb.TimedObject.ejbTimeout(javax.ejb.Timer) | : | javax.ejb.NoSuchObjectLocalException: failed to retrieve command service home |

[jboss-user] [JBoss Cache: Core Edition] - Cache.getChildrenNames(Fqn)?

2009-03-04 Thread ksobolew
There are some convenience methods in Cache interface which are normally declared in the Node interface. They are not really equivalent, because the versions in Cache are atomic, while those in Node are prone to races in low isolation levels, so I prefer to use the former. The thing is that not

[jboss-user] [JBoss jBPM] - Re: List all deployed process definitions

2009-03-04 Thread bestage
kukeltje wrote : jBPM 4? 3.2.3 View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214902#4214902 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214902 ___ jboss-user mailing list

[jboss-user] [JBoss Cache: Core Edition] - Re: Cache.getChildrenNames(Fqn)?

2009-03-04 Thread manik.surt...@jboss.com
Report it as a feature request on 3.1.0 View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214906#4214906 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214906 ___ jboss-user mailing

[jboss-user] [Beginners Corner] - Portlets mit Eclipse erstellen

2009-03-04 Thread margotmedia
Hallo, ich hab mal ein Frage im Bezug auf die Portletserstellung. Ich habe Eclipse IDE for Java EE Developers mit den aktullen JBoss Tools 3.1.0 Alpha geholt. Nun möchte ich für mein Portal eigene Portles erstellen. ABER wie soll das gehen? Folgende Seiten habe ich schon durchgearbeitet

[jboss-user] [JBoss Portal] - Re: Partial Refresh with Multiple Submit Buttons

2009-03-04 Thread thomas.he...@jboss.com
Chris and I have been looking at this, it seems related to our usage of Form.serialize from Prototype. There are various questions about that subject on the web, the easiest fix is to tweak your application. It would be better handled by the partial refresh 'framework' though. If you want to

[jboss-user] [JBoss Cache: Core Edition] - Re: Cache.getChildrenNames(Fqn)?

2009-03-04 Thread ksobolew
Done: https://jira.jboss.org/jira/browse/JBCACHE-1488 I reworded it somewhat, hope you don't mind :) View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214916#4214916 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214916

[jboss-user] [JBossWS] - How can I print to log file input soap request and response?

2009-03-04 Thread nicvas
How can I print to log file input soap request and response? For example: @WebService( ) public class ARE_GetBanner { @WebMethod(operationName = GetBanner) public GetBannerOutputData GetBanner(@WebParam(name = inputdata) org.isc.are.ws.GetBannerInputData inputdata) { log soap

[jboss-user] [JBoss Messaging] - non-serializable XAResource error from JBoss Messaging - Clu

2009-03-04 Thread ajayazariah
After killing (-9) one node, the other node picks up and processes the messages. After that when I restart the fist node, I get the following on second pass of the recovery manager: [com.arjuna.ats.internal.jta.resources.arjunacore.norecoveryxa] Could not find new XAResource to use for

[jboss-user] [Management, JMX/JBoss] - Does twiddle requires -b 0.0.0.0?

2009-03-04 Thread alegomes
Look the facts I'm facing with JBoss 4.2.2.GA and tell me if this is the expected behaviour: First, I started JBoss with: | run.sh | and I got: | ~/Documents/sea/edu/jboss_tuning/app/jboss-4.2.2.GA/bin$ ./twiddle.sh get jboss.system:type=ServerInfo HostAddress | 10:54:35,761 ERROR

[jboss-user] [JBoss Messaging] - Re: non-serializable XAResource error from JBoss Messaging -

2009-03-04 Thread ajayazariah
configuration below: | 1) conf/jbossjta-properties.xml : | | | Node 1: | | !-- (Must be unique across all Arjuna instances.) -- | property name=com.arjuna.ats.arjuna.xa.nodeIdentifier value=1/ | | !-- Configure which transactions must be recovered.

[jboss-user] [JBoss Messaging] - Re: Destination COnfiguration issue with Jboss 5 and Messagi

2009-03-04 Thread guy.finger
Hi Howard Thanks for the reply. I am still having the issue. I found a workaround for the same. I have configured the oracle as backend for JBoss by copying the oracle-ds.xml and oracle-persistance-service.xml files from examples folder to ${JbossRoot}/server/default/deploy and

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: How to make jboss to see the new added jar to it's jbos

2009-03-04 Thread Wolfgang Knauf
Hi, I don't know much about JBoss classloading, but I found this article (I assume you use JBoss5): http://www.jboss.org/file-access/default/members/jbossweb/freezone/docs/2.1.2/class-loader-howto.html According to this document, only a small set of JARs from CATALINE_HOME/lib (I assume this

[jboss-user] [JBoss Tools (users)] - Problem with Visual Page Editor using JBoss Developer Studio

2009-03-04 Thread djturner
I cannot get the VPE editor to run - the message I get is 'The VPE editor can't run because your system environment needs to be changed slightly.' The workspace .log file reports: anonymous wrote : !MESSAGE Bundle org.mozilla.xulrunner.win32.win32.x86 is not found. | !STACK 0 |

[jboss-user] [Installation, Configuration DEPLOYMENT] - Restart JBOSS is required if server time is changed?

2009-03-04 Thread ran_sushmi
I had a doubt that will a re-start of of our application which has JBOSS as the AS and TOMCAT as the web server be required if there is a change in server time? Our Server OS is RHEL 4.0(Linux). The server time is probably behind the time by 15 mins. I hope, my question is clear. Please,

[jboss-user] [JBoss Tools (users)] - Re: Problem with Visual Page Editor using JBoss Developer St

2009-03-04 Thread mareshkau
looks like plugin org.mozilla.xulrunner.win32.win32.x86 hasn't been download into your system. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214927#4214927 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214927

[jboss-user] [EJB 3.0] - what's the highest performance

2009-03-04 Thread john_...@canada.com
Hi, I'm just wonder to have a brief picture of highest performance specific to the following cases: in WinXp, 2 * 2.4G cpu, 3 G mem, jdk6, jboss5 case 1: what's the max creation of session bean (one creation per lookup) per second (performed in same jvm vs. different jvm, both in same

[jboss-user] [JBoss AOP] - Log Messages Not Showing with Compile Time Weaving

2009-03-04 Thread john.pfei...@billmelater.com
I have a few Interceptors that seem to work fine with load time weaving. I'd like to shift to compile time weaving using the maven plugin. I have the following defined in my pom.xml file. When I run my application I am not able to see the log statements generated by the interceptors. I can

[jboss-user] [JBoss Portal] - Re: processAction() method not executing

2009-03-04 Thread wjackter
Is your form submitting to an actionURL or a renderURL? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214930#4214930 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214930 ___

[jboss-user] [Beginners Corner] - Re: EntityManager TX and EJB3 = classLoader is not connected

2009-03-04 Thread anthon.r
will do, there's some updates there View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214931#4214931 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214931 ___ jboss-user mailing list

[jboss-user] [JBoss Portal] - CMS loses mime informations

2009-03-04 Thread gressho
Hello, I'm experiencing problems with the portal CMS. After exporting content or copying content the exports or copies completely lack mime type information. It is completely impossible to change or delete reimported or copied content. Our backend database is Oracle 11g (and I inserted a driver

[jboss-user] [EJB 3.0] - Advice on 4.0.5 EPC limitations please

2009-03-04 Thread jbaxter
Hello, Can someone confirm the following... 1) Within an ear file with multiple jar files... a jar files' persistence.xml cannot reference another jar file as 4.0.5 does not fully implement the EJB3 spec. 2) So the entities must be individually referenced in each jar files' persistence.xml,

[jboss-user] [Beginners Corner] - Re: Portlets mit Eclipse erstellen

2009-03-04 Thread margotmedia
Kann mir keiner helfen? So i explain my problem in english. I will create a portlet for my JBoss portal, but the tutorials don't work or i don't understand it. I downloaded eclipse 3.4 and jboss tools 3.1.0 alpha and jboss AS 5.0.1. The follow links don't help me.

[jboss-user] [JBossWS] - WSDL - convert to MTOM

2009-03-04 Thread Ian Ashley
What is the best way to convert the code generated by WSConsume to support MTOM transfers of the base64Binary elements? Is there a recipe anywhere? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214936#4214936 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: List all deployed process definitions

2009-03-04 Thread bradsdavis
Grab it off of the graph session as shown below: | JbpmConfiguration.getInstance().createJbpmContext().getGraphSession().findAllProcessDefinitions(); | Then just run over the definitions calling getName. View the original post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Jboss 5.x deploy problem

2009-03-04 Thread zlatko.jo...@gmail.com
Hi, I user jboss 5 and have problem with persistence.xml deploy . Persistence.xml uses OracleDS that is deployed, I can see it in jmx-console. I allways got this message : DEPLOYMENTS MISSING DEPENDENCIES: Deployment persistence.unit:unitName=#ModuleAdmCbPersistence is missing the

[jboss-user] [Installation, Configuration DEPLOYMENT] - Connect app to static content folder

2009-03-04 Thread oneworld95
Hi. I'm new to JBoss and have installed version 4.2.3.GA on my WinXP Pro system to match our server. The Java servlet needs to write an uploaded file to a folder on my machine. The app's is located in this folder: C:\jboss\jboss-4.2.3.GA\server\default\deploy\premupload.war Its structure is

[jboss-user] [JBoss Tools (users)] - Hibernate Configurations problem

2009-03-04 Thread paulkeogh
JBT 3.00 CR2, Eclipse 3.4.2 When I open the Hibernate Configurations to view and expand a configuration created with seam-gen (through Eclipse) from Sean 2.1.1 GA, I get an error of; Error while opening console configuration: xxx-ejb Reason:

[jboss-user] [JCA/JBoss] - Datasource with ha-xa-datasource is not deployed under JBO

2009-03-04 Thread agattone
Hi, I try to deploy the following datasource to enable failover features under a JBOSS 5.0 GA application server. This xml datasource is validated against the dtd. For moment, I use only one database URL just to begin my test. My datasource file is perhaps wrong, but no explicit error message

[jboss-user] [EJB/JBoss] - Design problem: EJB containers prevent threadpool allocation

2009-03-04 Thread mcandelo
I have a design issue I'm working through - I'm attempting to limit requests into a remote system to a set number per client. So for each client we have, I want a max of (for example) 15 requests to be sent to the system. Clients are added and removed constantly so extra development for each

[jboss-user] [Security JAAS/JBoss] - Re: BUG: Principal ist not is session scope after WebAuthent

2009-03-04 Thread anil.saldh...@jboss.com
Maybe the session is turning out to be different. What we are dealing with is the Tomcat session at the server. Now if the JSF bean changes anything in the request to indicate a different session, then the previous authentication is lost. I am not an expert in JSF. So I cannot answer if this

[jboss-user] [JBoss Tools (users)] - Re: Problem with Visual Page Editor using JBoss Developer St

2009-03-04 Thread djturner
Yep that what it says. So my question really should have been how do I get this plugin? If somebody could provide some instructions on how to get and install this I would be very happy. Thanks View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214954#4214954

[jboss-user] [JBoss Portal] - WSRP consumer never contact producer if first try failed

2009-03-04 Thread cpage
Hi all, I use JBoss 4.2.3 and JBossPortal 2.6.6 with WSRP. My problem is that WSRP Consumer never try to contact again a producer if the first try failed. A scenario for example : - stop the 2 JBoss - add a new producer in the *-wsrp.xml file of the consumer - start only the consumer -- the

[jboss-user] [JBoss Messaging] - Opening a new JMS session for an already existing transactio

2009-03-04 Thread olimo
Hi, Is it possible to open a new JMS session for an existing transaction with JBM 1.4? I imagine that it is what happens when a connection generated by a ClusteredConnectionFactory manages the failover of a JBM cluster node, does it? Let me introduce the context of my question: We have a

[jboss-user] [JBoss Tools (users)] - Re: Hibernate Configurations problem

2009-03-04 Thread max.ander...@jboss.com
hmm - should just work. Project Clean and Refresh the console config if that does not help run ant test (that should no longer be a requirement, but it was in earlier versions) View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214963#4214963 Reply to the

[jboss-user] [JBoss Messaging] - Asynchronous msg delivered synchronously

2009-03-04 Thread davemb
Hi, We're in the process of upgrading from JBoss 4.2.2 (with JBoss MQ) to JBoss 5.0.1 (with JBM). One of the changes we've noticed is that the first attempt to deliver an asynchronous message is made synchronously. This behaviour appears to be by design as it's documented in one of the JBoss

[jboss-user] [JBossWS] - Re: WSDL - convert to MTOM

2009-03-04 Thread Ian Ashley
To provide a bit more information we are used complex types containing base64Binary encoded data, for example s:element name=StoreAsset | s:complexType | s:sequence |

[jboss-user] [JBoss Messaging] - Re: Asynchronous msg delivered synchronously

2009-03-04 Thread timfox
I don't know what you mean by the first attempt to deliver a message is made sychronously, and what makes you think that is the case. Also I'm not sure what documentation you're referring to. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214967#4214967 Reply

[jboss-user] [JBoss Tools (users)] - Re: Problem with Visual Page Editor using JBoss Developer St

2009-03-04 Thread max.ander...@jboss.com
If you just did this today from the dev update site then that is caused by us having a build failure that nuked the site. We are in the process of bringing it back to a working form and that should be ready in 20 minutes. Please uninstall what you did get and try again. sorry for the trouble

[jboss-user] [JBoss Portal] - Re: WSRP consumer never contact producer if first try failed

2009-03-04 Thread chris.lap...@jboss.com
Use the WSRP admin console to refresh the consumer. That said, I will look into the issue. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214973#4214973 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214973

[jboss-user] [Security JAAS/JBoss] - Cannot Deploy SSO Federation EAR

2009-03-04 Thread edgoquist
I'm trying to deploy jboss-federation-server.ear I get this: | 12:00:25,395 ERROR [ProfileServiceBootstrap] Failed to load profile: | org.jboss.deployers.spi.DeploymentException: Exception determining structure: AbstractVFSDeployment(jboss-federation-server.ear) | at

[jboss-user] [JBoss Portal] - Re: processAction() method not executing

2009-03-04 Thread mitesh1984_agrawal
I am using actionURL in my form as form action=portlet:actionURL/ method=GET View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214976#4214976 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214976

[jboss-user] [Security JAAS/JBoss] - Re: Cannot Deploy SSO Federation EAR

2009-03-04 Thread aamonten
It looks like you are trying to deploy it on JBoss AS 5, JBoss Federated SSO does ot support 5 only 4.3 View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214977#4214977 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214977

[jboss-user] [JBoss Portal] - Re: WSRP resources URLs

2009-03-04 Thread chris.lap...@jboss.com
Our WSRP implementation doesn't currently handle resources very well. background:url in style elements are indeed not currently properly detected as targets for rewriting. A possible solution would be a store the static resources such as images in an easily reachable location and refer to them

[jboss-user] [JCA/JBoss] - DataSource with Dynamic IP

2009-03-04 Thread sebastiendeg
Hi, I remember a possibility to use something like a Delegate or maybe Wrapper in Jboss Datasource which could give the possibility to change the DataBase settings (mainly IP). I remeber that as being a DataSource Delegate. Any ideas ? Thanks, sebastien View the original post :

[jboss-user] [JBossWS] - Re: WSDL - convert to MTOM

2009-03-04 Thread Ian Ashley
Finally cracked it. Changing the WSDL to s:element minOccurs=1 maxOccurs=1 name=asset type=s:base64Binary xmime:expectedContentTypes=application/octet-stream/ | resolved the problem. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214985#4214985 Reply to

[jboss-user] [JBoss Tools (users)] - Re: Can't intall jbossas plugin on eclipse 3.4.2

2009-03-04 Thread nickboldt
http://download.jboss.org/jbosstools/updates/development/ has been repaired to include the 3.0.0.CR2 bits. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4214987#4214987 Reply to the post :

[jboss-user] [Security JAAS/JBoss] - Re: Cannot Deploy SSO Federation EAR

2009-03-04 Thread edgoquist
Oh. Ok. Thanks. All i want to do is get SSO working on JBoss5. How do I do that? should i just use cookies? I've got a situation that looks pretty much like this: ... http://www.jboss.org/community/docs/DOC-12280 ... For example, suppose we have a case where two apps, with URLs

[jboss-user] [JBoss Tools (users)] - link for final bug fixes does not match documentation, sort

2009-03-04 Thread bdlink
Since the bug fixes were branched off and the trunk is 3.1.0.Alpha1, the doc on installing jboss tools, http://jboss.org/community/docs/DOC-10044, is misleading. It gives two links, to the CR2 site as stable (OK) and the 3.1.9.Alpha site as nightly (literally correct, I guess). For people who

[jboss-user] [Installation, Configuration DEPLOYMENT] - How can i make virtual alias for network shared drive

2009-03-04 Thread navin_net
I have some html files on different PC, that on shared network drive. how can i access as a alias like http://localhost/my_files/1.html. where my_files as a alias for network shared drive. Please help me. Its very urgent. Navin Kumar View the original post :

[jboss-user] [JBossWS] - Re: RestEasy Security

2009-03-04 Thread jej2003
The issue is with the web.xml shipped with RestEasy, there is a typo in the file it currently reads resteasy.resource.method-interceptors where it should be resteasy.resource.method.interceptors Everything is working fine now. View the original post :

[jboss-user] [JBoss jBPM] - async execution

2009-03-04 Thread armita
I am trying to execute some of my nodes with built in async approach. I get the messages in the JBPM_JOB table, but nothing happens after this point. The record are just sits in the table forever. The application is a webbased application running on Tomcat and my jbpm configuration file looks

[jboss-user] [JBoss Messaging] - Client Connection Delegate has Null state

2009-03-04 Thread mmarcuci
I'm trying to start an application running in JBoss 4.0.5 that is to be a client to a JBoss Messaging server running JBoss 4.2.3, Messaging 1.4.0.SP3. I think I've worked out most of the classpath issues, and everything starts up without exception. I create the initial context with JNDI to

[jboss-user] [JBoss Tools (users)] - where is the launch configuration

2009-03-04 Thread jackxxwu
i have eclipse 3.4.2+JbossAS tools 2.0.0.GA-R200903031330-H8+Jboss EnterprisePlatform-4.3.0.GA. i followed the instructions here: http://docs.jboss.org/tools/3.0.0.CR2/en/as/html_single/index.html up to the point where it says: Figure 3.15. XPath Pattern for a Server Port The settings

[jboss-user] [JBoss Tools (users)] - Re: Portlet Filters when creating a new portlet

2009-03-04 Thread prabhat....@jboss.com
I tried to create filter using DeploymenetDescriptors-Filter-New Filter. I was thinking that adding portlet facet to dynamic project should add the class in the list of super classes. But I don't see javax.servlet.Filter either which should be available in most of web projects. Which jar does

[jboss-user] [Installation, Configuration DEPLOYMENT] - Expression Language (EL) with JBOSS 4.x

2009-03-04 Thread avinashtauro
I have a jsp page using EL which works fine on Tomcat 6.0. However when i migrate this to a JBoss 4.0 setup, I get the following error for the line containing EL syntax. -- org.apache.jasper.JasperException:

[jboss-user] [JBoss Tools (users)] - Re: where is the launch configuration - it is a bug

2009-03-04 Thread jackxxwu
i now believe it is a bug. there is a disconnect between the servers and the run configure dialogs. when i try to add the run configure, my server does not show up in the drop down list. i also try to change the .launch file under .metadata\.plugins\org.eclipse.debug.core\.launches. but the

[jboss-user] [JBoss Tools (users)] - Re: where is the launch configuration

2009-03-04 Thread max.ander...@jboss.com
Right click server Open launch configuration Double click server the editor that shows up has link to the launch config. And no there is no lucene index here - just that we use whatever is configured in the server object to do the launch config. View the original post :

[jboss-user] [JBoss Tools (users)] - Re: Portlet Filters when creating a new portlet

2009-03-04 Thread max.ander...@jboss.com
ah so this is for servlet filters - i thought portal filters were something specific ? you can see the classpath on the project in the project explorer. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4215024#4215024 Reply to the post :

[jboss-user] [JBossWS] - Re: Trying to specify SOAP 1.2 in EJB.

2009-03-04 Thread djkrite
I installed JBoss 5.0.1 and JBossWS 3.1.0, the problem still exists. Here is a stack trace: | 15:40:39,149 ERROR [STDERR] java.lang.UnsupportedOperationException: SOAP 1.1 Fault does not support the concept of Role | 15:40:39,150 ERROR [STDERR] at

  1   2   >