RE: [JBoss-user] JBoss webcontainer vs webserver

2001-06-20 Thread Kimpton,C (Chris)

Hi,

> -Original Message-
> From: Sumeeth Chinni [mailto:[EMAIL PROTECTED]]

> Thanx for the information.  Does this mean that all the 
> webrequests are
> directly going to Tomcat??  

Yep, that is only the process listening on your port 8000.

> Having configured Tomcat to host the JSPs, am just wondering 
> if this can
> handle the heavy loads.  Generally it is advisable to plug-in 
> Tomcat or
> Apache JServ into a webserver like Apache to handle heavy 
> loads, because the
> webservers are generally designed for the high performance 
> and availability.
> Well, this is just my first-hand opinion when I have finished with the
> configuration.  
> If this is right, then can we plug-in tomcat into the JBoss 
> webserver which
> serves dyanamic loading of classes for JMX server?? 

I am not sure what you are suggesting.  You already have one JVM running
with tomcat and jboss - this gives you the benefits of the full tomcat
product - designed for servlets/jsp - linked to jboss EJB capability - with
the performance gain of being in the same process.

Are you suggesting using the tomcat server to serve classes.  I guess that
could be done - but it does seem overkill - as all the webserver does is
that - and the kind of setup you have, I doubt that many classes are getting
loaded, at least not after it has started up - so its not used heavily.

The point of the jboss webserver is that it is a lightweight one.

> Moreover, when I want to enable the SSL requests, I think 
> with standalone
> Tomcat there is a great deal of performance problem.  

If you mean tomcat standalone from jboss, then there is a hit for that - but
you are running it combined so you are ok.

HTH,
Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.

==


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] Proxy server issues - any ideas?

2001-06-20 Thread Kimpton,C (Chris)

Hi,

> -Original Message-
> From: Richard Kasperowski [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, 19 June 2001 19:57
> To: [EMAIL PROTECTED]
> Subject: Re: [JBoss-user] Proxy server issues - any ideas?
> 
> 
> [EMAIL PROTECTED] wrote:
> 
> > 
> > Well, that obviously wasn't happening at a recent trade show - on 
> > location, our
> > application was behaving strangely (taking 15-20 times longer to 
> > execute, sharing
> > session data...).  So, SOMETHING was going on - since we 
> aren't doing 
> > URL rewriting
> > ourselves, the client-side cookies were getting set to the 
> same cookie! 
> >  We attribute
> > that to going through a proxy server on site.  Maybe the 
> proxy server 
> > wasn't set up
> > properly or something, I don't know.
> 
> 

Sounds like the proxy.

Our proxy here is very good (!) at caching things too - such that when I
visited the interflora site, the registration details were for someone else
in the office.

The site must be using cookies - but our proxy is just returning the cached
page, because the url is the same.

I guess this is a vote for session ids and against cookies.

Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.

==


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] Proper shutdown under Linux

2001-06-20 Thread Kimpton,C (Chris)

Hi,
 
This is what I do (under SuSE Linux)
 
#find the run.sh process
ps -ef | grep run.sh | grep -v grep | awk '{ print $2 }'
>/tmp/jbossserverpid1.tmp
#find the jboss/java process subordinate to it 
ps -ef | grep `cat /tmp/jbossserverpid1.tmp` | grep jboss | awk '{ print $2
}' >/tmp/jbossserverpid.tmp
#tell the java process to die nicely
kill `cat /tmp/jbossserverpid.tmp`
 
The java process then shuts down nicely and thus the run.sh finishes too.
 
HTH,
Chris


-Original Message-
From: Laurens Fridael [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, 20 June 2001 09:44
To: Jboss-User
Subject: [JBoss-user] Proper shutdown under Linux


Hi,
 
 
I'm using RedHat Linux 6.2. I can start JBoss in the background by running
"run.sh &". However, I cannot properly kill it. I can only kill the parent
process (run.sh) by issuing "kill -9 pid". This abruptly terminates JBoss
without invoking its shutdown procedure. (I'm not seeing the shutdown
commands in the server.log.)
 
Under Windows I can achieve a clean shutdown by ^C-ing in the Window.
However sending an interrupt (^C) or quit signal under Linux using "kill -2"
or "kill -3" doesn't work at all.
 
Help me out please. How can I properly shutdown JBoss under Linux? I'm using
IBM's JDK 1.3 if that matters.
 
 
Regards
-Laurens



This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.

==


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] JBoss webcontainer vs webserver

