AW: [JBoss-user] building and deploying jboss-net.sar

2002-06-04 Thread Jung , Dr. Christoph
You do not have to copy over the jboss-net.sar when you use the jboss-all/build/build.bat ... That is done for you. Only if you use the local jboss-all/jboss.net/build.bat, you have to copy it by yourself. But yes, simply dropping a sar into The deploy folder of jboss is the way to deploy things w

[JBoss-user] MBeans and dynamic queues

2002-06-04 Thread G.L. Grobe
I'm creating a dynamic queue according to the docs and am not sure of several things after looking up the MBean ...   MBeanServer server = (MBeanServer)    MBeanServerFactory.findMBeanServer(null).iterator().next();   server.invoke(new ObjectName("JBossMQ", "serv

[JBoss-user] JBoss 3.0.0 Final Bug

2002-06-04 Thread L. Yeung
Hi! I've downloaded the precompiled version 3.0 of jboss and tried to deploy my simple jar file which contains a session bean (facade for the entity bean) and an entity bean. On my client side, it threw this exception. Is this a JBoss3.0 BUG??? [java] java.lang.NoClassDefFoundError: org/jbos

Re: [JBoss-user] DLQ not bound ?

2002-06-04 Thread G.L. Grobe
Ok, I did miss one called DLQ. Forget I ever posted.  - Original Message - From: G.L. Grobe To: [EMAIL PROTECTED] Sent: Tuesday, June 04, 2002 10:56 PM Subject: [JBoss-user] DLQ not bound ? When deploying my application (in 2.4.4 w/ Tomcat 4.0.1), anyon

Re: [JBoss-user] JBoss 2.4.6 JMS Socket Leak

2002-06-04 Thread Neal Sanche
In my original setup, the sender is a 'TimerService'. A simple JMX bean that wakes up every so often and sends a JMS message to a particular queue. This allows my EJBs to perform tasks at particular intervals. I've written a modem pool that dials out to devices in the field, and polls them for

RE: [JBoss-user] JBoss 2.4.6 JMS Socket Leak

2002-06-04 Thread Boris Shpungin
Title: RE: [JBoss-user] JBoss 2.4.6 JMS Socket Leak Hmmm.  I'm not a JBoss developer exactly (I'm a "user"), so I probably can't help you a great deal here.  Though your problem worries me since we are using JMS with JBoss as well. This is another wild guess, but maybe JBoss has some sort of

[JBoss-user] DLQ not bound ?

2002-06-04 Thread G.L. Grobe
When deploying my application (in 2.4.4 w/ Tomcat 4.0.1), anyone have an idea of what the following means. This was deploying successfully. I got this after deleting example topics/queues from the jboss.jcml file like testTopic, example, bob, A, B, C ... I went over it and diff'd it from the

[JBoss-user] JBoss3, Static web pages and SSL servlets

2002-06-04 Thread Mark Lassau
I wish to use JBoss3 for a web application that needs to be able to serve static web pages as well as servlets. The static web pages need to be maintainable after the installation of the Application, so including them in the .war is impractible. Also the servlets must be able to be transported ove

Re: [JBoss-user] Adding a context programmatically in Jetty Service

2002-06-04 Thread Neal Sanche
I back up what Jules has said, and add this: Netbeans 3.3.1 has integrated support for building and managing the filesystems of WAR files. It can even test those WAR files with the Tomcat software... I'd thought a few times about figuring out how to get JBoss to work with that system, but tha

Re: [JBoss-user] JBoss 2.4.6 JMS Socket Leak

2002-06-04 Thread Neal Sanche
Well, some more information that I found interesting this evening. I thought I'd add it to this list as well. I have a pure Java client that has a method very similar to that shown below. All it does is send a message to a topic that a Message Driven Bean is listening on. The message driven be

Re: [JBoss-user] How to configure

