[JBoss-user] logging question

2001-06-20 Thread fractals
Hi, Is it possible to get logging information "on demand" ? That is: I would like to get logging information and than maybe reboot my system (or allow it to crash), and then get a conduit to my app server (JBoss) again to get more info, and so on... I guess this must be a very obvious request, b

Re: [JBoss-user] why so little interest in SOAP

2001-05-05 Thread fractals
Yes, there IS some overhead associated with XML parsing, but XML parsers can be very efficiently designed for the kind of things SOAP needs (see the XML library of http://www.themindelectric.com), and as I learnt early on when doing my first steps with EJB, you'd better limit the number of access

[JBoss-user] why so little interest in SOAP

2001-05-04 Thread fractals
Hi, This is just to say that I'm surprised not having read more about SOAP on this list. I read a little quite a while ago about this simple yet amazing technology, but I thought it was some kind of M$ thing and so got disinterested by it. Now that I've looked it from a bit closer, I think it rea

[JBoss-user] SOAP help needed !

2001-05-02 Thread fractals
I've downloaded and installed ZOAP. Now I didn't made the tests, because they seem tedious to run (I at least tried), and alse because I don't know exactly what tests they perform. I'd better assume the thing is working and have a feel of how it works before going through extensive tests. I'm just

Re: [JBoss-user] ZOAP doc dead link

2001-05-01 Thread fractals
> I was under the impression that jboss ZOAP is on hold. Look at Apache SOAP. > It works with Tomcat and jBoss EJBs. I've tried it. Works great. I was there already but I found nothing about interfacing with EJB's. Only RPC and SMTP stuff which I know nothing about. Or do you know how to use

[JBoss-user] ZOAP doc dead link

2001-05-01 Thread fractals
I can't get a hold on the ZOAP info page: http://www.jboss.org/zoap/zoap.htm Can somebody point me to a documentation resource concerning this technology, which, BTW, seems to me of great interest to avoid dumb servlet coding !!! Thanks in advance Candide Kemmler __

[JBoss-user] jboss-jetty EAR

2001-04-19 Thread fractals
Hi, I have developed a couple of EJB's for some kind of shared calendar for which I have a web interface and a Java client. I run the servlets in JServ/Apache, which works very well, but for "prettyness" reasons and enhanced configurability, I'd like to package the whole thing in an EAR archive.

[JBoss-user] CMP vs BMP

2001-04-05 Thread fractals
First of all, thanks to Sacha Labourey and Chris Kimpton: everything works fine now, and fast. I just had to understand that ejb's don't necesseraly HAVE TO be used everywhere. Now, another performance-related question: I've read somewhere in the JBoss tutorial that the default behavior of the c

[JBoss-user] Gosh, this is slow !

2001-04-05 Thread fractals
OK, this is my first "real" test of JBoss: I tried to make an address book with my own data which consist of ca 300 records. I just want to show the addresses in a JTable, so I use code like so: Object ref = jndiContext.lookup("totg/AddressBook"); AddressBookHome home =

[JBoss-user] Load exception

2001-04-04 Thread fractals
Hi, I dunno understand this error (must be VERY common, I know): TRANSACTION ROLLBACK EXCEPTION: Load failed; nested exception is: java.lang.NullPointerException; nested exception is: java.rmi.ServerException: Load failed; nested exception is: java.lang.NullPointerException jaava.rm

[JBoss-user] Role question

2001-03-29 Thread fractals
Hi everyone ! I'm willing to add role-verification to my beans. But for that, I need to be able to dynamically assign roles to users. At this point of reading the docs, the only way to configure roles I learned was to specify them in a properties file. A little bit primitive I think... Can someo

Re: [JBoss-user] access modifiers lost in EJB programming ?

2001-03-26 Thread fractals
> hi, > > On Mon, 5 Mar 2001, fractals wrote: > > > AFAIK, there's no way to make a method anything else than public in a remote > > interface. Sad, because I *would* like to hide some of the methods I define > > for some of my beans. > > > > Really

[JBoss-user] Timestamp problem with postgresql

2001-03-26 Thread fractals
Sorry to bother this jboss list with a postgresql question, but this is a simple one concerning PostgreSQL: I get the following error: Bad Timestamp Format at 19 in 2001-03-26 16:06:04.24+02 This is apparently due to the +02 part. I've tried to set the DATESTYLE format to ISO and 'Europe/Pa

Re: [JBoss-user] help needed: don't understand exception (jaws)

2001-03-26 Thread fractals
OK false alarm. It's all my fault. The error was somewhere else. Sorry about the noise. candide - Original Message - From: fractals <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 08, 2001 8:29 AM Subject: Re: [JBoss-user] help needed: don't unde

Re: [JBoss-user] help needed: don't understand exception (jaws)

2001-03-25 Thread fractals
> something else is expected. > > Filip > > ~ > Namaste - I bow to the divine in you > ~ > Filip Hanik > Software Architect > [EMAIL PROTECTED] > www.filip.net > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED]]On

