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

2002-09-10 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] JBoss

RE: [JBoss-user] Jboss Clustering Failover Test

2002-09-10 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

[JBoss-user] Chaining login modules

2002-09-10 Thread Gavin Hughes
Title: Chaining login modules I'm trying to set up a chain of login modules to support authenticating users accessing a web application. I can get the UsersRolesLoginModule to work fine, but I'm now trying to chain this with the DatabaseServerLoginModule, with little success. If I attempt t

[JBoss-user] Jboss Clustering Failover Test

2002-09-10 Thread binit
Hello,     Could any body help me out ,to let me know how to test the clustering feature ,failover mechanism provided in jboss3.0.2   I have successfully deployed my beans,and have started two clusters which are visible to each other ,but I am not able to test whether both the server works f

Re: [JBoss-user] 3.0.2 error

2002-09-10 Thread Jon Haugsand
* Asgeir Østerhus > I had a similar problem in 3.0.1. > > Check the Log4j Initialization section in jboss-service.xml. > If the ConfigurationURL is not commented out, try commenting it out. Worked > for me Well, actually, my solution was even simpler. The JBOSS_DIST (and JBOSS_HOME) pointed

[JBoss-user] JBoss 3.0.x init script for debian

2002-09-10 Thread Jon Brisbin
Since I'm running debian, the included init script with JBoss 3.0.x didn't work on my (woody) box. Didn't have time to figure out why, excatly, so I just wrote my own that works a little differently. It's pretty straightforward. Basic init features like start, stop, and status are supported (no

[JBoss-user] Custom authorization

2002-09-10 Thread Jim Crossley
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. The J2EE role-based security mechanism cannot enforce that rule. Afte

Re: [JBoss-user] build error jboss 4.0.0alpha

2002-09-10 Thread David Jencks
I don't have any ideas right now. Check the syntax for windows. A couple of modules had out of memory errors that I fixed by putting the suggested ANT_OPTS=-Xmx640m in build.sh. Hmmm. I forgot to try to update the build.bat files this way. Did you change this line in build/build.bat to set A

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

2002-09-10 Thread matthew . james
> Message: 6 > Date: Tue, 10 Sep 2002 16:57:19 -0700 > From: Greg Turner <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Re: [JBoss-user] JBoss.net - how to deploy web services > Reply-To: [EMAIL PROTECTED] > > Hmm. Using JBoss 3.0.1, I tried deploying an ear file with just a wsr > and I

[JBoss-user] build error jboss 4.0.0alpha

2002-09-10 Thread Emily Short
I got the build.xml fixes from cvs, but now when I build (with jdk1.4.0) I get this error: docs-todo: [mkdir] Created dir: C:\jboss-src\jboss-all\jmx\output\todo [execmodules] Running [execmodules] Create info lists for todo tags [execmodules] (TemplateEngine.invokeMethod 515 ) Invok

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

2002-09-10 Thread Greg Turner
Hmm. Using JBoss 3.0.1, I tried deploying an ear file with just a wsr and I tried deploying just the wsr, and in both cases I do get error message in log file. Are you sure you got no errors? [EMAIL PROTECTED] wrote: > I am trying to understand the different deployment options for web services

Re: [JBoss-user] Jboss 2.4.6 transactions

2002-09-10 Thread Bruce Snyder
This one time, at band camp, David Jencks said: DJ>etc. I think if you turn up logging high enough you will see what the tx DJ>manager is doing, I've been trying to do this and I can't find a configuration that will print logging at this level for the tx manager. Can anyone suggest a configura

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

2002-09-10 Thread matthew . james
I am trying to understand the different deployment options for web services using JBoss.net and am getting a bit lost. I have tried the JBoss.net forum but haven't gotten any feedback. I am using the example from http://www.csd.abdn.ac.uk/~bscharla/soap.html (thanks Bruce :-) and this is wor

RE: [JBoss-user] Jboss 2.4.6 transactions

2002-09-10 Thread Dat Nguyen
Cool beans. I was making direct calls instead of going through the remote interface and not giving the container a chance to intercede... Thanks! Dat Nguyen Office: 212.968.4178 Cell: 732.690.9117 -Original Message- From: David Jencks [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September

[JBoss-user] Multitiered architectures for Java desktop applications

2002-09-10 Thread Dimitri Pissarenko
Hello! Some time ago there was a discussion on this mailing list about the applicability of JBoss as a basis for a framework for development of Java desktop applications. As a first step I've written a small example app which was launchable from a JBoss server (see http://www.geocities.com/dapis

Re: [JBoss-user] Jboss 2.4.6 transactions

2002-09-10 Thread David Jencks
As long as you are calling B and C through the remote interface (or local interface) and not directly on the bean class, your expectations are correct. If you call the bean methods directly, everything is executed as "A" NotSupported with no tx. Your work may then be autocommitted (unlikely) or j

RE: [JBoss-user] Jboss 2.4.6 transactions

2002-09-10 Thread Dat Nguyen
Reread the spec.  It looks like this is the expected behavior...  Since these method calls are within the same bean, the container doesn't intercept and do all its magic ;)   Dat Nguyen Office: 212.968.4178 Cell: 732.690.9117 -Original Message-From: Dat Nguyen [mailto:[EMAIL P

[JBoss-user] Jboss 2.4.6 transactions

2002-09-10 Thread Dat Nguyen
I suppose this question goes to who ever implemented ejb transactions on Jboss2.4.6   How does jboss associate transactions with an ejb?  Lets say for example I have the following scenario:   If I have 1 stateless session bean running under container managed transactions with 3 methods (A,

[JBoss-user] LdapLoginModule Bug: Problem with empty passwords

2002-09-10 Thread Robert Dingwell
Using the LdapLoginModule, supplying an empty password for a user causes an anonymous bind to happen. This is documented in the JNDI documentation here http://java.sun.com/products/jndi/tutorial/ldap/faq/context.html. Read the section [ Why does the LDAP provider ignore my security environment p

Re: [JBoss-user] Jboss for Dummies

2002-09-10 Thread Jules Gosnell
it must be targeted at managers Reynir Hübner wrote: > I wonder why anyone who doesn't know where to get jdk from sun should > want to deploy EJBs.. in J2EE.. I mean isn't that a little complicated > for someone that hasn't used java before ? > > just a thought.. :) > > > > >

RE: [JBoss-user] Jboss for Dummies

2002-09-10 Thread Nicholas
It looks pretty good to me. Away with your snide remarks ! //Nicholas --- Reynir_Hübner <[EMAIL PROTECTED]> wrote: > I wonder why anyone who doesn't know where to get > jdk from sun should want to deploy EJBs.. in J2EE.. > I mean isn't that a little complicated for someone > that hasn't used j

RE: [JBoss-user] Jboss for Dummies

2002-09-10 Thread Reynir Hübner
I wonder why anyone who doesn't know where to get jdk from sun should want to deploy EJBs.. in J2EE.. I mean isn't that a little complicated for someone that hasn't used java before ?   just a thought.. :)       -Original Message-From: Daniel Maher [mailto:[EMAIL PROTECTED]]Sen

[JBoss-user] Jboss for Dummies

2002-09-10 Thread Daniel Maher
I have started a rough site for absolute JBoss beginners: http://sammaher.com/jboss Thanks, Toastchum     www.sammaher.com http://toastchum.blogspot.com/  Yahoo! - We Remember 9-11: A tribute to the more than 3,000 lives lost

Re: [JBoss-user] Jetty and Container Managed Auth

2002-09-10 Thread Jules Gosnell
That looks like an error from my distributable HttpSession implementation Are you putting something that is not one of erializable,EJBObject,EJBHome,UserTransaction or Context into an HttpSession ? Is your servlet marked in it's web.xml ? That's your problem. Jules Brian Topping wro

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

2002-09-10 Thread Dan Christopherson
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 manually. Oh, well.

[JBoss-user] JMX and ear-scope

2002-09-10 Thread Michael Bartmann
Suppose I have two classes ClassA (an MBean) and ClassB (implements Serializable). Both classes live inside an ear-scope. There is an instance of ClassA which is registered with the JMX-server. ClassA has a method "void m(ClassB b)". This method m is called through an RMIAdaptor from an other JVM

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

2002-09-10 Thread Greg Turner
Kevin, Not sure what you are getting at.  Typically, in the design phase, if you know you will be looking up records according to some field, you set up the database to index on that field.  When the database receives a query it is smart enough to recognize when a lookup is being done on an index

RE: [JBoss-user] Integrate JBOSS with Tomcat 4.1.0 - single VM?

2002-09-10 Thread Matthew Baird
thanks sacha, I did try it, but I ran into some problems and figured 4.1 line of Tomcat must have changed. I'll put some more time into it. -Original Message- From: Sacha Labourey [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 9:01 AM To: [EMAIL PROTECTED] Subject: RE: [JBo

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

2002-09-10 Thread Anthony Geoghegan
EJBQL (CMP 2.0) does not support ORDER BY statements. Thus, I don't believe you can index a finder method in standard EJBQL. The various JBoss specific QL overrides though support it (e.g.. JBossQL). Is this what you mean? Best Regards, Anthony Geoghegan. J2EE Developer CPS Ireland Ltd. - Ori

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

2002-09-10 Thread Dain Sundstrom
Can you be way more specific? What exactly would you want? Different SQL generated? Different default tables? -dain Kevin Conner wrote: >>I have a simple question which I hope will have a simple answer :-) >> >>I have been going through the jboss 3.0.2 source to try and find out >>if there i

Re: [JBoss-user] interceptor design question

2002-09-10 Thread Dain Sundstrom
Beau Cronin wrote: > > > Dain Sundstrom wrote: > >> Beau Cronin wrote: >> >>> Questions: >>> >>> 1. Is this a reasonable thing to do, or am I missing something? >> >> >> >> Sure, but it sounds like a lot of work. I hope it pays off for you. > > > > Why will this be a lot of work? I mean, a

[JBoss-user] RE: Indexing of finders

2002-09-10 Thread Kevin Conner
> I have a simple question which I hope will have a simple answer :-) > > I have been going through the jboss 3.0.2 source to try and find out > if there is any way to enable indexing for finder methods. So far I > have been unable to find any mechanism for achieving this. > > Can anyone tell m

[JBoss-user] Indexing of finders

2002-09-10 Thread Kevin Conner
I have a simple question which I hope will have a simple answer :-) I have been going through the jboss 3.0.2 source to try and find out if there is any way to enable indexing for finder methods. So far I have been unable to find any mechanism for achieving this. Can anyone tell me if this is p