2002-06-04 Thread Burkhard Vogel
Hi, RTFM... 1. Drop MySQL Driver into lib/ext 2. Add the org.gjt.mm.mysql.Driver to the sectiion of jboss.jcml (the one in the conf you are using conf/default if you just issue a "run" or conf/jetty or conf/tomcat if you are doing a "run_with_eitherOfTomcatOrJetty" 3. add the following below th

Re: [JBoss-user] I *don't* want a WAR!

2002-06-04 Thread Brandon Knitter
What about with other version (3.0, etc.). Is there a different way? I've not found anything documented, so I'm still hunting...but I did read something, somewhere, perhaps an email thread? -- -bk Quoting Jules Gosnell <[EMAIL PROTECTED]>: > If you are using 2.4.x then I think that this is

Re: [JBoss-user] Adding a context programmatically in Jetty Service

2002-06-04 Thread Jules Gosnell
The war route is meant to be the simple route It goes like this. Pre-servlet 2.2. spec, the way that a servlet was packaged and deployed was not described at all. Each webcontainer dreamt up it's own unique configuration mechanism for doing this. With Servlet 2.2 we finally saw the light

[JBoss-user] Re: JBoss and SSL

2002-06-04 Thread Guy Rouillier
I followed this example (after upgrading from 2.4.3 to 2.4.6 - the org.jboss.security.ssl.RMI* classes are not in 2.4.3). Unfortunately, when I deploy a simple EJB with it jboss.xml configured as described below, I receive the following exception: [18:07:02,479,DomainServerSocketFactory] Failed

[JBoss-user] Adding a context programmatically in Jetty Service

2002-06-04 Thread Julien Viet
Hi all,    I would like to add programmatically a Context to the Jetty Web server in my MBean. I see a method addContext(..,..) in jboss.web:Jetty=0 MBean but I don't see some methods to remove that context later when my MBean will unregister.    I don't want to create a .war on the disk and

[JBoss-user] JBossMQ Persistence Manager

2002-06-04 Thread SM Muk
Hi, Is there any way for me to disable the persistence? When I set the persistence manager to file instead of rollinglogged, I seem to have a weird situation whereby my incoming queue seems to retain all the messages but my messages on my outgoing queue which are picked up by an external applicat

Re: [JBoss-user] .sar file info

2002-06-04 Thread David Jencks
Good description except your mbeans don't have to use the jboss service lifecycle, you just have to be a little careful if they don't. (don't use resources such as jndi on creation/attribute setting, jndi might not be running yet). .rar is resource adapter archive, described in the jca spec, it i

Re: [JBoss-user] JBoss 3.0.0 final minimal conf.

2002-06-04 Thread Jules Gosnell
Jules Gosnell wrote: > I've just tried something related. > > 1. There is already a configuration called 'minimal' - use something else. > > 2. using 'run.sh ' doesn't seem to work - so > something must have changed. use run.sh --configuration Jules > > Next time I'll check before I post

Re: [JBoss-user] JBoss 3.0.0 final minimal conf.

2002-06-04 Thread Jules Gosnell
I've just tried something related. 1. There is already a configuration called 'minimal' - use something else. 2. using 'run.sh ' doesn't seem to work - so something must have changed. Next time I'll check before I post - sorry. Jules Jules Gosnell wrote: > Take a copy of JBoss3 > > copy

Re: [JBoss-user] JBoss 3.0 - JCA getConnection throws NullPointerException

2002-06-04 Thread David Jencks
Whats the stack trace. On 2002.06.04 17:59:06 -0400 guest dontcare wrote: > Hi, > In 3.0 I've got NullPointerException trying to create > a connection to one of my JCA resources, called Log > This was working fine in 3.0 RC3 > Here is the client (running as an EJB): > . > LoggerFa

Re: [JBoss-user] JBoss and Java Webstart ?

2002-06-04 Thread Tobias Frech
Jim, (others please correct me if I am wrong here) the "master server" is that tiny micro kernel you downloaded. You start it and it gets everything else it needs from the URL you provided in the config. The micro kernel does not mind if the files come from a local filesystem or via the network.

Re: [JBoss-user] I *don't* want a WAR!

2002-06-04 Thread Jules Gosnell
If you are using 2.4.x then I think that this is the way - suck it and see... Jules Brandon Knitter wrote: > From: Brandon Knitter <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED], > Jules Gosnell <[EMAIL PROTECTED]> > Subject: Re: [JBoss-user] Deploy an EJB *without* a jar, war, or ear?

Re: [JBoss-user] Using JBoss JAAS from a stand-alone

2002-06-04 Thread Neal Sanche
On June 4, 2002 06:20 pm, you wrote: > When trying to use container manged security, using stand-alone client , it > seems that the server is not restricting the access of methods. I have > three methods and 2 roles. In jetty it works fine but in stand-alone every > user has access to every method

Re: [JBoss-user] JBoss 2.4.6 JMS Socket Leak

2002-06-04 Thread Neal Sanche
Thanks for that, but... Well, the messages in this case are only happening once per minute, and yet managed to cause all of the sockets on a machine to be occupied within the span of a couple of weeks. I think I stabilized things a little by using CLIENT_ACKNOWLEDGE mode for all of my message

[JBoss-user] LDAPLoginModule and login-config.xml setup

2002-06-04 Thread Fee Ling Chin
Hello, I am desperate: Does anyone know how to configure login-config.xml to use the LDAPLoginModule in Jboss 3.0? I don't think Jboss 3 uses my LDAP settings in auth.conf. I got around the above problem by writing a custom LDAP login module. I was able to authenticate my LDAP users but as so

[JBoss-user] Using JBoss JAAS from a stand-alone

2002-06-04 Thread Emerson Cargnin - MSA
When trying to use container manged security, using stand-alone client , it seems that the server is not restricting the access of methods. I have three methods and 2 roles. In jetty it works fine but in stand-alone every user has access to every method. The authentication works fine, but is

[JBoss-user] JBoss 3.0 - JCA getConnection throws NullPointerException

2002-06-04 Thread guest dontcare
Hi, In 3.0 I've got NullPointerException trying to create a connection to one of my JCA resources, called Log This was working fine in 3.0 RC3 Here is the client (running as an EJB): . LoggerFactoryImpl loggerFactory = (LoggerFactoryImpl)initialContext.lookup("java:/Log"); logger =

[JBoss-user] Disconnection and reconnection to Jboss

2002-06-04 Thread Chris Chen
Hi, I'm just curious how I can make my application more robust in handling failures. 1) I keep a reference to the Home Interface so that i don't have to constantly do a lookup for the Home interface. Is that a good idea and does it actually increase performance? 2) What happens when I upgra

