[jboss-user] [JBossWS] - Re: JBossWS Web Service using ArrayList

2006-08-21 Thread rksangubotla
"stevenh" wrote : Hi Ravi, |Its not really a limitation on the soap message rather than the limitations on jax-rpc. The topic has been covered quite extensivly, see: | | http://www.jboss.com/index.html?module=bb&op=viewtopic&t=84998 | | Which is where i probably should have poin

[jboss-user] [JBoss Seam] - How to initialize application state (defaults)?

2006-08-21 Thread SmokingAPipe
I have a simple question but I can't find an answer. I'm setting up this application which allows users to log in, etc. Of course it also has an administration section to do all the normal things: create special acccounts, delete accounts, etc. Here's the question: How do I instantiate this ad

[jboss-user] [Beginners Corner] - Re: Composite Primary Key in an EntityBean (CMP) - XDoclet

2006-08-21 Thread SmokingAPipe
Are you really sure that you want to have a composite primary key? From what I understand that is almost always a bad idea. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966377#3966377 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posti

[jboss-user] [JBoss Seam] - Re: Seam and SEO

2006-08-21 Thread amarinis
This would be a great feature. I have clients requesting this in most of there RFP's. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966378#3966378 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966378 ___

[jboss-user] [Messaging, JMS & JBossMQ] - Which files must be provided to connect JBoss 4.0.2 to SAP X

2006-08-21 Thread godfella
Hi! I am currently trying to get SAP XI to talk to JBoss 4.0.2 via its JMS Adapter. To do that, I need to provide XI with the drivers from JBoss. Unluckily I am totally new to JBoss (let alone Java development), so I am asking you for the files needed to do the job. In an SAP Forum I read tha

[jboss-user] [JBoss Seam] - Seam + jBPM: cancelling tasks

2006-08-21 Thread dgallego
Hi I'm modifying the TODO list example, the one that uses Seam and jBPM to create a TODO list. I want to cancel the business process creation if a task with the same description already exists, cancel the recently created task in createTodo() method... How can I cancel the creation of a task in

[jboss-user] [JBossCache] - Re: Eviction Policy problem cache clear

2006-08-21 Thread alximik
I have the same problem. When the last node in FQN is a String everything is fine. But when the last node in FQN is an Integer the cache is not cleared. | treeCache.put(new Fqn(new Object[]{"a", "b", Integer.valueOf(1).toString()}), "key2", "value2");//The data will be cleared | | tree

[jboss-user] [EJB 3.0] - Re: TrialBlazer is not working!

2006-08-21 Thread [EMAIL PROTECTED]
Hi. I was also getting this error. I solved this error by copying javaee.jar to C:\jboss-4.0.4.GA\server\default\deploy\ejb3.deployer and C:\jboss-4.0.4.GA\lib directories. The JAR file javaee.jar I took from lib directory of Sun Java System Application Server Platform Edition 9. After copying

[jboss-user] [EJB 3.0] - Re: TrialBlazer is not working!

2006-08-21 Thread [EMAIL PROTECTED]
Hi. I was also getting this error. I solved this error by copying javaee.jar to C:\jboss-4.0.4.GA\server\default\deploy\ejb3.deployer and C:\jboss-4.0.4.GA\lib directories. The JAR file javaee.jar I took from lib directory of Sun Java System Application Server Platform Edition 9. After copyin

[jboss-user] [JBoss Seam] - Re: Calling a method when a Session scope starts?

2006-08-21 Thread petemuir
How about using page actions? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966384#3966384 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966384 ___ jboss-user mailing list j

[jboss-user] [JBoss Seam] - Re: Calling a method when a Session scope starts?

2006-08-21 Thread SmokingAPipe
That's what I ended up doing, and it works beautifully. It's a lot more elegant than writing a filter. No filter, and with about 5 lines of code, I can check a database and set a cookie. It does create a new object with every request, but it's a lightweight object so I don't think that matter

[jboss-user] [JBoss Seam] - Re: Seam and SEO

2006-08-21 Thread [EMAIL PROTECTED]
Apache mod_rewrite or equivalent. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966385#3966385 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966385 ___ jboss-user mailing l

[jboss-user] [JBoss Seam] - Re: Seam and SEO

2006-08-21 Thread [EMAIL PROTECTED]
And what is wrong with a simple filter? That is what they are made for, as are the rewrite features of any good webserver. Why would we duplicate mod_rewrite in Seam? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966387#3966387 Reply to the post : http://