2001-06-19 Thread Kimpton,C (Chris)

Hi,

> -Original Message-
> From: Sumeeth Chinni [mailto:[EMAIL PROTECTED]]

> I have configured the Tomcat (version 3.2.1) to work with 
> JBoss (2.2.1).
> When I start JBoss, it shows that tomcat is started on the 
> port that I have
> specified (8000) in tomcat configuration.  After that it says that the
> webserver is started on a different port () and the 
> codebase is set as
> http:/// .  I haven't configured any other 
> webserver on
> this port.  When I try to access the server on webserver 
> port() there is
> no page to view, but from the tomcat port (8000) I could see 
> the actual
> pages.   Could anyone please explain me about this??  


The server on port 8000 is the one you want/have configured - as you have
found.

The server on port  is the one used to serve classes dynamically for the
JMX server.

There should also be another webserver running providing the ability to
configure your server - this is probably on port 8082!

HTH,
Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.

==


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] [OT] JMX for Dummies

2001-06-19 Thread Kimpton,C (Chris)

Hi,

Here is quick intro to JMX - with the example done with JBoss

http://www.javaworld.com/javaworld/jw-06-2001/jw-0608-jmx.html  

Short, but sweet.

Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.

==


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] standalone J2EE java client

2001-06-18 Thread Kimpton,C (Chris)

Hi,

I am not sure to what facility you are referring - are you looking to run
the client in the same VM as the JBoss server?  In which case, you can do
this - but obviously only one client can do this, the other clients will
presumably want to talk to the same JBoss VM?  Or is it a single user kind
of app anyway?

I don't remember anything about the application-client.xml - perhaps someone
with experience of this can answer you.

JBoss does support ejb-refs that allow you to connect to server resources,
if that is what you are after.

HTH,
Chris

> -Original Message-
> From: Keith Kee [mailto:[EMAIL PROTECTED]]
> 
> Hi Chris,
>I also like to use the ejb-ref specified in the 
> application-client.xml,
> and the container security. The J2EE reference 
> implementation, weblogic and
> iplanet have this facility, so that the fat client can be run in an
> application container. I wonder if JBoss has such a thing as well.
> 
> Thanks,
> keith
> 


> >From: "Kimpton,C (Chris)" <[EMAIL PROTECTED]>
> >If by this, you mean a standalone application/VM that talks 
> to another VM
> >running JBoss, then yes, it does.  Such as a fat client GUI...
> >
> >You "just" need to have the jboss client jars in your standalone apps
> >classpath and have it configured to find your jndi server - which is
> >probably your jboss server machine.
> >


> 
> > -Original Message-
> > From: Keith Kee [mailto:[EMAIL PROTECTED]]
> >   I have been searching the mailing list archive and the=20
> > manual, but do not
> > seem to be able to find any mention about the support for=20
> > standalone J2EE
> > java client. Does JBoss support that?
> >=20


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.

==


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] standalone J2EE java client

2001-06-18 Thread Kimpton,C (Chris)

Hi,

If by this, you mean a standalone application/VM that talks to another VM
running JBoss, then yes, it does.  Such as a fat client GUI...

You "just" need to have the jboss client jars in your standalone apps
classpath and have it configured to find your jndi server - which is
probably your jboss server machine.

HTH,
Chris

> -Original Message-
> From: Keith Kee [mailto:[EMAIL PROTECTED]]
> Sent: Monday, 18 June 2001 15:06
> To: [EMAIL PROTECTED]
> Subject: [JBoss-user] standalone J2EE java client
> 
> 
> Hi:
>   I have been searching the mailing list archive and the 
> manual, but do not
> seem to be able to find any mention about the support for 
> standalone J2EE
> java client. Does JBoss support that?
> 
> Thanks in advance,
> keith
> 
> 
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/jboss-user
> 


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.

==


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] search on this mailing list not working?

2001-06-15 Thread Kimpton,C (Chris)

Hi,

The one at mail-archive works pretty well...

http://www.mail-archive.com/index.php3?hunt=jboss

Just click on the list you want to search and then on the following page
enter your query...

HTH,
Chris


> -Original Message-
> From: Jim Clayson [mailto:[EMAIL PROTECTED]]
> 
> Hi!
> 
> I'm new to this list and was wondering if there is a known 
> problem with
> searching  through the messages for a topic that is already covered.
> 
> Regards
> Jim
> 



This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.

==


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] (no subject)

2001-06-13 Thread Kimpton,C (Chris)

Hi,

I have seen this caused by a clash of jar files.

Check that your CLASSPATH variable is empty before calling the bat file.

HTH,
Chris

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> 
> i got the foll.. err
> 
> 
> [Info] sun.cpu.isalist: pentium i486 i386
> [Classpath extension] Added directory:file:/C:/JBoss-2.2.2/tmp/
> [Classpath extension] Added directory:file:/C:/JBoss-2.2.2/db/
> [Shutdown] Shutdown hook added
> [Service Control] Registered with server
> [Default] java.lang.SecurityException: sealing violation
> [Default] at 
> java.net.URLClassLoader.defineClass(URLClassLoader.java:234)
> [Default] at 
> java.net.URLClassLoader.access$100(URLClassLoader.java:56)
> [Default] at 


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.

==


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] Web Server

2001-06-12 Thread Kimpton,C (Chris)


Hi,

There is a very simple control panel web interface to jboss - but not to be
used for your applications - on port 8082, I think.

To combine it with your own webapps, you need to use Tomcat or Jetty - see
the JBoss site for more info.

I don't think IIS supports servlets directly...assuming that is what you
want to do...

HTH,
Chris


-Original Message-
From: Faisal Naveed [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, 12 June 2001 10:10
To: [EMAIL PROTECTED]
Subject: [JBoss-user] Web Server


Hi,
 I am a new one to JBoss List. Can anyone tell me is there any web server
with Jboss or we have to use the other one like IIS.
Regards,
Faisal Naveed


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.

==


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] Minerva Source (oops, I lied)

2001-06-06 Thread Kimpton,C (Chris)

Hi,

I find the archive at http://www.mail-archive.com/index.php3?hunt=jboss more
reliable/up more than the sourceforge one...

This is the one linked to on the jboss site.

And searching works too...

HTH,
Chris



This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.

==


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] jBoss architecture question

2001-05-11 Thread Kimpton,C (Chris)

Hi,

> 
> So if each java process I see is a thread within the same VM, 
> does anyone 
> know what causes a new thread to be started?
> 

new Thread();

;-)



> Also, is there any way to know which of these are Hypersonic, 
> which are 
> Tomcat and which are jBoss?

Now you are talking...

Well - looking in the source is one route.

Profiling might help too.


I presume you have a performance problem and your trying to track down where
things are slow?  In which case look at optimisation tools

HTH,
Chris


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] jBoss architecture question

2001-05-10 Thread Kimpton,C (Chris)

Hi,

> -Original Message-
> From: Jim Archer [mailto:[EMAIL PROTECTED]]
> 
> My question is, are each of these a seperate VM or different 
> processes 
> running within the same VM?

See http://www.jguru.com/faq/view.jsp?EID=125066


> 
> Also, what causes the number of java processes to change? 
> Does jBoss make 
> more instances of itself as the load increases, or is it a 
> matter of Tomcat 
> needing a bean and making a jBoss instance to service a transaction?
> 

So - the processes are really just threads.  It would then depend on who
creates a thread - I am sure tomcat creates threads as part of its load
balancing and similarly jboss does too.

HTH,
Chris


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] starting on jbosstest

2001-04-26 Thread Kimpton,C (Chris)

Hi,

> -Original Message-
> From: aswath satrasala [mailto:[EMAIL PROTECTED]]

> Is there FAQ or document on
> how to run jbosstest against jboss
> 
> I download a snapshot of jboss and jbosstest.
> 
> Next what?
> 

Start your jboss server.

Build the tests - using the scripts in src/build

Run the tests - using the ant file run_tests.xml

Or using the GUI version of junit in dist/bin - I think...

Feel free to post patches to sourceforge to sort out the few that don't
work.

HTH,
Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] problems with custom finder

2001-04-25 Thread Kimpton,C (Chris)

Hi

> -Original Message-
> From: Cumps Jef [mailto:[EMAIL PROTECTED]]

>   wc_id = '{0}' and date between {1} and 2}

If this is your exact file, then you have a "{" missing - from in front of
the 2.

HTH,
Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] About TOPIC_FACTORY on MDB's sample (1 moretime : )

2001-04-24 Thread Kimpton,C (Chris)

Hi,

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]

> "javax.naming.NoInitialContextException: Need to specify class name in
enviroment 
> or system property, or as an applet parameter, or in an application
resource file: 
> java.naming.factory.initial 

This looks like an error in that you have not defined the jndi settings - do
you have a jndi.properties file?

It should be on your classpath of the client and look something like this;




java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
java.naming.provider.url=localhost:1099
java.naming.factory.url.pkgs=org.jboss.naming

#

HTH,
Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] RMI Call back

2001-04-09 Thread Kimpton,C (Chris)

Hi,

> -Original Message-
> From: BillTC [mailto:[EMAIL PROTECTED]]

> I am using jboss2.1 I have deployed a Ejb which have a list of all clients
interfaces client is a SwingUI  but > when I register to the server I am
getting an error like below:
> What I am trying 
> Here what basicly I am trying to do is . When my Swing Application is
executed it registers its interface 
> known to the server through ejb calls . At some point in time my ejb can
call back the swing an assign some 
> work.
 
-error--
--
java.lang.reflect.UndeclaredThrowableException:
java.lang.ClassNotFoundException
: com.ub.adminswing.PutTaskImpl_Stub (no security manager: RMI class loader
disa
bled)
at
sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Stream
RemoteCall.java:245)
at
sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:
220)
at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:122)


--

Looks like your server does not have access to your client stub - you've
probably not configured the swing client correctly - it needs to export
itself and make the stubs available via an RMIClassloader - have you got the
RMISecurityManager (or whatever its exact name is) installed?

I don't think this is a jboss issue - try testing the callback without
jboss.

HTH,
Chris



This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] Few doubts regarding container code??

2001-04-05 Thread Kimpton,C (Chris)

Hi,

> -Original Message-
> From: Naresh Sharma [mailto:[EMAIL PROTECTED]]
> 
> BTW, can you please tell me where to find these kind of details ?
> 
> Like i look in to the docs but could'nt find it.. am i 
> missing something?
> 

Yep - try looking harder...  ;-)

http://www.jboss.org/documentation/HTML/ch08s04.html

For more on dynamic proxies - try http://java.sun.com

HTH,
Chris

PS - TO JBOSS website maintainers... for us crippled greedy corporate types,
stuck with IE4-sp2(NT4-sp3) that we have no power to upgrade, the "New JBoss
manual" link on this page;

http://www.jboss.org/business/doco.html

still doesn't work - luckily view source does and so I can enter it
manually...


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] Gosh, this is slow !

2001-04-05 Thread Kimpton,C (Chris)

Hi,

> -Original Message-
> From: fractals [mailto:[EMAIL PROTECTED]]
> 
> I just want to show the addresses in a JTable, so I use code like so:
> 
> Object ref  = jndiContext.lookup("totg/AddressBook");
> AddressBookHome home = (AddressBookHome)
> PortableRemoteObject.narrow (ref, 
> AddressBookHome.class);
> AddressBook addressBook = home.create( user.getId () );
> 
> VisitCard [] vcards = addressBook.listAll ();


Is VisitCard a remote object/entity bean?

If it is, then making it a data object would speed things up a lot - with a
remote object all the subsequent method calls will be over the network ...
which is slooow.

Try this.

http://www2.theserverside.com/patterns/thread.jsp?thread_id=79

HTH,
Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] Few doubts regarding container code??

2001-04-04 Thread Kimpton,C (Chris)

Hi,

