[JBoss-user] [Persistence CMP/JBoss] - Re: Informix-serial, auto-increment and discrete value

2004-04-19 Thread dirkniemeierde
Does anybody know this behavior certainty ? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831320#3831320 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831320 --- This

[JBoss-user] [Installation Configuration] - Re: TrapdService leads to BindException

2004-04-19 Thread [EMAIL PROTECTED]
I'ld check the configuration of the service and if in your control and the service uses port or auto discovery just reconfigure it... Otherwise you might have to be careful when reconfiguring the port that you also reconfigure all clients... View the original post :

AW: [JBoss-user] [Security JAAS/JBoss] - Re: Avoiding Principal and credential check for unchecked me

2004-04-19 Thread Janardhan Burugupalli
Hi scott, - As u said i do call the login() method in the client before i call any method on the server. I thought it is used for the next calls made by the client for which there is a method permission described -But my first call form the Client is a SessionFacade.login(usrname, pwd) which has a

[JBoss-user] [Persistence CMP/JBoss] - optimistic locking and timestamp

2004-04-19 Thread abv
Hi, several databases provide a timestamp mechanism that could be the base for optimistic locking scenario. But on JBoss the optimistic locking by timestamp is managed by JBoss. Is it planned to support database managed timestamps in the future? View the original post :

[JBoss-user] [Persistence CMP/JBoss] - Cascade delete problem

2004-04-19 Thread SirVaulterScoff
Hi. I'm running jboss3.2.3 on windows 200 prof. I'm building an entrprise app using ejb and servlets. Entity beans CMP (Oracle 9i) works greate except cascade delete. I have such tables GrpFac Fac FacVal -- GpFac_ID--GrpFac_ID Value

[JBoss-user] [Installation Configuration] - Version 3.2.x or 4.0.x

2004-04-19 Thread greiff
Hi guys, We want to migrate our app to a new version of JBoss. The new release will be rolled out to our customers by end of this year. My question: is it safer to use JBoss 3.2.x or can we tke the risk and start with 4.0 thx in advance View the original post :

[JBoss-user] [HTTPD, Servlets JSP] - jboss323 tomcat5 directory listing false, I still see direct

2004-04-19 Thread tomerbd
Hi I have a jboss3.2.3 working with a configuration of tomcat5 in tomcat5/conf/web.xml I have set the property listings to be false: init-param param-namelistings/param-name param-valuefalse/param-value /init-param However I still see directory listings

[JBoss-user] [Beginners Corner] - How to delete CMR child entities??

2004-04-19 Thread davout
Can somebody explain with a code example how to delete all the child entities of a CMR one-to-many relationship without deleting the parent? For example: a 'Pupil' entity is associated with one or more 'subject' entities. I have a 'Pupil' entity bean, 'Subject' entity bean and a linking

[JBoss-user] [Persistence CMP/JBoss] - How to delete child entities only from a one-to-many CMR rel

2004-04-19 Thread davout
Can somebody explain with a code example how to delete all the child entities of a CMR one-to-many relationship without deleting the parent? For example: a 'Pupil' entity is associated with one or more 'subject' entities. I have a 'Pupil' entity bean, 'Subject' entity bean and a linking

[JBoss-user] [Installation Configuration] - Re: IdleRemover notifying pools, interval: 450000

2004-04-19 Thread lee_yuki2000
It happens alot of time...Any idea why? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831328#3831328 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831328 --- This

[JBoss-user] [EJB/JBoss] - Isolation Problem - One Transaction affects anotherone

2004-04-19 Thread skulawik
Hello, I've a really strange problem. I have a long term Transaction (A) which takes about 5 minutes. During this transaction some other read access from a website are running and maybe also using beans that are changed / deleted though transaction A. For showing a website it is maybe not

[JBoss-user] [Management, JMX/JBoss] - stop/start a particular J2EE application

2004-04-19 Thread rudhiw
Hi, I am wondering how we can stop/start a particular J2EE application (*.ear) or a web app (*.war) inside a JBOSS ? In Tomcat we have http://localhost:8080/manager/stop?path=/examples to stop Examples app without affects other apps. Or in Websphere we can stop/start an App. using Admin

[JBoss-user] [HTTPD, Servlets JSP] - Re: Losing objects in session

2004-04-19 Thread anajavi
I have this same problem. Application is installed on jboss 3.2.3+jetty. Haven't yet found if it loses the whole session or the object in session. Objects in session seem to vanish without any reason. Earlier I had request parameters missing, but it turned out to be accidental mixing of

[JBoss-user] [HTTPD, Servlets JSP] - Re: HTTP Request Params are lost on form submit to the serve

2004-04-19 Thread anajavi
Check if you are mixing http-post and http-get. I had the same problem and it turned out to be from the following: form action=?id=1 method=post fixed it with making id as a hidden field. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831332#3831332 Reply to

[JBoss-user] [Installation Configuration] - Re: Port already in use - Jboss 3.2.3 Problem

2004-04-19 Thread Ulf.Klaas
!!!@ EVERYBODY!!! 1.) All your posts aren't useful, when you repeat the old posts! Please read the old posts and give new, professional hints! 2.) The Windows command netstat isn't useful, because it doesn't show clearly the assignment of the ports to the binaries. So use the TCPView tool, to

[JBoss-user] [Persistence CMP/JBoss] - Re: How to delete child entities only from a one-to-many CMR

2004-04-19 Thread triathlon98
Chnage your code to | Pupil aPupil = getHome().findByPrimaryKey(...) | Collection aSubjectLinks = aPupil.getSubjectLinks; | Iterator anIterator; | while ((anIterator = aSubjectLinks.iterator()).hasNext()) { |PupilSubjectLink aLink = (PupilSubjectLink) anIterator.next(); |

[JBoss-user] [Installation Configuration] - Re: Jboss shutdown

2004-04-19 Thread xsam_jboss_user
Stack trace generated is very lengthy so I am just sending the starting part of stack trace and remaining part of stack trace from where HAJNDI service starts Starting Part : Full thread dump Java HotSpot(TM) Server VM (1.4.1 1.4.1.02-030502-15:31-PA_RISC2.0 PA2.0 mixed mode): JBoss Shutdown

[JBoss-user] [HTTPD, Servlets JSP] - Re: SSL with Tomcat in JBOSS 3.2.3

2004-04-19 Thread nitin888
To avoid PureTLSImplementation error Add SSLImplementation parameter. Regarding changing log4j into is just pretending that there's no errors. I don't think its the right way. Even i'm trying to get a soln for that problem. View the original post :

[JBoss-user] [HTTPD, Servlets JSP] - Re: SSL with Tomcat in JBOSS 3.2.3

2004-04-19 Thread nitin888
Add SSLImplementation parameter. SSLImplementation=org.apache.tomcat.util.net.jsse.JSSEImplementation in jboss-service.xml in Factory tag View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831340#3831340 Reply to the post :

[JBoss-user] [HTTPD, Servlets JSP] - Re: SSL, Tomcat, JBoss - desperatly needing help

2004-04-19 Thread nitin888
I'm also trying to get rid of the above error. If anyone has got a solution please can you'll inform us View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831343#3831343 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831343

[JBoss-user] [Performance Tuning] - Re: Serious performance issue using Oracle 9.2.0.4 and RAC/T

2004-04-19 Thread bob neville
We have fixed the problem !! It has nothing to do with bandwidth, there is no ISP involved as this is an internal company system. The problem was that we had the wrong version of the Oracle OCI driver loaded. Once the correct version was installed the problem resolved itself. The reason why

[JBoss-user] [Installation Configuration] - Is JBoss supports Clustering and Virtual Hosts?

2004-04-19 Thread kondetisree
Hi All.. Is Jboss supports Clustering and Virtual hosts? By the way pls. distinguish both clustering and Virtual hosts how its differ each other. Regards, Srikanth Kondeti View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831342#3831342 Reply to the post :

[JBoss-user] [Installation Configuration] - Re: Is JBoss supports Clustering and Virtual Hosts?

2004-04-19 Thread triathlon98
Yes, JBoss supports both. Joachim View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831346#3831346 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831346 --- This SF.Net

[JBoss-user] [Installation Configuration] - Re: Is JBoss supports Clustering and Virtual Hosts?

2004-04-19 Thread kondetisree
Thanks Joachim. And if u have an idea about how it supports JBoss pls. explain to me know. I would like to know the difference between Clustering and Virtual Hosts. Where I need to look for that info. in Jboss web-console or Jmx-console. Thanks in Avance, Srikanth View the original post :

[JBoss-user] [Installation Configuration] - Re: Is JBoss supports Clustering and Virtual Hosts?

2004-04-19 Thread kondetisree
Thanks Joachim. And if u have an idea about how it supports JBoss pls. explain to me know. I would like to know the difference between Clustering and Virtual Hosts. Where I need to look for that info. in Jboss web-console or Jmx-console. Thanks in Avance, Srikanth View the original post :

[JBoss-user] [Clustering/JBoss] - Re: Clustering with Message driven Beans......(Exception:Fil

2004-04-19 Thread goutamp
Hi, Thanks for the replies you guys gave.I came to know that there is a support for mdb's from jboss-3.2.3 version. Well, inspite of the exceptions that I mentioned in my previous mail, all the nodes are recognized in the clustered environment.I defined my own partition: xyz and

[JBoss-user] [Persistence CMP/JBoss] - Re: How to delete child entities only from a one-to-many CMR

2004-04-19 Thread davout
Thanks for the code pointer... Unfortunately the records are not being deleted from the MySQL table. After I run the code and use a DB tool to view the table data the records are still there. I checked the EJB code by having 'System.out' messages display the before and after state of the

[JBoss-user] [Persistence CMP/JBoss] - Why my container with commit option A is trying to insert ne

2004-04-19 Thread le_ma_
Hello ! I'm using jboss-3.2.3 and have container configuration 'Standard CMP 2.x EntityBean with cache invalidation' in distribution file jboss-home/server//conf/standardjboss.xml. No chandes was made in this container-configuration. MYCONF - is a tree that I've been copied from default server

[JBoss-user] [Persistence CMP/JBoss] - Re: How to delete child entities only from a one-to-many CMR

2004-04-19 Thread davout
Some more info... After running the delete method call the first time my System.out messages show a collection size of '2' at the start and '0' at the finish. If I run the same delete method call a second time the collection size is'2' - so obviously something isn't executing the first time

[JBoss-user] [Beginners Corner] - Re: hpersonic missing in JMX console

2004-04-19 Thread darranl
Lara, Have a look at the 'hsqldb-ds.xml' file in the deploy folder. Read the instuctions that it contains. Enable the MBean and change the connection to use the TCP/IP connection. Start JBoss You will then be able to start the Hypersonic database manager from the JMX-Console. View the

[JBoss-user] [Beginners Corner] - Re: Configuring JBoss to existing tomcat

2004-04-19 Thread luigifonti
Yes, you must copy the files to tomcat directory, then start or re-start tomcat. Jboss doesn't need to be re-started if already active. The jar file with the packed bean classes must be copied to jboss directory (e.g. ../server/default/deploy/ ). It will automatically be deployed within few

[JBoss-user] [JCA/JBoss] - JBossJCA WIKI available

2004-04-19 Thread [EMAIL PROTECTED]
http://jboss.org/wiki/Wiki.jsp?page=JBossJCA View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831367#3831367 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831367 --- This

[JBoss-user] [Messaging, JMS JBossMQ] - Send msg to weblogic queue

2004-04-19 Thread maxi72
i need to send an message to weblogic 8.1 queue. can you help me ? thanks View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831368#3831368 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831368

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Send message from weblogic to JBoss

2004-04-19 Thread maxi72
hi, i put wljmsclient.jar,weblogic.jar,wlclient.jar in jboss\server\default\lib. But when i start my Jboss (via run.bat) i receive this error : log | CMS | 19/apr/2004 13:04:50,671 org.jboss.naming.NamingService | Starting jnp server log | CMS | 19/apr/2004 13:04:50,812

[JBoss-user] [Persistence CMP/JBoss] - Re: How to delete child entities only from a one-to-many CMR

2004-04-19 Thread triathlon98
Switch on debugging for the CMP stuff. This should show whether the delete SQL queries are being generated. You are sure your transaction has finished and is not rolled back? Joachim View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831370#3831370 Reply to the

[JBoss-user] [Installation Configuration] - Unable to compile class for JSP

2004-04-19 Thread malcolmf
I have been successfully running JBOSS 3.0.4 tomcat 4.1.12 for some while and have recently started to see the following sequence on random JSPs that have recently been compiled and run successfully. Could anyone help with this issue. Thanks, Malcolm 2004-04-19 11:48:07,328 ERROR

[JBoss-user] [JCA/JBoss] - ManagedConnectionPool / Lost connections / Bad connection re

2004-04-19 Thread MarcMA
Hi All. We have some serious problems with the current jboss jca implementation which results in a non HA JBoss environment. HA and database auto-recovery are crucial for us so no matter of what kind of help -- it is appreciated very much. Here the setting. JBoss 3.2.3 / JBoss 3.2.4RC1 (same

[JBoss-user] [Persistence CMP/JBoss] - How to catch SQLException in JBoss?

2004-04-19 Thread sbrbot
How to catch SQLException thrown by CMP in JBoss? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831373#3831373 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831373 ---

[JBoss-user] [Messaging, JMS JBossMQ] - Re: jboss bridge Weblogic

2004-04-19 Thread maxi72
hi, i have the same problem. can you help me ? thanks View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831374#3831374 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831374

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Weblogic JMS and JBoss MDB

2004-04-19 Thread maxi72
i have the seam problem. Can you help me ? tjanks View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831375#3831375 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831375

[JBoss-user] [Security JAAS/JBoss] - SSL Truststore Configuration - Jboss 3.2.3-tomcat 4.1.29

2004-04-19 Thread tfk257
I am using JBOSS 3.2.3-tomcat 4.1.29 I have 2 questions: 1- How can I configure the app server to use a specific truststore? 2- How do I get the user credentials in a servlet in my application? PLEASE I NEED HELP View the original post :

[JBoss-user] [Persistence CMP/JBoss] - Re: Bug in EJB QL compiler?

2004-04-19 Thread ManneF
Hi Sesques, Thanks for looking into this. The originalLanguage and targetLanguage fields (properties) are in fact references to other entity beans, not Strings or anything like that. Is there a problem with that? As I said, I'm new to JBoss CMP beans and wouldn't consider myself an expert on

[JBoss-user] [Beginners Corner] - Re: Configuring JBoss to existing tomcat

2004-04-19 Thread luigifonti
Oh, i see i made a mistake in my previous reply: the library jar files must be copied taking them from jboss-home/client/ directory, not from jboss-home/server/default/lib/ Bye Luigi Fonti View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831379#3831379 Reply

[JBoss-user] [JCA/JBoss] - Re: ManagedConnectionPool / Lost connections / Bad connectio

2004-04-19 Thread [EMAIL PROTECTED]
The negative number is a bug. It looks like you have found a path through the code where it tries to detroy the connection twice (leading to broken counting). Rather than posting lots of useless verbage and accusation: 1) Look at READ THIS FIRST and give me a TRACE log to look at. Since your

[JBoss-user] [Persistence CMP/JBoss] - Re: Bug in EJB QL compiler?

2004-04-19 Thread sesques
ManneF wrote : Hi Sesques, | | Thanks for looking into this. | | The originalLanguage and targetLanguage fields (properties) are in fact references to other entity beans, not Strings or anything like that. Is there a problem with that? | | As I said, I'm new to JBoss CMP beans and

[JBoss-user] [Clustering/JBoss] - Data Replication / Integrity through clustering ....

2004-04-19 Thread pagomen
Hi all, I am quite new in JBOSS so I will need some help. I am trying to design a system that has 2 databases one primary and one secondary (act as backup). So if one db craches or fail then the system automatically switch to the other. But this scenario has all of issues concerning data

[JBoss-user] [JCA/JBoss] - Re: ManagedConnectionPool / Lost connections / Bad connectio

2004-04-19 Thread [EMAIL PROTECTED]
The no-tx-separate-pools is a mistake, track-connection-by-tx has the same problem. Thanks for pointing this out. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831384#3831384 Reply to the post :

[JBoss-user] [Installation Configuration] - Re: ?? Running Jboss as a service in Suse 9.0 using a wrappe

2004-04-19 Thread Andy_Wagg
Your wrapper.conf is not correct, your line containing run.sh should be like this: wrapper.java.additional.1=-Dprogram.name=run.sh View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831383#3831383 Reply to the post :

[JBoss-user] [Installation Configuration] - Re: Port already in use - Jboss 3.2.3 Problem

2004-04-19 Thread [EMAIL PROTECTED]
You can purchase production support here. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831385#3831385 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831385 --- This

[JBoss-user] [Installation Configuration] - Re: JNDI problems mail services tests

2004-04-19 Thread kabkhan
Thanks Adrian, The line of code you suggested showed we had an additional jndi.properties file hidden away in a jar file on the classpath! Now when I try to do InitialContext ctx = new InitialContext(); | ctx.bind(test/xyz, xyz); I get the following error:

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

2004-04-19 Thread [EMAIL PROTECTED]
On Windows one common issue is having your JDK or JBoss installed under Program Files or other directory with spaces in the name, Jasper does not appear to like that much. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831388#3831388 Reply to the post :

[JBoss-user] [Installation Configuration] - Re: JNDI problems mail services tests

2004-04-19 Thread spiritualmechanic
What happens if you try: ctx.bind(test,test); ctx.bind(test/xyz, xyz); I'm honestly not sure if JNDI supports adding leaves with non-existing parents. In theory, it could add it, but I know an OpenLDAP store won't let you do it. Steve View the original post :

[JBoss-user] [Installation Configuration] - installing jboss from source

2004-04-19 Thread stm23
hi, i've just downloaded the jboss 3.2.3 source code, but i have no idea how to go about compiling installing it. are there any instructions on how to do this? the online manual only refers to the binary distribution. really appreciate any help u can give me cheers, sam View the original

[JBoss-user] [Beginners Corner] - installing jboss from source

2004-04-19 Thread stm23
hi, i've just downloaded the jboss 3.2.3 source code, but i have no idea how to go about compiling installing it. are there any instructions on how to do this? the online manual only refers to the binary distribution. really appreciate any help u can give me cheers, sam View the original

[JBoss-user] [Installation Configuration] - Re: how to avoid JNDI port conflicts at startup?

2004-04-19 Thread [EMAIL PROTECTED]
So just change the port of your naming service... ? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831394#3831394 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831394

[JBoss-user] [Persistence CMP/JBoss] - Re: How to delete child entities only from a one-to-many CMR

2004-04-19 Thread sesques
It seems curious that you do not have any error ! How your beans are defined (post the ejb-jar and jbosscmp-jdbc files). Are you sure the database you look at is the one used by JBoss ? (Does JBoss create the tables ?) View the original post :

[JBoss-user] [Beginners Corner] - Re: installing jboss from source

2004-04-19 Thread spiritualmechanic
Check the build subdirectory of the source tree you have. There is a .sh for Unix and .bat for Windows. Execute that. That will get you started. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831396#3831396 Reply to the post :

[JBoss-user] [Persistence CMP/JBoss] - database and EJB's cascade delete

2004-04-19 Thread raj_kumar
hi ... i would like to ask u a question .. i'm having problem with cascade delete in EJB i'm using MY-SQL as a database ... the problem is when i set (fk-constriant and cascade-delete ) in my database then JOBSS dont cascade delete but when i remeoves and put the cascade-delete in my

[JBoss-user] [Installation Configuration] - How to disenable /tmp in Jetty

2004-04-19 Thread richardzheng
I deployed a J2EE/EJB application under Linux 7.2 and JBoss 3.2.1. It works very well for 2 weeks. After 2 weeks the web application has no response so that I have to kill Jboss and restart it again. It seems like the Jboss hangs. Lothar suggested that the /tmp folder should be cleaned every 2

[JBoss-user] [EJB/JBoss] - using DLL in Jboss

2004-04-19 Thread raj_kumar
hi i would like to ask u a question .. i'm using Jboss 3.2 ... but a problem came to me ... i had a need to use DLL in my Jboss suppose from an EJB ... whether i can call JNI fr9om my EJB beacuse there is some information which i would like to ontain and that i can only achieve

[JBoss-user] [Installation Configuration] - Re: installing jboss from source

2004-04-19 Thread StephaneNicoll
Have a look to http://www.jboss.org/developers/guides/quickstart Regards, Stephane View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831403#3831403 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831403

[JBoss-user] [EJB/JBoss] - Re: Configuring compound primary key

2004-04-19 Thread Berritxu
Hello! I have to use a compound primary key, using BMP, but I don't know how to do it. Anybody has an example? Thanks View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831404#3831404 Reply to the post :

[JBoss-user] [EJB/JBoss] - Re: using DLL in Jboss

2004-04-19 Thread sesques
The EJB spec disallows JNI calls from EJB's. However, many application server vendors permit it, including Jboss. Search in this forums, there is already many topics on this subject. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831405#3831405 Reply to the

[JBoss-user] [EJB/JBoss] - Re: using DLL in Jboss

2004-04-19 Thread thl-mot
Wouldn't it be better to create a MBean that does the JNI-Call. Do other APP servers have similar mechanisms? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831406#3831406 Reply to the post :

[JBoss-user] [Nukes User] - Deployement problem

2004-04-19 Thread pista
Hi, I have a problem when I want to deploy my module, theme and block. There is the problem : For the block : 16:05:02,421 INFO [MainDeployer] Starting deployment of package: file:/C:/Jboss-3.2.3/server/default/deploy/essaiBlock2.sar 16:05:02,531 WARN [ServiceConfigurator] Failed to complete

[JBoss-user] [Beginners Corner] - Re: installing jboss from source

2004-04-19 Thread StephaneNicoll
Hey, No need to create multiple threads for the same question: http://www.jboss.org/index.html?module=bbop=viewtopict=48692 Regards, Stephane View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831408#3831408 Reply to the post :

[JBoss-user] [Installation Configuration] - Re: How to disenable /tmp in Jetty

2004-04-19 Thread jonlee
Actually, the problem is that a periodic Linux cron job cleans the /tmp directory and the embedded Jetty places the compiled JSP classes in this directory. Deleting these means that the compiled JSP code can no longer be run - hence no web application. Create another directory to which Jetty

[JBoss-user] [HTTPD, Servlets JSP] - Re: How to config servlet in jboss-3.2.3/Eclipse3.0/Lomboz/J

2004-04-19 Thread ronnyroeller
JonathanYZQ, I'm still looking for a solution. Did you find something new? Regards, Ronny View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831410#3831410 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831410

[JBoss-user] [Beginners Corner] - JNDI Context lookup failure with jboss 3.2.3

2004-04-19 Thread benwang
Dear all, Recently I tried to convert my program from websphere 5.1 to jboss 3.2.3, but I encountered jndi binding problem in the following statement : Object homeObject = ctx.lookup(java:comp/env/ega/Login); LoginHome loginHome = (LoginHome)

[JBoss-user] [Beginners Corner] - web-app DTD version

2004-04-19 Thread jagadishm
Hi i am new to Jboos.i had created one war file. in my WEB.xml ?xml version=1.0 encoding=ISO-8859-1? !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN http://java.sun.com/dtd/web-app_2_3.dtd; in that i am using listener elements.it is working on

[JBoss-user] [Beginners Corner] - Re: web-app DTD version

2004-04-19 Thread jagadishm
jagadishm wrote : Hi | i am new to Jboos.i had created one war file. | in my WEB.xml | ?xml version=1.0 encoding=ISO-8859-1? | !DOCTYPE web-app |PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN | http://java.sun.com/dtd/web-app_2_3.dtd; | | in

[JBoss-user] [Beginners Corner] - Re: web-app DTD version

2004-04-19 Thread spiritualmechanic
What does the SAXParseException say? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831414#3831414 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831414 --- This SF.Net

[JBoss-user] [Persistence CMP/JBoss] - Re: Peculiar error

2004-04-19 Thread dlsills
I worked out the problem, and will in fact submit a bug report, as this is a pretty big one. It's a problem with the code that reads the jbosscmp-jdbc.xml. This problem seems to occur when there is no datasource set up that corresponds to the default datasource in standardjbosscmp-jdbc.xml, and

[JBoss-user] [Installation Configuration] - Re: ?? Running Jboss as a service in Suse 9.0 using a wrappe

2004-04-19 Thread craigeherring
Thanks!!! Works much better!!! Craig View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831417#3831417 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831417 --- This

[JBoss-user] [Installation Configuration] - Re: help! can't compile JSP(no jdom.jar?) with JBOSS3.2.4RC1

2004-04-19 Thread qycwd
thanks a lot, I've found it. it need jdom.jar in the classpath. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831418#3831418 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831418

[JBoss-user] [Nukes User] - Re: Deployement problem

2004-04-19 Thread jae77
did you deploy the nukes.ear first? i'm thinking no b/c you are getting the ClassNotFoundException b/c jboss can't find the BlockSupport class (which is contained in the nukes.ear). also, your module should be deployed in the nukes directory (ie: default/nukes). this is to help guarentee that

[JBoss-user] [Messaging, JMS JBossMQ] - Cannot bind to connection factories...

2004-04-19 Thread adamfowler
Hi all, I've been trying all day to try and get the simplist of MDBs working with JBoss. Its an absolute nightmare. I started on JBoss3.2.1 but have downloaded 3.2.3 now (JMS failed completely on 3.2.1 - could not connect to JMS provider or such like) I have a normal EJB called Document. I

[JBoss-user] [Persistence CMP/JBoss] - Re: Peculiar error

2004-04-19 Thread sesques
It is curious. As you says, It's like JBoss wants to store extra-infos about relationships in the default datasource ? I don't believe that. Do you change (or delete) the default datasource : Hypersonic SQL ? This datasource is used internally by JBoss and it's difficult (or impossible ?) to

[JBoss-user] [JCA/JBoss] - CMP User transactions

2004-04-19 Thread glindstrom
I am seeking to convert the Roster CMP app to enable user transactions, i.e., rollback / commit over multiple entity bean method invocations from a client within a single transaction. I have read warnings about using UserTransactions with CMP. But I can't find any alternative. Moreover, look up

[JBoss-user] [Persistence CMP/JBoss] - CMP, MySQL get NPE in JDBCEntityBridge.loadLoadGroups

2004-04-19 Thread rudger
Hell there, i am trying to deploy a few entity beans in CMP with a mySQL DS. I am getter a wired error. (Especially cause its a NPE.) The interfaces and deployment descriptors are generated by XDoclet. The JBoss is Version 3.2 (means DS is deployed by mysql-ds.xml) The Error is as follows:

[JBoss-user] [Installation Configuration] - Re: Failure when debugging JBoss from Eclipse

2004-04-19 Thread sunstarnova
The port is already in use by a) the same server (started twice) b) another server c) any other program make sure the port is not used already, maybe try a telnet portXXX to see, what service is running on your machine and port. View the original post :

