[jboss-user] [Messaging, JMS JBossMQ] - Re: How to store JMS messages permanently in the database

2007-01-19 Thread genman
Meaning, you don't want the messages deleted upon acknowledgement? It might be easiest with Oracle to simply have a trigger upon delete that copies the data to a second table. You can theoretically alter the persistence manager, since the class is pluggable to do the same. View the original

[jboss-user] [Messaging, JMS JBossMQ] - Re: JbossMQ problem opening MQ cluster queue

2007-01-19 Thread genman
MQ being? Assuming it's a vendor product, what does your vendor suggest? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4004084#4004084 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4004084

[jboss-user] [Messaging, JMS JBossMQ] - Re: Hypersonic File Size

2007-01-19 Thread genman
If you have an issue with it, bring it up with the HSQL team. It's not unusual to have it be 1GB at times. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4004080#4004080 Reply to the post :

[jboss-user] [JNDI/Naming/Network] - Re: javax.naming.NameNotFoundException hibernate service

2007-01-19 Thread jaikiran
As mentioned in the log, the service is bound at : java:/hibernate/MySqlSessionFactory However you are looking up java:/hibernate/MySessionFactory. Change the lookup code to this.factory = (SessionFactory) ctx.lookup(java:/hibernate/MySqlSessionFactory); View the original post :

[jboss-user] [JNDI/Naming/Network] - Re: What is happening?... DefaultDS?

2007-01-19 Thread jaikiran
You are right, you cannot access the java: context from outside the server JVM. And that's the reason why you are not able to access the DefaultDS, which gets bound to the java: namepsace. Have a look at: http://wiki.jboss.org/wiki/Wiki.jsp?page=HowCanIAccessADataSourceFromAClient View the

[jboss-user] [Remoting] - Re: JBoss Remoting JDK 6.0 situation deadlock

2007-01-19 Thread nicarran
fcorneli wrote : Hi Tom, | | | I'm using JBoss Remoting 1.4.6.GA now in my integration tests (for an application deployed on JBoss AS 4.0.5.GA) running Java 6, and the thing seems to behave just fine. | | Thanks for the work on this issue. | | | Regards, | Frank.

[jboss-user] [JNDI/Naming/Network] - What is happening?... DefaultDS?

2007-01-19 Thread [EMAIL PROTECTED]
Greetings Gurus! I am having difficulty referencing the DefaultDS from a client running outside the JBoss JVM. Any advice or examples would be greatly appreciated. I am running JBoss version 4.0.5GA. I eventually want to load and use the datasource in the client application. For simplicity of

[jboss-user] [JBoss Portal] - Re: JBoss-Portal-2.6-Alpha-1, Image upload in CMS does not w

2007-01-19 Thread hurzeler
That is correct but as far as I know the issue was attributed to the Oracle JDBC drivers. The fact that it does not work with Postgres as well point to the fact that there might be an issue with the way CMS handles blobs or large objects after all. I hope the issue gets looked at soon. It is

[jboss-user] [Management, JMX/JBoss] - Aspect in XMBean

2007-01-19 Thread bossy
Hi, I need to create an aspect that can be managed by JMX. The idea is to use the aspect to obtain some stats(by intercepting calls) and to use JMX console to retrieve the stats. I created an XMBean and I added methods wich I use as advices. Everything almost works with one exception - it seems

[jboss-user] [Remoting] - Re: Has anyone actually tried using the CompressingMarshalle

2007-01-19 Thread [EMAIL PROTECTED]
Hi Mister Jedi (or is it Master Jedi?) (or can I just call you java?), Well, I wrote the CompressingMarshaller, so I better look into it. Do you happen to have a test case closer to the metal (i.e., just using Remoting)? JIRA: http://jira.jboss.com/jira/browse/JBREM-677 View the original post

[jboss-user] [JBoss Portal] - Re: jboss-portal-2.6-ALPHA1-bundled with Oracle

2007-01-19 Thread [EMAIL PROTECTED]
This is a work in progress, but the following is a checklist of things that make Portal work with Oracle. Hope it is helpful to you... Ian Installed using jem installer 1.2.GA Datasource is Oracle thin driver, with username jbportal241 Portal-2.6-alpha1 Changes made to get Portal working

[jboss-user] [Beginners Corner] - Re: Using java.util.logging with JBoss AS 4.x Logging servic

2007-01-19 Thread genman
See http://www.jboss.org/wiki/Wiki.jsp?page=Logging I imagine this plug-in ships with JBoss AS as well. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4004098#4004098 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4004098

[jboss-user] [Beginners Corner] - Re: could anybody tell me the exact structure of SAR.

2007-01-19 Thread genman
log4j.xml exists in $JBOSS_HOME/server/default/conf . As for the jars, if they are for the .war only, they go in there. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4004096#4004096 Reply to the post :

[jboss-user] [Installation, Configuration Deployment] - Re: unable to read jboss.server.dir variable

2007-01-19 Thread jaikiran
There's no property named jboss.server.dir. Are you looking for jboss.home.dir? Have a look at the various system properties that jboss sets at: http://docs.jboss.org/jbossas/javadoc/4.0.2/constant-values.html#org.jboss.system.server.ServerConfig.HOME_DIR View the original post :

[jboss-user] [EJB 3.0] - How to speed up your remote EJB calls

2007-01-19 Thread javajedi
I've been doing some profiling of our remote EJB3 invocations, and I just wanted to post and share what I found out. I was able to achieve an average 50% performance boost for our remote calls by changing 1 line in deploy/ejb3.deployer/META-INF/jboss-service.xml: Original line:attribute