> -Original Message-
> From: Naresh Sharma [mailto:[EMAIL PROTECTED]]
> 
> 1) In weblogic developer has to provide a standard jar(which contains
> your bean code) to ejbc compiler, which generates another jar
> file(deployable, this jar contains all the code generated by 
> container).
> 
>   how this is done in JBoss???
>   where does container code resides and when it is being generated?
> 
> 2) When client calls any Remote method how does it gets the stubs??
> 

JBoss is way cooler!

It uses the Dynamic Proxy facilities of Java to remove the need for
application specific stubs.

Thus on the client (in jboss-client.jar) the EJBObject dynamically looks
like your remote interface, this then talks to the server which dynamically
talks to your implementation.  

Thus there are no application specific stubs - just generic jboss ones that
can handle any remote objects.  

So, with jboss, you can deploy your jar directly - no need to re-compile it
to add any custom code.

HTH,
Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] [PROPOSAL] get rid of this mailing list!

2001-04-03 Thread Kimpton,C (Chris)

Hi,

Why not use the sourceforge forums instead?

It should hopefully cut down on the number of "duplicate" replies to
enquiries - as you should see the other replies online...

People with an interest in listening/answering questions - can "monitor" the
forum - so they get emails still.

...and the search option works for forums - unlike the mailling list archive
search!


Just a thought  ;-)

See ya,
Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] startup errors

2001-04-03 Thread Kimpton,C (Chris)

Hi,

> -Original Message-
> From: Christian Hargraves [mailto:[EMAIL PROTECTED]]
> 
>  I have just started playing with JBoss. My system is :
> 
> Mandrake 8.0b1
> jdk1.3
> j2ee 1.3a
> jboss-tomcat-2.1-beta
> 
> CLASSPATH=.:/usr/local/jdk1.3/jre/lib/rt.jar:
>   /opt/jars/servlet.jar:
>   /opt/jars/classes.zip:
>   /opt/jars/oro1.1.0a.jar:
>   /opt/jars/vienna.jar:
>   /usr/local/J2EE/lib/j2ee.jar:
>   run.jar
>   :../lib/crimson.jar
> 

I'd suggest setting your CLASSPATH to nothing - it might not affect it - but
just to make sure.

The run.sh should ensure that the minimum is added to your classpath and
everything else is added via dynamic class loaders.

Regards,
Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] howto

2001-04-02 Thread Kimpton,C (Chris)

Hi,

If you are using the default setup, it will use/create a hypersonic db by
default.

It will be in the dist/db/hypersonic directory.

HTH,
Chris

> -Original Message-
> From: Ian McCallion [mailto:[EMAIL PROTECTED]]
> Sent: Monday, 02 April 2001 14:20
> To: [EMAIL PROTECTED]
> Subject: [JBoss-user] howto
> 
> 
> I'm trying to use jboss 2.1 for a small project. How do I 
> create a database
> using InstantDB or Hypersonic? Are there instructions I've 
> missed? Apologies if
> so.
> 
> Ian McCallion
> Alexis Systems Limited
> Romsey, UK
> 
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/jboss-user
> 


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] CMP Inheritance .... PLEASE Help

2001-03-28 Thread Kimpton,C (Chris)

Hi,

> -Original Message-
> From: ivanhoe Abrahams [mailto:[EMAIL PROTECTED]]

> Here is a short decription of some of my Entities.
> 
> ACTOR->   SuperClass
> 
> PERSON   -> extends Actor
> 
> Teacher-> extends Person
> 
> My problem is that  on the client side I have a reference to 
> the Teacher
> Bean . Now I want to set the FirstName (which actually exists on the
> Person Bean).
> I can call setFirstName because I inherited Person(REMOTE)  AND I can
> trace the call through to the PersonBean(IMPLEMENTATION)  but
> when I look in the database the value that I set  via setFirstName is
> NOT THERE (only NULL) .
> PS While I still have the reference to the Teacher  Remote interface I
> make a call to getFirstName which returns the value that I set.
>
> I have tried to create a person directly and that works great. So no
> ejb-jar / jaws. xml problems.
> 

It sounds like you don't have the cmp-field for first name defined in the
teacher/entity section of your ejb-jar.xml.

We do something similar, and we repeat inherited fields in the ejb-jar.xml -
to be honest, I have not tried relying on the inheritance  ;-)

