[JBoss-user] [JCA/JBoss] - Re: jboss-4.0.0DR2 and FirebirdJDBC1.5.0Beta3 config, parse

2004-03-17 Thread slamdunkinpool
Please let me know if I have posted in wrong forum. Haven't received any response. I hope Firebird becomes a popular DB soon. a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826203#3826203;View the original post/a a

[JBoss-user] (no subject)

2004-03-17 Thread Matthew Oatham

[JBoss-user] [Installation Configuration] - Re: Setting up JBoss application server

2004-03-17 Thread darranl
http://jboss.org/wiki/Wiki.jsp?page=JBossInstallation a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826194#3826194;View the original post/a a href=http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3826194Reply to the post/a

[JBoss-user] [JCA/JBoss] - Re: Getting Datasource from application client (en espao

2004-03-17 Thread darranl
The JDBC datasources are only supposed to be accessible from within the JBoss JVM, that is the reason that they are bound to the java: namespace. I am confused that you have been able to obtain a reference to an object bound to the java: namespace. I would have expected a NameNotBound

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

2004-03-17 Thread raffaelecorvino
Hello, @Vishal: I don't understand besause in the exercise of Cap 3, when I run the application client the server answer me: userID null and not U2. Maybe It depends by database configuration? the same happened in cap 4 excercise. Please can you help me? Thanks in advance a

[JBoss-user] [JCA/JBoss] - Re: Getting Datasource from application client (en espa#40

2004-03-17 Thread kmarcos
Oky. Well there's not much documentation about it... but i did this: 1. application-client.xml application-client |display-nameJ2EE Client Tests/display-name |descriptionA sample application client descriptor/description | | | ejb-ref |

[JBoss-user] [Datasource Configuration] - Re: Postgres 7.4.1 - SET AUTOCOMMIT TO OFF is no longer supp

2004-03-17 Thread gonegolfin
Eric, Exactly which driver are you using now? I was using pg73jdbc3.jar with 7.3.2. I upgraded to PostgreSQL 7.4.1 and am seeing the same problem you are. I had thought that pg73jdbc3.jar is the latest. Thanks, Brian a

[JBoss-user] [Clustering/JBoss] - Setting up cluster

2004-03-17 Thread Nandkumar
Hi, I have got JBoss Clustering book and would like to have some input on settingup of jboss cluser environment. Would like to start 2 instance on my PC and would like make them as part of the 'defaultpartition'. -I have started JBoss with run -c all -How to add new node and which files to

[JBoss-user] [Installation Configuration] - Re: Setting up JBoss application server

2004-03-17 Thread chanchal11
Hey,I did set the environment variables(JAVA_HOME and JBOSS_HOME) but when I try to run the batch file from bin directory then it says that System cannot find the path specified. a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826210#3826210;View the original post/a a

[JBoss-user] [EJB/JBoss] - Error during jar deploying

2004-03-17 Thread luca.mandorlo
Hi, My name is Luca from italy and I'm a newbie in using jboss3.2.3 I want to depoly a jar file that contains one mdb named xxx.xxx.xxx.MDBExample I write in META-INF dir ejb-jar.xml and jboss.xml. Make jar and put it into deploy dir of jboss. I take this error: 2004-03-17 18:17:15,658 ERROR

[JBoss-user] [EJB/JBoss] - Writing my own Interceptor - cannot deploy

2004-03-17 Thread davetron5000
Java 1.4.2 JBoss 3.2.3 Linux (RH9) I'm writing an Interceptor. As a first step, I basically copied the LogInterceptor's implementation. I put the class in jboss' classpath (via run.conf). I put a reference to the classname in standardjboss.xml, right after the stanza reference

[JBoss-user] [Installation Configuration] - Running a web app as non-root problem

2004-03-17 Thread Malachii
Hello all, I'm new to linux and JBoss (yeah I know - not a great combo with respect to starting on the right foot). Surprisingly, so far so good. I've got JBoss (3.0.8 due to Jetty) running well, shutting down well (yay!), etc. The problem is that I want to run it as non-root. I got a bunch of

[JBoss-user] [JBoss Getting Started Documentation] - jboss 3.2.3 javadoc

2004-03-17 Thread alanc_yang
Anybody geneated the javadoc for jboss 3.2.3, or know where the javadoc api link is? Thanks in advance. Alan a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826214#3826214;View the original post/a a

[JBoss-user] [Messaging, JMS JBossMQ] - Re: jdbc2 and firebird

2004-03-17 Thread klchan
Thanks Adrain! 1. I replaced it with: DELETE_MARKED_MESSAGES_WITH_TX = DELETE FROM JMS_MESSAGES WHERE TXID IN (SELECT TXID FROM JMS_TRANSACTIONS) AND TXOP=? 2. also reduced the DESTINATION VARCHAR(250) to VARCHAR(190) 3. and change BLOB_TYPE=BINARYSTREAM_BLOB. It worked now for jdbc2 PM. I

[JBoss-user] [EJB/JBoss] - local jndi name in the jboss.xml

2004-03-17 Thread cari34
Hi guys, I have a stateless session bean that has local and remote interfaces. When I try to get a reference to the local home interface (inside the server) I get a ClassCastException. In the jboss.xml file I wrote the following: ?xml version=1.0 encoding=UTF-8? !DOCTYPE jboss PUBLIC

[JBoss-user] [Security JAAS/JBoss] - Re: JAAS within POJOs used in Web Tier

2004-03-17 Thread wdrai
In case of a web tier, you should configure the client-login module in login-config.xml instead of auth.conf a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826218#3826218;View the original post/a a

Re: [JBoss-user] [Installation Configuration] - Running a web app as non-root problem

2004-03-17 Thread Felipe Oliveira
you are probabily trying to bind jetty on port 80 right? you can bind on port 8080 and redirect incoming requests from 80 to 8080. as root: iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-ports 8080 /etc/init.d/iptables save /etc/init.d/iptables start i hope it helps. felipe

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

2004-03-17 Thread wmakasa
Hey Vishal and Raffaelecorvino, Thanx I saw chapter 4 Raffael: Concerning the server iam using jboss323all.server, herewith is its code: ${serverRootDirectory} ${serverRootDirectory}/server/all/deploy ${serverRootDirectory}/server/all/deploy ${serverRootDirectory}/server/all/deploy

[JBoss-user] [Installation Configuration] - Re: Running a web app as non-root problem

2004-03-17 Thread Malachii
I just found the answer... http://www.jboss.org/index.html?module=bbop=viewtopict=43187 It seems that linux restricts servers running on low port numbers to the root user. I was trying to run on port 80. Instead of changing the linux service script to run as a super user, I'm going to use my

[JBoss-user] [Nukes User] - Search module?

2004-03-17 Thread danvu
Does anyone plan on doing a search module for the entire nukes website? Right now there's only a search in bb module and it's limited to searching in forums. a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826223#3826223;View the original post/a a

[JBoss-user] [Clustering/JBoss] - JBOSS Clustering, How to find out all nodes in a cluster

2004-03-17 Thread Nandkumar
Hi, I am trying to setup clustering for jboss please let me know how to find all nodes in cluser.. can I see it in console thanks nandkumar a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826224#3826224;View the original post/a a

[JBoss-user] [Nukes User] - Re: Search module?

2004-03-17 Thread cooper
there is already the index module (used by bb), you can find the code at $nukes/src/main/org/jboss/nukes/core/modules/index. see how it interracts with the bb module. then any other module can use it. a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826225#3826225;View the

[JBoss-user] Monitoring enhancement in JBoss 3.2.4

2004-03-17 Thread Takumi Fujiwara
In the JBoss 3.2.4 release , there is improved monitoring and graphing in the Web console. Can this monitor and graph the servlets running on Tomcat? And can someone please tell me what addition functionalities does the Web console provide which the Tomcat 5.0.x admin/manager webapp does not?

Re: [JBoss-user] Monitoring enhancement in JBoss 3.2.4

2004-03-17 Thread Bill Burke
JMX attributes can be monitored, graphed, and recorded Takumi Fujiwara wrote: In the JBoss 3.2.4 release , there is improved monitoring and graphing in the Web console. Can this monitor and graph the servlets running on Tomcat? And can someone please tell me what addition functionalities does

[JBoss-user] [HTTPD, Servlets JSP] - JBOSS 3.2.3 and SSL (mixing http and https request)

2004-03-17 Thread jcorbin4607
Hello, I have successfully setup and configured my JBOSS 3.2.3 installation to use SSL. My installation uses the TomCat webserver. The initial access into my site uses https and it seems that even purposefully non-secure URL's (http) get treated as secure. I am fairly new to configuring SSL

[JBoss-user] [Persistence CMP/JBoss] - Re: compound Primary Key

2004-03-17 Thread jmiddleton
I having the same problem in Jboss 3.2.3... Someone could tell me how to solve this. Thank in advance a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826228#3826228;View the original post/a a href=http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3826228Reply to

[JBoss-user] [Persistence CMP/JBoss] - Re: composite primary key configuration

2004-03-17 Thread jmiddleton
I found the solution in http://www.jboss.org/index.html?module=bbop=viewtopict=36642 a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826229#3826229;View the original post/a a href=http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3826229Reply to the post/a

[JBoss-user] [HTTPD, Servlets JSP] - Re: JBOSS 3.2.3 and SSL (mixing http and https request)

2004-03-17 Thread jcorbin4607
I think I found the answer to my question. The secure URL I was testing against was being dynamically built from the HttpSerlvetRequest and I simply changed the http to https without changing the URL to point to the secure port. The URL was pulling the port from the request in this manner.

[JBoss-user] [EJB/JBoss] - tuning

2004-03-17 Thread leishen
Does anyone know a good sources talking about tuning for EJB? Thanks, Lei a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826231#3826231;View the original post/a a href=http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3826231Reply to the post/a

[JBoss-user] [Persistence CMP/JBoss] - tuning

2004-03-17 Thread leishen
Does any one know a good resouce on how to tune the EJBs? Thanks lei a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826232#3826232;View the original post/a a href=http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3826232Reply to the post/a

[JBoss-user] [EJB/JBoss] - Re: long lived transaction problem

2004-03-17 Thread cvandyck
I have two session beans in the app I am developing that need hour or two hour long transaction times, so I code those with bean managed transaction stateless session beans. The other stateless session beans, that have container managed transactions, use the global default of 300 seconds. a

[JBoss-user] [Messaging, JMS JBossMQ] - JMS hang/crash (Jboss 3.2.3)

2004-03-17 Thread richieb
We had a JMS crash/hang occur in our development JBoss 3.2.3. An OutOfMemory error occured first, and then the clients got into a weird state. Some clients got stuck while trying to reconnect to Jboss in InitialContext look up. We had a program that was monitoring topic message counts and it

Re: [JBoss-user] [Persistence CMP/JBoss] - tuning

2004-03-17 Thread Felipe Oliveira
http://www.onjava.com/pub/a/onjava/2003/05/28/jboss_optimization.html leishen wrote: Does any one know a good resouce on how to tune the EJBs? Thanks lei a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826232#3826232;View the original post/a a

[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS hang/crash (Jboss 3.2.3)

2004-03-17 Thread richieb
I forgot to add that when I tried to shut Jboss down with shutdown.sh script it did not work. The script timed out. ..richie a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826235#3826235;View the original post/a a

[JBoss-user] [EJB/JBoss] - Re: unable to use ORDER BY clause

2004-03-17 Thread cvandyck
From what I read in a different thread, it is supported in JBoss4.0 but not JBoss3.x a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826236#3826236;View the original post/a a href=http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3826236Reply to the post/a

[JBoss-user] [EJB/JBoss] - Re: Unable to passivate due to ctx lock

2004-03-17 Thread hswac
Adrian, you're right, the 'unable to passivate bug' is fixed in 3.2.3. The problem left was of some other kind. Thanks and regards Helmut a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826237#3826237;View the original post/a a

[JBoss-user] [Persistence CMP/JBoss] - Re: Update on Find

2004-03-17 Thread mkyaj
By default, JBoss will do updates of any dirty entities whenever a finder is called. With sync-on-commit-only set to true, however, this synchronization will still happen when deletes/removes are done to ensure that cascade deletes work correctly. So you have to set

[JBoss-user] [Performance Tuning] - EJB Pool

2004-03-17 Thread mkyaj
Hi, I am calling a findAll method that returns collection of entityA and using those entities one-by-one as Collection col = home.findAll(); while(col has elements) { EntityA = (EntityA)col.next(); } If i have 100 records, then the JBOSSCMP is creating 100 instances in the

[JBoss-user] [Clustering/JBoss] - Re: JBOSS Clustering, How to find out all nodes in a cluster

2004-03-17 Thread [EMAIL PROTECTED]
http://localhost:8080/jmx-console/cluster/index.html a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826244#3826244;View the original post/a a href=http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3826244Reply to the post/a

[JBoss-user] [EJB/JBoss] - Re: Writing my own Interceptor - cannot deploy

2004-03-17 Thread [EMAIL PROTECTED]
just put it into a jar and into the config/lib directory a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826245#3826245;View the original post/a a href=http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3826245Reply to the post/a

[JBoss-user] [EJB/JBoss] - Re: unable to use ORDER BY clause

2004-03-17 Thread [EMAIL PROTECTED]
You need to use JBossQL for ORDER BY, it's not part of EJBQL spec until version 2.1 which is what JBoss 4.0 implements. a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826246#3826246;View the original post/a a

[JBoss-user] [Installation Configuration] - Re: do i need to install tomcat seperately with jboss-3.2.3

2004-03-17 Thread [EMAIL PROTECTED]
no a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826247#3826247;View the original post/a a href=http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3826247Reply to the post/a --- This SF.Net email is sponsored

[JBoss-user] [HTTPD, Servlets JSP] - integrating IIS with JBoss

2004-03-17 Thread smitra
I have a IIS web server that is going to forward the request over to a JBoss Application Server. I am looking for the IIS plug-in filter for Jboss. Could anyone please let me know, where to get the plugin file and what is the name of the file. Also a step by step guide to implement it would be

[JBoss-user] [Beginners Corner] - Using Jboss-tomcat bundle without EJBs

2004-03-17 Thread Tsagovic
Hello folks, Could any of you guys think of some reasons why one would chose to use the jboss bundled tomcat, in case he is ONLY using SERVLETS and POJOS? Hot deployment?... please share your ideas. Thanks. a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826249#3826249;View

[JBoss-user] [Clustering/JBoss] - Simple questions.

2004-03-17 Thread Tsagovic
Hello everybody, I have read somewhere that JBoss can actually make simple POJOs (that don't have any distribution related code in them) distributed/clustered, is this true with the 3.2.3 version? A second question is about clustering web applications (with only servlets and POJOs), is

[JBoss-user] [Installation Configuration] - Re: Log4j as a JNDI service

2004-03-17 Thread camel
appzworm wrote : | 2. Also is it possible to configure application-specific logging for individual applications without touching the global conf/log4j.xml file? | You can accomplish this by using a separate classloader repository for that app, or in the case of a webapp, configuring it to

[JBoss-user] [Installation Configuration] - Re: classloader error

2004-03-17 Thread shortpasta
Does jbossweb-tomcat50.sar have the same problem since it uses a lot of common jars, such as ant.jar and commons-logging.jar? I used the management jboss-service.xml as a reference and added this, but it didn't work. Obviously this is not clear to me, and as you can guess I got a ton of

[JBoss-user] [EJB/JBoss] - sample program to test MBean

2004-03-17 Thread alanc_yang
I deployed the JNDIMap sample MBean from chap2 but not sure how to test it. Can somebody help post sample code that can test the JNDIMap sample MBean? Thanks in advance! - Alan a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826254#3826254;View the original post/a a

[JBoss-user] [EJB/JBoss] - Re: a program in jboss that listens on a port

2004-03-17 Thread camel
Comin your way. a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826255#3826255;View the original post/a a href=http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3826255Reply to the post/a --- This SF.Net email

[JBoss-user] [Nukes User] - Re: Access denied for user: 'nukes@localhost'

2004-03-17 Thread niniche
Stuck on that for hours. The password MUST be 8 characters long... a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826256#3826256;View the original post/a a href=http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3826256Reply to the post/a

[JBoss-user] [Installation Configuration] - Re: Setting up JBoss application server

2004-03-17 Thread darranl
What do you mean by 'Still its not able to find the path.'? a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826209#3826209;View the original post/a a href=http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3826209Reply to the post/a

[JBoss-user] Problem with ORACLE and JBOSS 3.2.3

2004-03-17 Thread JAIME GOMEZ
Hi people I have an application run inside of JBoss 3.2.3 , I use this configuration to Oracle conexion : !-- JBoss Server Configuration -- !-- -- !--

[JBoss-user] [Installation Configuration] - Re: Separate log4j.properties not allowed?

2004-03-17 Thread jhalmes
I am posting to this thread to bring it to the jboss support staff's attention again. There is no explicit answer for a jboss 3.2.x app server. How do we do application specific logging with log4j without lettting jboss override it? We should not have to reconfigure the app server, that is a

<    1   2