[JBoss-user] [Clustering/JBoss] - Re: JGroups Configuration With XML Element

2004-07-14 Thread bela
My bad - XmlConfigurator.parse(Element) was still using the old format. I changed it, essentially copied XmlConfigurator.parse(InputStream). Try it out now, need to get JGroups from the CVS. Bela View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3841968#3841968

[JBoss-user] [Beginners Corner] - Using threads with EJB

2004-07-14 Thread hawkmoon
I know using threads is not allowed. can a bean use a simple java class wich uses threads ? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3841969#3841969 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3841969

[JBoss-user] [Beginners Corner] - java.lang.IllegalStateException: Failed to find method for h

2004-07-14 Thread bipuldutta
Hi, I am new to Eclipse/JBoss.. Got this error while adding a new method to the EJB (Stateless).. I am using Eclipse 2.1.3/Lomboz/JBoss 3.2.3 to generated EJB classes. I had added a new business method in the bean, updated XDoclet to call DAO method as well.. Lomboz J2EE/Generate EJB Classes

[JBoss-user] [Beginners Corner] - Re: Tutorial on J2EE using JBOSS, Eclipse and Lomboz.

2004-07-14 Thread vashistvishal
Just check yr deployed stateles bean what interfaces are deployed, since exception is raised at narrow which is unable to look for desired remote interface which i think is not deployed. Or JND NAME is an issue. Also since beacuse both axis and bean are in same jvm so there is no need (if you

[JBoss-user] [Installation Configuration] - Re: How can I solve this 500 error????

2004-07-14 Thread tiredofworkingfortheman
I have a simular problem with the Duke's Bank app and the http 500 response. I am using jboss 3.2.5, tomcat 5.0.26 (came with jboss dowload.) mac OS 10.3.4, jdk 1.4.x. When I startup jboss using the default server everthing comes up very well. No problems. The bank.ear file is deployed, and

[JBoss-user] [HTTPD, Servlets JSP] - Re: Easy Struts with JBoss

2004-07-14 Thread a_kretzschmar
The problem was in the easystruts-core.jar. I removed it from the Java Build Path and it now runs. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3841974#3841974 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3841974

[JBoss-user] [HTTPD, Servlets JSP] - org.apache.jasper.JasperException: Unable to compile class f

2004-07-14 Thread a_kretzschmar
Hi, the deployment of the package worked properly, but i now try to start a jsp file. Always the same error message appears. | HTTP Status 500 - | | | | type Exception report | | message |

[JBoss-user] [Security JAAS/JBoss] - Re: Roles dependent on username and a company.

2004-07-14 Thread pnevado
I have a problem similar to yours and I resolved it just modifying the query used for getting roles in the login-config.xml/DatabaseServerLoginModule. | module-option name=rolesQueryselect id_servicio, 'Roles' from bd.registro where id_usuario=? AND id_website=1 AND (fecha_fin = NOW() OR

[JBoss-user] [Beginners Corner] - Re: Using threads with EJB

2004-07-14 Thread dannyyates
How is a bean using a class that uses threads different from the bean using threads directly? You could bypass any of the spec requirements by simply saying, I didn't violate the spec in the bean - only in one of the helper classes. So, no. View the original post :

[JBoss-user] [Beginners Corner] - NoClassDefFoundError occured on a class file that DOES exist

2004-07-14 Thread layman
Hello all, I am working on a Web application on Jboss 3.2.4. JBoss reports NoClassDefFoundError on class com/embisoft/dvb/user/DVBUser, which stays in a jar file under WEB-INF/lib. I'v double checked the jar file, and sure that the class file is just fine. the problem doesn't occurs all the

[JBoss-user] [JCA/JBoss] - Re: new-connection-sql / check-valid-connection-sql transact

2004-07-14 Thread MarcMA
Hi. Thanks. But I cannot find any workaround. I searched via Search, via Google, via Google-Groups and Sourceforge. Where do you want me to search? Even better could you please give me a concrete pointer? All I have read about this from behalf of sybase is that the jboss pool or

[JBoss-user] [Beginners Corner] - Re: jboss3.2.4.server file for lomboz configuration

2004-07-14 Thread cristis1
I'm also having problems with the 3.2.4 server and lomboz and I'd like to re-raise the question: Can you provide a .server configuration file for lomboz and 3.2.4 jboss server? Thank you. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3841985#3841985 Reply to

[JBoss-user] [Persistence CMP/JBoss] - Re: Database trigger and Jboss Caching

2004-07-14 Thread loubyansky
Whenever data in the database is changed no by the container you should at leats flush the container's cache to avoid inconsistency between the cache and the db. http://www.jboss.org/wiki/Wiki.jsp?page=Caching View the original post :

[JBoss-user] [Persistence CMP/JBoss] - Re: jbosscmp-jdbc.xml relationship mapping dbindex problems

2004-07-14 Thread loubyansky
Just the index name was removed. fk-constraint-templateALTER TABLE ?1 ADD INDEX (?3), ADD CONSTRAINT ?2 FOREIGN KEY (?3) REFERENCES ?4 (?5)/fk-constraint-template View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3841987#3841987 Reply to the post :

[JBoss-user] [Persistence CMP/JBoss] - Re: strange generated query by calling get-method

2004-07-14 Thread loubyansky
Admin and Dev book. CMP chapter, optimized loading. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3841988#3841988 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3841988

[JBoss-user] [Persistence CMP/JBoss] - Re: catch JBossTransactionRolledBackException during optimis

2004-07-14 Thread loubyansky
First, JDBCOptimisticLock class is deprecated. Just use NoLock and optimistic locking config in jbosscmp-jdbc.xml You could perform the work that might be rolled back due to optimistic locking failure in a method with RequiresNew transaction attribute, catch the exception in the method that

[JBoss-user] [Persistence CMP/JBoss] - auto-increment CMP Field and Error Deployment

2004-07-14 Thread morenito9000
Hi all, I wrote an Entity Bean with a CMP Field that I want to indicate as an Auto-Increment field. Entity Code: | /** |* @ejb.persistence column-name = ultima_malf |* @ejb.interface-method = local |* |* @jboss.column-name = ultima_malf |* @jboss.persistence

[JBoss-user] [Clustering/JBoss] - Load balancing and IIOP

2004-07-14 Thread lyc1
Hi, I would like to know if it is possible to use all clustering possibilities for IIOP as for RMI/JRMP protocol ? Maybe clustering options is transport protocol independant, but I would like to be sure. Thanks D. View the original post :

[JBoss-user] [Messaging, JMS JBossMQ] - Re: how to configure MDB to talk to a Remote Topic?

2004-07-14 Thread kobiav
Hi, I have a problem binding to a remote queue/topic ... could you post your full example on how to configure the mdbto bind to the remote topic ??? Please Help !!! View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3841992#3841992 Reply to the post :

[JBoss-user] [Persistence CMP/JBoss] - Re: auto-increment CMP Field and Error Deployment

2004-07-14 Thread loubyansky
Is the doctype !DOCTYPE jbosscmp-jdbc PUBLIC -//JBoss//DTD JBOSSCMP-JDBC 3.2//EN http://www.jboss.org/j2ee/dtd/jbosscmp-jdbc_3_2.dtd; | ? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3841993#3841993 Reply to the post :

[JBoss-user] [Messaging, JMS JBossMQ] - slow insertion to MQ

2004-07-14 Thread verlin123
Hi, We've been trying to insert 100K messages to MQ but insertion drastically slowed down when queue depth reached 30K+. At first we tried using hsqldb, then switched to postgresql but the performance didn't improve. We tried to insert directly to the tables(using java/jdbc), there was no

[JBoss-user] [Beginners Corner] - Error instantiating class file

2004-07-14 Thread gtraas
Hi all, I've just downloading and installed JBoss 3.2.5 with Tomcat embedded. The problem I'm having, is this : I've deployed my war file (exploded) to the /server/default/deploy folder and I see in JBoss's startup that Tomcat has seen and deployed it, but then when I try to access my

[JBoss-user] [JBoss.NET SOAP] - Re: Authorization problem using .net client

2004-07-14 Thread fheldt
IMHO the problem with .NET is, that the PreAuthenicate Method doesn't work as expected. The first call is done without Authorization - Header, only subsequent calls get the right header. But you can workaround this easily with a little subclassing: | using System; | | public class

[JBoss-user] [HTTPD, Servlets JSP] - Installing Tapestry-3.0 classnot found issue

2004-07-14 Thread ibruell
I am using JBoss-3.2.3 running under Linux with j2sdk.4.2_04. I have copied the required jars into $JBOSS_HOME/server/default/lib and deployed the workbench.jar into the deploy directory. At deployment time i got the exception: | java.lang.NoClassDefFoundError:

[JBoss-user] [JCA/JBoss] - Classloader used to deploy *-ds.xml files

2004-07-14 Thread 101
I'm using ear scooped loader repositories, with Jboss 3.2.3. I need to separate my ear form other deployments, and that's the only way I know to do this. My problem is that when I have a *-ds.xml (hibernate stuff) in the ear, and jboss processes (deploys) the xml, then it's not using the ear

[JBoss-user] [Advanced Documentation] - error:

2004-07-14 Thread iliev
Hi !!! i'm a newby with JBoss, so i'm testing it by executing the Gangster ReadAheadTest, supplied with the buied documentation. I'm using for this test postgreSQL and i need to keep no more than 4 connection (later in production i'm forced to use Microsoft Desktop Engine) This i my

[JBoss-user] [Installation Configuration] - Re: starting Jboss got errors of failed to update pkgs

2004-07-14 Thread darranl
Have you added classes111.jar to the lib folder? It looks as if it is corrupt. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842000#3842000 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842000

[JBoss-user] [Installation Configuration] - Re: [Tomcat]NoClassDefFoundError: org/apache/catalina/Contex

2004-07-14 Thread 101
filesystem security? maybe the process can not read some jars? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842001#3842001 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842001

[JBoss-user] [JCA/JBoss] - error in heavy test: Interrupted while requesting permit!

2004-07-14 Thread iliev
Hi !!! i'm a newby with JBoss, so i'm testing it by executing the Gangster ReadAheadTest, supplied with the buied documentation. I'm using for this test postgreSQL and i need to keep no more than 4 connection (later in production i'm forced to use Microsoft Desktop Engine) This i my

[JBoss-user] [Persistence CMP/JBoss] - error in heavy test: Interrupted while requesting permit!

2004-07-14 Thread iliev
Hi !!! i'm a newby with JBoss, so i'm testing it by executing the Gangster ReadAheadTest, supplied with the buied documentation. I'm using for this test postgreSQL and i need to keep no more than 4 connection (later in production i'm forced to use Microsoft Desktop Engine) This i my

[JBoss-user] [Performance Tuning] - error in heavy test: javax.resource.ResourceException: Inter

2004-07-14 Thread iliev
Hi !!! i'm a newby with JBoss, so i'm testing it by executing the Gangster ReadAheadTest, supplied with the buied documentation. I'm using for this test postgreSQL and i need to keep no more than 4 connection (later in production i'm forced to use Microsoft Desktop Engine) This i my

[JBoss-user] [Beginners Corner] - Re: Error instantiating class file

2004-07-14 Thread darranl
I've taken most of the stack trace out. - Don't do this, give people the full stack trace. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842005#3842005 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842005

[JBoss-user] [Beginners Corner] - Re: Error instantiating class file

2004-07-14 Thread gtraas
The full stack trace : anonymous wrote : type Exception report | | message | | description The server encountered an internal error () that prevented it from fulfilling this request. | | exception | | javax.servlet.ServletException: Error instantiating servlet class

[JBoss-user] [Installation Configuration] - Adv. classloading: ear with two wars

2004-07-14 Thread 101
Hi! I've got an ear with two war's in it. The ear has a loader repository to isolate it from other deployments. But due to this loader repository the two war's can see each other's classes and as there is a duplication it causes a missbehaviour for me. (The duplication is needed because the

[JBoss-user] [Management, JMX/JBoss] - Twiddle, MBean attributes and other

2004-07-14 Thread Wizzie
Hello Some problems using twiddle (Jboss 3.2.3): When the method is not found, the message appearing is: MBean hassuch operation named: Apparently a typo in InvokeCommand.java line 191. It is not possible to set an attribute... There is no such command available. Is it going to change in

[JBoss-user] [JCA/JBoss] - Re: error in heavy test: Interrupted while requesting permit

2004-07-14 Thread darranl
Do not cross post. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842010#3842010 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842010 --- This SF.Net email sponsored by

[JBoss-user] [Persistence CMP/JBoss] - Re: error in heavy test: Interrupted while requesting permit

2004-07-14 Thread darranl
Do not cross post. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842009#3842009 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842009 --- This SF.Net email sponsored by

[JBoss-user] [Performance Tuning] - Re: error in heavy test: javax.resource.ResourceException: I

2004-07-14 Thread darranl
Do not cross post. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842012#3842012 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842012 --- This SF.Net email sponsored by

[JBoss-user] [Advanced Documentation] - Re: error:

2004-07-14 Thread darranl
Do not cross post. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842011#3842011 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842011 --- This SF.Net email sponsored by

[JBoss-user] [Messaging, JMS JBossMQ] - JMS Receive method Issue

2004-07-14 Thread syed_readiminds
Hi, I do have some code related to JMS in my stateless session, basically in one method I am dumping some info into queue and in the other method I am retrieving the information from the same queue. The sender part goes fine without any problems, but it is NOT retrieving any information in the

[JBoss-user] [Messaging, JMS JBossMQ] - Need help with QueueExample

2004-07-14 Thread FreshFarhan
I am getting an error while running the simple QueueExample as shown on the page: http://www.jboss.org/wiki/Wiki.jsp?page=QueueExample... It is an exception that is thrown after the line: Queue queue = (Queue) ctx.lookup(queue/testQueue); is encountered... Here it is: log4j:WARN No appenders

[JBoss-user] [Messaging, JMS JBossMQ] - Further information

2004-07-14 Thread FreshFarhan
Oh bye the way I am using JBuilder and I believe that is configured properly. If there is something missing in the configuration please help me out View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842016#3842016 Reply to the post :

[JBoss-user] [Clustering/JBoss] - Re: Load balancing and IIOP

2004-07-14 Thread Sacha Labourey
no, it is not (yet?). It uses RMI/JRMP today. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842018#3842018 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842018 ---

[JBoss-user] [EJB/JBoss] - Re: Unable to access remote entity bean. plz suggest

2004-07-14 Thread karthik_morph
hello stefan, sorry for the delay. thanx for all ur comments. i am working on a project where we are deploying both in same container but i tried to deploy on different ones, ( even though its not really needed for) here is the peace of code that access entity.. Properties prop = new

[JBoss-user] [Messaging, JMS JBossMQ] - Remove JMS Message

2004-07-14 Thread nort
Hello, does anyone knows how to remove (or consume) a specific JMS-message from a queue? Thanks, Juraj View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842021#3842021 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842021

[JBoss-user] [EJB/JBoss] - Re: 3.2.3 IllegalAccessError on private inner class

2004-07-14 Thread polesen
Hmm, I'm getting something like it. How do you now that he is loading the inner class in a separate classloader? Is it something to do with it being inner? I also have a class, which instantiates an inner.class, where the inner class is inner in the class instantiating it. It compiles fine, and

[JBoss-user] [Installation Configuration] - Re: Adv. classloading: ear with two wars

2004-07-14 Thread 101
Fool me, it's FIXED in 3.2.5... View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842024#3842024 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842024 --- This SF.Net email

[JBoss-user] [EJB/JBoss] - Building tyrex-tm-plugin.jar from varia\build.xml

2004-07-14 Thread Anny_Lut
I try to build tyrex-tm-plugin.jar from varia\build.xml (from jboss-3.2.5-src, using ANT 1.6.1, using java version 1.3.1) but I get next errors: | ... | [javac] D:\temp\JTA\jboss-3.2.5-src\varia\src\main\org\jboss\ant\JMX.java:20: cannot resolve symbol | [javac] symbol

[JBoss-user] [JBoss Getting Started Documentation] - Re: http://localhost:8080/bank/main returns only a blank pag

2004-07-14 Thread tiredofworkingfortheman
Try using 127.0.0.1 instead of localhost. There is a note about this in the getting started guide. I just missed it the first five times I looked. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842026#3842026 Reply to the post :

[JBoss-user] [EJB/JBoss] - findAll and Collection result optimization

2004-07-14 Thread cchris
hi, I'm using JBoss 3.2.4 (EJB CMP 2.0) and MySQL 4.0.17. I have to display a list of records from a database using a JSP, in a friendly way. An easy solution would be a findAll (CMP) using an EJB QL query like : ejb-qlSELECT OBJECT(a) FROM App a/ejb-ql. The result is a Collection with all the

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Remove JMS Message

2004-07-14 Thread DarkLord
identify your message with a selector. Describe what is a specific JMS message for you. Regards, Stephane View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842029#3842029 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842029

[JBoss-user] [HTTPD, Servlets JSP] - Re: org.apache.jasper.JasperException: Unable to compile cla

2004-07-14 Thread cuoz
Are you by chance running JBoss as a non-prvilidged user on Linux? I have seen this problem mostly on our Debian systems. We found that the jboss directory needs to be chown'd to the user that jboss is running as. I think the debug output will show the exact file it is trying to write (and

[JBoss-user] [Installation Configuration] - Re: How can I solve this 500 error????

2004-07-14 Thread tiredofworkingfortheman
I found it, the answer was in the Getting Started Guide as a footnote. I used 127.0.0.1 instead of localhost and it the app came up. I guess Mac OS X is one of the OSs that Tomcat doesn't like to resolv localhost on. View the original post :

[JBoss-user] [Management, JMX/JBoss] - Can an XMBean be deployed inside an EAR ?

2004-07-14 Thread tysmeister
Hi, I recently posted to this forum about a problem that I am having when I deploy XMBean content within an EAR file. All my non XMBean content is invalidated by the Jboss 3.2.3 container. However when I deploy the XMBean SAR components separately everything works fine. I have not had any

[JBoss-user] [EJB/JBoss] - Re: findAll and Collection result optimization

2004-07-14 Thread kabkhan
Use jboss-ql in your query def in the jbosscmp-jdbc.xml file for added functionality View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842032#3842032 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842032

[JBoss-user] [Persistence CMP/JBoss] - Re: auto-increment CMP Field and Error Deployment

2004-07-14 Thread morenito9000
No, the DOCTYPE refers to version 3.0 (if I manually change 3.0 with 3.2 everything run). I must change some configuration in Eclipse about jboss version (I suppose) Thank you Moreno View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842033#3842033 Reply to the

[JBoss-user] [Installation Configuration] - Re: how can I let the Jboss3.2.1 bind the internet address?

2004-07-14 Thread [EMAIL PROTECTED]
Did you ever find a resolution to this issue? I am currently running into something very similar at a client site. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842034#3842034 Reply to the post :

[JBoss-user] [Security JAAS/JBoss] - Security exception when removing stateful EJB

2004-07-14 Thread elaineqs
Hi all, My web application has a protected stateful EJB that is accessed by a servlet. I use JAAS authentication to the servlet and EJB. At the first access after authentication, the servlet creates an instance of the stateful EJB and stores the EJB's handle in a private variable. This

[JBoss-user] [Installation Configuration] - alt-dd element in application.xml

2004-07-14 Thread wtff
I would like to specify alternate deployment-descriptors within the application.xml file of an ear, but it doesn't seem to work. I'm using jboss 3.2.5 and this application.xml: display-nameTest Application/display-name test.jar web-uritest.war/web-uri

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Cannot delete temporary queue, it is in use.

2004-07-14 Thread mkarrys
For whatever it is worth I have tracked down with exception to the following code (I think). org.jboss.mq.il.uil2.SocketManager.java private void handleStop(String error, Throwable e) { . . . replyAll(e); if (handler != null) {

[JBoss-user] [Nukes User] - HTML GUI editor

2004-07-14 Thread Skully
Whenever the gui editor tools, such as add url or insert image is used and then the page is updated, the next time I click the view button the see how it looks there are a bunch of #258; symbols on the page with the content. I was wondering if there was something I am missing or should change

[JBoss-user] [Persistence CMP/JBoss] - Re: strange generated query by calling get-method

2004-07-14 Thread Smilidon
thx View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842039#3842039 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842039 --- This SF.Net email sponsored by Black Hat

[JBoss-user] [Nukes User] - Re: HTML GUI editor

2004-07-14 Thread Skully
Sorry, I forgot about html codes. The symble is a capital A with the bottom of a half circle above it (I forget what it is called). View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842041#3842041 Reply to the post :

[JBoss-user] [Messaging, JMS JBossMQ] - connect to queue or topic from inside an applet?

2004-07-14 Thread Hustenbolschen
Hello, Im trying to send a message to a queue and subscribe to a topic by an applet. I tried both secure an non secure applets, and it doesn`t work. Is there a possibilty to do this? I know Im only allowed to create an network-connection to the host i load the applet from. It works all fine

[JBoss-user] [Management, JMX/JBoss] - 16:59:32,547 ERROR [WebLifecycleListener] Could not register

2004-07-14 Thread ittay
(jboss 3.2.5) i have a servlet listener, inside my ear in contextInitialized, i do the following code: MBeanServer server = (MBeanServer) MBeanServerFactory.createMBeanServer(); try { server.addNotificationListener(new ObjectName(jboss.web, service,

[JBoss-user] [EJB/JBoss] - Ear file libraries

2004-07-14 Thread trickard
In JBoss 3.2.4 I have packaged utility jars in the library of an EAR file. The EAR file was built using the SUN deploytool. The utility file was added to the ear's library by deploytool. The bean's in the ear cannot find the classes in the utility jars in the library. When I add the jars to the

[JBoss-user] [JCA/JBoss] - Re: how to restart database without restart jboss to run our

2004-07-14 Thread xiaoly
Thanks Adrian for the info. BTW, would you know from which version it starts to support the connection checking? We need this info. soon. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842045#3842045 Reply to the post :

[JBoss-user] [JCA/JBoss] - Re: how to restart database without restart jboss to run our

2004-07-14 Thread xiaoly
Adrian, specifically, will JBoss 3.2.3 has the connection checking support? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842046#3842046 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842046

[JBoss-user] [Persistence CMP/JBoss] - Re: strange invalid data problem

2004-07-14 Thread idocoding
looks like i found the problem (of course my guilt - not the one of jboss). it seems like i expected at one point the state of an transient field of an entity bean to be null after activation - this seemed to work after ejbCreate(), but not after ejbActivate(). I am still testing, but it makes

[JBoss-user] [Installation Configuration] - jboss.bind.address parameter has no affect

2004-07-14 Thread [EMAIL PROTECTED]
I have a server with two NICs. One NIC and IP for an internal admin network. And the other NIC and IP exposed as part of an intranet. I am trying to configure JBoss to use the IP for the intranet by adding -Djboss.bind.address=INTRANET IP in run.bat. However, this is not working. The server

[JBoss-user] [Performance Tuning] - Increasing Memory for JBoss on Solaris

2004-07-14 Thread bhaskarkk
Can any one please tell me How can i increase VM memory for JBoss? I apreciate if you could also tell me Where can i find proper Jboss tuning information for high traffic sites! Thanks in advance BK View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842051#3842051

[JBoss-user] [Messaging, JMS JBossMQ] - Re: connect to queue or topic from inside an applet?

2004-07-14 Thread Hustenbolschen
OK the problem is much clearer now. I cant call qSession.createMapMessage() from inside an applet with qSession.createTextMessage(Banana) it wirks all fine? Why? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842052#3842052 Reply to the post :

[JBoss-user] [Installation Configuration] - Re: AttributeNotFoundException when using ServiceBinding to

2004-07-14 Thread mounikap
hi Mark, I am facing same problem.Did you find a solution for this ? thanks in advance, Mounika. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842053#3842053 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842053

[JBoss-user] [HTTPD, Servlets JSP] - Re: How to disable session persistence ?

2004-07-14 Thread pcolagrosso
Hi, In order to disable the tomcat persistent session, I made the following change to the bundled tomcat configuration and it seems to work well for me. In the file deploy/jbossweb-tomcat50.sar/server.xml, change the existing DefaultContext element so that it looks as follows: |

[JBoss-user] [Performance Tuning] - Re: Increasing Memory for JBoss on Solaris

2004-07-14 Thread Lviz
hi BK in the bin folder is file run.conf there you can edit the JAVA VM options to pass ... cheers lviz View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842057#3842057 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842057

[JBoss-user] [HTTPD, Servlets JSP] - Re: Installing Tapestry-3.0 classnot found issue

2004-07-14 Thread ibruell
After looking at the source code i saw that i need additional jars. ognl.jar from http://www.ognl.org/ and javaassist.jar from jboss. The tutorial said nothing about that :-( View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842058#3842058 Reply to the post :

[JBoss-user] [Installation Configuration] - Re: Adv. classloading: ear with two wars

2004-07-14 Thread 101
G, no it's not. It just loads randomly, as expected after a little thinking. I tried class-loading java2ClassLoadingCompliance='false'/ in the war's with no luck. Oh well... View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842059#3842059 Reply to the

[JBoss-user] [Beginners Corner] - Error in creating MBean

2004-07-14 Thread MmarcoM
Hi all, i am using jboss 3.2.5, and i have an MBean (CastorJDO MBean) which has worked in all previuos version of jboss. but when deploying on 3.2.5 i got the following exception : 21:11:31,385 WARN [CastorJDOImpl] Unexcepted error accessing MBeanInfo for :ser vice=CastorJDO,name=null

[JBoss-user] [Management, JMX/JBoss] - Deploying DynamicMBeans

2004-07-14 Thread jugma
Please could you let me know how I would deploy DynamicMBeans in JBoss 3.2.5. Any help would be much appreciated. Thanks, Jugma View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842062#3842062 Reply to the post :

[JBoss-user] [JBoss Getting Started Documentation] - cannot find Sevelet super class when create new java class i

2004-07-14 Thread leonzhao
I am trying to create a servelet class using eclipse(+jboss-ide) . The package will be tutorial.web and the class name ComputeServlet. I Click on Browse... But only java.lang.Object is available, I cannot find HTTPSevelet as a superclass..Could you give me any idea? Thanks in advance. Leon

[JBoss-user] [Nukes User] - AbstractDeploymentScanner Errot

2004-07-14 Thread sklakken
Hello, I am trying to deploy Nukes using a Compiere instance, and receive the following error. Basically, what I did was: 1) Copied the 'nukes' subdirectory from the nukes-1.1.0-mysql-RC2.zip into \compiere2\jboss\server\compiere, which created \compiere2\jboss\server\compiere\nukes with the

[JBoss-user] [Nukes User] - Re: AbstractDeploymentScanner Errot

2004-07-14 Thread cooper
you need to create the directory compiere/nukes this is where you put the additional modules View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842064#3842064 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842064

[JBoss-user] [Messaging, JMS JBossMQ] - org.jboss.mq.SpyJMSException: Cannot authenticate user

2004-07-14 Thread chuckharris
I just moved from Java 1.3.1_09 to 1.4.2_04 and am having a problem with sending jms. The problem occurs when a client (no jboss) tries to send a JMS message to a queue for an mdb. The exception thrown is: org.jboss.mq.SpyJMSException: Cannot authenticate user; - nested throwable:

[JBoss-user] [Installation Configuration] - Re: JBoss and postgres 7.4

2004-07-14 Thread rsachar
Hi, I am having the same problem getting postgres driver(pg74.214.jdbc3.jar) working with jboss. I get an error in deploying my application. It says... Throwable... Could not create connection I am using jboss3.2.3 and postgres7.4 My JBOSS_HOME is /usr/share/jboss I am able to log into psql

[JBoss-user] [Nukes User] - Re: AbstractDeploymentScanner Errot

2004-07-14 Thread jae77
and the nukes.last dir should be created in compiere/nukes. that is where the -service.xml files need to be deployed for the downloads module or else you will get startup errors b/c the classes are not yet available b/c the ear hasn't been loaded yet. View the original post :

[JBoss-user] [Installation Configuration] - loader repository problem

2004-07-14 Thread wtff
Specifying a loader-repository for an EAR causes JBoss to throw a ClassCastException. (using Jboss 3.2.5, JBoss 3.2.3 behaves the same) I have created a very simple HelloWorld EAR application containing only one single stateless local session bean with one helloWorld method in it. This

[JBoss-user] [Nukes User] - User areas

2004-07-14 Thread hair
I'm new to nukes, it looks promising but I cannot figure out a few things. Is it possible to setup (with permissions) user areas to the html module? For example: user mick can edit any page under url /nukes/mick/ user bob can edit any page under url /nukes/bob/ etc etc. Mick. View the

[JBoss-user] [Installation Configuration] - Re: loader repository problem

2004-07-14 Thread wtff
the descriptor fragments above are not being display correctly. Second try: --- | | application.xml | | application | display-nameTest Application/display-name | module | ejbtest.jar/ejb | /module |

[JBoss-user] [Installation Configuration] - Re: Mapping vitual servers to .war files

2004-07-14 Thread stiphout
Already using mod_jk2 - just can't figure out how to set it up to do what I mentioned in my first post... View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842071#3842071 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842071

[JBoss-user] [EJB/JBoss] - Re: findAll and Collection result optimization

2004-07-14 Thread cchris
In jbosscmp-jdbc.xml, I added the following query : jbosscmp-jdbc ... enterprise-beans ... query-method method-namefindAll/method-name method-params method-paramint/method-param method-paramint/method-param

[JBoss-user] [Security JAAS/JBoss] - Re: application-policy doesn't work - always default securit

2004-07-14 Thread solso
Hello I've solved the Problem. In my Servlet I call a custom class which performs a kerberos login. In this class I had to put the configuration name of the application policy. Then everything works fine. See the code: String confname = TestSecDomain; | beanCallbackHandler = new

[JBoss-user] [Messaging, JMS JBossMQ] - Re: org.jboss.mq.SpyJMSException: Cannot authenticate user

2004-07-14 Thread chuckharris
Sorry- I forgot to add that I am running Jboss 3.2.2 on a win2k. The client is running win2k prof server. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842076#3842076 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842076

[JBoss-user] [Security JAAS/JBoss] - Re: Embedded Tomcat/JBOSS principal=null exception

2004-07-14 Thread auckyboy
Fixed. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842079#3842079 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3842079 --- This SF.Net email sponsored by Black Hat

[JBoss-user] [Security JAAS/JBoss] - Re: Security exception when removing stateful EJB

2004-07-14 Thread auckyboy
I'll assume that you are using tomcat. I had the same problem. Its important to understand that the JAAS authenticated credentials are associated with a thread in tomcat. Try removing the the bean instance in the same thread that created it. It worked for me. View the original post :

[JBoss-user] [Clustering/JBoss] - Re: JGroups Configuration With XML Element

2004-07-14 Thread jiwils
Your XMLConfigurator changes added a bug, and it makes your changes unlikely to work. The try block at line 323 in the parse method that takes an Element as a parameter starts like this: try { | Node root=null; | | NodeList

[JBoss-user] [Security JAAS/JBoss] - Application based security using evermind's RoleManager

2004-07-14 Thread edkocol
I have converted an application that was originally deployed to Oracle's J2EE AS. This application used evermind's RoleManager (included in the AS in oc4j.jar) The code to utilize the RoleManager is: com.evermind.security.RoleManager | manager = (com.evermind.security.RoleManager)new

[JBoss-user] [Beginners Corner] - JBoss on AS400

2004-07-14 Thread sujatha_kamal
Hello everyone, It will be of great help, if anyone can let me know, whether JBoss runs on IBM AS400 servers. Thanks in advance Best Regards, Sujatha. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3842082#3842082 Reply to the post :

[JBoss-user] [Security JAAS/JBoss] - Re: Security exception when removing stateful EJB

2004-07-14 Thread elaineqs
I'm using Jboss 3.2.3 with Tomcat. If i use the handle inside the doGet() or doPost() methods, all workds fine (i can remove the bean also). However, if i tried to access the bean inside the destroy method, it doesn't work. It seams that when destroy method is called, the Prinicipal is setted

[JBoss-user] [Installation Configuration] - Re: loader repository problem

2004-07-14 Thread jae77
look at the error message that was thrown w/ the exception. you only define the loader-repository tag inside the jboss-app.xml file. you need to remove that entry from the jboss.xml file that is packaged w/ your ejb. View the original post :

[JBoss-user] [Clustering/JBoss] - Re: JGroups Configuration With XML Element

2004-07-14 Thread jiwils
Could I also get the source for JGroups 2.2.4? What tag (if any) could I pull from CVS? I would like to apply these changes to that version (they seem unlikely to affect any other part of the code) since we are using JBoss 3.2.4 and my seperate client code (JGroups 2.2.5+) throws an exception

  1   2   >