HTH,
Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] New bugs in 3/26 snapshot (autodeploy errorstil l there)

2001-03-27 Thread Kimpton,C (Chris)

Hi,

> -Original Message-
> From: Luke Taylor [mailto:[EMAIL PROTECTED]]
> 
> Guy Rouillier wrote:
> > 
> > In response to Scott's message below, I just downloaded the 
> nightly snapshot
> > of JBoss2.1 source, built it and tried to use it.  I found 
> the following
> > problems (so far) on Windows 2000:
> > 
> > (1) I couldn't build with the supplied build.bat file.  I 
> unzipped into c:\
> > and ran build.bat from c:\jboss\src\build.  It told me it 
> could not find
> > relative file ..\..\ant.jar from directory c:\jboss.  So I 
> changed the
> > following statement in build.bat:
> > 
> > for %%i in (..\..\*.jar) do call lcp.bat %%i
> > 
> > to
> > 
> > for %%i in (c:\jboss\lib\*.jar) do call lcp.bat %%i
> > 
> 
> This problem crops up from time to time on the lists and the 
> build file
> still hasn't been patched. To get a generic build file that doesn't
> depend directly on local paths, insert the lines
> 
> 
> 
> REM get the pwd
> 
> @echo off
> dir | find "Directory" > }1{.bat
> set quote="
> echo if %%3!==! set quote=> directory.bat
> echo set PWD=%%quote2 %%3 %%4 %%5 %%6 %%7 %%8 %%9 %%quote%%>>
> directory.bat
> call }1{
> for %%a in (}1{ directory) do del %%a.bat
> set quote=
> 
> 
> 
> before the "for" loop in the build.bat file, and change lcp.bat to
> 
> set CP=%CP%;%PWD%\%1
> 
> This removes the relative path problem.
> 

Thanks - I've just checked this in - works for me on NT4 - let me know if
anyone gets any problems with it.

HTH,
Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] EAR apllication xml descriptor

2001-03-26 Thread Kimpton,C (Chris)

Hi,

> -Original Message-
> From: Kirill Averianov [mailto:[EMAIL PROTECTED]]

>   Please send me an example of ear META-INF/application.xml
>   where specified several EJB's jar files.
> 

Its 'standard' ejb stuff - so RTFM  ;-)

...althought I found it hard to find too...

Try these :-

http://www.orionserver.com/docs/application-creation-howto.html

http://e-docs.bea.com/wls/docs60/programming/app_xml.html



I tried to find the Sun example - but its too hidden for me to find this
morning.

Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] CLASSPATH with JBOSS

2001-03-26 Thread Kimpton,C (Chris)

Hi,


> -Original Message-
> From: Kirill Averianov [mailto:[EMAIL PROTECTED]]
> Sent: Friday, 23 March 2001 20:42
> 
>   Do I have to put my EJB.jar files into lib/ext folder if
> I intent to use them from another EJB's ?
> 

I don't think that is recommended.

I'd suggest either 

a) package them all as one ear - if feasible.

b) package the interfaces (remote and home) into a separate jar and put that
as a dependent lib in your ear for the app that uses it...

HTH,
Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] CVS is online at sourceforge

2001-03-22 Thread Kimpton,C (Chris)

Hi

> > -Original Message-
> > From: Alexander Jerusalem [mailto:[EMAIL PROTECTED]]
> > 
> > I've downloaded the cvs files from sourceforge but I wonder 
> > if this is the 
> > latest version because the Ant build file has a line:
> > 
> > 
> 
> oops - I think that was my fault...
> 

double oops - sorry for the noise - I thought this was something to do with
the ant version - doh!

I touched nurrthing!

Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] CVS is online at sourceforge

2001-03-21 Thread Kimpton,C (Chris)

Hi,


> -Original Message-
> From: Alexander Jerusalem [mailto:[EMAIL PROTECTED]]
> 
> I've downloaded the cvs files from sourceforge but I wonder 
> if this is the 
> latest version because the Ant build file has a line:
> 
> 

oops - I think that was my fault...

I will try and correct it today - I havn't tried the cvs sourceforge stuff
yet...

Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] Hypersonic SQL