Re: [JBoss-user] interceptor design question

2002-09-10 Thread Beau Cronin
Dain Sundstrom wrote: > Beau Cronin wrote: > >> Questions: >> >> 1. Is this a reasonable thing to do, or am I missing something? > > > Sure, but it sounds like a lot of work. I hope it pays off for you. Why will this be a lot of work? I mean, aside from the logic and data structures nec

[JBoss-user] Question on clustering

2002-09-10 Thread Kim, Yong
I am trying to set up 3 different environments, development, qa, and production right now w/ clustering enabled and I decided to use different PARTITIONs for each environment so that they interfere with each other. For example, development environment belongs to DevelopmentPartition instead of De

RE: [JBoss-user] Integrate JBOSS with Tomcat 4.1.0 - single VM?

2002-09-10 Thread Sacha Labourey
Hello, > If the process for producing this > particular configuration for JBoss were either documented, or at least > more explicitly stated, people might choose to prepare their own > distribution or to tweak an existing JBoss build to include tomcat. I think this is indeed explicitely stated i

Re: [JBoss-user] Integrate JBOSS with Tomcat 4.1.0 - single VM?

2002-09-10 Thread Javier A. Soltero
I second this request. I've been waiting for a 3.0.2 release which includes Catalina 4.0.3 (along with serveral other folks on the list) and there has been no response. If the process for producing this particular configuration for JBoss were either documented, or at least more explicitly stat