[JBoss-user] [Clustering/JBoss] - Re: Data Replication / Integrity through clustering ....

2004-04-19 Thread bela
This cannot be done yet. Unless you use DB replication. Bela View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831426#3831426 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831426

[JBoss-user] [Security JAAS/JBoss] - Re: jaas jsp login problem

2004-04-19 Thread Inky Pinky
OK, here is something that hasn't really been made clear on any posts I have read in this forum. If you want to use Tomcat with the clientloginmodule on the client side and want the server side to log you in using a databaseservermodule you have to perform the jaas client login and logout

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Cannot bind to connection factories...

2004-04-19 Thread [EMAIL PROTECTED]
Your post reads: I have a problem trying to configure my queue. I'm not going to tell you what my problem is, instead I'm going to complain. I'm also going to post a small amount of information that makes no sense: e.g. env-ref instead of resource-ref e.g. What has queue configuration got to do

[JBoss-user] [JCA/JBoss] - Re: CMP User transactions

2004-04-19 Thread [EMAIL PROTECTED]
BMT is not allowed for CMP - read the spec Why would you want BMT in a CMP bean if you are trying to make the client control the transaction? BMT always suspends any incoming transaction. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831430#3831430 Reply to

[JBoss-user] [Nukes User] - Re: Deployement problem