[jboss-user] [JBoss Seam] - Re: Seam and SEO

2006-08-21 Thread SmokingAPipe
Well I do it all the time in Apache when I'm working on PHP but I am not excited about introducing Apache into my projects. To be honest I would like to never use Apache httpd again if I can avoid it. Maybe I'll try some kind of filter to do this. View the original post : http://www.jboss.co

[jboss-user] [JBoss Seam] - Re: why booking example does not work when i try to change t

2006-08-21 Thread bfo81
anonymous wrote : note The full stack trace of the root cause is available in the Apache Tomcat/5.5.17 logs. Please have a look in your log file to see the whole stuff. The exception shown here occurs after many different errors, and it provides no real information ;). View the original post :

[jboss-user] [JBoss Seam] - Re: Seam and SEO

2006-08-21 Thread SmokingAPipe
Ok, I'll write a filter. I guess I need to figure out how the RequestDispatcher would look to trigger a JSP page with Seam. If I can figure that part out the filter should be pretty simple. The only reason to possibly do it within Seam is that the pages.xml file seems like it might be able to

[jboss-user] [JBoss Seam] - Re: Entities with one/many_to_many relationships and SEAM

2006-08-21 Thread petemuir
It seems that facelets behaves differently under myfaces/Glassfish, normally requisite libraries are implicitly loaded. So, what you are saying is that for selectOne's it work's fine with the facelets tag (rather than converter=) but not for multiple select? The myfaces code for multiple select

[jboss-user] [JBoss Seam] - Re: Entities with one/many_to_many relationships and SEAM

2006-08-21 Thread petemuir
Adam, have you tried adding the facelets.LIBRARIES parameter to web.xml? Does the tag get printed out verbatim on your page as trouby wrote above? Or do you have that bit working now? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966392#3966392 Reply to the

[jboss-user] [Installation, Configuration & Deployment] - JBoss hardware configuration

2006-08-21 Thread pjuza
Hi all, I have problem with hardware's configuration for application server. Customer wants to know what server to buy but I'm not a hardware specialist, I'm a developer. Please can anyone help me with hardware configuration for the following requirements: - aprox. 3000 employees (aprox. 100 us

[jboss-user] [Beginners Corner] - Re: Composite Primary Key in an EntityBean (CMP) - XDoclet

2006-08-21 Thread bronks
"SmokingAPipe" wrote : Are you really sure that you want to have a composite primary key? From what I understand that is almost always a bad idea. | Oh, yes. In such cases composite primary keys are absolutely usual an necessary. View the original post : http://www.jboss.com/index.html?modul

[jboss-user] [JBoss Seam] - Re: When are components created?

2006-08-21 Thread petemuir
When the component is instantiated it will live in the event scope NOT the component will be instantiated whenever the event scope is accessed. There is no way (AFAIK) of doing this. Beans are instantiated when they are accessed (via @In, @Out, accessed from a JSF page etc.) View the original

[jboss-user] [JBoss Seam] - Re: why booking example does not work when i try to change t

2006-08-21 Thread gringalet
thanks for giving some advice. the log is belows, :) 2006-08-21 16:55:42,421 DEBUG [org.jboss.util.NestedThrowable] org.jboss.util.NestedThrowable.detectDuplicateNesting=true 2006-08-21 16:55:42,421 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/seam-booking]

[jboss-user] [JBoss jBPM] - Re: Start, Stop/Pause and Restart a Process Instance

2006-08-21 Thread kukeltje
none yet, it sais 'should' and has not been investigated in much detail. It should be discussed, since you might not want to update all timers (some are e.g. legally bound to certain deadlines). If you have ideas, please post them. View the original post : http://www.jboss.com/index.html?modul

[jboss-user] [JBoss Seam] - Re: How to initialize application state (defaults)?

2006-08-21 Thread petemuir
Is it backed by a database? If so, you could just use import.sql to import data. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966398#3966398 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966398 __

[jboss-user] [JBoss Portal] - Jboss for CMS

2006-08-21 Thread katariakapil
How can I create a complete new PORTAL in JBOSS 2.4 CR ?? Is this is not as Weblogic 8.1 creating a fresh portal site in workshop where we can create a new portal View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966399#3966399 Reply to the post : http://w

[jboss-user] [JBoss jBPM] - The Snippet code java embed into a BPEL file

2006-08-21 Thread doankhoavy
Hi all, Can we embed a snippet of Java code within a BPEL file ? if can,which element ? if anyone know this can help me ? thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966400#3966400 Reply to the post : http://www.jboss.com/index.html?module=bb&op=pos

