Re: [JBoss-user] Is there BMP sample?

2001-06-27 Thread Allen fogleson
you would still use a datasource... well unless you just want around the whole transaction, connection pooling of the container... I cant imagine why. I can whip together a quick simple example if you havent found what you need yet... email me direct Al - Original Message - From: Boris G

Re: [JBoss-user] Keeping cmp beans in synch

2001-06-27 Thread Allen fogleson
Do you remove it by calling the database or the remove() of the entity bean? if the former... look at your default standardjboss.xml and change the commit option from the default of A. This presumes that the ejb has exclusive access to the database. you want either B (caching but non exclusive acc

[JBoss-user] Re: [JBoss-dev] ONLINE FORUMS

2001-06-27 Thread Jim Archer
Marc, when you move to production, will the IDs and other data be retained? Jim --On Thursday, June 28, 2001 12:08 AM -0400 marc fleury <[EMAIL PROTECTED]> wrote: > go try it out... it is working really well, > go post questions there... > > http://www.jboss.org:8081/jive > > there until the e

Re: [JBoss-user] Keeping cmp beans in synch

2001-06-27 Thread danch
Chris Tragas wrote: > Hi. > > This might be a silly question but i'll ask anyhow: > > How do i keep my entity beans in "synch" (so to speak) if the data the bean > is mapped to is updated in the datasource by another application or process > ? > > what i'm experiencing is this: I use entity b

Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-06-27 Thread danch
Michael Jara wrote: > I've run into a problem previously mentioned in the archives here: > http://www.mail-archive.com/jboss-user@lists.sourceforge.net/msg03141.html > > > > Does anyone have a good workaround for this (aside from "don't use > setRollbackOnly", or "hack TxCapsule and build i

[JBoss-user] Keeping cmp beans in synch

2001-06-27 Thread Chris Tragas
Hi. This might be a silly question but i'll ask anyhow: How do i keep my entity beans in "synch" (so to speak) if the data the bean is mapped to is updated in the datasource by another application or process ? what i'm experiencing is this: I use entity beans to cerate records in a dabatabse;

[JBoss-user] (no subject)

2001-06-27 Thread Varun_Chhabra
Hi everyone, This question pertains to JBoss-2.2.2 running on the Windows platform. It would be kind of you to answer any one of these questions. I am looking at the behavior of the container when it is accessed directly through a Java client (as opposed to an HTTP request which goes through the w

Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-06-27 Thread Michael Jara
I've run into a problem previously mentioned in the archives here: http://www.mail-archive.com/jboss-user@lists.sourceforge.net/msg03141.html   Does anyone have a good workaround for this (aside from "don't use setRollbackOnly", or "hack TxCapsule and build it yourself"?)  This seems like a p

Re: [JBoss-user] Dynamic classloading

2001-06-27 Thread Scott M Stark
There is a fix in cvs on the main branch. - Original Message - From: "Lennart Petersson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 27, 2001 6:15 AM Subject: SV: [JBoss-user] Dynamic classloading Scott, is it possible to 'fix' this? Or how can i workaround it mys

Re: [JBoss-user] Strange Behavior When DataSource goes down.

2001-06-27 Thread danch
One thing you can do is set the 'Blocking' attribute to false for that pool in jboss.jcml. This will get rid of the hanging problem, but you'll have to expect calls to DataSource.getConnection to return null in some cases. -danch Ferguson, Doug wrote: > We are seeing jboss hang when the data

Re: [JBoss-user] Static reference to Home Interface safe?

2001-06-27 Thread Dmitri Colebatch
even better - look at the Service Locator pattern from sun's ejb patterns... cheers dim ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] JBoss-2.2.2 JMS

2001-06-27 Thread danch
Jiron, Cecilia S. wrote: > JBoss: > > We are currently writing software for a project with requirements such that > we are using: > - Apache > - Tomcat > - Sun's JMS > > However, Sun's JMS requires us to charge a fee for their software. So, we > looked into SwiftMQ because it is free but it ha

[JBoss-user] Running example from Chap1 from web browser, How can I do this?

2001-06-27 Thread Antony Stace
Hi Folks I want to run the client example given in the first chaper of the JBoss manual from a web browser rather than from the command line. Can someone please tell me how to do this. Do I need to make a jar file and place it in the deploy directory? If so, can someone please tell me the dire

Re: [JBoss-user] Sun J2EE to jBoss

2001-06-27 Thread ralph
Stoehn. :-) I'm currently eating chapter 9. Thanks a lot. Ralph - Original Message - From: Burkhard Vogel <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 27, 2001 8:03 PM Subject: Re: [JBoss-user] Sun J2EE to jBoss > > - Original Message - > From: "ralph"

[JBoss-user] Petstore 1.1.2 and Hypersonic SQL

2001-06-27 Thread J. King
This is a question which has been asked many times regarding Java PetStore 1.1.2 and JBoss 2.2 w/ Tomcat 3.2. Using the zip file provided by C. Tran (http://www.mail-archive.com/jboss-user@lists.sourceforge.net/msg04950.html) I patched jps1.1.2 to work with the Hypersonic 1.4 database included

Re: [JBoss-user] Access control

2001-06-27 Thread Allen fogleson
it would just be a mess if you had to have method permissions for separate users, and not very dynamic at all. thats what roles are for. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 27, 2001 8:48 PM Subject: Re: [JBoss-user] Access control

[JBoss-user] JBoss-2.2.2 JMS

2001-06-27 Thread Jiron, Cecilia S.
JBoss: We are currently writing software for a project with requirements such that we are using: - Apache - Tomcat - Sun's JMS However, Sun's JMS requires us to charge a fee for their software. So, we looked into SwiftMQ because it is free but it has some technical limitations/problems. Our un

Re: [JBoss-user] Strange Behavior When DataSource goes down.

2001-06-27 Thread Allen fogleson
every time i have seen a hang on startup with the DS binding it was because either a) the driver wasnt available to Jboss b) The driver wasnt available to jboss. I have actually seen a driver "mysteriously" disappear from the lib/ext dir. (i think some moron deleted the jar lol) and had this prob

Re: [JBoss-user] manual

2001-06-27 Thread Scott M Stark
There is already a doc effort underway. Join it: http://groups.yahoo.com/group/jboss-docs/ - Original Message - From: "Matthew Setter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 27, 2001 4:22 PM Subject: RE: [JBoss-user] manual > An interesting discussion on the

Re: [JBoss-user] Access control

2001-06-27 Thread bcd
On Wed, Jun 27, 2001 at 07:02:05PM -0400, Allen fogleson wrote: > fortunately yes. Why is this fortunate? Cheers Bent D -- Bent Dalager - [EMAIL PROTECTED] - http://www.pvv.org/~bcd powered by emacs __

Re: [JBoss-user] Static reference to Home Interface safe?

2001-06-27 Thread Alex . Devine
No, you don't want to do this. EJBs should not contain read/write static fields, as required by the spec. What you want to do is create a private field that holds a reference to the home interface of the other bean, and then initialize that reference in the setEntityContext call. Remember, setEnt

Re: [JBoss-user] Strange Behavior When DataSource goes down.

2001-06-27 Thread David Jencks
Hi, I find it hard to understand what you want. jboss does try out connections from configured datasources on startup, and hangs if they can't connect. I don't see how this is a severe problem: if your datasource isn't working, neither will your app. There is another problem that connection poo

Re: [JBoss-user] Client code example

2001-06-27 Thread Allen fogleson
ohh duh, heh. i hate having to populate hashtables :) - Original Message - From: danch <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 27, 2001 7:52 PM Subject: Re: [JBoss-user] Client code example > Note that the JNDI URL that Allen is using in his code example will

[JBoss-user] Static reference to Home Interface safe?

2001-06-27 Thread Mike Squance
Hi, I am wondering if it is safe for an entity bean to maintain a static reference to the home interface of a second entity bean. This static home interface would then be accessed within the ejbCreate in order to find an instance of the second entity bean. The reason I would like to keep a stati

RE: [JBoss-user] how to connect to db using stateless session bean

2001-06-27 Thread "Sheridan, Gaëtan"
The following (incomplete) code works in an entity bean, but should work as well in a session bean. The tricky part was to figure out the name of the data source ("java:/DefaultDS"). That name is defined in the jboss.jcml configuration file: InstantDB /***

Re: [JBoss-user] Lookup question

2001-06-27 Thread danch
Devraj Mukherjee wrote: > I have a session bean which is associated with the JNDI name > user/UserManager. I am a bit confused with the way we refer to the JNDI > name when doing a lookup. From an example I found that the lookup was > been done using this line of code: > > Object objref = ini

Re: [JBoss-user] Strange Behavior When DataSource goes down.

2001-06-27 Thread danch
Ferguson, Doug wrote: > We are seeing jboss hang when the datasource goes down and we cannot restart > jboss becuase it hangs on the datasource binding. > > This is terrible because we have implemented within our beans but it can't > work becuase > jboss is hanging. Implemented what within your

Re: [JBoss-user] Client code example

2001-06-27 Thread danch
Note that the JNDI URL that Allen is using in his code example will work from a servlet or JSP, but not from a stand-alone client. This is because the Environment Naming Context (ENC) is not available to a standalone client. -danch Devraj Mukherjee wrote: > Hi Allen, > > Just a quick questi

Re: [JBoss-user] Lookup question

2001-06-27 Thread Allen fogleson
assuming you do the binding in jboss.xml you can look it up in 2 ways... Object o = ctx.lookup("UserManager"); //assumes you have made the jndi name UserManager in the global space or... binding it into the java;comp/env namespace with jboss.xml... Object o = ctx.lookup("java:comp/env/user/Use

[JBoss-user] Strange Behavior When DataSource goes down.

2001-06-27 Thread Ferguson, Doug
We are seeing jboss hang when the datasource goes down and we cannot restart jboss becuase it hangs on the datasource binding. This is terrible because we have implemented within our beans but it can't work becuase jboss is hanging. Even if the hanging or our problem, we can't restart because jb

Re: [JBoss-user] Client code example

2001-06-27 Thread Devraj Mukherjee
Hi Allen, Just a quick question to you, what is the JNDI name that you have specified in your XML descriptors which you are looking up by the name java:comp/env/ejb/simpleSession That will help me associate the names for my beans as well. Thanks heaps. Devraj At 19:04 27/06/01 -0400, you wro

[JBoss-user] How do I create tables in the instantDb?

2001-06-27 Thread Sheridan, Gaetan
Hi, I am trying to use BMP with the database that comes with JBOSS. I have a working session bean which invokes an entity bean. And a client that calls the session bean. Everythings works like a charm. However: I am getting the message: Table not found: RATEDCDRS in statement [insert

Re: [JBoss-user] Lookup question

2001-06-27 Thread Dragos Haiduc
On Thu, 28 Jun 2001, Devraj Mukherjee wrote: > I have a session bean which is associated with the JNDI name > user/UserManager. I am a bit confused with the way we refer to the JNDI > name when doing a lookup. From an example I found that the lookup was been > done using this line of code: > > Ob

RE: [JBoss-user] manual

2001-06-27 Thread Matthew Setter
An interesting discussion on the list to be sure. I'm willing to work through the current documentation and prepare a complete, professional manual if anyone is interested in helping me. This way we can lay to rest this documentation argument and add yet another successful piece to the jboss sui

[JBoss-user] RE: JBoss-user digest, Vol 1 #942 - 11 msgs

2001-06-27 Thread Doug . Palmer
> Yep! You need to null out that sort of stuff on either passivate or > activate. Personally, I'd do both, but then I'm paranoid. Passivate > would probably be most appropriate (that'll help the garbage > collector > behave appropriately, among other things) Magic! And it suddenly turns from

Re: [JBoss-user] Is there BMP sample?

2001-06-27 Thread Allen fogleson
Id be careful expecting too much out of the Container managed relation stuff... a lot of it is being discarded from 2.0. Unfortunately :( Al - Original Message - From: Uwe Pleyer <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 27, 2001 6:40 PM Subject: Re: [JBoss-user]

[JBoss-user] Lookup question

2001-06-27 Thread Devraj Mukherjee
I have a session bean which is associated with the JNDI name user/UserManager. I am a bit confused with the way we refer to the JNDI name when doing a lookup. From an example I found that the lookup was been done using this line of code: Object objref = initial.lookup("java:comp/env/ejb/TheCon

Re: [JBoss-user] Does it really works ?

2001-06-27 Thread Allen fogleson
lets start with moving back to jdk1.3 I have had more problems getting ANYTHING to work properly with 1.4. Jboss-tomcat definitely has difficulties now. But of course 1.4 is not in a production ready state yet either...   Al   - Original Message - From: jean To: [EMAIL

[JBoss-user] Getting the Manual - online HTML version

2001-06-27 Thread Felix Guerrero
Hi, I need to download the JBoss Manual (HTML version ).I tried to find it in the contents of the binary file but no luck. Where can I get it? Thank you. Felix. _ Get your FREE download of MSN Explorer at http://explorer.msn.co

Re: [JBoss-user] Client code example

2001-06-27 Thread Allen fogleson
try { InitialContext ctx = new Initialcontext(); Object o = ctx.lookup("java:comp/env/ejb/simpleSession"); simpleSessionHome home = (simpleSessionHome)PortableRemoteObject.narrow(o, simpleSessionHome.class); simpleSession bean = home.create(); . . . } catch( Al --

Re: [JBoss-user] Access control

2001-06-27 Thread Allen fogleson
fortunately yes. Al - Original Message - From: <[EMAIL PROTECTED]> To: jboss <[EMAIL PROTECTED]> Sent: Wednesday, June 27, 2001 4:23 PM Subject: [JBoss-user] Access control > It appears as if J2EE's use of JAAS gives me some control over which > users can use which methods in whi

[JBoss-user] XML validation of ejb-jar.xml

2001-06-27 Thread G.L. Grobe
Is there some sort of XML Validator in JBoss that would tell me more about what's wrong with my ejb-jar.xml file. This file has worked in other servers and I don't see anything wrong with my ejb tags, but JBoss doesn't like something cause the [Verifier] complains and tells me to look at Chapter 1

[JBoss-user] Client code example

2001-06-27 Thread Devraj Mukherjee
Is someone able to send me a chunk of their client code which creates a object of their Session bean after doing a lookup. Devraj ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] Does it really works ?

2001-06-27 Thread Devraj Mukherjee
I dont have much experience with JBoss 2.4 but I run JBoss 2.2.2 - Tomcat 3.2 which can be downloaded from www.jboss.org and yes it does work. It is a matter of just running the batch file run_with_tomcat.bat in the jboss\bin directory. Regards, Devraj At 07:47 PM 6/27/2001 +0200, you wrote: JBoss

Re: [JBoss-user] Is there BMP sample?

2001-06-27 Thread Uwe Pleyer
Hey, look at http://java.sun.com/j2ee/download.html and download the pet shop sample. There within you find intresting concepts to abstract your BMP Entity-Beans from the used Database. Also with that concept you will be prepared to switch to CMP when JBos is ready for EJB 2.0 with all the Co

RE: [JBoss-user] Problems using oracle's XADataSource

2001-06-27 Thread Jord Sonneveld
Title: RE: [JBoss-user] Problems using oracle's XADataSource Hello, Thanks for trying to help. Using oracle 8.1.7. Currently trying to use oracle's XADataSource. I've used both oracle's and minerva's XiD, but no go. Right now trying to see if perhaps it is some wacky jndi config issue.

Re: [JBoss-user] ONLINE FORUM AVAILABLE

2001-06-27 Thread Kar YEOW
same here - Original Message - From: "awc" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 28, 2001 2:57 AM Subject: Re: [JBoss-user] ONLINE FORUM AVAILABLE Yes, on ours, it is set up as http traffic goes out only on the port 80 and 443, every thing else is dropped to t

RE: [JBoss-user] jndi lookup

2001-06-27 Thread Bill Burke
make sure jndi.properties is in your classpath.   Bill -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of AdhimanSent: Wednesday, June 27, 2001 2:11 AMTo: [EMAIL PROTECTED]Subject: [JBoss-user] jndi lookup Hi, I have successfully de

Re: [JBoss-user] Problems using oracle's XADataSource

2001-06-27 Thread Toby Allsopp
On Wed, Jun 27, 2001 at 04:06:01PM -0400, Jord Sonneveld wrote: > Ack. No, I was not aware. Then how do I load oracle's xadatasource > implementation? Using the regular XADataSourceLoader? Sadly, that method > gives me all sorts of troubles, as it keeps dying with XAER_NOTA at > commit time, follo

[JBoss-user] [JBoss-dev] does it really works

2001-06-27 Thread Kemp Randy-W18971
Correct me if I am wrong, but isn't JDK1.4 consider alpha at this stage? I suggest to try JDK1.3. From: "marc fleury" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>, "Jboss-User@Lists. Sourceforge. Net" <[EMAIL PROTECTED]> Date: Wed, 27 Jun 2001 14:20:08 -0400 Subject: [JBoss-user] RE: [JBo

[JBoss-user] how to connect to db using stateless session bean

2001-06-27 Thread Clara Yuan
I am trying to connect my sybase database from a stateless session bean. it is very simple, I have setup the jboss.jcml according to whatever the tutorial said. but what do I need to do with the ejb-jar.xml? and how to code in the sessionbean to create a connection? basically there is no sample co

[JBoss-user] Access control

2001-06-27 Thread bcd
It appears as if J2EE's use of JAAS gives me some control over which users can use which methods in which beans. However, I have a couple of concerns; First, is there an easy explanation of the difference between groups and roles? Secondly, it doesn't seem to help me in the generic problem of wa

Re: [JBoss-user] MalformedURLException when viewing tomcat-test example

2001-06-27 Thread Scott M Stark
You have installed the server in a directory that contains spaces. There is not working correctly. Reinstall the server in a directory without spaces in its name. - Original Message - From: "Feng Chen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 27, 2001 12:37 PM Su

RE: [JBoss-user] Problems using oracle's XADataSource

2001-06-27 Thread Jord Sonneveld
Title: RE: [JBoss-user] Problems using oracle's XADataSource Ack. No, I was not aware. Then how do I load oracle's xadatasource implementation? Using the regular XADataSourceLoader? Sadly, that method gives me all sorts of troubles, as it keeps dying with XAER_NOTA at commit time, followed wi

RE: [JBoss-user] ONLINE FORUM AVAILABLE

2001-06-27 Thread marc fleury
yep we will put it on 80 when we go final, BUT USE IT PEOPLE ARE NOT BANGING ON IT AS MUCH AS WE WANTED COME ON marcf |-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECTED]]On Behalf Of Jim Archer |Sent: Wednesday, June 27, 2001 3:20 PM |To: [EMAIL PROTECTED] |Su

Re: [JBoss-user] Problems using oracle's XADataSource

2001-06-27 Thread Toby Allsopp
On Wed, Jun 27, 2001 at 12:37:54PM -0400, Jord Sonneveld wrote: > Hello all, > > Well, things seem to work if I use org.jboss.jdbc.RawXADataSourceLoader > for the mbean code, instead of XADataSourceLoader. Then, have this > attribute line: > name="Properties">URL=jdbc:oracle:oci8:user/password@

[JBoss-user] Is there BMP sample?

2001-06-27 Thread Boris Garbuzov
Is there any documentation article with BMP example? Any BMP is database specific so I do not use JAWS or datasources, but write write a SQL with specific data types? I would like to use MySQL. ___ JBoss-user mailing list [EMAIL PROTECTED] http://list

[JBoss-user] MalformedURLException when viewing tomcat-test example

2001-06-27 Thread Feng Chen
Hi, I am having problem with the tomcat-test example which comes with the JBoss-2.2.2_Tomcat-3.2.2 binary distribution. I started the server with run_with_tomcat.bat on NT. I was able to access the index page at http://localhost:8080/jboss. It gave me a congratulations message and two links to

Re: [JBoss-user] EJB 2.0 Features

2001-06-27 Thread Jim Archer
Hi Bent... I read on the dev list that this is being worked on. You can get a jump start by using the Educational 2.0 presistence manager from MVC Soft. It offers EJB 2.0 PFD1 features, both CMP/CMR and EJB-QL. http://www.mvcsoft.com Jim --On Wednesday, June 27, 2001 3:42 PM +0200 [EMAIL PRO

Re: [JBoss-user] Authentication Problem...

2001-06-27 Thread Scott M Stark
Your mixing defaults. The "other" entry is the default JAAS login config entry. There is no default security-domain setting and the security-domain setting does not have to point to a security manager implementation that has anything to do with JAAS. - Original Message - From: "David Gre

RE: [JBoss-user] ONLINE FORUM AVAILABLE

2001-06-27 Thread Jim Archer
Hi Marc --On Wednesday, June 27, 2001 12:09 PM -0400 marc fleury <[EMAIL PROTECTED]> wrote: > will your firewall only allow outgoing traffic that goes to port 80 on a > distant machine? This will be a common problem. Most companies run firewalls and most of those only allow outgoing traffic o

RE: [JBoss-user] RE: [JBoss-dev] does it really works ?

2001-06-27 Thread Frank Thiemonge (NBK)
Jean,   You need to post more information about the problem like exact errors (screen printouts), exactly after what actions things don't work, and so forth. Another start is for you to read the jboss-user archives before such a post. I'm pretty sure this issue has been addressed in the past

Re: [JBoss-user] Does it really works ?

2001-06-27 Thread Jesper Pedersen
On Wednesday 27 June 2001 19:47, you wrote: > JBoss-2.4-BETA_Tomcat-3.2.2.zip 9.7M > June 23, 2001 > > > ; > Does it really work ?( JBoss + Tomcat Packages) , > Hello folks does JB+T really can work ? > I have download avery downloadble version, and configure it the way it is > describ

Re: [JBoss-user] Authentication Problem...

2001-06-27 Thread David Green
I figured out how to fix it. I was rebuilding contrib/tomcat from Branch_2_4 and putting the tomcat-service.jar in my 2.4.0 lib/ext directory - it seems it's not compatible with the release of 2.4.0 - it's only compatible with the cvs version of jboss. When I rebuilt jboss completely, then remade

[JBoss-user] jBoss and JMS

2001-06-27 Thread Brian K. Buckey
Hello all, I am getting a "javax.jms.JMSException: That destination queue does not exist" error when I attempt to run the Retailer piece of the sample application from chapter 4 of Monson-Haefel/Chapell's Java Message Service book. (I got the chapter 2 example working fine). The exception occur

Re: [JBoss-user] transactions in legacy systems

2001-06-27 Thread David Jencks
On 2001.06.27 11:18:10 -0400 [EMAIL PROTECTED] wrote: > We're using jboss as the app server and a backend oracle database. > We are writing a web interface to a legacy system where there is a > requirement that each user has his own connection, > so using connection pools is out of the question.

Re: [JBoss-user] XML validator in JBoss?

2001-06-27 Thread Philipp Meier
On Wed, Jun 27, 2001 at 02:17:47AM -0500, G.L. Grobe wrote: > Is there some sort of XML Validator in JBoss that would tell me more about what's >wrong with my ejb-jar.xml file. This file has worked in other servers and I don't see >anything wrong with my ejb tags, but JBoss doesn't like somethin

RE: [JBoss-user] CMP entity bean "load balancig"

2001-06-27 Thread David Jencks
On 2001.06.27 11:09:47 -0400 marc fleury wrote: > > |It seems to me that it should be possible to have an interbase/firebird > |specific option E using interbase events to notify the container of db > > that would be really cool, in fact we could have a generic option E > listening to events on

Re: [JBoss-user] CMP findAll: how to specify order of returned ob jects?

2001-06-27 Thread Richard Kasperowski
Nordahl, David C wrote: > You can put an order field in the jaws entry > > > > SteveBean > true > STEVE > > findByAll >last_name ASC > > danch (Dan Christopherson) wrote: > You should be able to do that as a 'defined finder' wi

[JBoss-user] Does it really works ?

2001-06-27 Thread jean
JBoss-2.4-BETA_Tomcat-3.2.2.zip 9.7M June 23, 2001 ; Does it really work ?( JBoss + Tomcat Packages) , Hello folks does JB+T really can work ? I have download avery downloadble version, and configure it the way it is describes, but nothing seems to work,I use w

RE: [JBoss-user] SwiftMQ and JBOSS

2001-06-27 Thread marc fleury
|Plugging in a module still requires the module to have the correct |capabilities. You can't plug a three prong electrical cord into a |two slot outlet. I would add that in this case it is swiftMQ that doesn't support the right standards. We do! I talked to their engineering and they gave some

Re: [JBoss-user] help with security

2001-06-27 Thread Scott M Stark
Tomcat creates the contexts defined in the server.xml file on its own without going through the JBoss war deployer and so the jboss-web.xml is not parsed and integrated security is not enabled. I don't have plans to try to support the server.xml defined contexts at this time. - Original Messa

Re: [JBoss-user] Authentication Problem...

2001-06-27 Thread Scott M Stark
It works fine for me using the Rel_2_4_0_6 beta along with the latest tomcat-service.jar from cvs. The fix in cvs has not been released in the binary bnudle yet so are you building the bundle from cvs? Browsing http://localhost:8080/propertyeditor/index.jsp and specifying green/green produces: W

Re: [JBoss-user] SwiftMQ and JBOSS

2001-06-27 Thread Scott M Stark
Plugging in a module still requires the module to have the correct capabilities. You can't plug a three prong electrical cord into a two slot outlet. - Original Message - From: "Rajkumar Seth" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 27, 2001 6:38 AM Subject: RE:

Re: [JBoss-user] Authentication Problem...

2001-06-27 Thread Scott M Stark
Ok, so your web.xml looked the same as the one I showed which works and yours doesn't? - Original Message - From: "David Green" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 27, 2001 6:34 AM Subject: Re: [JBoss-user] Authentication Problem... > > I posted my web.xm

Re: [JBoss-user] help with security

2001-06-27 Thread Scott M Stark
See the JAAS tutorial: http://www.jboss.org/documentation/HTML/ch11s83.html - Original Message - From: "Mike Thompson" <[EMAIL PROTECTED]> To: "jboss" <[EMAIL PROTECTED]> Sent: Wednesday, June 27, 2001 5:30 AM Subject: [JBoss-user] help with security Now, word on the street is that the

Re: [JBoss-user] ONLINE FORUM AVAILABLE

2001-06-27 Thread awc
Yes, on ours, it is set up as http traffic goes out only on the port 80 and 443, every thing else is dropped to the floor. anil marc fleury wrote: > how can your firewall filter out a port on my machine... > > will your firewall only allow outgoing traffic that goes to port 80 on a > distant m

Re: [JBoss-user] Problem with building the manual

2001-06-27 Thread danch (Dan Christopherson)
Antony Stace wrote: > Hi Folks > > I am having problems building the JBoss Manual, this is what I always > get > > [antony@hawera build]$ sh ./build.sh defaulthtml > Searching for build.xml ... > Buildfile: /tmp/jbossmanual/manual/src/build/build.xml > > init: > > prepare: > > defaulthtml:

[JBoss-user] [Fwd: [JBoss-dev] [ jboss-Bugs-436643 ] Unable to run JSP pages with TOMCAT]

2001-06-27 Thread danch (Dan Christopherson)
Will the person who submitted this please stand up? This isn't a bug, it's a well-known configuration issue - put 'tools.jar' from your JDK installation into tomcat's lib directory and you'll get over this hump. Note that if you access EJB's directly from the JSP, you'll also get compile error

Re: [JBoss-user] CMP entity bean "load balancig"

2001-06-27 Thread danch (Dan Christopherson)
David Jencks wrote: > Hi, > you need to use commit option B or C, or maybe the jboss specific D. > You _might_ also want to turn on the JAWS 'select for update' option ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lis

Re: [JBoss-user] When to use PortableRemoteObject.narrow?

2001-06-27 Thread danch (Dan Christopherson)
[EMAIL PROTECTED] wrote: > Check mail archives. > > Shortly: you have to use narrow(...) always (if only you're not completely > sure that you will not ever use RMI/IIOP). Any remote reference that gets to you as 'Object', really - chiefly when you do the JNDI lookup for a home interface.

Re: [JBoss-user] PortableRemoteObject.narrow

2001-06-27 Thread danch (Dan Christopherson)
Christine wrote: > I am using JBoss 2.2.2 and JDK1.3. But I am getting error: > java.lang.NoClassDefFoundError: javax/rmi/PortableRemoteObject > > I have to cast after name lookup. Can anyone tell me what i should do to use > narrow()? > That class should be included in jdk1.3. Are you sure t

Re: [JBoss-user] Building and running JBoss through CVS sources

2001-06-27 Thread danch (Dan Christopherson)
[EMAIL PROTECTED] wrote: > Hi there, > > I would like to build and run JBoss from the CVS repository (interested in > running JBoss through a debugger to find a solution to a transaction > problem I'm having, as well as contributing in the future). I've checked > out the JBoss module and ran the

RE: [JBoss-user] Problems using oracle's XADataSource

2001-06-27 Thread Jord Sonneveld
Title: Problems using oracle's XADataSource Hello all,   Well, things seem to work if I use org.jboss.jdbc.RawXADataSourceLoader for the mbean code, instead of XADataSourceLoader. Then, have this attribute line: URL=jdbc:oracle:oci8:user/password@database -Original Message-From: J

[JBoss-user] PortableRemoteObject.narrow

2001-06-27 Thread Christine
I am using JBoss 2.2.2 and JDK1.3. But I am getting error: java.lang.NoClassDefFoundError: javax/rmi/PortableRemoteObject I have to cast after name lookup. Can anyone tell me what i should do to use narrow()? Regards, Christine [EMAIL PROTECTED] wrote: > > When should I use PortableRemoteObjec

Re: [JBoss-user] Problem writing client code

2001-06-27 Thread danch (Dan Christopherson)
Your client needs the jars from the 'client' directory of the JBoss distribution in its classpath. That particular class is either in jbosssx-client.jar or jboss-jaas.jar Devraj Mukherjee wrote: > Hi All, > > I am having some problems writing the client side code to call my > session bean. I

Re: [JBoss-user] Can't Get DefaultDS in the ctx.lookup

2001-06-27 Thread danch (Dan Christopherson)
The code you have below is in a client (stand alone application), right? That won't work. Things in the 'java' namespace are only available from within the JBoss process. Gabi Perets wrote: > >>[EMAIL PROTECTED] [EMAIL PROTECTED]: Tue, 26 Jun 2001 23:26:25 >> >>Gang, >> >>I am trying to get a

Re: [JBoss-user] .properties location?

2001-06-27 Thread Mikhail Akopov
>Did you ever solve your problem with: >ResourceBundle.getBundle() >for jBoss/Tomcat - I have tried putting the properties files almost everywhere - but they still don't get loaded! if you want to get bundle from: EJB - put *.properties into the jar file root; servlet (standalone Tomcat)

Re: [JBoss-user] Init scripts for SuSE

2001-06-27 Thread gabriele
On Wed, Jun 27, 2001 at 05:03:55PM +0200, Burkhard Vogel wrote: > > I created an init script for Linux SuSE and I modified "run.sh" to > > start, stop, reload and query the status of JBoss. Is someone > > interested ? > > Sure, post 'em. Burkhard JBoss is installed in "/opt/JBoss-2.2.1_

RE: [JBoss-user] Problem writing client code

2001-06-27 Thread Pelle Poluha
It looks like you're not properly logged in. See http://www.jboss.org/documentation/HTML/ch11s83.html. Regards, Pelle Poluha > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Devraj > Mukherjee > Sent: den 27 juni 2001 16:16 > To: [EMAIL PROTECTED]

Re: [JBoss-user] ONLINE FORUM AVAILABLE

2001-06-27 Thread gsmecher
Hi, I've been looking at deploying Jive on JBoss for a while now; are you or the Jive team going to release the changes you made to allow it to run? How integrated is this Jive version with EJB/JBoss? I expect many people deploying EJBs will require a forum component; if you haven't yet, you sho

[JBoss-user] Problem with free tds driver

2001-06-27 Thread Rama Rao
Hai  all,             I am getting some problem with free tds driver.The CMP beans are sucessfullu deployed with sql server using free tds driver.     When i calling finder method on CMP bean, its giving SQLException with the message "Not Implemented". The driver is working fine from s

RE: [JBoss-user] ONLINE FORUM AVAILABLE

2001-06-27 Thread marc fleury
how can your firewall filter out a port on my machine... will your firewall only allow outgoing traffic that goes to port 80 on a distant machine? if that is the case then we will probably merge the sites marcf |-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECTED]]On

[JBoss-user] getting a UserTransaction with jBoss-2.4.0Beta

2001-06-27 Thread Gray Jones
Hi,   I'm trying to write a simple transaction test to help determine if our application is transactional compliant.  to do this I need to get a UserTransaction that I can rollback, commit, etc.   From the release notes of jBoss-2.4.0Beta it appears that UserTransaction support has been added

[JBoss-user] transactions in legacy systems

2001-06-27 Thread Gino . Blyau
We're using jboss as the app server and a backend oracle database. We are writing a web interface to a legacy system where there is a requirement that each user has his own connection, so using connection pools is out of the question. When the user logs on , i create a database connection and i st

Re: [JBoss-user] Re: What do finders find?

2001-06-27 Thread danch
> > Is a dirty instance of TestNodeBean re-used from a pool when the bean is > activated. Should I be nulling the location cache on > activation/passivation/somewhere? > Yep! You need to null out that sort of stuff on either passivate or activate. Personally, I'd do both, but then I'm paranoi

Re: [JBoss-user] How to set the classpath to run the InterestClient sample

2001-06-27 Thread Christine
Hi, I don't what is going on. The InterestClient worked the other day. But I am getting error again. I typed: C:\Interest>java -classpath .;c:\jboss_dist\client\jboss-client.jar;c:\jboss_dist\client\jbosssx-client.jar;c:\jboss_dist\client\jnp-client.jar InterestClient The Output is: Got context

Re: [JBoss-user] ONLINE FORUM AVAILABLE

2001-06-27 Thread Chris Kimpton
Hi, --- marc fleury <[EMAIL PROTECTED]> wrote: > > the jivesoftware folks have put their new software on our site, so > go check > it out. > > http://www.jboss.org:8081/jive/ > > this is a beta site and use jboss-user on it. > Great although, I don't suppose there is a chance of getting

Re: Re[3]: [JBoss-user] SQLServerPool initializing error

2001-06-27 Thread Burkhard Vogel
Hmm, I don't think it is outdated yust for a older version, headline reads: Configure JBoss 2.0 FINAL before anything like a mlet tag appears?! The chapter before (which you must have read, otherwise you wouldn't have the jboss.jcml part right) is for Configure JBoss 2.1 and later we are JBoss 2.2

[JBoss-user] java.lang.IllegalArgumentException: wrong number of arguments

2001-06-27 Thread chitrapandian
Hi,     Following exception is thrown whenever I try to invoke any methods in my bean (EventSessionBean) even though I passed the correct parameters. Please give me suggetion to avoid this.Thanks for your help in advance. JBoss2.0 java.lang.IllegalArgumentException: wrong number of arguments  at

  1   2   >