2004-04-19 Thread pista
It's ok !! Thanks a lot!! View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831431#3831431 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831431 --- This SF.Net email is

[JBoss-user] [Installation Configuration] - Re: JNDI problems mail services tests

2004-04-19 Thread kabkhan
Had a look, and it seems the way I did it is what is normally done. I had just assumed ctx.bind(test/xyz, xyz) would create the subcontexts needed. At least now I know that is not the case! View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831432#3831432 Reply to

[JBoss-user] [Persistence CMP/JBoss] - Re: CMP, MySQL get NPE in JDBCEntityBridge.loadLoadGroups

2004-04-19 Thread sesques
Post some bean code snippet : bean declaration, cmp fields and especially cmr fields (relationships). View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831433#3831433 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831433

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Cannot bind to connection factories...

2004-04-19 Thread adamfowler
I find your reply interesting. I commented that the wiki documentation was next to useless (One small comment) and quite a bit of configuration information, and received a rather insulting reply saying I was merely whining. Such professionalism from support staff. Anyways... - The

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Cannot bind to connection factories...

2004-04-19 Thread spiritualmechanic
Are there any lines in the log referring to your MDB? You don't have to post the whole thing, but you should see something like picking up blah.jar, deploying blah, binding blah to jndi Any exception, even a classpath issue could be keeping you from binding to JNDI. View the original post :

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Cannot bind to connection factories...