[jboss-user] [JBoss Portal] - Re: Exception in Management Portlet

2006-08-21 Thread gruenewa
Hello, i tested the new JBoss Portal 2.4 release on a linux box. But there i get the same error message: The management portlet's title is: An error occured while rendering window 'default.Admin.ManagementPortletWindow' and the portlet's content is: WEB-INF/jsp/management/index.xhtml @41,58 re

[jboss-user] [Installation, Configuration & Deployment] - null java.lang.reflect.UndeclaredThrowableException at $Prox

2006-08-21 Thread KayouMT
After making run the famous FiboBean tutorial, my next step has been to writing : - a servlet calling ejbs A and B - ejb A calls ejb X - ejb B calls ejb Y Servlet is deployed in a Servlet.war file. A and B are in AB.jar. X and Y are deployed in XY.jar. If I deploy all the stuff locally, proper

[jboss-user] [EJB 3.0] - get Object field in MS SQL

2006-08-21 Thread ccharpentier
I've got jboss 4.0.4GA with MS SQLSERVER I want to create an Image type field in MS SQL within an ejb3. when i look in the mapping file standardjaws.xml | | java.lang.Object | JAVA_OBJECT | IMAGE | | here this is my entity | import java.sql.Date;

[jboss-user] [JCA/JBoss] - load balancing

2006-08-21 Thread fayaz
Thanks for your reply, i am trying to implement just load balancing, no clustering required, i have copied the loadbalancer.sar directory to the deploy directory on a default setup of jboss, and changed the entries in the jboss-service.xml as below, and i get the new entry for loadbalancer in t

[jboss-user] [JBossWS] - Re: Example for transmitting a pojo

2006-08-21 Thread cknowles
I'm not sure if the namespace should or shouldn't be qualified. Here's the part of my wsdl corresponding to the function called that threw the above error. It may be a bug in the client code I'm using, but if its a bug in jboss, I'm unsure if its with jboss WS or jboss XB. | | http://www.

[jboss-user] [JBoss jBPM] - jbpm bpel problem with doc/lit format.

2006-08-21 Thread powerpunch
wrote a simple bpel code: http://schemas.xmlsoap.org/ws/2003/03/business-process/"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://schemas.xmlsoap.org/ws/2003/03/business-process/ http://schemas.xmlsoap.org/ws/2003/03/business-process/"

[jboss-user] [Installation, Configuration & Deployment] - Load Balancing

2006-08-21 Thread fayaz
I am trying to implement just load balancing, no clustering required, but i am having some problems, i have used the default setup, i have copied the loadbalancer.sar directory to the deploy directory on a default setup of jboss, and changed the entries in the jboss-service.xml as below, and i

[jboss-user] [JBoss jBPM] - Re: jbpm bpel problem with doc/lit format.

2006-08-21 Thread powerpunch
http://schemas.xmlsoap.org/ws/2003/03/business-process/"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://schemas.xmlsoap.org/ws/2003/03/business-process/ http://schemas.xmlsoap.org/ws/2003/03/business-process/"; xmlns="http://schemas.x

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Problem using blobs with hibernate on jboss 3.2.x

2006-08-21 Thread caerlama
Hi, try it using getObject insteadt of getBlob and saving the result in a byte[]. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966409#3966409 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966409 _

[jboss-user] [JBoss jBPM] - probmlem with jbpm bpel with doc/lit

2006-08-21 Thread powerpunch
sorry guys, some prob with my machine...neways the following is the bpel process: partnerLink name="caller" partnerLinkType="urn:callerPLT" myRole="service"/> partnerLink name="reviewer1" partnerLinkType="urn:reviewPLT" partnerRole="review"/> /partnerLinks> variables>

