Re: [JBoss-user] Transaction

2001-08-06 Thread Ivan Novick
pable and may leave your resources in inconsistent states. > > > david jencks > > On 2001.08.05 23:59:28 -0400 Ivan Novick wrote: > > Hi, > > > > If a bean is labeled container transaction in the deployment desrciptor, > > does that mean that if I execute 100 li

[JBoss-user] Transaction

2001-08-05 Thread Ivan Novick
Hi, If a bean is labeled container transaction in the deployment desrciptor, does that mean that if I execute 100 lines of code in a session bean method, they will all be reversed if an exception occurs, including all writes to a database using JDBC? My guess is probably no, but then what is the

Re: [JBoss-user] Auto-increment(revisited)

2001-07-26 Thread Ivan Novick
In MySql I have do not user auto-increment but have my own auto-increment table.  That way when I create a new record i just check the table to get the primary key then increment it.   Ivan - Original Message - From: Hermann RANGAMANA To: [EMAIL PROTECTED] Sent: Thurs

Re: [JBoss-user] JBoss security

2001-07-22 Thread Ivan Novick
I had the some problem, seems there may be a way around it, but i never figured it out. ivan - Original Message - From: "Wei-ju Wu" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, July 21, 2001 11:43 PM Subject: [JBoss-user] JBoss security > Hi, > > I played around with the

[JBoss-user] How to use EJBDoclet Sample

2001-07-18 Thread Ivan Novick
In the sample should the compile target depend on the buildbeans target instead of prepare? Maybe a typo, or I miss the point. Ivan ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] Setting & Accessing Resource Files in JBoss

2001-07-17 Thread Ivan Novick
Oh i get it, the servlet can call the session bean to get the value from the resource.    Thanks, Ivan - Original Message - From: Lorenzo Resta To: [EMAIL PROTECTED] Sent: Tuesday, July 17, 2001 8:21 AM Subject: Re: [JBoss-user] Setting & Accessing Resource F

Re: [JBoss-user] Setting & Accessing Resource Files in JBoss

2001-07-17 Thread Ivan Novick
I see.  Is there any way to set up one resource that can be accessed both by an EJB and a web application?  For example can you locate the resource in the EAR file and load it from both places?   Thank you for your help, Ivan - Original Message - From: Lorenzo Resta To:

Re: [JBoss-user] Setting & Accessing Resource Files in JBoss

2001-07-16 Thread Ivan Novick
Is a resource preferred to a property file, or are they the same thing?   Ivan - Original Message - From: Lorenzo Resta To: [EMAIL PROTECTED] Sent: Monday, July 16, 2001 2:12 AM Subject: Re: [JBoss-user] Setting & Accessing Resource Files in JBoss Hi Burkard,

Re: [JBoss-user] pass by reference

2001-07-16 Thread Ivan Novick
Thanks Ole and Michael, will return the object with all the data. Ivan - Original Message - From: "Ole Husgaard" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 16, 2001 3:27 AM Subject: Re: [JBoss-user] pass by reference > Hi, > > Ivan Nov

[JBoss-user] pass by reference

2001-07-15 Thread Ivan Novick
Hi, Can an object be passed by reference to an EJB, filled with data, and than have that data analyzed in the function that called the EJB? The problem is, I need to return multiple values from the function. So I setup an EJB method like such boolean GetUserData(String username, UserData ud)

Re: [JBoss-user] BLOB

2001-07-13 Thread Ivan Novick
hard Vogel wrote: > > Hi, > > If your DB driver supports blobs, why not (oracle has problems, AFAIK) > > > Burkhard > > - Original Message - > > From: "Ivan Novick" <[EMAIL PROTECTED]> > > To: <[EMAIL PROTECTED]> > > Sent: T

Re: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread Ivan Novick
The mailing list is easy and fun...I find the forum cumbersome and probably would only use it in desperation. Ivan - Original Message - From: "Kemp Randy-W18971" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 12, 2001 6:17 AM Subject: [JBoss-user] 2 WEEKS EVICTION NOTICE

[JBoss-user] BLOB

2001-07-12 Thread Ivan Novick
Can an entity bean contain a BLOB type attribute that represents a picture in a database? Ivan ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] Help-SSL

2001-07-11 Thread Ivan Novick
SSL can be easily used by following the instructions on the Tomcat v. 3.2 documentation. You will need the JSSE download also from javasoft. Ivan - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 10, 2001 9:55 PM Subject: [JBoss-user] Help-SSL >

[JBoss-user] principal=null --> Possible JBossSX Bug

2001-07-07 Thread Ivan Novick
JBoss team, After reviewing the archives it seems several people have had similar problems to this one. So I am assuming either its a bug or something that is complex to implement. Either way just wanted to pass it along: When accessing an EJB from a servlet that hardcodes the JAAS password, o

Re: [JBoss-user] JBossSx -- Authentication Exception