2004-04-19 Thread spiritualmechanic
Also, you can look in http://server:port/jmx-console, then hit the JNDI link near the top. Scroll down, hit list method. This will show you everything that is bound to JNDI. Odds are it's not even there yet. View the original post :

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Cannot bind to connection factories...

2004-04-19 Thread [EMAIL PROTECTED]
adamfowler wrote : I find your reply interesting. I commented that the wiki documentation was next to useless (One small comment) and quite a bit of configuration information, and received a rather insulting reply saying I was merely whining. Such professionalism from support staff. | Not

[JBoss-user] [Messaging, JMS JBossMQ] - MDB listen Weblogic Queue

2004-04-19 Thread maxi72
i need an MDB that listen a weblogic 8.1 queue. Can you help me ? Thanks View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831438#3831438 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831438

[JBoss-user] [Security JAAS/JBoss] - JMS Queue Security

2004-04-19 Thread learnJB
Hi! guys I have a problem in configuring the security for the destination queue which is the permanent queue. I have DBServerLogin configured for jbossmq in login-config.xml where unauthenticated identity is guest I dont want to add this principal to my SecurityConfig for the queue(permanet

[JBoss-user] [Nukes User] - Re: Exception when deploying Downloads module

2004-04-19 Thread thepriz
Yes, the downloads module was deloped using cvs HEAD. It has been tested with this code. If you use anything earlier it is not gauranteed to work. Good Luck, View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831440#3831440 Reply to the post :

[JBoss-user] [Persistence CMP/JBoss] - Re: CMP, MySQL get NPE in JDBCEntityBridge.loadLoadGroups

2004-04-19 Thread rudger
Found the mistake: I had to add the @ejb.bean primkey-field=[primary key] tag to make sure JBoss can create the tables. Bye Rudger View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831442#3831442 Reply to the post :

[JBoss-user] [Messaging, JMS JBossMQ] - Re: MDB listen Weblogic Queue

2004-04-19 Thread [EMAIL PROTECTED]
Stop it with your duplicate and ME TOO posts otherwise you will find your account deleted. You will also find the search function quite interesting since I know somebody answered this question two weeks ago. View the original post :

Re: [JBoss-user] [HTTPD, Servlets JSP] - What happened to Jetty beginning with 3.2.3 ?

2004-04-19 Thread Vladyslav Kosulin
ianh wrote: I am curious as to what the future direction is with respect to Jetty vs. Tomcat? Prior to 3.2.3, JBoss always release 2 separate binaries . It looks like now only Tomcat is the bundled Servlet stack instead of Jetty. Jetty and JBoss filed for divorce in June 2003 ;-) Tomcat is the

[JBoss-user] [JCA/JBoss] - Re: ManagedConnectionPool / Lost connections / Bad connectio

2004-04-19 Thread MarcMA
OK. Fair enough. Bug-ID = #938010 for the part where the ManagedConnectionPool gets flushed. There is more to come for the part where connections are killed not flushed. Thanks so far. Cheers PS: Good Job folks! View the original post :

[JBoss-user] [EJB/JBoss] - Re: RMI callback

2004-04-19 Thread JeremyStein
I don't see the class loader exception in my log. Adding the stub in a jar on the server didn't solve my problem -- I still get the wrong number of arguments exception. Could you give me more details on your configuration? Are you running rmiregistry on the client? Did you have to do

  1   2   >