[JBoss-user] help needed: don't understand exception

2001-03-25 Thread fractals
I get the following exception on attempt to create an ejb: java.rmi.ServerException: Store failed; nested exception is: java.lang.ClassCastException: java.sql.Timestamp at org.postgresql.jdbc2.PreparedStatement.setObject (PreparedStatement.java:480) the jaws.xml is correctly set though,...

Re: [JBoss-user] exception handling

2001-03-24 Thread fractals
> Vincent Harcq wrote: > > > Hi! > > Do not use RemoteException but your a new one you create. > > throw MyException("blablabla"); > > RemoteException is considered System is catch by the server and rethrown. > > A custom Exception is also catched but rethrown the same. > > Vincent. Thank you,

[JBoss-user] exception handling

2001-03-24 Thread fractals
Let's consider the following remote method implementation (this is the implementation of a method defined in a remote interface of an EJB): public UserSession getSession ( String sessionId, String requestId, String requestIdentifier ) throws RemoteException, CreateException, FinderExc

Re: [JBoss-user] access modifiers lost in EJB programming ?

2001-03-24 Thread fractals
method should be available to some you have > this path as well. > > - Original Message - > From: "fractals" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Monday, March 05, 2001 2:37 PM > Subject: [JBoss-user] access modifiers lost in EJB programming

[JBoss-user] access modifiers lost in EJB programming ?

2001-03-23 Thread fractals
AFAIK, there's no way to make a method anything else than public in a remote interface. Sad, because I *would* like to hide some of the methods I define for some of my beans. Really, is there no way to get this cornerstone of OO programming back into the EJB realm ? Thanks, candide __

Re: [JBoss-user] help needed: transaction options for a simple case

2001-03-21 Thread fractals
ke a call to a stateless session > bean that does all of it in one transaction. I've made comments below on > what I'd do differently. > > > On Sat, 3 Mar 2001, fractals wrote: > > > Hi, > > > > This is a very simple question concerning transactions: &g

[JBoss-user] help needed: transaction options for a simple case

2001-03-21 Thread fractals
Hi, This is a very simple question concerning transactions: I need to make a user-registration in multiple steps: 1. The user enters a pin code that corresponds to a certain amount of money he/she spent to get access to the application -> application checks the pin code, and marks a corresp

Re: [JBoss-user] table not found

2001-03-21 Thread fractals
Hi dan ! Thank you very much again for all your answers. > > I read in the docs that objects should be bound to java:/env and not java:/ > This binding here is really so that JBoss' internals can see it. You > shouldn't access it here, although it will work if you do. It does. What's the proble

Re: [JBoss-user] table not found

2001-03-21 Thread fractals
Hi dan ! (this might be the second time you receive this message. It's just that, weirdly, I don't receive any more messages from the jboss mailing-list, and just to be sure I want to send this last message once again) Thank you very much again for all your answers. > > I read in the docs that

Re: [JBoss-user] table not found

2001-03-20 Thread fractals
;ll be pointed at the datasource named 'DefaultDS', not at the one > you've named infoKioskStore. > > On Fri, 2 Mar 2001, fractals wrote: > > > I could fix the last problem: message TRANSACTION ROLLBACK EXCEPTION. > > I added: > > > >

[JBoss-user] table not found

2001-03-20 Thread fractals
I could fix the last problem: message TRANSACTION ROLLBACK EXCEPTION. I added: infoKioskStore javax.sql.DataSource Container to ejb-jar But maybe something's to be added to jboss.xml too... But the saga continues: now I have to face the follo

[JBoss-user] TRANSACTION ROLLBACK EXCEPTION

2001-03-20 Thread fractals
Hi, I'm new to JBoss, and this is my first exception. Until now, well, I'm very convinced that JBoss is a working product ! I have a CMP bean for which I want to implement a custom finder. The CMP mechanism performs perfectly well, so I know at least a good deal of what I did is not wrong. I dec