[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Persisting Session

2006-08-21 Thread susantpatnaik
Hi All, I got the solution but there is a strange behaviour or i m not sure how it should behave . like i have followed this link http://www.onlamp.com/onlamp/mysqlckbk/solution.csp?day=2 and tried its happening but when i stop application server. But ideally it should happen where ever we are st

Re: [jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Persisting Session (Out of Office)

2006-08-21 Thread Andy Black
I'm out of the office until August 25, 2006. If you need assistance please call Dave Horton at 202-514-4944 or Tania Parvez at 202-514-5257 ___ jboss-user mailing list jboss-user@lists.jboss.org https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [Management, JMX/JBoss] - Re: Unregistering a MBean on un-/re-deploy

2006-08-21 Thread geirgp
Thanks! However I found another solution. It isn't really related to JBoss since I'm using Spring to manage these beans, but here goes: I added the following line to the "MBeanExporter" in applicationContext.xml which forces unregistration of any existing beans with the same name. (this settin

[jboss-user] [JBoss jBPM] - using table in JBPM

2006-08-21 Thread Remider
Hi, i am using JBPM and eclipse 3.1. i want use "table", "commandButton" on eclipse 3.1 , does JBPM support it? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966414#3966414 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&

[jboss-user] [JBoss Seam] - Re: How to initialize application state (defaults)?

2006-08-21 Thread wondermike
How would you solve problems like this one? http://www.jboss.com/index.html?module=bb&op=viewtopic&t=88326&start=20#3965369 In my app the import.sql file gets executed twice and I don't know how to prevent that. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=39

[jboss-user] [Messaging, JMS & JBossMQ] - switching off temporary queue creation

2006-08-21 Thread teknokrat
I am trying to deploy an ear file that contains a jar full of ejbs and a sar file that sets up my messaging queues. However, jboss insists on creating temporary queues because the jar gets deployed before my sar. Now, i know you can switch this behaviour off in conf/standardjboss.xml but I wou

[jboss-user] [JBoss Seam] - Re: Calling a method when a Session scope starts?

2006-08-21 Thread raja05
"SmokingAPipe" wrote : | I assume that these components could do other stuff like do redirects. The ultimate in cool is if they could do effectively a JSP include, so I could use it for my SEO needs, and hide parameters within URLs (ie, map /blog-5885.seam to /blog-entry.jsp, and use the 588

[jboss-user] [Management, JMX/JBoss] - JMX ServiceURL and Spring

2006-08-21 Thread geirgp
Okay, spring and JMX again. I'm using Spring's serverConnector to serve my MBean's via JMX. This is done my adding the following lines to Spring's config | | This works very well and I can access all beans in JBoss' MBean server remotely. However the last

[jboss-user] [JBoss Eclipse IDE (users)] - How to start JBoss 3.2.8 AS from Eclipse 3.2?

2006-08-21 Thread Yilativs
Hello I want to start JBoss AS 3.2.8 from Eclipse 3.2 in debug mode with JBoss IDE (this was possible on eclipse 3.1.2 with JBoss IDE) What version of JBoss IDE should I use and what additional plugins (e.g. WTP) I should install before installing JBoss IDE. Regards, Vitaliy S View the original

[jboss-user] [Clustering/JBoss] - Re: Loadbalancing & clustering

2006-08-21 Thread fayaz
HI, Thanks, I have managed to load balance the jboss servers with this method, but, each of the jboss servers are hosted with tomcat, using a ssl session, how do i send the requests to a https request, as when i change the 8009 to 8443, it doesn't work. View the original post : http://www.j

[jboss-user] [JBoss jBPM] - Re: swimlane user assigment seems to doesn't work

2006-08-21 Thread antitrust1982
Hello, what I must do, in order to assign in my portlet execution the assignment of my portlet? Do I use the good class in order to assign my task? What I must do to assign it to my specific person? help me please. antitrsut1982 View the original post : http://www.jboss.com/index.html?module

[jboss-user] [Installation, Configuration & Deployment] - Configuring log4j.xml for different logger levels on Console

2006-08-21 Thread Stichel
Hi, is it possible to configure log4j.xml to put out logging information on the DEBUG level on the console? I want to set different logger levels in the application using the command Logger.setLevel(Level.DEBUG) or Logger.setLevel(Level.INFO). Thanks, Stichel View the original post : http:/

[jboss-user] [JBoss Eclipse IDE (users)] - Re: How to start JBoss 3.2.8 AS from Eclipse 3.2?

2006-08-21 Thread [EMAIL PROTECTED]
afaik, jboss ide still allows that (since it launches it in debug mode by default) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966425#3966425 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966425 ___

[jboss-user] [EJB 3.0] - Problem with User defined object in Jboss web service - "Can

2006-08-21 Thread zohar_sap
Hi, When I call a ws method - test1() - that gets a user defined object from a .Net client I get an exception on the client side: "Cannot find child element: MyClass_1"} System.Web.Services.Protocols.SoapException {System.Web.Services.Protocols.SoapHeaderException} I use jboss 4.0.4GA + Java

[jboss-user] [Installation, Configuration & Deployment] - Configure JBossAS to use IBM WSMQ

2006-08-21 Thread mvilot
Looks like the published code is incorrect. Configuration: jboss-4.0.4.GA with WSMQ 6.0, both running on Windoze. JBoss installer summary: Chosen installation packsjmx-core | minimal | binding-service | client-deployer-service | dynclassloader-service.xml | ear-deployer | ejb-timer

[jboss-user] [JCA/JBoss] - Configuring JCA 1.5 jms-ra.rar for WSMQ

2006-08-21 Thread mvilot
Looks like the published code is incorrect. Configuration: jboss-4.0.4.GA with WSMQ 6.0, both running on Windoze. JBoss installer summary: Chosen installation packsjmx-core | minimal | binding-service | client-deployer-service | dynclassloader-service.xml | ear-deployer | ejb-timer

[jboss-user] [JBoss Messaging] - Using WSMQ as part of ESB

2006-08-21 Thread mvilot
Looks like the published code is incorrect. Configuration: jboss-4.0.4.GA with WSMQ 6.0, both running on Windoze. JBoss installer summary: Chosen installation packsjmx-core | minimal | binding-service | client-deployer-service | dynclassloader-service.xml | ear-deployer | ejb-timer

[jboss-user] [JBossCache] - Re: Hibernate/Cache conceptual mismatch

2006-08-21 Thread [EMAIL PROTECTED]
Highly likely. Consider 2 different Hibernate Sessions performing the same load concurrently: session.load( MyEntity.class, new Long(1) ); And assume that MyEntity#1 is not currently in the cache. So what happens? Well, in response to the load from the first session Hibernate will load the da

[jboss-user] [JBossWS] - Problem with User defined object in Jboss web service

2006-08-21 Thread zohar_sap
Hi, When I call a ws method - test1() - that gets a user defined object from a .Net client I get an exception on the client side: "Cannot find child element: MyClass_1"} Hi, When I call a ws method - test1() - that gets a user defined object from a .Net client I get an exception on the clien

[jboss-user] [JBoss Seam] - How to set a variable to a taskInstance

2006-08-21 Thread mlsreekanth
Hello all, I a trying to set a variable to a taskInstance where that variable is declared as required in the taskcontroller of the process. When i created this variable as Outjected and BUSINESS_PROCESS scoped, it is not being updated by an assignment rather than the initialization. But when

[jboss-user] [Messaging, JMS & JBossMQ] - Re: Unique constraint violation with JMS

2006-08-21 Thread bhuste1
I am getting the exact same error using the default db hypersonic. This occurs during my long running test that I have setup to send 10 million messages from 3 different JMS clients. The test is set up to send batches of 1000 messages and sleep for 10 seconds. The messages are received by a

[jboss-user] [JBoss Eclipse IDE (users)] - Re: How to start JBoss 3.2.8 AS from Eclipse 3.2?

2006-08-21 Thread Yilativs
"[EMAIL PROTECTED]" wrote : afaik, jboss ide still allows that (since it launches it in debug mode by default) Have you tried it yourself? Regards, Vitaliy S View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966434#3966434 Reply to the post : http://www.jboss

[jboss-user] [JBoss Eclipse IDE (users)] - Re: How to start JBoss 3.2.8 AS from Eclipse 3.2?

2006-08-21 Thread [EMAIL PROTECTED]
yes; but remember in 2.x servers are started through the server window. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966435#3966435 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966435 ___

[jboss-user] [Messaging, JMS & JBossMQ] - Re: switching off temporary queue creation

2006-08-21 Thread Thoennes
How about using a dependency of the EAR file on the SAR file? That is much cleaner. Cheers, Jörg View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966436#3966436 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966436 __

[jboss-user] [JBoss Seam] - Re: Entities with one/many_to_many relationships and SEAM

2006-08-21 Thread adam.stortz
Pete, I added facelets.LIBRARIES to my web.xml. This did not correct the problem. No, the tag is not being printed out verbatim on the page. The interesting part of the resulting html looks like this: (This is after making multiple selections and submitting the page) | | |

[jboss-user] [Installation, Configuration & Deployment] - Classloader separation between Webtier, EJBs and Container:

2006-08-21 Thread worenk
Hello everyone, I'm having troubles with JBoss 4.0.4 and its classloading mechanism in the default configuration. 1) We are using several 3rd party libs that the JBoss container itself is using another version of (in server/default/lib). We'd prefer if JBoss libraries would not be visible to o

[jboss-user] [JBoss Seam] - Re: Seam and SEO

2006-08-21 Thread [EMAIL PROTECTED]
Even if a filter is too complicated, a mod_rewrite equivalent in Tomcat (and others) is then the way to go. I don't think this should be the job of the webapp framework, it's the responsibility of the webserver. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=

[jboss-user] [Messaging, JMS & JBossMQ] - javax.jms.JMSException: Another thread is already in receive

2006-08-21 Thread monu
Hi, I am gettin "javax.jms.JMSException: Another thread is already in receive" when there are so many messages in the queue and JBoss Java process runs out of memory. What could be the reason? Regards, Monu View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966

[jboss-user] [EJB/JBoss] - Transfer a struts's DynaActionForm to slsb error?

2006-08-21 Thread peixubin
I uses struts1.2+slsb . I transfer a DynaActionForm to slsb in my app,when I use jboss-3.2.x,it works fine.but when I use jboss-4.0.3.sp1,it reports error. In web side: ... public ActionForward executeAction(ActionMapping mapping, ActionForm form, Htt

[jboss-user] [Management, JMX/JBoss] - Loading file from within a sar

2006-08-21 Thread saschwen
Hello, I'm writing a service mbean that will load drl files from a directory within a sar and place the compiled rules on the jndi tree that will be accessible for my web apps. The only problem is that I don't know how to access the files withing the sar. Can someone explain or tell me what c

[jboss-user] [JBoss Portal] - 2.4 GA

2006-08-21 Thread jewhit
Hello All - is IPC present in the new General Release... and if so, is it the same as that in 2.2 ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966445#3966445 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966445

[jboss-user] [JBoss Portal] - Re: 2.4 GA

2006-08-21 Thread [EMAIL PROTECTED]
Yes IPC is present. In order to make it more official we decided to release it in a separate jar file called portal-api-lib.jar. The package have been renamed to org.jboss.portal.api.* to ensure a correct scoping. Also as this jar is independant and small it is easy to add it in your projects.

[jboss-user] [JBoss Eclipse IDE (users)] - Re: How to start JBoss 3.2.8 AS from Eclipse 3.2?

2006-08-21 Thread Yilativs
"[EMAIL PROTECTED]" wrote : yes; but remember in 2.x servers are started through the server window. Let's get back to my first question, if you don't mind ;-) What version of JBoss IDE can start JBoss 3.2.8 AS on Eclipse 3.2 and does it need any additional plugin to run? Thank you very much in

[jboss-user] [JBoss jBPM] - Re: using table in JBPM

2006-08-21 Thread kukeltje
what table? Database? or jsf datatable? Same for the commandbutton. Please be more specific. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966447#3966447 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966447

[jboss-user] [JBoss jBPM] - Re: swimlane user assigment seems to doesn't work

2006-08-21 Thread kukeltje
to much debug, to little info. Make a minimal unittest that demosntrates the problem. THEN we can see if we can help. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966449#3966449 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=

[jboss-user] [EJB 3.0] - Re: How do I share entity beans across scoped EARs?

2006-08-21 Thread asack
There is no way to do this other than packaging the entity beans with each EAR? I mean why have identical classes laying around in each EAR... I suppose I'm asking is there a generic way to deploy EJBs that have global scope? I suspect the answer is no but I can see this as a very useful featu

[jboss-user] [JBoss Eclipse IDE (users)] - Re: How to start JBoss 3.2.8 AS from Eclipse 3.2?

2006-08-21 Thread [EMAIL PROTECTED]
Any JBossIDE 1.x and 2.x version should do that. Please tell me what doesn't work exactly View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966451#3966451 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966451

[jboss-user] [JBoss Portal] - Re: Switching JBossPortal to MySQL from hypersonic.

2006-08-21 Thread AndrewBoyd
Thanks for the quick reply CR. Your suggestion is getting me closer. Now I keep getting the following: | 10:11:00,437 WARN [JDBCExceptionReporter] SQL Error: 0, SQLState: 01004 | 10:11:00,437 ERROR [JDBCExceptionReporter] Data truncation: Data too long for column 'MODIFIABLE' at row 1 |

[jboss-user] [JBoss Eclipse IDE (users)] - Re: How to start JBoss 3.2.8 AS from Eclipse 3.2?

2006-08-21 Thread [EMAIL PROTECTED]
JBoss IDE alpha 1a can technically start JBoss 3.2.8, and it requires the webtools project to do so. Beta 1 should be released this month, and that, also, should be able to start jboss. Both can start in debug mode. View the original post : http://www.jboss.com/index.html?module=bb&op=viewto

[jboss-user] [JBossCache] - Re: how to support treecache transaction in CMT

2006-08-21 Thread [EMAIL PROTECTED]
Was just about to say that looks fine too, when I saw the problem :) The fact that you put your Person object in the cache doesn't make the Person object transactional. You are changing the person object by changing the address -- that change won't roll back. To get what you want you'd need so

[jboss-user] [EJB 3.0] - Re: How do I share entity beans across scoped EARs?

2006-08-21 Thread aidan_b5
try putting them in the deploy directory...not inside an ear, that should make them accessible by all other apps View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966458#3966458 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply

[jboss-user] [JBoss jBPM] - or join

2006-08-21 Thread mygol
XorJoinHandler Your trail: Here is a custom Xor join handler, which means; it accepts the first token arriving the join and cancels all the rest. package org.jbpm.delegation.join; public class XorJoinHandler i

[jboss-user] [Messaging, JMS & JBossMQ] - Re: SocketTimeoutException:Read timed out after client conne

2006-08-21 Thread hsoldier
Hi All, the client timeout that you are observing is "by design" and can be configured in the uil2-service.xml file for the "jboss.mq:service=InvocationLayer,type=UIL2" managed bean: - ReadTimeout attribute (in milliseconds, default is 12 - two minutes): it is used to disconnect the clien

[jboss-user] [JBossWS] - SOAP over HTTPS?

2006-08-21 Thread DrHok
Hello, I would like to change an existing SOAP interface to a JBoss(4.0.2)-based webservice from HTTP to HTTPS, in order to ensure both privacy and integrity of data. But how do I do it? Just changing the line http://myserver:8080/"/> to https://myserver:8443/"/> in the wsdl doesn't seem t

[jboss-user] [JBoss Portal] - Re: Switching JBossPortal to MySQL from hypersonic.

2006-08-21 Thread [EMAIL PROTECTED]
Did you read this page? http://wiki.jboss.org/wiki/Wiki.jsp?page=AvoidMySQL5DataTruncationErrors View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966464#3966464 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966464 _

[jboss-user] [Messaging, JMS & JBossMQ] - Re: switching off temporary queue creation

2006-08-21 Thread teknokrat
Given that the SAR is inside the EAR file I don't think this is possible. I could make the SAR depend on the EJBs I guess but I have other services starting up in the SAR that depened on the EJBs being already deployed. Can I just add a jboss-service.xml to an EAR file? Do I need to add anyhting

[jboss-user] [JBoss Eclipse IDE (users)] - Re: How to start JBoss 3.2.8 AS from Eclipse 3.2?

2006-08-21 Thread Yilativs
"[EMAIL PROTECTED]" wrote : Any JBossIDE 1.x and 2.x version should do that. | | Please tell me what doesn't work exactly | First of all, thank you for fast response. Here is my problem: I have WTP and JBoss IDE 2 are installed on Eclipse 3.2 I'm trying to create configuration with n

[jboss-user] [JBoss Eclipse IDE (users)] - Re: How to start JBoss 3.2.8 AS from Eclipse 3.2?

2006-08-21 Thread [EMAIL PROTECTED]
Where is the "new server command" you are trying to use? The proper method to create a new server using JBoss IDE 2.0 alpha or alpha 1a is to open either the Servers View, or the JBoss Server View. Then right-click and select "new -> server", then select the JBoss 3.2 server type (underneath J

[jboss-user] [JBoss Seam] - Re: components.xml suggestion

2006-08-21 Thread chuckadams
Gahh, the last thing I want is for Seam to turn into Spring. Still, the option of naming externally would be a plus. Maybe it could even take over managing JSF components in faces-config.xml, though I suppose it might demand more or different metadata. I'm not sure what you'd gain by moving

[jboss-user] [Remoting] - Re: How to unregister a ServerInvoker?

2006-08-21 Thread [EMAIL PROTECTED]
Just as a simple tests, I deployed a remoting-service.xml file in the deploy directory for JBossAS 4.0.4 and would then change some of the attribute values (i.e. backlog to 205). This worked without any problems. Contentes of remoting-service.xml pasted below. Can you post the service.xml y

[jboss-user] [JBoss Portal] - Re: Jboss for CMS

2006-08-21 Thread PeterJ
1) Login as admin/admin. 2) Click on the Admin tab in the navigation bar 3) In the Manegement Portal, click on "root" on the left-hand side (root is a collapsed tree view) 4) Enter the Portal Name and click Add portal Now, when you expand root, there will be two portal, default and the one you