[jboss-user] [JBoss Portal] - Re: JBoss-Portal-2.6-Alpha-1, Image upload in CMS does not w

2007-01-19 Thread [EMAIL PROTECTED]
I tried to get postgres and Portal playing ball, but I think it's a similar issue to the Oracle one - lousy jdbc implementations. If you have Oracle, why not try using that again - see my script (blue) for getting it all going together...

[jboss-user] [Beginners Corner] - Re: How to share objects between EJB?

2007-01-19 Thread genman
The JBossCache product allows you to share data between instances. The EJB spec doesn't define a session context like that. State is normally kept within the DB, and EJBs are fetched when data is needed. Usually, what people do to pro-actively notify is use MDBs and send messages to pass

[jboss-user] [Beginners Corner] - Re: javax.naming.NameNotFoundException hibernate service

2007-01-19 Thread genman
It could be a start-up issue, like your app does its lookup before deployment. What does your JNDI view show? (visit the JMX console.) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4004113#4004113 Reply to the post :

[jboss-user] [Beginners Corner] - Re: MBean indicators

2007-01-19 Thread genman
MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM: ObjectName: jboss.jca:name=DefaultDS,service=DataSourceBinding There should be a default-ds.xml file that defines how JBoss connects to a database and somehow this config is likely wrong. There is (by shipped default) HSQLDB. What does this

[jboss-user] [EJB 3.0] - Re: How to speed up your remote EJB calls

2007-01-19 Thread javajedi
Just a note on the check_connection bit. Glancing at the remoting code, it looks like the check is no longer on by default in JBoss Remoting 2.0. However, the default in 1.4.4 (the latest 1.x release) is still to check first. I tried dropping 2.0 into JBoss, but that was a no-go. View the

[jboss-user] [Beginners Corner] - Re: storing sessionbased information

2007-01-19 Thread genman
http://java.sun.com/javaee/5/docs/api/javax/servlet/http/HttpSession.html Note that things you store here must be serializable... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4004118#4004118 Reply to the post :

[jboss-user] [Remoting] - Re: Has anyone actually tried using the CompressingMarshalle

2007-01-19 Thread javajedi
I'm sorry, I don't have any good test case to hand you. I'm using a SLSB that sends back objects that are pretty good-sized (a few K) and variably sized. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4004124#4004124 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: How to handle Process Instances that have not completed?

2007-01-19 Thread zipwow
1. I'm pretty sure it's this smart -- that's why it writes to a database. I'm intending to use it for workflows that span upwards of six months. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4004125#4004125 Reply to the post :

[jboss-user] [Beginners Corner] - Re: How to share objects between EJB?

2007-01-19 Thread Naxo
Thanks for the answer Genman! I will take a look on the JBossCache product specification... After my studies, I think too that the EJB 3.0 specification doesn't define a context object or any similar object like the web tier does (servlet specification)... thats why I am trying to find a

[jboss-user] [JBoss Eclipse IDE (users)] - Re: How to create JBOSS AS for dubug?

2007-01-19 Thread [EMAIL PROTECTED]
It seems you are using eclipse 3.2 with a jbosside 1.5 or 1.6 install. These two are not compatible. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4004133#4004133 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4004133

[jboss-user] [JCA/JBoss] - Re: ExecutionContext transactionTimeout misinterpreted by JB

2007-01-19 Thread [EMAIL PROTECTED]
JIRA is the system we use to track defects, feature requests etc. Support forums are *not*. Please go to http://jira.jboss.org and file a ticket if you feel that this is an error. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4004138#4004138 Reply to the

[jboss-user] [JCA/JBoss] - Re: Destroying connection that could not be successfully mat

2007-01-19 Thread [EMAIL PROTECTED]
Yes. The connection is destroyed and removed from the pool. This occurs either in the case of an exception, or if matchManagedConnection returns null. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4004139#4004139 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: How to get the number of subscribers to a queue

2007-01-19 Thread alfred.rsa
Thanks Tim That is very bad news for me. Any idea why it was left out? Regards Alfred View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4004144#4004144 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4004144

[jboss-user] [O'Reilly JBoss 3.0/4.0 Workbook] - How to import EJB 3.0 Workbook Exercises into Netbeans

2007-01-19 Thread htran_888
Hi, I am very new to EJB 3.0 but have covered more than half of this book and have no difficulty completing the exercises on the command line using the Ant script provided by the workbook. Nevertheless, I would like to use NetBeans to import these same exercises in but could not proceed

[jboss-user] [JBoss Seam] - Re: why Seam doesnt know my session beans in Tomcat?

2007-01-19 Thread mnrz
no, there is no seam.properties here is the startup log: | INFO: XML validation disabled | INFO 21-01 08:33:23,734 (FacesConfigurator.java:feedStandardConfig:151) -Reading standard config org/apache/myfaces/resource/standard-faces-config.xml | INFO 21-01 08:33:24,531

[jboss-user] [JBoss Seam] - Re: iText (PDF) support in Seam

2007-01-19 Thread venkateshbr
Does the current version support embedding digital signatures in pdf or signing a pdf file with a digital signature. If i am not wrong you can do this in iText through the use of pdfStamper. This feature would be used in all e-business sites and it would be really great to have this feature

[jboss-user] [JNDI/Naming/Network] - Re: javax.naming.NameNotFoundException hibernate service

2007-01-19 Thread GBlack
jaikiran wrote : As mentioned in the log, the service is bound at : | java:/hibernate/MySqlSessionFactory | | However you are looking up java:/hibernate/MySessionFactory. Change the lookup code to | | this.factory = (SessionFactory) ctx.lookup(java:/hibernate/MySqlSessionFactory);

<    1   2   3