Re: [JBoss-user] .sar file info

2002-06-04 Thread Jules Gosnell
AFAIK a .sar is a [JMX]S[ervice]AR[chive]. It's a jar file. you put a dd in /META-INF called jboss-service.xml you put your other deployables (jars, wars, etc...) in / you root your class hierarchy in / (e.g. /com/acme/MyClass.class) you drop it into the deploy directory (either packed into a j

Re: [JBoss-user] Code generation Utilty

2002-06-04 Thread Sundaram Ramasamy
Thanks, This tool also use full. http://sourceforge.net/projects/jbossdruid/ -SR - Original Message - From: "Marius Kotsbak" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 31, 2002 2:26 PM Subject: Re: [JBoss-user] Code generation Utilty > Xdoclet have some links to pro

Re: [JBoss-user] JBoss 3.0.0 final minimal conf.

2002-06-04 Thread Jules Gosnell
Take a copy of JBoss3 copy the default directory to e.g. minimal run it up using e.g. ./run.sh minimal (it should run the config in 'minimal') run a test of what you want to be able to do. start taking dds out of the minimal/.../deploy directory and reruning your test - jboss will remove the

[JBoss-user] I *don't* want a WAR!

2002-06-04 Thread Brandon Knitter
From: Brandon Knitter <[EMAIL PROTECTED]> To: [EMAIL PROTECTED], Jules Gosnell <[EMAIL PROTECTED]> Subject: Re: [JBoss-user] Deploy an EJB *without* a jar, war, or ear? Date: Tue, 4 Jun 2002 12:18:18 -0700 Cool, now...how do I point JBoss to my directory? :) I come from a Resin (Caucho

Re: [JBoss-user] Redeployment problems + SAR question

2002-06-04 Thread Marius Kotsbak
On tir, 2002-06-04 at 23:12, David Jencks wrote: > On 2002.06.04 17:00:24 -0400 wonder sonic wrote: > > -1- > > Thanks for the hint of the jdk 1.4 VM :) > > One thing: if you can, use only Local > > interfaces :( > > > > -2- > > Has anyone heard of a cool tutorial about writing SAR? > > (I mean

[JBoss-user] NEWBIE: CMP2 and Hypersonic SQL

2002-06-04 Thread John-Luc Bakker
Folks, I tried the tutorial on "http://iris.cs.byu.edu/tim/462/tutorial/tutorial.html";. This tutorial is based on an earlier version of Jboss (I have 3.0.0) and uses mySQL as opposed to Hypersonic. Now, I did the tutorial with Hypersonic and it failed ... basically, I adjusted the following:

Re: [JBoss-user] Redeployment problems + SAR question

2002-06-04 Thread David Jencks
On 2002.06.04 17:00:24 -0400 wonder sonic wrote: > -1- > Thanks for the hint of the jdk 1.4 VM :) > One thing: if you can, use only Local > interfaces :( > > -2- > Has anyone heard of a cool tutorial about writing SAR? > (I mean which details all the steps..., like the CMP > 2.0/JBoss 3.0 one :

Re: [JBoss-user] Redeployment problems + SAR question

2002-06-04 Thread wonder sonic
-1- Thanks for the hint of the jdk 1.4 VM :) One thing: if you can, use only Local interfaces :( -2- Has anyone heard of a cool tutorial about writing SAR? (I mean which details all the steps..., like the CMP 2.0/JBoss 3.0 one :) ) Wonder Sonic --- Marius Kotsbak <[EMAIL PROTECTED]> a écrit 

RE: [JBoss-user] JBoss and Java Webstart ?

2002-06-04 Thread Wendell Beckwith
I was not aware about netboot and it does show some promise. However I'm not sure it solves the situation I'm looking at. I need/want to install it so that jboss can be kicked off from within java webstart and be told where it's config is on the file system. It can't download from a HTTP url si

[JBoss-user] CMP Field Mapping and Query

2002-06-04 Thread David Russell
After great success with creating a number of CMP beans in 3.0.0, I have finally run into a snag. I have a number of CMP EEJBs that I've created that are set to create their own tables, etc. Those all seem to work fine. I then attempted to implement a new bean to access information in an exi

Re: [JBoss-user] deployment on 3.0 release

2002-06-04 Thread David Jencks
Well, are the normal deployers such as EjbDeployer deployed and started? A jar without an ejb-jar file should be deployed by the JarDeployer, with an ejb-jar file by the EjbDeployer. Check that everything seems ok with the mbeans, look at port 8082. david jencks On 2002.06.04 16:21:39 -0400 Gar

[JBoss-user] javax.crypto.BadPaddingException: Given final block not properlypadded

2002-06-04 Thread Mahesh Agarwal
Hi All Sometime I get the exception "javax.crypto.BadPaddingException: Given final block not properly padded" when i try to view one record which has some encrypted field. But its not repeatable when I try to view the same record. Any idea why this exception occur rarely?   Thanks a lot in a

RE: [JBoss-user] building and deploying jboss-net.sar (solved partially)

2002-06-04 Thread Matt Munz
Hi again, I was able to deploy the files by adding javax.servlet.jar to the /lib directory. I'm still curious why the build script didn't work, however, so if anyone knows what the "correct" build/deploy technique is, please share that info. - Matt -Original Message- From: [EMAIL P

Re: [JBoss-user] Redeployment problems

2002-06-04 Thread Marius Kotsbak
It is a reported bug. A workaround seems to avoid running jboss on 1.4 VM. On tir, 2002-06-04 at 22:11, Eric Anderson wrote: > I am currently just working on a test app to experiment with JBoss. This > test app is an ear file that consists of: > > A ejb bean which is the interest example from th

[JBoss-user] deployment on 3.0 release

2002-06-04 Thread Gary S. Cuozzo
Hello all, I've got an app that I developed using JBoss3.0Beta and am trying to deploy it on 3.0 release but am having some issues. I don't really get an error, the log just says: "15:56:00,398 INFO [MainDeployer] Deployment of package: file:/usr/local/jboss-3.0.0_tomcat-4.0.3/server/d

[JBoss-user] Redeployment problems

2002-06-04 Thread Eric Anderson
I am currently just working on a test app to experiment with JBoss. This test app is an ear file that consists of: A ejb bean which is the interest example from the online manual. The following is the ejb-jar.xml file for that ejb jar that contains the bean: Interest Example Int

RE: [JBoss-user] JBoss and Java Webstart ?

2002-06-04 Thread Jim Birchfield
The docs explain in detail about how to set up a new server using the demo site. Just a half paragraph explaining the structure of the demo site would be useful. Perhaps something like this. The centralized server should mimic the deployed structure of the JBoss application server. To set up a

RE: [JBoss-user] Higher Level Docs?

2002-06-04 Thread Mike Finn
Eric, Have you seen the quick start guide for 3.0? It's on the SF DL page @ http://prdownloads.sourceforge.net/jboss/JBoss.3.0QuickStart.pdf?download Some of this stuff is there. There is also some (though some "low level") at the volunteer HTML docs, which may be what you are taling about. OW, g

Re: [JBoss-user] newbie JMS question - this should be easy

2002-06-04 Thread Dave Smith
Look in server/default/deploy/jbossmq-destinations-service.xml for some examples .. On Tue, 2002-06-04 at 14:37, Tom Stockton wrote: > The forms are down, I've looked through the online doc for 3.0. I've > purchased the doc subscription. The documentation does not cover 3.0 jms (if > I'm wrong,

RE: [JBoss-user] JBoss and Java Webstart ?

2002-06-04 Thread Sacha Labourey
which part should be better mentionned ? Thank you for your feedback. Sometimes, when we have the head too deep in the hole, we don't see what is around ;) Cheers, Sacha > -Message d'origine- > De : [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]De la part de Ji

RE: [JBoss-user] JBoss and Java Webstart ?

2002-06-04 Thread Jim Birchfield
Yep, that's what I did. I started poking around and ran it and it works great! It would be nice if at least a paragraph was mentioned describing this as I don't think it is mentioned at all. James Birchfield Director, Application Development Genscape, Inc. (502) 583-2298 (o) (502) 639-3136 (c)

[JBoss-user] Virtual Host - tomcat - jboss.jcml

2002-06-04 Thread Cyrille Mertes
Hi.   Normally, I have no problem to create a virtual host in tomcat in standalone or in tomcat with apache (ajp13).   But now I want to create a virtual host with JBoss 2.4.6 /Tomcat-4.0.3.   For example if I use this virtual host in jboss.jcml :       verbosityLevel = "debug"

RE: [JBoss-user] JBoss and Java Webstart ?

2002-06-04 Thread Sacha Labourey
James, You'd better start looking at the doco and so on to get basic understanding of the boot process. The directory structure of the web server will be the same as the one of a standard JBoss distrib. Then, you can further refine the configuration file (such as the mbean definitions in jboss-s

[JBoss-user] JBoss 3.0 can't find javax/ejb/SessionBean?

2002-06-04 Thread R . Price
Trying to port my stuff into the JBoss 3.0 release build and get an exception that it can't find javax/ejb/SessionBean. I've got JBoss configured using the URLDirectoryScanner to see my exploded jar directory, ie:                                                 So, when it attempts to deploy

Re: [JBoss-user] Using Castor and JBoss 3.0

2002-06-04 Thread Frederick N. Brier
Well, first I haven't fully tested this yet.  It appears to load, but I haven't gotten around to testing whether the reading and writing of data actually works.  But here is what I have done so far  The Castor plug-in is in the ./jboss-all/varia directory.  From there do a "./build.sh" or "build.b

[JBoss-user] building and deploying jboss-net.sar

2002-06-04 Thread Matt Munz
Hi, I'm having some difficulty with this, and would appreciate any help. When I follow the instructions on http://www.jboss.org/developers/projects/jboss/dotnet.jsp , the jboss.net deployment files are copied over to the deploy folder, and subsequently deleted. When I do a default build, an

[JBoss-user] Higher Level Docs?

2002-06-04 Thread Eric Kaplan
All of the documentation regarding 3.0 configuration files is fairly low level. Is there a higher-level overview with answers to frequently asked questions? how do i set up an oracle datasource how can i manage the classpath used by the class-loader from within my beans how do i set up jms queue

RE: [JBoss-user] JBoss and Java Webstart ?

2002-06-04 Thread Jim Birchfield
Can an example be provided on what the directory structure of the webserver should look like? Is there a config file that needs to be generated? James Birchfield Director, Application Development Genscape, Inc. (502) 583-2298 (o) (502) 639-3136 (c) -Original Message- From: Sacha Labou

[JBoss-user] ejb and ssl

2002-06-04 Thread Rajesh Vishwanatha
Hi, can somebody help me...! Say I have a Java Class as SessionClient.java in TomcatServer which gets instantiated from a jsp file. And SessionClient.java makes the lookup and gets the remoteObject of MySessionBean.java (which is a session Bean ) running in Jboss. My Question is: is it possibl

Re: [JBoss-user] Deploy an EJB *without* a jar, war, or ear?

2002-06-04 Thread Brandon Knitter
Cool, now...how do I point JBoss to my directory? :) I come from a Resin (Caucho) background, so I know how to configure that, but the only thing I can see to configure is the deploy directory. Just to be clear, *exactly* which config file(s) do I need to modify to point the web/ejb container to

[JBoss-user] JNDI about Jboss

2002-06-04 Thread wqh
I want to learn JNDI,Can I practice it just use jboss?it was said that when the client run under the same VM as jboss,then we can ignore the parameter of the function InitialContext( empty parameter),but under other situation we must give these parameter explicitly.My action is first run

Re: [JBoss-user] (no subject)

2002-06-04 Thread Davide De Benedictis
I get exactly the same behaviour with the 2.4.6. Actually I read they solved on 3.0. If it still there, I think it's really a bug. But it's not reported. I hadn't the time to make a so clear report. You should signal it as a bug submitting your code. I'd really would like to see this solved Bye D

RE: [JBoss-user] JBoss and Java Webstart ?

2002-06-04 Thread Sacha Labourey
the remote server(s) are just http servers: yours to decide what you want to put where depending on the main configuration file your jboss instance will use. > -Message d'origine- > De : [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]De la part de Jim > Birchfield > Envoyé : mardi, 4 juin

Re: [JBoss-user] Deploy an EJB *without* a jar, war, or ear?

2002-06-04 Thread Jules Gosnell
I'm only really clued up on the web-container side of things, but I think everything else works the same way, Build your app into a directory structure that mirrors the war,ejb-jar or ear structure that you want, within the deploy directory. Each time you rebuild e.g. classes within the war, t

RE: [JBoss-user] JBoss and Java Webstart ?

2002-06-04 Thread Jim Birchfield
I have looked through the docs for netboot, and am a little confused. I see how to setup a remote server, but there seems to be no docs on how to set up the master server. Am I missing those? James Birchfield Director, Application Development Genscape, Inc. (502) 583-2298 (o) (502) 639-3136 (c)

Re: [JBoss-user] Serious performance issue in JBoss3/Tomcat4 bundle?

2002-06-04 Thread Jules Gosnell
Marius Kotsbak wrote: > On Tue, 2002-06-04 at 15:58, Håkon Hansen wrote: > >>On 04 Jun 2002 16:20:48 +0200 >>Marius Kotsbak <[EMAIL PROTECTED]> wrote: >> I know little about Jetty. How does it compare with Tomcat? Is it fully standards >compliant? Jetty is tested using jakarta-watchdog - a

Re: [JBoss-user] JBoss and Java Webstart ?

2002-06-04 Thread Jules Gosnell
Look at the netboot stuff - it hangs off the demo page on the website somewhere. I don't know much about WebStart, but it would probably wrap nicely around the netboot kernel. Jules Wendell Beckwith wrote: > Is it possible to install JBoss and execute it with java webstart? > Primarily I h

[JBoss-user] JBoss 3.0.0 final minimal conf.

2002-06-04 Thread Emerson Cargnin - MSA
I need to use a jboss server as a web container solely. That's because I need to use JAAS transparently to access my EJBs. I can see that jboss 3.0.0 has a minimal configuration. May I use this to have just a web-container with JBossSX, if not, it could be a good ideia to JBoss creators to

[JBoss-user] newbie JMS question - this should be easy

2002-06-04 Thread Tom Stockton
The forms are down, I've looked through the online doc for 3.0. I've purchased the doc subscription. The documentation does not cover 3.0 jms (if I'm wrong, point me the right direction). I want to set up a factory and destination for jms messaging. In the j2ee reference implementation, I did

[JBoss-user] problem of the document(External JNDI Configuration and JNDI Viewing)

2002-06-04 Thread wqh
It said that when want to use external JNDI server ,we must configure the file jboss.jcml.And I use Jboss3.0,where is the equivalent file that I can configure. And another question.There must be some internal JNDI server,Can I run it standalone?where is it locate at.Can I just use

Re: [JBoss-user] .sar file info

2002-06-04 Thread Chris Chen
Yea, It seems to be difficult to find any information regarding the SAR and RAR. I don't think I see any references to the DTD or description of the file formats in the JBoss Documentation (the subscription one). Can the description be added into the documentation? Thanks, Chris At 10:40 A

Re: [JBoss-user] [Simple question] CMP bean inheritance

2002-06-04 Thread Dain Sundstrom
Ricardo Argüello wrote: >>I don't recommend JDO. >> >>-dain >> > > Could you elaborate more on that, please? JDO is a cool idea. I think of JDO like ADO; it is easy to program against but is not a great persistence framework. One of the coolest things about ADO is the ability to program aga

[JBoss-user] .sar file info

2002-06-04 Thread Michael Klem
What is a .sar file? I have not been able to find anything conclusive about it. I come across "Store Archive" and "Search Archive". Where can I find how to construct one. ___ Don't miss the 2002 Sprint PCS Application Developer's Conf

[JBoss-user] (no subject)

2002-06-04 Thread Joshua D. Cough
I am trying to test acknowledgement, non-acknowledgement, and redelivery in JMS using JBoss3.0 Final. Unexpected results are occuring, including strange behavior and exceptions. I am sending and receiving from "queue/testQueue", which comes default with the JBoss setup. The code that I am usin

[JBoss-user] Using Castor and JBoss 3.0

2002-06-04 Thread Eric Anderson
I am having trouble trying to get information on how to use Castor in JBoss 3.0. The JBoss/CastorJDO page on the jboss.org site is a bit confusing. It says to download a zip file (that it links to), and extract the castor and xerces jars from taht file. But hte link just points to a jar. Then it

Re: [JBoss-user] [Simple question] CMP bean inheritance

2002-06-04 Thread Ricardo Argüello
> I don't recommend JDO. > > -dain Could you elaborate more on that, please? Thanks in advance! Ricardo Argüello -- Standard consultant disclaimer: "Or not." ___ Don't miss the 2002 Sprint PCS Application Developer's Conference

Re: [JBoss-user] CMP 2.0 With JBoss 3.0 Beta Tutorial

2002-06-04 Thread Ricardo Argüello
> Very helpful indeed! I didn't write this tutorial, I just found it while searching for "jboss" in Google... :-) I just found out that the tutorial is for JBoss 3.0.0 beta, and somethings have changed since then, mainly xml descriptors, and database configuration xml files. Keep that in min

Re: [JBoss-user] jboss 3.0 ConnectionManager

2002-06-04 Thread David Jencks
On 2002.06.04 11:24:08 -0400 "Sonnek, Ryan" wrote: > If a ConnectionManager is set to ByContainer, does that mean that each > connection to a datasource will attempt to use the JAAS stored principal > and > credentials to make that connection? > > So, if they access a restricted web resource, aut

RE: [JBoss-user] JBoss and Java Webstart ?

2002-06-04 Thread Sacha Labourey
Hello Wendell, You may want to take a look at here first: http://www.jboss.org/demos/netboot.jsp Cheers, Sacha > -Message d'origine- > De : [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]De la part de Wendell > Beckwith > Envoyé : mardi, 4 juin 2002 18

RE: [JBoss-user] jboss 3.0 and bmp

2002-06-04 Thread Sacha Labourey
If you don't give us more info, you won't get much help. Your stacktrace shows that you have a NPE here: at sol.util.uma.UMAMemberBean.selectByUserName(UMAMemberBean.java:149) you say that you have this: CallableStatement cstmt = con.prepareCall( ...) It means that con is null o

[JBoss-user] JBoss and Java Webstart ?

2002-06-04 Thread Wendell Beckwith
Is it possible to install JBoss and execute it with java webstart? Primarily I have an EJB app that needs to be installed on field laptops and I would like to use JBoss and javawebstart to do this. Ideally I would like to create an JNLP installer extension to install JBoss to the laptop. In my m

RE: [JBoss-user] jboss 3.0 and bmp

2002-06-04 Thread Karri Niemelä
>Gave us the exceptions trace at least! Here we go.. That line 149 in UMAMemberBean fires up that CallableStatement (CallableStatement cstmt = con.prepareCall( ...) Of course one of the problems might be that I'm trying to use this with sybase.. (there wasnt any sybase-service.xml available

[JBoss-user] jboss 3.0 ConnectionManager

2002-06-04 Thread Sonnek, Ryan
If a ConnectionManager is set to ByContainer, does that mean that each connection to a datasource will attempt to use the JAAS stored principal and credentials to make that connection? So, if they access a restricted web resource, authenticate successfully, and that .jsp page uses a datsource, wi

Re: [JBoss-user] Serious performance issue in JBoss3/Tomcat4 bundle?

2002-06-04 Thread Thelmo Loisio
On Tue, 2002-06-04 at 14:32, Håkon Hansen wrote: > For now, I think I'll revert to running JBoss and Tomcat separately ... Have you ever looked at some memory heap issues ? Does have you noticed VM crash ? Regards, Thelmo ___ Don't

Re: [JBoss-user] Serious performance issue in JBoss3/Tomcat4 bundle?

2002-06-04 Thread Marius Kotsbak
On Tue, 2002-06-04 at 15:58, Håkon Hansen wrote: > On 04 Jun 2002 16:20:48 +0200 > Marius Kotsbak <[EMAIL PROTECTED]> wrote: > > > I know little about Jetty. How does it compare with Tomcat? Is it fully >standards compliant? > > I think so. It is the default in jboss 3.x. Just download the 3.0 an

[JBoss-user] Purpose?: log4j-boot.jar and log4j.jar

2002-06-04 Thread Frederick N. Brier
log4j-boot.jar seems to be a subset of log4j.jar. In the current jboss-all CVS built distribution, there is a log4j-boot.jar in ./jboss/lib. There is a log4j.jar in ./jboss/server/all/lib and ./jboss/server/default/lib. Is log4j-boot.jar a subset, and if it is, why not just use log4j.jar? I

Re[2]: [JBoss-user] [Simple question] CMP bean inheritance

2002-06-04 Thread Alex Loubyansky
Hello wonder, Look at xdoclet's samples. There is inheritence examples too. So the answer is yes. Tuesday, June 04, 2002, 6:03:47 PM, you wrote: ws> Thank you, one more question :) ws> Do you know if XDoclet works as your answers? :) ws> Wonder Sonic ws> --- Alex Loubyansky <[EMAIL PROTECTED

RE: [JBoss-user] [Simple question] CMP bean inheritance

2002-06-04 Thread Sacha Labourey
Hello WS, EJB Inheritance is not specified by the EJB specification. Cheers, Sacha > -Message d'origine- > De : [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]De la part de wonder > sonic > Envoyé : mardi, 4 juin 2002 16:45 > À : [EMAIL PROTECTED] > Ob

Re: [JBoss-user] [Simple question] CMP bean inheritance

2002-06-04 Thread Dain Sundstrom
wonder sonic wrote: > Hi, > Can someone tell me how are managed the inheritance of > the CMP fields? > > > Details: > If I create a CMP A and then a CMP B which extends > A, will CMP A and B have the same SQL table, will the > CMP-B SQL table have SQL CMP-B fields plus SQL CMP-A > fields? It

Re: [JBoss-user] [Simple question] CMP bean inheritance

2002-06-04 Thread wonder sonic
Thank you, one more question :) Do you know if XDoclet works as your answers? :) Wonder Sonic --- Alex Loubyansky <[EMAIL PROTECTED]> a écrit : > Hello wonder, > > Tuesday, June 04, 2002, 5:44:43 PM, you wrote: > > ws> Hi, > ws> Can someone tell me how are managed the > inheritance of > ws> t

Re: [JBoss-user] CMP 2.0 With JBoss 3.0 Beta Tutorial

2002-06-04 Thread wonder sonic
Very helpful indeed! Will you add some parts such as CMP 2.0 inheritance, XDoclet...? I've got also one question: What are the main diferrences between MySQL and Hypersonic? TIA, Wonder Sonic --- Ricardo_Argüello <[EMAIL PROTECTED]> a écrit : > CMP 2.0 With JBoss 3.0 Beta Tutorial: > http://ir

Re: [JBoss-user] [Simple question] CMP bean inheritance

2002-06-04 Thread Alex Loubyansky
Hello wonder, Tuesday, June 04, 2002, 5:44:43 PM, you wrote: ws> Hi, ws> Can someone tell me how are managed the inheritance of ws> the CMP fields? Depends on ejb-jar.xml configurations. ws> Details: ws> If I create a CMP A and then a CMP B which extends ws> A, will CMP A and B have the same S

Re: [JBoss-user] Serious performance issue in JBoss3/Tomcat4 bundle?

2002-06-04 Thread Håkon Hansen
On 04 Jun 2002 16:20:48 +0200 Marius Kotsbak <[EMAIL PROTECTED]> wrote: > > I know little about Jetty. How does it compare with Tomcat? Is it fully standards >compliant? > I think so. It is the default in jboss 3.x. Just download the 3.0 and > try it. But tomcat should work too (if your beans/web

[JBoss-user] [Simple question] CMP bean inheritance

2002-06-04 Thread wonder sonic
Hi, Can someone tell me how are managed the inheritance of the CMP fields? Details: If I create a CMP A and then a CMP B which extends A, will CMP A and B have the same SQL table, will the CMP-B SQL table have SQL CMP-B fields plus SQL CMP-A fields? Thanks in advance, Wonder Sonic

Re: [JBoss-user] CMP 2.0 With JBoss 3.0 Beta Tutorial

2002-06-04 Thread Emerson Cargnin - MSA
doesanyone knows a tutorial cmp 2.0 using xdoclet? - Original Message - From: "Ricardo Argüello" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 04, 2002 2:25 AM Subject: [JBoss-user] CMP 2.0 With JBoss 3.0 Beta Tutorial CMP 2.0 With JBoss 3.0 Beta Tutorial: http://iris.c

Re: [JBoss-user] Serious performance issue in JBoss3/Tomcat4 bundle?

2002-06-04 Thread Marius Kotsbak
On Tue, 2002-06-04 at 15:18, Håkon Hansen wrote: > On 04 Jun 2002 15:39:08 +0200 > Marius Kotsbak <[EMAIL PROTECTED]> wrote: > > It works fine for us with integrated jetty. It might take some more time > > on the first page hit. > > > > Marius K > > boostcom.no > > Norway :-) > > I know little a

Re: [JBoss-user] Serious performance issue in JBoss3/Tomcat4 bundle?

2002-06-04 Thread Håkon Hansen
On 04 Jun 2002 15:39:08 +0200 Marius Kotsbak <[EMAIL PROTECTED]> wrote: > It works fine for us with integrated jetty. It might take some more time > on the first page hit. > > Marius K > boostcom.no > Norway :-) I know little about Jetty. How does it compare with Tomcat? Is it fully standards c

[JBoss-user] Change Log for version 2.4.x. ?

2002-06-04 Thread Chris Cuilla
is blank...the URL: http://www.jboss.org/changelog_2_4_beta.jsp shows nothing. Where can I find this change log? Thanks, Chris __ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com __

Re: [JBoss-user] Serious performance issue in JBoss3/Tomcat4 bundle?

2002-06-04 Thread Marius Kotsbak
On Tue, 2002-06-04 at 14:32, Håkon Hansen wrote: > Hi. > > I am trying out the final release of JBoss 3.0 with integrated Tomcat 4.0.3. When I >deploy an application that has been running on separate JBoss and Tomcat instances >into the integrated version, performance takes a serious hit. > >

RE: [JBoss-user] jboss 3.0 and bmp

2002-06-04 Thread Sacha Labourey
Hello Karri, Gave us the exceptions trace at least! the testsuite has BMP test cases. Cheers, Sacha > -Message d'origine- > De : [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]De la part de Karri > Niemelä > Envoyé : mardi, 4 juin 2002 15:05 > À : [EMAIL PROTE

[JBoss-user] Serious performance issue in JBoss3/Tomcat4 bundle?

2002-06-04 Thread Håkon Hansen
Hi. I am trying out the final release of JBoss 3.0 with integrated Tomcat 4.0.3. When I deploy an application that has been running on separate JBoss and Tomcat instances into the integrated version, performance takes a serious hit. The log looks fine, but it takes over 3 minutes to serve one

[JBoss-user] jboss 3.0 and bmp

2002-06-04 Thread Karri Niemelä
I've got problems when trying to use BMP entity beans with jboss 3.0. I endup having exceptions when making CallableStatement, and these exceptions really dont tell anything... Any ideas what might be wrong? ___ Don't miss the 2002

  1   2   >