[jboss-user] [EJB 3.0] - Re: How do I share entity beans across scoped EARs?

2006-08-21 Thread asack
But that won't get tehd eployer to register it with the EJB container...right? Alright, I'll try it but I doubt this will work. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966471#3966471 Reply to the post : http://www.jboss.com/index.html?module=bb&op=po

[jboss-user] [JBoss Portal] - Re: Setting the content of the CMS Portlet Through the Manag

2006-08-21 Thread PeterJ
The first thing to do is create another instance of the CMS portlet. Do this from the Management Portlet, click on the Portlet link on the top row of the window. Scroll the list of portlet until you see local.portal.CMSPortlet. Click on that and then to the right type is a name for the new insta

[jboss-user] [JBoss Portal] - Re: Setting the content of the CMS Portlet Through the Manag

2006-08-21 Thread PeterJ
Oh, you didn't mention which version of the portal you were using, so I assume 2.4. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966473#3966473 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966473 __

[jboss-user] [JBoss jBPM] - Re: fork, task instance variable and process variable

2006-08-21 Thread yxyang
i cannot see the value of using task local variable. It incurs lots of db IO. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966474#3966474 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966474 __

[jboss-user] [Beginners Corner] - Big problem!How to reload a web module without restart the j

2006-08-21 Thread pxpwxj
I deployed a folder whose name is "xxx.war" to under the deploy dirctory of my jboss server.As many people praised:"jboss is excellent in hot deploy",the server can start my web module immediatly.But i still want say:it is very unconvient to reload a web module ,or to reload a servlet under jbos