[JBoss-user] Re: JBoss-user digest, Vol 1 #2997 - 14 msgs

2002-09-10 Thread sudhendra seshachala
Hi there Is there any way to speed up the deployment in Jboss 3.0.2 It takes 4 MINUTES to Deploy the WAR. deployment of jar is just fine. Can you suggest any remedy for this. uncompresed WAR is 16MB. Even compressing WAR did not not help Unpacked WAR did not help either. Thanks sudhi = God B

Re: [JBoss-user] Error When Starting JBoss 3.0.2

2002-09-10 Thread Neal Sanche
You might be already running a Java service that uses an RMI registry. That's the port that is in use already. If you need to run more than one registry, search for 1099 in the conf/ directory, and replace it with some other port, like 2099, or 10990, and then start up JBoss. Just remember you

[JBoss-user] Instance pool metrics

2002-09-10 Thread Diego Castillo
Is it possible to have instance pool metrics for EJBs via one of the default MBeans? Which one? --- This sf.net email is sponsored by: OSDN - Tired of that same old cell phone? Get a new here for FREE! https://www.inphonic.com/r.asp?r=sourcef

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

2002-09-10 Thread David Jencks
I assume _ctx is a jdbc connection? This looks like exactly the code needed for operation in a managed environment (actually I'm not sure about the rollback, but that's a different question). Is this code part of Castor or the jboss Castor plugin? thanks david jencks On 2002.09.10 06:08:00 -04