2001-03-21 Thread Kimpton,C (Chris)

Hi,

> 
> > Have you got the jaws.xml flag set such that tables are 
> dropped when the
> > application finishes - if this is set, it should mean that 
> the tables are
> > re-created upon startup - curing your problem.
> 
> We tried that in standardjaws.xml - there was no jaws.xml 
> filethe tables
> didn't
> drop; should I rename standardjaws.xml to jaws.xml ?
> 

RTFM   ;-)

http://www.jboss.org/documentation/jawsxml_howto.html

You create a jaws.xml file for your ejb and put it into the META-INF
directory of your ejb jar file.

This then overrides any of the defaults in standardjaws.xml


HTH,
Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] Hypersonic SQL

2001-03-21 Thread Kimpton,C (Chris)

Hi,

[I don't represent the team - the views are my own]

> However, I'm a bit concerned that the default 
> database used by
> JBoss for
> CMP Entity beans, Hypersonic SQL, seems to be no longer 
> supported.  What is
> the
> stance of the JBoss team on this...is Hypersonic still 
> recommended as the
> default
> installation ?
>

I think there is a big difference between default and recommended.  HSql is
good for getting started quickly - but it has limits that need to be
understood and accepted if it is to be used.  These are dependant on its use
- not on jboss - so use it - but at your own risk and investigate the hsql
site for its limits.
 
> 
> So, for the time being, is there a client I can use to 
> Hypersonic SQL, that
> would allow
> me to query the underlying DB, drop tables, etc ?
> 

There is a client that comes with hsql - have you tried that - see hsql site
for more details.

> The problem I'm having, is that having created a CMP Entity 
> Bean, with 4
> fields, then
> changing the CMP Entity Bean to have 5 fields, Hypersonic SQL 
> doesn't seem
> to
> want to drop the old table (with 4 columns) and create the 
> new table (with 5
> columns).
> 

Have you got the jaws.xml flag set such that tables are dropped when the
application finishes - if this is set, it should mean that the tables are
re-created upon startup - curing your problem.

You will see messages in the jboss log indicating it is creating (or failing
to) your tables.

The default setting is to create the tables on startup, but to NOT drop them
on close.

HTH,
Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] JAWS ????? HELP please

2001-03-20 Thread Kimpton,C (Chris)

Hi,

> -Original Message-
> From: joel cordonnier [mailto:[EMAIL PROTECTED]]
> 
> I just deploy a small EJB CMP in JBOSS embedded TOMCAT
> dating of 2001/02/26
> 
> I dont' understand the error because my jar file don't
> include an jaws.xml file in META-INF !
> 
> [Container factory] Deploying CabinBean
> [Container factory] java.lang.NullPointerException
> [Container factory]   at
> org.jboss.ejb.plugins.jaws.metadata.JawsXmlFileLoader.load(Jaw
> sXmlFileLoader.java:66)
> [Container factory]   at
> org.jboss.ejb.plugins.jaws.jdbc.JDBCCommandFactory.(JDBC


...but do you have container managed entity beans configured in your
deployment descriptor?

If so and you don't have a jaws.xml, I presume you want to use the default
"standardjaws.xml" settings for the deployment.

If this is the case, then I guess jboss does not handle this case and maybe
you should create an empty jaws.xml file - until the "bug is fixed"...

Chris


This electronic message (email) and any attachments to it are subject to copyright and 
are sent for the personal attention of the addressee. Although you may be the named 
recipient, it may become apparent that this email and its contents are not intended 
for you and an addressing error has been made. This email may include information that 
is legally privileged and exempt from disclosure. If you have received this email in 
error, please advise us immediately and delete this email and any attachments from 
your computer system.Rabobank International is the trading name of Coöperatieve 
Centrale Raiffeisen-Boerenleenbank B.A. which is incorporated in the Netherlands. 
Registered with the Registrar of Companies for England & Wales No. BR002630 and 
regulated by the SFA for the conduct of investment business in the UK.

The presence of this footnote also confirms that this email has been automatically 
checked by Rabobank International for the presence of computer viruses prior to it 
being sent, however, no guarantee is given or implied that this email is virus free 
upon delivery.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user