[jboss-user] [Beginners Corner] - Re: Loading resources

2006-08-21 Thread danielgalan
It isn't possible eh? Thats quite bad :( View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966476#3966476 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966476 ___ jboss-user mai

[jboss-user] [JBoss Portal] - Re: 2.4 GA

2006-08-21 Thread jewhit
great news! thanks much - View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966477#3966477 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966477 ___ jboss-user mailing list jbos

[jboss-user] [JBoss Seam] - Re: Step-by-Step Seam Getting Started Guide

2006-08-21 Thread [EMAIL PROTECTED]
"chuckadams" wrote : The latest version of seam-gen is looking for a src directory that is nowhere to be found. This issue has been fixed in the latest seam-gen.zip. Thanks for pointing this out. James View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966479#3

[jboss-user] [JBoss Eclipse IDE (users)] - Re: jboss by debug not avaliable [another error Pop Up?]

2006-08-21 Thread marvin_taboada
Hi, first thing thanks for JBossIDE. I used JBossIDE 1.5, and 1.6 with no problems, and as you may suppose, I have problems with JBossIDE-2.0.0.Alpha1a. Eclipse pops up another error dialog (not the '50s Timeout '), it Says 'Server JBOSS 4.0 failed to start', seems pretty much like the 50s timeou

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Persistence Manager Exception