Re: [JBoss-user] JBoss 3.0.2 Error Using MySQL

2002-09-10 Thread David Jencks
Start with an up to date for 3.0.2 example mysql-service.xml file, such as the one included with 3.0.2. You appear to have one from about last march. The Minerva local tx adapter has been gone since about then. Where did you find it? Perhaps I can remove the reference to help others avoid this

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

2002-09-10 Thread Andrew
Hi, I can't simple investigate cause of strange behavior of Castor0.9.3.21 in JBoss for now but you can change close() method in DatabaseImpl.java to something like: public synchronized void close() throws PersistenceException { try { if ( _transaction == nul

Re: [JBoss-user] Incomplete deployment

2002-09-10 Thread Simon Stewart
On Mon, Sep 09, 2002 at 02:03:16PM -0400, David Jencks wrote: > I havent tried jdom 8. Earlier (7?) versions had info.xml I think. Jboss > assumes xml file in META-INF is a deployment descriptor and waits for a > deployer that understands it. info.xml is still there, so that's probably the caus

[JBoss-user] JBoss 3.0.2 Error Using MySQL

2002-09-10 Thread Phuwarin . Supawarapong
I got this error message when deploy the application. Where/What should I check? 13:18:55,197 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.0.2/server/ default/deploy/occs.ear 13:18:55,207 ERROR [URLDeploymentScanner] MBeanException: Exception in MBean ope ration 'checkIncompleteDeplo

Re: [JBoss-user] 3.0.2 error

2002-09-10 Thread Asgeir Østerhus
I had a similar problem in 3.0.1. Check the Log4j Initialization section in jboss-service.xml. If the ConfigurationURL is not commented out, try commenting it out. Worked for me 8-) Asgeir - Original Message - From: "Jon Haugsand" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tu

Re: [JBoss-user] Jetty and Container Managed Auth - SAME TO ME!

2002-09-10 Thread kiuma
--- This sf.net email is sponsored by: OSDN - Tired of that same old cell phone? Get a new here for FREE! https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 ___ JBoss-user mailing list [

AW: [JBoss-user] Axis Question

2002-09-10 Thread Jung , Dr. Christoph
You hit the jboss.net web service transport servlet (see http://xml.apache.org/axis). CGJ -Ursprüngliche Nachricht- Von: Raúl Mateos [mailto:[EMAIL PROTECTED]] Gesendet: Montag, 9. September 2002 19:07 An: Jboss User Betreff: [JBoss-user] Axis Question Where do I go with: http://local

[JBoss-user] Jetty and Container Managed Auth

2002-09-10 Thread Brian Topping
Hi all, Is there anything special that I have to do to set up Container Managed Authentication on Jetty besides setting up the security realm and making sure that my application web descriptor points to it? An application that works fine under Tomcat, but no dice under Jetty. The error that I g