2001-07-07 Thread Ivan Novick
: [JBoss-user] JBossSx -- Authentication Exception > Compare your setup to the tutorial as what your doing is exactly what it > does. You do not have something configured correctly. > > - Original Message - > From: "Ivan Novick" <[EMAIL PROTECTED]> > To: <[EMAIL PROTEC

Re: [JBoss-user] JBossSx -- Authentication Exception

2001-07-07 Thread Ivan Novick
I am using the 2.2.2 JBoss/Tomcat bundle with the integrated security and I have followed the security tutorial. Everything is setup except I am getting the following error: I am using the org.jboss.security.auth.spi.UsersRolesLoginModule. There is a servlet trying to access a Session Bean. A

[JBoss-user] JBossSx -- Authentication Exception

2001-07-06 Thread Ivan Novick
Hi, I am using the org.jboss.security.auth.spi.UsersRolesLoginModule There is a servlet trying to access a Session Bean. A message in JBoss window says: "user 'bond' authenticated." Then the Home Interface is found with no errors. However on the line where the session bean is created, an exc

[JBoss-user] JAAS roles, web.xml

2001-07-05 Thread Ivan Novick
Hi, If a role is specified in web.xml as such A user allowed to invoke echo methods beanaccesss And then a servlet accesses an ejb, if that ejb tries to access another ejb is the role passed along or does the next ejb need to login? Any input on this would be apprecia

Re: [JBoss-user] Tools

2001-07-01 Thread Ivan Novick
As far as app deployment, ANT can be utilized to automate the packaging and deployment process. As far as generation of XML descriptors, it is fairly easy to have one sample XML descriptor file and then just cut and paste to create any others. This may not be what you are looking for, but imho i

Re: [JBoss-user] Ant

2001-06-24 Thread Ivan Novick
you dont need custom tasks, just use jar and war and move and copy and mkdir etc. Ivan - Original Message - From: "Hunter Hillegas" <[EMAIL PROTECTED]> To: "JBoss 2" <[EMAIL PROTECTED]> Sent: Sunday, June 24, 2001 3:37 PM Subject: [JBoss-user] Ant > I've been using Ant with my JSP+Serv

Re: [JBoss-user] Using the Included JavaMail

2001-06-24 Thread Ivan Novick
I believe the properties file is just a default value, you can pass in a different address with the method call Ivan - Original Message - From: "Hunter Hillegas" <[EMAIL PROTECTED]> To: "JBoss 2" <[EMAIL PROTECTED]> Sent: Saturday, June 23, 2001 11:10 AM Subject: [JBoss-user] Using the I

Re: [JBoss-user] manual and business

2001-06-17 Thread Ivan Novick
last i checked borland and bea charge thousands of dollars for developer licenses, they give you a 30 day free trial , but charge $ for developer license. Ivan - Original Message - From: "danch" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 15, 2001 8:31 PM Subject: Re: [

Re: [JBoss-user] scripting with Ant

2001-05-31 Thread Ivan Novick
My idea would be to leave Jboss running and just use ant to redeploy and run the tests. Why restart JBoss? Ivan - Original Message - From: "Warren Janssens" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 30, 2001 3:51 PM Subject: [JBoss-user] scripting with Ant > What

Re: [JBoss-user] The State of EJB2.0 in JBoss

2001-05-31 Thread Ivan Novick
I agree that timely and full suport for EJB 2.0 and Corba (RMI/IIOP) are critical for the eventual success and acceptance of JBoss. Ivan - Original Message - From: "Burkhard Vogel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 31, 2001 6:09 AM Subject: Re: [JBoss-user]

Re: [JBoss-user] tools for ear

2001-05-23 Thread Ivan Novick
Ant can do it no --> you just have to write the script Ivan - Original Message - From: "Jim Downing" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 23, 2001 7:58 AM Subject: Re: [JBoss-user] tools for ear > Sorry, my mistake, the *ear* task in the 1.4alpha does the job

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

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] 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] 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

[JBoss-user] Documentation Error

2001-05-21 Thread Ivan Novick
http://www.jboss.org/documentation/HTML/ch06s05.html The ABean implements EntityBean but is declared in tag in the ejb-jar.xml Is this a typo or am I missing the concept? Ivan ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.

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

2001-05-21 Thread Ivan Novick
I set the value to 0 in the create method and somehow MySQL makes the value the proper value uder the autoincrement.  Seems to work, but makes me a little nervou.   Ivan - Original Message - From: Paul Austin To: Jboss-User Sent: Monday, May 21, 2001 9:19 AM Subject

Re: [JBoss-user] List available as ng?

2001-05-19 Thread Ivan Novick
I agree with your idea Ivan - Original Message - From: "Torsten Terp" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, May 19, 2001 2:59 AM Subject: RE: [JBoss-user] List available as ng? > > Hi, > > I agree that a newsgroup has certain advantages of a mailing list, > but I h

Re: [JBoss-user] CMP table for entity bean never being created

2001-05-19 Thread Ivan Novick
Do you have jaws.xml file and if so could you paste it into a message so we could see your code. Ivan - Original Message - From: "Lisa Stuart" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 18, 2001 8:29 PM Subject: [JBoss-user] CMP table for entity bean never being create

Re: [JBoss-user] Deployment directory with Jboss-Tomcat version

2001-05-19 Thread Ivan Novick
All applicatios should be deployed as war jar and ear files in the JBoss deploy directory Ivan - Original Message - From: "Lionel Siau" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, May 19, 2001 4:59 AM Subject: [JBoss-user] Deployment directory with Jboss-Tomcat version >

Re: [JBoss-user] JBoss and ANT

2001-05-17 Thread Ivan Novick
What is EJBDoclet? could you provide some more information or a link. Regarding having ANT write the beans, I dont think that is such a strecth ... imagine just defining your properties and methods (including code) in an xml format and then having ant or some other tool generate all required fil

Re: [JBoss-user] Problem with ... jdbc?

2001-05-16 Thread Ivan Novick
Are you sure that you only have 1 JdbcProvider tag set with all of the drivers listed. You can not have multiple of the code below only one that lists all drivers. org.gjt.mm.mysql.Driver Ivan - Original Message - From: "Emanuel Galindo" <[EMAIL PROTECTED]> To: <[EMAIL PROTE