RE: [JBoss-user] Jboss Clustering Failover Test

2002-09-11 Thread Sacha Labourey
Hello, If you don't know how to test failover, then you most probably don't need clustering ;) You could simply implement two SLSB having only one method: doThis() that displays a hello world message to standard out. Then you create a client that repeativly calls doThis on the cluster

AW: [JBoss-user] JBoss.net - how to deploy web services

2002-09-11 Thread Jung , Dr. Christoph
The could not redeploy problem was a bug that has been resolved in head. Backport to 3.2 follows this week. CGJ -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 11. September 2002 01:05 An: [EMAIL PROTECTED] Betreff: [JBoss-user]

Re: [JBoss-user] For all who have some troubles with Castor0.9.3.21+JBoss3.0.2

2002-09-11 Thread Andrew
_ctx is org.exolab.castor.persist.TransactionContext object and his close() method is: public synchronized void close() throws TransactionAbortedException { Enumeration enum; ObjectEntry entry; if ( _status != Status.STATUS_ACTIVE _status !=

RE: [JBoss-user] RE: Indexing of finders

2002-09-11 Thread Kevin Conner
I think he's talking about getting JBossCMP to generate a 'CREATE INDEX' statement at the time of table creation, to optimize the database end of the finder. speculation, but that's something I'd want. Except that it never occured to me and I always just added the indexes

Re: [JBoss-user] Custom authorization

2002-09-11 Thread marius
On Tue, Sep 10, 2002 at 10:28:50PM -0400, Jim Crossley wrote: I'm looking for advice. What's the best practice for ensuring that, for example, only members of a particular team are allowed to update projects assigned to that team? Assume a Project EJB with an update method, if you will.

Re: [JBoss-user] JMX and ear-scope

2002-09-11 Thread Adrian Brock
Hi Michael, Your problem is that the marshalling is handled by RMI. The marshalling starts from the classloader of the remote object. One fix is to include a jmx-rmi-adaptor.sar in your ear. This would bind a RemoteObject into jnp that has visibility into your ear's LoaderRepository. ?xml

Re: [JBoss-user] For all who have some troubles with Castor0.9.3.21+JBoss3.0.2

2002-09-11 Thread David Jencks
The change still looks right to me for use in jboss. I don't know what this does to standalone castor usage. thanks david jencks On 2002.09.11 03:54:26 -0400 Andrew wrote: _ctx is org.exolab.castor.persist.TransactionContext object and his close() method is: public synchronized void

[JBoss-user] Which one to upgrade to? 3.0.1 or 3.0.2

2002-09-11 Thread Saroj Kumar
Hi All, We are faced with a dillema. We are working on a big project which is having around 200 tables and 125 use cases. We have been using 3.0.0 but We found that 3.0.1 fixes the Char Problem with ORACLE. Now, 3.0.2 is also out. We have to decide which one to use: 3.0.1 or 3.0.2. It is very

Re: [JBoss-user] Which one to upgrade to? 3.0.1 or 3.0.2

2002-09-11 Thread Marius Kotsbak
Probably almost the same regarding stability, besides that some bugs are corrected. Just remember that some configfiles have changed (datasource-definitions etc) On Wed, 2002-09-11 at 16:09, Saroj Kumar wrote: Hi All, We are faced with a dillema. We are working on a big project which is

RE: [JBoss-user] Which one to upgrade to? 3.0.1 or 3.0.2

2002-09-11 Thread Kim, Yong
I have upgraded from 3.0.0 to 3.0.2 with no problem. What was the issue with the configuration? I might have misseed something. Mitchell Kim -Original Message- From: Eric Kaplan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 10:52 AM To: [EMAIL PROTECTED] Subject: RE:

[JBoss-user] Clustered JBoss - HttpSessionCluster

2002-09-11 Thread Kim, Yong
Have anyone successfully made clustered HttpSession working? I am getting errors when I try to retrieved the value from the session object. Adding one is okay. I remember someone else had this problem recently but I can't find that message... (I tried the mail-archive.com) It was something

RE: [JBoss-user] Which one to upgrade to? 3.0.1 or 3.0.2

2002-09-11 Thread Barlow, Dustin
The configuration files change yet again in the 3.2.x versions as well, so be aware that even if you modify your configuration files for the 3.0.x series, they have changed again in the 3.2.x series especially where datasource configurations are concerned. The nice part is that datasource

RE: [JBoss-user] Which one to upgrade to? 3.0.1 or 3.0.2

2002-09-11 Thread LaBanca, Rick
It should have been 3.1 and 3.2 instead I think. Anyway I found rmi serialization was incompatible so servers/clients have to match, and I know the jetty config changed around, and one setting we used to disallow directory listings changed too. You'll have to just dig and find what's broken!

RE: [JBoss-user] Which one to upgrade to? 3.0.1 or 3.0.2

2002-09-11 Thread Eric Kaplan
I get the following deployment exception (going from 3.0.0 to 3.0.1). I also inserted the jboss-service.xml it complains about at the bottom. 11:23:54,718 ERROR [Server] start failed org.jboss.deployment.DeploymentException: Could not create deployment: file:/C:/

[JBoss-user] bundled tomcat version of 3.0.2

2002-09-11 Thread Anthony Geoghegan
There doesn't seem to be a Tomcat bundled version of JBoss 3.0.2 available on the sourceforge file download list yet. Is there any issue with deploying it? Best Regards, Anthony Geoghegan. J2EE Developer CPS Ireland Ltd. --- In remembrance

RE: [JBoss-user] HTTP session clustering on 3.0.2

2002-09-11 Thread Kim, Yong
I am using jboss 3.0.2. All the documentation (including subscription) refers to jetty-plugin.sar directory but I can't find it from anywhere in the jboss 3.0.2 distribution... I guess it has changed and doc haven't updated yet. Does anyone have information regarding Http Session Clustering?

[JBoss-user] How can I enable trace level logging on the tx manager?

2002-09-11 Thread Bruce Snyder
I'm using JBoss 3.0.1 and I've been trying to configure Log4J to print the actions of the tx manager so that I can see the actions occurring. But I can't find a Log4J configuration that will print trace level logging. I've looked at the TxManager and the TxCapsule and they both contain trace

Re: [JBoss-user] For all who have some troubles with Castor0.9.3.21+JBoss3.0.2

2002-09-11 Thread Bruce Snyder
This one time, at band camp, David Jencks said: DJ _ctx is org.exolab.castor.persist.TransactionContext object and his DJ close() method is: DJ public synchronized void close() DJ throws TransactionAbortedException DJ { DJ Enumeration enum; DJ ObjectEntry entry;

Re: [JBoss-user] RE: Indexing of finders

2002-09-11 Thread Dain Sundstrom
Kevin Conner wrote: Do I understand from the rest of the thread that this is not currently possible with JBossCMP? If so, is there any interest in having it added? I'm willing to give it a go if the person responsible for JBossCMP is available to bounce ideas off. Is that you Dain? That

Re: [JBoss-user] remote deploy

2002-09-11 Thread Jason Essington
How about a soap attachment sent via smtp? -jason On Wednesday, September 11, 2002, at 11:31 AM, Emerson Cargnin - SICREDI Serviços wrote: is there a way to deploy an ear file remotely, without using ftp, maybe using jmx or ant task ???

Re: [JBoss-user] remote deploy

2002-09-11 Thread David Jencks
There's an ant jmx task in varia you can use to invoke any jmx operation, including MainDeployer.deploy(url) I think I wrote an example in the package.html. david jencks On 2002.09.11 13:31:02 -0400 Emerson Cargnin - SICREDI Serviços wrote: is there a way to deploy an ear file remotely,

Re: [JBoss-user] remote deploy

2002-09-11 Thread Julien Viet
you can use the mbean MainDeployer MBean and ivoke it with an URL (it's JMX way) - Original Message - From: Emerson Cargnin - SICREDI Serviços [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 11, 2002 1:31 PM Subject: [JBoss-user] remote deploy is there a way to

[JBoss-user] Http Session Clustering problem

2002-09-11 Thread Kim, Yong
As I posted before, I am having a very similar problem as following link describes. http://www.jboss.org/forums/thread.jsp?forum=64thread=19497message=3734915 q=coould+not+get+Attribute#3734915 However, mine comes not from Integer class but my own Serializable class. Based on what the above

Re: [JBoss-user] remote deploy

2002-09-11 Thread David Ward
If it's only the *manual* aspect of ftp you don't like, there is an ftp ant task, otherwise, refer to other people's responses. David -- Emerson Cargnin - SICREDI Serviços wrote: is there a way to deploy an ear file remotely, without using ftp, maybe using jmx or ant task ???

Re: [JBoss-user] remote deploy

2002-09-11 Thread Emerson Cargnin - SICREDI Serviços
is there any jar to put in ant lib to use this task?? David Jencks wrote: There's an ant jmx task in varia you can use to invoke any jmx operation, including MainDeployer.deploy(url) I think I wrote an example in the package.html. david jencks On 2002.09.11 13:31:02 -0400 Emerson

Re: [JBoss-user] remote deploy

2002-09-11 Thread David Jencks
From the package.html I asked you to look at: pTo use this plugin with Ant, place the jbossjmx-ant.jar together with the jboss jars jboss-j2ee.jar and jboss-common-client.jar, and the sun jnet.jar in the ant/lib directory you wish to use. THere's some info about how to use

RE: [JBoss-user] Http Session Clustering problem

2002-09-11 Thread Kim, Yong
Why is everyone so quiet?! Nobody uses JBoss HTTP session clustering in their environment? Am I the only one having this issue? Mitchell -Original Message- From: Kim, Yong [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 1:54 PM To: '[EMAIL PROTECTED]' Subject:

[JBoss-user] Loading service in jboss-service.xml or as sar

2002-09-11 Thread Thomas Osterlie
Hi, I'm setting up a bare bones JBoss JMX server running only the services required to deploy sar's. It has thus far proven fairly simple, but now I've come across a problem that puzzles me. Running a server configuration called test, if I load the EJBdeployer mbean from the

Re: [JBoss-user] bundled tomcat version of 3.0.2

2002-09-11 Thread Emerson Cargnin - SICREDI Serviços
Matthew Baird wrote: this has been asked a bunch of times. I think the answer is no one is working on it (support dropped, I don't know). Instructions exist to do the integration yourself which I'm looking through. From what I can tell it's not trivial, but do-able. you mean there won't

[JBoss-user] Startup stability

2002-09-11 Thread LaBanca, Rick
Now this may not be jboss specific, but the problem arose on just this (vs resin). I start jboss and my app begins to deploy. It takes a while. Somewhere in there, jetty sees my setting to map the app to root and does it. This gets done before my app is done deploying. If I hit the website

[JBoss-user] building new jboss-net.sar

2002-09-11 Thread Emily Short
Hi all, Id like to deploy Axis with tomcat on jboss4.0.0alpha now that Axis RC1 is integrating. Im trying to rebuild the jboss-net.sar to use Catalina, but having difficulty because it seems like things have changed since Bruce posted this http://www.csd.abdn.ac.uk/~bscharla/soap.html.

RE: [JBoss-user] bundled tomcat version of 3.0.2

2002-09-11 Thread Matthew Baird
no not speaking for jboss group at all, just saying the questions been brought up and hte only response has been to build it yourself. I know JBoss group favors the jboss/jetty over jboss/tomcat bundling. m -Original Message- From: Emerson Cargnin - SICREDI Serviços [mailto:[EMAIL

Re: [JBoss-user] bundled tomcat version of 3.0.2

2002-09-11 Thread David Jencks
We plan to continue to support jboss-tomcat, it's just that we all only have so much time and Scott in particular who has done the previous integrations has been extremely busy lately. david jencks On 2002.09.11 17:56:42 -0400 Matthew Baird wrote: no not speaking for jboss group at all, just

[JBoss-user] Re: JBoss.net - how to deploy web services

2002-09-11 Thread matthew . james
Message: 2 From: Jung , Dr. Christoph [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Subject: AW: [JBoss-user] JBoss.net - how to deploy web services Date: Wed, 11 Sep 2002 08:36:51 +0200 Reply-To: [EMAIL PROTECTED] The could not redeploy problem was a bug that has

Re: [JBoss-user] bundled tomcat version of 3.0.2

2002-09-11 Thread Emerson Cargnin - SICREDI Serviços
nice to hear that, but meanwhile, could someone expert at jetty tell me where can I configure the bindaddress, or it is not possible? thanks David Jencks wrote: We plan to continue to support jboss-tomcat, it's just that we all only have so much time and Scott in particular who has done the

RE: [JBoss-user] bundled tomcat version of 3.0.2

2002-09-11 Thread Matthew Baird
if I finish before he has a chance to look at it, should I post it to someone? Thanks for this insight, btw. -Original Message- From: David Jencks [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 3:20 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] bundled tomcat

Re: [JBoss-user] bundled tomcat version of 3.0.2

2002-09-11 Thread Emerson Cargnin - SICREDI Serviços
thanks a lot stark... Scott M Stark wrote: I just put out a jboss-3.0.2_tomcat-4.0.4 bundle on sourceforge. The Jetty listener bind address can be configured via an Address attribute: Call name=addListener Arg New class=org.mortbay.http.SocketListener Set name=Port80/Set

[JBoss-user] Illegal Lock usage UCL error

2002-09-11 Thread Jason Westra
Hi! We are porting an app from one app server to Jboss. The app starts its own threads (actually subclasses of threads), and each maintains state during the course of its lifetime (thus MDBs were not used since they are essentially stateless). Also, the thread does no synchronized method

[JBoss-user] help for ejb test with jboss

2002-09-11 Thread sunlie
hello, i wrote some ejb beans run on jboss-3.0.1_tomcat-4.0.4, but i want to do some testing on them , so i check out the jbosstest, but in class JBossTestServices.java , i don't know where "jbosstest.deploy.dir" is ,and i also can't build them for my not knowing about buildmagic ,how

Re: [JBoss-user] help for ejb test with jboss

2002-09-11 Thread David Jencks
testsuite (in cvs jbosstest) is the internal jboss test suite. It's not really intended to make it easy to test your ejbs, although you might be able to adapt some of it. If you want to experiment the best way is to check out jboss-all with the branch you are interested in (Branch_3_0,

[JBoss-user] No Managed Connection problem solved

2002-09-11 Thread Arijit Ghosh
Hi, This code is part of Castor -- DatabaseImpl.java file. It solves the No Managed Connection problem that I was facing with Jboss 3.0. Thanks everyone. Regards, Arijit --- I assume _ctx is a jdbc connection? This looks like exactly the code needed for operation in a managed

[JBoss-user] Transaction RollBack -- Jboss 3.0

2002-09-11 Thread Arijit Ghosh
I am getting the following Transaction RollBack Exception. Please help. 2002-09-12 11:24:02,030 ERROR [org.jboss.jdo.castor.CastorJDOImpl] Exception java.lang.IllegalStateException: Transaction org.exolab.castor.jdo.engine.TransactionContextImpl@26b16f does not hold the read lock: