Re: [JBoss-user] JMS Queue!!!

2001-05-22 Thread Peter Antman
On 23 Maj, [EMAIL PROTECTED] wrote: > Hi, > I'm very new to JBoss. Can you please tell me how can I create JMS > queues in here?? > > Regards, > Farhat Edit conf/default/jbossmq.xml //Peter > > ___ > JBoss-user mailing list > [EMAIL PROTECTED] >

[JBoss-user] Resource-Ref

2001-05-22 Thread Phan Anh Tran
Hi, According to 1.1, one can specify datasources in the section of the deployment descriptor of an EJB. Does JBOSS support this? I have been specifying my datasources directly in the jboss.jcml file, but I'd rather not have to mess with anything container specific. Thanks. Anh __

RE: [JBoss-user] Sorry: problem with finder find all

2001-05-22 Thread Belli Andrea
I've forgotten to attach the standardjawsfile <> Thanks standardjaws.xml

R: [JBoss-user] problem with finder find all

2001-05-22 Thread Belli Andrea
I attach the standardjaws for any doubt; I saw it and I found this query prepared by jaws: SELECT SENDER,BODY_N,DATE_N,TITLE_N,ID_NEWS FROM NEWS WHERE ID_NEWS=? I don't understand why JAWS add the costruct "WHERE" in prepared statement; I thought that a findall finder 'd prepare a query like: SELE

Re: [JBoss-user] Getting a UserTransaction via JNDI from a client?

2001-05-22 Thread Phan Anh Tran
Ok, I found out that it is not just possible with the current release.   Anh - Original Message - From: Phan Anh Tran To: [EMAIL PROTECTED] Sent: Tuesday, May 22, 2001 10:56 PM Subject: [JBoss-user] Getting a UserTransaction via JNDI from a client? How do

Re: [JBoss-user] Getting a UserTransaction via JNDI from a client?

2001-05-22 Thread Keerthi Panneer
Hi, this should work for u.. Properties env = new Properties(); env.setProperty(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory"); env.setProperty(Context.PROVIDER_URL, "localhost:1099"); env.set

Re: [JBoss-user] Error while deploying sample EJB.

2001-05-22 Thread Ivan Novick
[Info] Java version: 1.2,Sun Microsystems Inc does this mean you are using jdk 1.2 if so you need 1.3 Ivan - Original Message - From: "Dinesh" <[EMAIL PROTECTED]> To: "jboss-user-group" <[EMAIL PROTECTED]> Sent: Tuesday, May 22, 2001 9:47 PM Subject: [JBoss-user] Error while deploying sa

Re: [JBoss-user] JMS Queue!!!

2001-05-22 Thread Ivan Novick
from documentation: Edit jbossmq.xml in conf/default and ad the queue or topic Eg: testQueue Ivan - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 22, 2001 10:25 PM Subject: [JBoss-user] JMS Queue!!! > Hi, > I'm very

[JBoss-user] Getting a UserTransaction via JNDI from a client?

2001-05-22 Thread Phan Anh Tran
How do I get a user transaction via JNDI from a client?  Using JDNIView, I can see a TransactionManager bound to java:, but no UserTransactionso how do I go about this business?  Thanks...   Anh  

SOLVED: [JBoss-user] Oracle and Jboss problems: the story continues... (or seems to). XA issue?

2001-05-22 Thread Sacha Labourey
Hello, I've found my problem. I've was using the Oracle XA data source... Replacing it by "org.jboss.pool.jdbc.xa.wrapper.XADataSourceImpl" did the trick. Also, as I am using v8.1.7, the XidClassName parameter is of no more use (but doesn't create any problem, appart performance) So, the story

[JBoss-user] JMS Queue!!!

2001-05-22 Thread Farhat . Pachisa
Hi, I'm very new to JBoss. Can you please tell me how can I create JMS queues in here?? Regards, Farhat ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

[JBoss-user] Error while deploying sample EJB.

2001-05-22 Thread Dinesh
hi, i am new to Jboss and using Jboss2.2.1. when i try to deploy the sample ejb "interest.jar", i am getting the foll' exception. I hope my server is running successfully. Exception in Brief : - Deploying:file:/C:/jboss/tmp/deploy/Default/interest.jar [Verifier] Veri

Re: [JBoss-user] Database connection pool hangs...

2001-05-22 Thread Phan Anh Tran
With closed I meant "free for re-use"... Anh - Original Message - From: "Guy Rouillier" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 22, 2001 12:17 PM Subject: Re: [JBoss-user] Database connection pool hangs... > Whether or not the actual connection is closed will dep

Re: [JBoss-user] ClassPathExtension mechanism does not seem to work...

2001-05-22 Thread Phan Anh Tran
No changes necessary...just drop the .jar file in the lib/ext and jboss will find your classes. Anh - Original Message - From: "Morrison, Scott" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 22, 2001 11:00 AM Subject: RE: [JBoss-user] ClassPathExtension mechanism does no

Re: [JBoss-user] Trouble Using Datasource Remotely

2001-05-22 Thread Ivan Novick
I believe everyone said you can only access java:/ namespace from within a J2ee component: servlet or EJB not from a client app Ivan - Original Message - From: "Nicholas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 22, 2001 1:53 PM Subject: [JBoss-user] Trouble Using Da

Re: [JBoss-user] Trouble Using Datasource Remotely

2001-05-22 Thread Guy Rouillier
Pooled db connections are for use by EJBs, not by remote clients of EJBs. In brief, the code using the connection must be running in the same JVM as the connection pool. See archives for extended discussion. - Original Message - From: "Nicholas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]

[JBoss-user] JAAS & JBossSX vs Application Security

2001-05-22 Thread Jason Dillon
Hello, I am trying to figure out what the *best* approach is for adding robust security to a highly distributed JMX/EJB/JMS application. I have just looked over the docs about JAAS as well as the JBossSX guide and I still do not have a good feel for what is the correct approach for what I am tryi

Re: [JBoss-user] CMP and CMT: when does the commit happen?

2001-05-22 Thread Georg Rehfeld
Hi Roman > When does the commit happens in case of container managed transaction > Required: ? Depends on the caller/client already having a transaction or not. If it has, the method executes in that TX context and there is no commit at method return time. If the client has no TX the container

Re: [JBoss-user] Calling CORBA objects from JBoss

2001-05-22 Thread Dave Ortman
>I think I replied to that thread, but it didn't appear to make it to >the list. Here's my post again: Thanks Luke, That solved the problem. I didn't think to look through the development list - thanks for pointing it out. I only wish that your original reply would have gotten through... it wo

Re: [JBoss-user] multiple key

2001-05-22 Thread Georg Rehfeld
Hi Andrea, > I want to use a beans who maps a table on a relational db which haS a > primary key composed by two colomns of this table, or eventually a column of > this table and a column which is a foreign key which point on another table. > This is may little problem; I don't understand if with

Re: [JBoss-user] Re: Multiple Remote EJB Requests Bombs JBoss

2001-05-22 Thread Toby Allsopp
On Wed, May 23, 2001 at 09:42:44AM +1200, Jonathan Ackerman wrote: > The logic for when to return the Connections back to the pool (if say the > close() methods where not called) would be tricky since they aren't always > attached to a transaction. Ok, that's true. I think that thinking about it

Re: [JBoss-user] SecurityAssociationHandler - where do I find it?

2001-05-22 Thread Scott M Stark
Its in the 2.2 branch of the jbosssx cvs module. Get it from the sourceforge cvs browser by selecting: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/jboss/jbosssx/src/main/org/jboss/security/auth/Attic/?only_with_tag=JBoss_2_2_1 - Original Message - From: "Dennis Ramos" <[EMAIL PROTEC

Re: [JBoss-user] what does jboss use instantDB for

2001-05-22 Thread Scott M Stark
Its just there for your use but it is not used by anything. Remove it if you don't need it. - Original Message - From: "Mader, Cary J" <[EMAIL PROTECTED]> To: "Jboss-User (E-mail)" <[EMAIL PROTECTED]> Sent: Tuesday, May 22, 2001 1:41 PM Subject: [JBoss-user] what does jboss use instantDB

Re: [JBoss-user] jsp cannot import classes from the common classpath. Will it be fixed?

2001-05-22 Thread David Ward
Keith, What do you mean by the "common" classpath? Hopefully you're not talking about what is traditionally in the $CLASSPATH env variable. If your JSP needs some of your own defined classes to work, they should be put in your WAR file in the WEB-INF/classes directory. These will be automa

RE: [JBoss-user] Sample client using SOAP with JBoss/ZOAP

2001-05-22 Thread Adam Lipscombe
ZOAP is dead. Use Apache SOAP 2.1 with the Apache Xerces parser 1.3.0. It works. Its vital (and IMHO quite difficult) to get JBoss configuration correct. Let me know if you have problems and I'll send you sample config files. Cheers - Adam -Original Message- From: [EMAIL PROTECTED]

Re: [JBoss-user] mySQL auto increment and CMP entity beans

2001-05-22 Thread Georg Rehfeld
Hi Paul, > The code I am using is as follows, I had thought of creating an additional > bean to do this but was wondering if there was an easier way. >[code cut, see Pauls mail] > [Section] java.lang.Error: id may not be null > [Section] at org.jboss.ejb.CacheKey.(CacheKey.java:51) > [

RE: [JBoss-user] Could not start Jboss 2.2.1 in windows 2000 Server

2001-05-22 Thread Lewis Lin
YES, Java version: 1.3.0_01,Sun Microsystems Inc. What does this error message mean? I have exactly the same configuration of JBoss, JDK, Tomcat on my notebook. and it runs fine on my notebook. Thanks, Lewis Lin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Beh

[JBoss-user] jsp cannot import classes from the common classpath. Will it be fixed?

2001-05-22 Thread Keith Kee
Hi: I'm a newbie trying to get my jsps to run on JBoss 2.2.1 and embedded tomcat 3.2.1. It seems like the jspc cannot find the classes on the common path (using the Class-Path directive) which my jsp is trying to import. I searched in the mailing list archive and found that a lot of the people

Re: [JBoss-user] Oracle and Jboss problems: the story continues... (or seems to). XA issue?

2001-05-22 Thread Toby Allsopp
On Tue, May 22, 2001 at 05:06:54PM -0400, David Ward wrote: > Toby, > > Can you please clarify? In 2.2.1, can I or can I not move the Xid class > configuration into my jboss.jcml? I'd like to have all my config No. This change will not be incorporated into a 2.2 version. It is in the curre

RE: [JBoss-user] Re: Multiple Remote EJB Requests Bombs JBoss

2001-05-22 Thread Jonathan Ackerman
The logic for when to return the Connections back to the pool (if say the close() methods where not called) would be tricky since they aren't always attached to a transaction. Jonathan -Original Message- From: Toby Allsopp [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 23 May 2001 9:19 a.m.

RE: [JBoss-user] what does jboss use instantDB for

2001-05-22 Thread Robert Nicholson
Maybe it's for durable messages with jbossmq Just wild guess though. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Mader, Cary > J > Sent: Tuesday, May 22, 2001 1:41 PM > To: Jboss-User (E-mail) > Subject: [JBoss-user] what does jboss use instant

Re: [JBoss-user] Could not start Jboss 2.2.1 in windows 2000 Server

2001-05-22 Thread Ivan Novick
Just making sure: you are using JDK 1.3 right? Because I dont think older versions work with JBoss. Ivan - Original Message - From: "Lewis Lin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 22, 2001 12:57 PM Subject: [JBoss-user] Could not start Jboss 2.2.1 in windows 2

Re: [JBoss-user] Trouble Using Datasource Remotely

2001-05-22 Thread Toby Allsopp
On Tue, May 22, 2001 at 01:53:11PM -0700, Nicholas wrote: > I am attempting to access a connection through a > remote DataSource. I have set up my connection pool > called OracleDs and at startup time I see a message: > > [OracleDS] Starting > [OracleDS] XA Connection pool OracleDS bound to > jav

Re: [JBoss-user] Re: Multiple Remote EJB Requests Bombs JBoss

2001-05-22 Thread Toby Allsopp
On Wed, May 23, 2001 at 08:18:20AM +1200, Jonathan Ackerman wrote: > I think that BMT complicates this quite a bit. > > Check out section 11.3.3 of the EJB 1.1 spec. The example code gets the > Connections before the transaction is created and only closes them after the > transaction is committed

Re: [JBoss-user] Calling CORBA objects from JBoss

2001-05-22 Thread Ivan Novick
So does that mean that from within JBoss we can make calls to OpenORB , visibroker or some other ORB? I understand you are saying there is a bug in the JDK orb preventing the calls? Ivan ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sour

Re: [JBoss-user] Oracle and Jboss problems: the story continues... (or seems to). XA issue?

2001-05-22 Thread David Ward
Toby, Can you please clarify? In 2.2.1, can I or can I not move the Xid class configuration into my jboss.jcml? I'd like to have all my config changes in one place. Do I need to have the "org.jboss.tm.usertx.server.ClientUserTransactionService" mbean listed? Does anyone know if this chan

[JBoss-user] Trouble Using Datasource Remotely

2001-05-22 Thread Nicholas
I am attempting to access a connection through a remote DataSource. I have set up my connection pool called OracleDs and at startup time I see a message: [OracleDS] Starting [OracleDS] XA Connection pool OracleDS bound to java:/OracleDS [OracleDS] Started Then I created a command line client and

[JBoss-user] what does jboss use instantDB for

2001-05-22 Thread Mader, Cary J
I couldn't find a clear answer in the list archives on what instantDB is actually used for by Jboss. If anyone could provide a little detail, I'd like to hear it. Is the InstantDB instance that is started by JBoss there to use as I need? Or would I be better off starting a seperate instance of

[JBoss-user] [Fwd: [JBoss-dev] jboss-jetty.01-05-21.tgz]

2001-05-22 Thread Julian Gosnell
since all has been quiet on the dev list regarding this snapshot I shall open it to all comers on jboss-user. Jules P.S. with regards to my worry about the Enhydra error at startup: Scott M Stark wrote: > > > > I have one slight worry. The JBoss version I took out of CVS gave the > > followin

Re: [JBoss-user] Validating users

2001-05-22 Thread Emanuel Galindo
Thanks for answer, to everybody. But, anyone have a little example of this thing working? Or a big example, anything! On Tue, 22 May 2001, Scott M Stark wrote: > Use the J2EE declarative security for both web content and EJBs and you > are able to secure your content/objects without adding s

Re: [JBoss-user] Unable to compile using Filter (!!??)

2001-05-22 Thread David Ward
Emanuel, No, I'm talking about using what the spec ensures a compatible container provides you. Take the following web.xml deployment descriptor below. It's the container's job to make sure I'm authenticated and authorized before I get to access anthing in the "protected" directory; if I'm no

[JBoss-user] SecurityAssociationHandler - where do I find it?

2001-05-22 Thread Dennis Ramos
Does anyone know how to get the source code for "org.jboss.security.auth.SecurityAssociationHandler" I cannot find it. The only class I have found is "org.jboss.security.auth.callback.SecurityAssociationHandler" I am trying to figure out why there is a bug when trying to pass credentials from

Re: [JBoss-user] problem with finder find all

2001-05-22 Thread Dovan Nguyen
hi Chris, I did this and i still don't see the trace. could you please send us a sample of standardjaws.xml. i am interested in seeing what jaws is doing, especially what SQL statement (if possible) jaws is sending. thanks dovan "DeGreef, Chris J. (AIT)" wrote: > Turn the Debug flag on in the

Re: [JBoss-user] Validating users

2001-05-22 Thread Scott M Stark
Use the J2EE declarative security for both web content and EJBs and you are able to secure your content/objects without adding security to your code. When the 2.2.2 release is made next week there will be an updated version of the JAAS security tutorial that shows how to do this using a database.

RE: [JBoss-user] Re: Multiple Remote EJB Requests Bombs JBoss

2001-05-22 Thread Jonathan Ackerman
I think that BMT complicates this quite a bit. Check out section 11.3.3 of the EJB 1.1 spec. The example code gets the Connections before the transaction is created and only closes them after the transaction is committed. This leaves two points (before and after the transaction) during which the

Re: [JBoss-user] Oracle and Jboss problems: the story continues... (or seems to). XA issue?

2001-05-22 Thread Toby Allsopp
On Tue, May 22, 2001 at 01:09:47PM -0400, David Ward wrote: > Sacha, > > I don't want to de-rail this thread off of your need, but I have a > question about your configuration... > > You put the oracle.jdbc.xa.OracleXid XidClassName in the jboss.jcml, > thought the docs say to put it in jboss.

[JBoss-user] Could not start Jboss 2.2.1 in windows 2000 Server

2001-05-22 Thread Lewis Lin
Hi, This is driving me crazy! I tried to set up JBoss 2.2.1 on windows 2000 server. I kept getting this following error: JBOSS_CLASSPATH=;c:\Fairfin\jdk/lib/tools.jar;run.jar;../lib/crimson.jar jboss.home = C:\Fairfin\jboss Using configuration "tomcat" [Info] Java version: 1.3.0_01,Sun Microsys

Re: [JBoss-user] Why Minerva instead of Oracle DataSource impl?

2001-05-22 Thread Toby Allsopp
On Tue, May 22, 2001 at 10:46:34AM -0400, David Ward wrote: > http://www.jboss.org/documentation/HTML/ch03s05.html > > I have gotten Oracle 8i working fine with the example setup described on > the page above (about half-way down). I still, though, have a question > about the block below: > .

Re: [JBoss-user] question about minerva connections pooling

2001-05-22 Thread Toby Allsopp
On Tue, May 22, 2001 at 11:21:41AM +0200, [EMAIL PROTECTED] wrote: > You are right. in my first email I wrote: > > " I have one question about minerva connections pooling. I'm developing > stateless ejb's that connect themselves to the database > through minerva pooling (I need make this, becaus

Re: [JBoss-user] Invalid protocol jndi exception thrown by tomcat4 Beta 3

2001-05-22 Thread Luke Taylor
Hi Simone, I notice this problem is still there with Tomcat 4b5, and I saw your post on the tomcat-dev list. Have you had any more information on what's causing this and any possible workarounds? Any insight would be great as I seem to be switching web containers on an almost hourly basis :-). I

Re: [JBoss-user] Unable to compile using Filter (!!??)

2001-05-22 Thread Emanuel Galindo
When you said 'I suggest letting the container manage security for you' you mean that manually check that for example, i'ts the session loaded or else send the user to a login page?? i have been looked for auth. examples and the filtering mode seens to be the best for me. Let's me write code and

Re: [JBoss-user] 2nd Deployment Fails

2001-05-22 Thread Scott M Stark
> However, I'm not completely sure I understand why the other didn't work. > Before the second deployment the previous is undeployed. Why does the > TraceCategory instance live beyond this undeployment. And is there > something specific I can do such that it is destroyed and will not affect a >

Re: [JBoss-user] Calling CORBA objects from JBoss

2001-05-22 Thread Luke Taylor
Dave Ortman wrote: > > Hi, > Hi, > I recently posted an inquiry regarding the utilization of CORBA objects from > within EJB's deployed in JBoss. Basically, I was unable to have a session bean > make a call to a CORBA object. I think I replied to that thread, but it didn't appear to make i

RE: [JBoss-user] problem with finder find all

2001-05-22 Thread DeGreef, Chris J. (AIT)
Turn the Debug flag on in the standardjaws.xml file. true Rerun the scenario and look into the server.log file. You will at least see what JAWS was doing just before the error. I usually find that an unexpected NULL was involved at some point. -Original Message- From: Belli Andrea [mai

Re: [JBoss-user] Unable to compile using Filter (!!??)

2001-05-22 Thread David Ward
Emanuel, Filters are introduced in the servlet 2.3 spec. I'm guessing your servlet.jar is only 2.2, which is what comes with Tomcat 3.x. servlet 2.3 will be part of Tomcat 4. On a side (design) note, I suggest letting the container manage security for you. The Sun example is probably just

[JBoss-user] Unable to compile using Filter (!!??)

2001-05-22 Thread Emanuel Galindo
Hi, im designing auth process that map filter with a LogFilter servlet that parses incoming request. The code is tiny and it's structured base in an sun example. The problem come's when i compile it, i cannot reach the Filter class, obviusly either the FilterConfig or FilterChain. I decompress s

Re: [JBoss-user] Sharing environment state

2001-05-22 Thread Peter Fagerlund
- "instance adaptive parallelism" The model would be to let the JBoss instances (VM's) share resources transparently as one ... by using JNDI, RMI, JMX, JMS ? ... There is a first implementation called JBossHA ( High Availability ) for stateless session beans - today, using RMI smart proxies. I

[JBoss-user] Sample client using SOAP with JBoss/ZOAP

2001-05-22 Thread Rafael S. V. Guimarães
Hi, Somebody has sample client using SOAP with JBoss/ZOAP, or tutorial? Thanks. - Rafael Simões Vieira Guimarães Grupo Stela Programa de Pós-Graduação em Engenharia de Produção - PPGEP Universidade Federal de Sa

RE: [JBoss-user] ClassPathExtension mechanism does not seem to work...

2001-05-22 Thread Morrison, Scott
When you do this - do you need to make any changes to the jboss configuration or does jboss always load any jar files in lib\ext? thanks scott -Original Message- From: Phan Anh Tran [mailto:[EMAIL PROTECTED]] Sent: Monday, May 21, 2001 11:38 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-u

Re: [JBoss-user] UndeclaredThrowableException

2001-05-22 Thread danch (Dan Christopherson)
Look at the server's log file. There should be a couple of stack traces there as well. The first of these should point to what's really happening. -danch Hermann RANGAMANA wrote: > Hi all gurus, > > I'm developping a simple apli using jBoss. i successfuly deployed an simple > BMP. But when i

RE: [JBoss-user] petstore 1.1.2

2001-05-22 Thread Robert Nicholson
Yes the only reason you should need it and you can work around it is because they use a j2ee RI class for deployment in the Ant rules. This can be easily worked around by simply building a war and not worrying about that class. That's the only reason you should need to reference j2ee.jar from RI

[JBoss-user] problem with finder find all

2001-05-22 Thread Belli Andrea
I have a jsp which call a session bean, which does a query on a db by an entity bean: the problem is when I try to view the rows on db. The jsp invoke the following method myfindAll(): public NewsRemote[] myfindAll() throws RemoteException,FinderException { NewsHome home = (NewsHo

[JBoss-user] MDB and transactions

2001-05-22 Thread Chree Haas
Hey all, I'm having problems sending transacted messages from a MessageDrivenBean. In the attached example program, the client (test.Main) send a mesage to queue/A. MdbA receives the message and sends a second message queue/B which is received by MdbB. If the QueueSession in MdbA is crea

Re: [JBoss-user] petstore 1.1.2

2001-05-22 Thread Cuong Tran
You need j2ee sdk to build it. --- mroosendaal <[EMAIL PROTECTED]> wrote: > Has anyone installed and deployed the new petstore 1.1.2, when i ran the > build.bat from petstore i got loads (60) of errors. > > I have jdk1.3 and jboss is running, it shouldn't be more then just executing > the bui

[JBoss-user] UndeclaredThrowableException

2001-05-22 Thread Hermann RANGAMANA
Hi all gurus, I'm developping a simple apli using jBoss. i successfuly deployed an simple BMP. But when i try to call a method on this Bean from the client, the following message is thrown (in the client side) Can anybody help me to understand what this message means and ... the solution? java.l

Re: [JBoss-user] Oracle and Jboss problems: the story continues... (or seems to). XA issue?

2001-05-22 Thread David Ward
Sacha, I don't want to de-rail this thread off of your need, but I have a question about your configuration... You put the oracle.jdbc.xa.OracleXid XidClassName in the jboss.jcml, thought the docs say to put it in jboss.properties as the value for jboss.xa.xidclass. Also, I see an mbean bloc

Re: [JBoss-user] CMP and BLOBs

2001-05-22 Thread danch (Dan Christopherson)
I'll try to get a fix ready for Scott's 2.2.2 release next week. danch Tim McCune wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > I'm trying to, but there is currently a pretty serious bug in JBoss > that is really holding me back: > > http://sourceforge.net/tracker/index.php?fun

Re: [JBoss-user] CMP and CMT: when does the commit happen?

2001-05-22 Thread danch (Dan Christopherson)
[EMAIL PROTECTED] wrote: > Hi, > > I've posted similar question previously, but probably it was not clear. > > When does the commit happens in case of container managed transaction with > the container managed persistence? Container managed persistence doesn't really effect this - that only

[JBoss-user] Oracle and Jboss problems: the story continues... (or seems to). XA issue?

2001-05-22 Thread Sacha Labourey
Hello, Again a problem with Jboss and Oracle. I am using drivers 8.1.7r3 thin and have this configuration (DB server is also 8.1.7): jboss.jcml: === 300 oracle.jdbc.xa.OracleXid oracle.jdbc.driver.OracleDriver,org.hsql.jdbcDriver,org.enhyd ra.instantdb.jdbc.

RE: [JBoss-user] CMP and BLOBs

2001-05-22 Thread Tim McCune
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I'm trying to, but there is currently a pretty serious bug in JBoss that is really holding me back: http://sourceforge.net/tracker/index.php?func=detail&aid=424059&group_ id=22866&atid=376685 > -Original Message- > From: Darius Davidavicius

[JBoss-user] .EAR in JBoss-2.2.1_Tomcat-3.2.1 NT service

2001-05-22 Thread Jose Manuel Garcia
Hello, I am running JBoss-2.2.1_Tomcat-3.2.1 as an NT service (using jk_nt_service.exe), and I can do it indeed, but it does not unpackage any .EAR file in the deploy directory. It may be because I had to remove parser.jar from the classpath to avoid a sealing violation. Is it the problem

[JBoss-user] Validating users

2001-05-22 Thread Emanuel Galindo
Hi, this is a very conceptual question. Im looking for a way to authenticate my users against a database table with nick or user id and password. I see a lot of ways and i imagine others. I want to know what is the best. The best for me would be like apache-perl dir security with dbi. When you

[JBoss-user] CMP and CMT: when does the commit happen?

2001-05-22 Thread RRokytskyy
Hi, I've posted similar question previously, but probably it was not clear. When does the commit happens in case of container managed transaction with the container managed persistence? Required: ? RequiredNew: ? Thanks in advance for any ideas. Roman Rokytskyy. ___

RE: [JBoss-user] 2nd Deployment Fails

2001-05-22 Thread Michael Hustler
Thanks, I re-packaged the TraceCategory into a separate .jar file and stuck it in lib/ext and this works. However, I'm not completely sure I understand why the other didn't work. Before the second deployment the previous is undeployed. Why does the TraceCategory instance live beyond this undeplo

[JBoss-user] SQL Statements as JNDI resources

2001-05-22 Thread Pedro E. Gómez
I have an application that is not over ejb. I have all the SQL Statements of the application in a XML file. Ej select * from countries where status = 'ENABLED' I am migratting the application to j2ee, using jboss. How can i to put all the statements accesible by the EJB? I would

RE: [JBoss-user] CMP and BLOBs

2001-05-22 Thread Ernest Chen
Title: RE: [JBoss-user] CMP and BLOBs I used BLOB field to store text, CMP works fine with the following mapping in jaws.xml ^M    body^M    body^M    JAVA_OBJECT^M    BLOB^M ^M -Original Message- From: Darius Davidavicius [mailto:[

Re: [JBoss-user] CMP and BLOBs

2001-05-22 Thread Darius Davidavicius
re hi, For BMP beans if I using Oracle 8i BLOBs works fine. I'm interesting if anyone uses CMP for BLOBs storing. (not necessary Oracle) site http://wamoz.com/JDBC_and_Oracle_LOB.asp tells about the BMP way of data reading / writing. D&D On Tue, 22 May 2001 16:04:23 +0200, Burkhard Vogel

[JBoss-user] Logging with embedded Tomcat

2001-05-22 Thread Robin Hillyard
I'm running JBoss-2.2.1 with embedded Tomcat 3.2.1 in a Windows 2000 environment and I'm having problems with logging. Logging of the JBoss activity works just fine until the first invocation of a Tomcat web app is made. After the first few messages appear in the (jboss) server.log file, that fi

Re: [JBoss-user] Problems with having EmbeddedTomcat in JBoss to add contexts

2001-05-22 Thread danch (Dan Christopherson)
If you upgrade to the JBoss 2.2.1/Tomcat bundle, server.xml will be parseed. Also, if you package your app as an Enterprise Java app (.ear) a context will be added automatically when the ear file is deployed. Please see the documentation section on the JBoss website for information about upgra

[JBoss-user] Why Minerva instead of Oracle DataSource impl?

2001-05-22 Thread David Ward
http://www.jboss.org/documentation/HTML/ch03s05.html I have gotten Oracle 8i working fine with the example setup described on the page above (about half-way down). I still, though, have a question about the block below: OracleDS org.opentools.minerva.jdbc.xa.wrapper.XADataSourceImpl jdbc:ora

RE: [JBoss-user] Jbuilder 4.0 Foundation & JBoss2.2.1 HowTo Guide

2001-05-22 Thread John Menke
Catalina is Tomcat 4. Thanks for the reply. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of John P. > Coffey > Sent: Monday, May 21, 2001 5:21 PM > To: [EMAIL PROTECTED] > Subject: RE: [JBoss-user] Jbuilder 4.0 Foundation & JBoss2.2.1 HowTo > Guide

[JBoss-user] Problems with having EmbeddedTomcat in JBoss to add contexts

2001-05-22 Thread Linda Danielsson
Hi,   I´m using Tomcat 3.2.1 and JBoss2Final. How do I get the ContextManager in JBoss (Tomcat) to add Contexts? The only context added is Ctx(). Since I have my application in another webapp other than default, I have configured server.xml, in Tomcat, for this. I want my application-directory to b

[JBoss-user] Sharing environment state

2001-05-22 Thread Jonas Bergström
Hello! If I need to keep a common state for the whole JBoss environment (common to all JBoss servers in a future clustered solution), how is that accomplished? My first idea was to use a BMP entity bean, but since I don't want to use a database to store the state in (the state is not persistent,

RE: [JBoss-user] Interesting test of JDBC pooling

2001-05-22 Thread Brian D. Brown
Hello Georg, Thanks for your suggestion. I instantiated the datasource in the ejbCreate() method (via the JNDI lookup), and got the following results: 5457 ms. 5268 ms. 5398 ms. It shaved roughly a second off the time required to do 1000 transactions, so I guess it's safe to say that, in this

Re: [JBoss-user] [Newbie] Manual Example/Auto Deployer

2001-05-22 Thread Burkhard Vogel
Hi, I would guess you replaced parts of the original config while including your Oracle driver, thus building an unstable situation. In the JDBC-Driver section of jboss.jcml, include the Oracle and leave the Hypersonic driver, remove InstantDB. In the following part of jboss.jcml, describing the d

Re: [JBoss-user] CMP and BLOBs

2001-05-22 Thread Burkhard Vogel
No, due to Oracle driver limitations. see http://wamoz.com/JDBC_and_Oracle_LOB.asp Burkhard - Original Message - From: "Darius Davidavicius" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 22, 2001 3:20 PM Subject: [JBoss-user] CMP and BLOBs > hi all, > > I would be thankf

[JBoss-user] Same context with diferent DataSources

2001-05-22 Thread Emanuel Galindo
Anyone knows if jaws or whatever allows to have diferent datasources in the same context? chao. ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

RE: [JBoss-user] A problem with the list archive ??

2001-05-22 Thread Norton Lam
Why doesn't someone just point the _Archive_ link on the sourceforge.net page to the "real" archive? That's how everybody is getting to GeoCrawler. -Original Message- From: Burkhard Vogel [mailto:[EMAIL PROTECTED]] Sent: Monday, May 21, 2001 12:39 PM To: [EMAIL PROTECTED] Subject: Re: [J

Re: [JBoss-user] problem with authentication

2001-05-22 Thread Scott M Stark
> I apologize for not researching further before asking, but I'm hoping you > (someone) knows of the top of your head. > > >This is a bug in the JAAS login config file class. > Has this been reported to Sun? > Yes. > >The workaround it to have a single thread force a > >load of the login confi

[JBoss-user] CMP and BLOBs

2001-05-22 Thread Darius Davidavicius
hi all, I would be thankfull if anyone advice me if it is possible to map byte[] to the BLOB field of DB? I'm going to use Oracle 8i, MSSQL or PostgreSQL any tips, samples or links to how to would be perfect. Thanks in advance, D&D

[JBoss-user] Running Tomcat in JBuilder for debugging

2001-05-22 Thread Christophe GARCIA
Hi,   I am trying to run the "EmbededTomcat" object in JBuilder to be able to debug my servlets. It has a security access problem.   I added in the JVM options the following :   -Djava.security.manager -Djava.security.policy="d:/jboss-tomcat-2.2/jakarta-tomcat-3.2.1/conf/tomcat.policy" -Dtomca

RE: [JBoss-user] problem with authentication

2001-05-22 Thread Alex Radka
I apologize for not researching further before asking, but I'm hoping you (someone) knows of the top of your head. >This is a bug in the JAAS login config file class. Has this been reported to Sun? >The workaround it to have a single thread force a >load of the login configuration file so that w

Re: [JBoss-user] EmbeddedTomcat: Element "web-app" does not allow "servlet" here

2001-05-22 Thread Julian Gosnell
This looks like the XML telling you that although it has been instructed to check the grammar of your webapps deployment descriptor (web.xml, jboss-web.xml) it hasn't been given a custom error handler through which to report problems - but it will spit them out anyway. element webapp does not all

Re: [JBoss-user] [Newbie] Manual Example/Auto Deployer

2001-05-22 Thread Tobias Frech
Hi! Klaus Pittig wrote: > Hi. > I'm new to JBoss (not to J2EE). > I can start JBoss successfully including registering my Oracle JDBC > Driver, > but the Auto Deployer does not recognize the example EJB mentioned in > the > manual. JBoss is running under Win2k with JDK1.3.1 (-b24 release). > What

[JBoss-user] error building petstore 1.1.2

2001-05-22 Thread mroosendaal
I've managed to update Jboss to communicate with MySQL. The problem is that when i build the petstore i get the following error *   ../build/petstore.ear[error] No local string for enterprise.deploymen

[JBoss-user] Tomcat wont load any pages anymore after first use of connection pool.

2001-05-22 Thread Rien Nentjes
Hello, While migrating from a web-server application to a J2EE application with JBoss, I run into some problems. The original version was already working on Tomcat and now I wanted to add the JBoss functionality. I am using Connection polling with Oracle through JNDI which seems to work fine. But

[JBoss-user] EmbeddedTomcat: Element "web-app" does not allow "servlet" here

2001-05-22 Thread Richard Conway
I'm using 'JBoss-2.2.1_Tomcat-3.2.1' running on Solaris 2.6. I'm getting the occasional set of lines in my logfile... [EmbeddedTomcat] Warning: validation was turned on but an org.xml.sax.ErrorHandler was not [EmbeddedTomcat] set, which is probably not what is desired. Parser will use a defaul

[JBoss-user] CommunicationException !

2001-05-22 Thread dinesh babu
hi, I am new to Jboss and trying to deploy the demo Interest ejb application using jboss2.2.1 server. Server is running successfully, but when i try to deploy the interest.jar using Auto deploy, it throws javax.naming.CommunicationException. thanx in advance! dinesh. ___

[JBoss-user] Is it possible to check the validity of a home interface?

2001-05-22 Thread Lennart Petersson
Just to see if it has been removed by the container or not? Using Ejipt we called the EJBHome method getEJBMetaData() within a try-catch block and in the catch did a new lookup, but with JBoss that call is handled locally on the client, never touching the container. We have a helper class that

[JBoss-user] EmbeddedTomcat command line options

2001-05-22 Thread Richard Conway
I'm using 'JBoss-2.2.1_Tomcat-3.2.1' running on Solaris 2.6. I would like to run the embedded tomcat service with the equivalent of '-config myconfig.xml' as can be done when tomcat is launched from the command line. Is this possible ? Richard. ___

  1   2   >