2006-08-21 Thread galo.navarro
JBoss 4.0.4 GA, EJB3 RC8 Testing EJB3, Stateless & Statefull examples work, my hypersonic database is configured and working, default datasource configured. | java: Namespace | | +- XAConnectionFactory (class: org.jboss.mq.SpyXAConnectionFactory) | +- DefaultDS (class: org.jboss.r

[jboss-user] [JBoss Seam] - Re: Seam 1.0.0.GA

2006-08-21 Thread chuckadams
This announcement is out of date now since there's an announcement for 1.01GA. However it's stuck to the page as announcements always are, and since phpBB doesn't offer any option to view more posts per page or RSS feeds (or much of anything beyond gaping security holes) it's taking up real-est

[jboss-user] [JBoss Eclipse IDE (users)] - Re: How to start JBoss 3.2.8 AS from Eclipse 3.2?

2006-08-21 Thread Yilativs
"[EMAIL PROTECTED]" wrote : Where is the "new server command" you are trying to use? | | The proper method to create a new server using JBoss IDE 2.0 alpha or alpha 1a is to open either the Servers View, or the JBoss Server View. Then right-click and select "new -> server", then select the

[jboss-user] [EJB/JBoss] - Problem with updating same row several times in one transact

2006-08-21 Thread wonker
I am a relative newbie to JBoss so excuse my dumbness or the lack of technical info, but heres my best shot. I am using ejbs (generated via xdoclet) and JBoss 3.2.5. In my facade methods, I can potentially update the same db row several times in one transaction i.e. | for(Iterator it = upda

  1   2   >