RE: [JBoss-user] Jboss dynamic ql ?

2003-03-10 Thread Rupp,Heiko
Hi, hi all , can someone provide some sample code of jboss dynamic ql There is one at least in the for-pay CMP doc (which is good reading anyway). Heiko -- Bancotec GmbH EMail: [EMAIL PROTECTED] Calwer Str. 33 Telefon: +49 711 222 992 900 D-70173 Stuttgart Telefax: +49 711 222

[JBoss-user] war files and tomcat virtual server

2003-03-10 Thread Ionel Gardais
Hi, When deploying a web package, it appears under the root server as server/[packagename]. Is it possible to deploy it so it appears in [packagename].server (ex. to acces it via http://myapp.mydomain.org) ? If not doable through a configuration file, is it possible to configure Tomcat to

[JBoss-user] Re: Re: xmbean

2003-03-10 Thread Eric Jain
Put the dd in the jar with the resource class, in the same directory as the resource class. Look at the jb 4 transaction service for examples: it is all xmbeans. Couldn't find anything on cvs.sf.net, what's the exact path? Anyways, I found a 'user-xmbean.sar' in the 3.2 test suite, and got

Re: [JBoss-user] CMP fields that are mapped to columns that also participate in a CMR

2003-03-10 Thread Alex Loubyansky
JBoss supports FK fields mapped PK columns since version 3.2. alex Saturday, March 08, 2003, 10:16:17 PM, you wrote: JD Hi All, JD The following extract came from Middlegen FAQ at: JD http://boss.bekk.no/boss/middlegen/faq.html JD It's also important to realise that different EJB containers

[JBoss-user] Farming problem on JBoss 3.2.0 beta 2

2003-03-10 Thread Christian Neuroth
Hi! I am testing a cluster with two machines (Win2K, Linux Kernel 2.4.10). IfI deploy my application by putting it into the farm directory of one machine, everything works fine. When I now shutdown both machines and reboot, I receive the attached Exception. How can I fix this issue?

[JBoss-user] Neglected JBoss 3.0.5 falls into a coma

2003-03-10 Thread Jonathan . O'Connor
We noticed a worrying feature of JBoss 3.0.4 and 3.0.5 recently. If JBoss is started, and then not used for maybe a day or two, it goes into a coma. we are running this on Linux, with Java 1.4 JVM. The processes are still there, but it won't respond to requests from the web (via Jetty) or

Re: [JBoss-user] Performance Numbers

2003-03-10 Thread Pete Beck
On Wed, 2003-03-05 at 05:14, Russell Black wrote: My client is concerned about JBoss's scalability. Just wondering if any of you have used JBoss in a heavily-used production environment, e.g. lots of requests, and a large database. How well does it hold up? Thanks, Russell P.S. I'm

Re: [JBoss-user] somewhat off topic - compressing database fieldsinto classes

2003-03-10 Thread Pete Beck
Maybe I've misunderstood your post, but sounds like you want the Value-Object pattern. Have a look at the J2EE design patterns on Sun's website. On Wed, 2003-03-05 at 17:23, costin wrote: Hi! Never tried this again and haven`t seen any info. I would appreciate any info on this one.

RE: [JBoss-user] CMP Entity Bean commit-option problem

2003-03-10 Thread Mike Lecza
Thought Id refresh this thread to too if anyone has any ideas -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Lecza Sent: Thursday, March 06, 2003 2:39 PM To: [EMAIL PROTECTED] Subject: [JBoss-user] CMP Entity Bean commit-option problem

RE: [JBoss-user] Neglected JBoss 3.0.5 falls into a coma

2003-03-10 Thread Sacha Labourey
Hello, That's interesting. You see that your process cannot be reached and at the same time you say you kill it by using shutdown.sh which uses ones of JBoss JMX invoker to shut it down if I remember correctly. A stackdump trace is required to help here though. Cheers,

[JBoss-user] VirtualHost in jboss-web.xml limitation ?

2003-03-10 Thread Renato
Hi all, I have JBoss-3.0.5-Tomcat-4.1.18 bundle just running fine. I'm trying to associate more than one virtual host to a WAR I have. When I create a jboss-web.xml with this: ?xml version='1.0' encoding='UTF-8'?jboss-web context-root//context-root virtual-hostwww.domain.com/virtual-host/jboss-web

[JBoss-user] create methods of statefull session beans

2003-03-10 Thread sebastien . petrucci
Hi, I'm porting an application from JBoss 3.0.x to 3.2.0. This application uses statefull session beans. When I try to create one of these beans, I got the following stacktrace. java.lang.reflect.UndeclaredThrowableException at $Proxy53.createByUsername(Unknown Source) at

[JBoss-user] Application Initialization

2003-03-10 Thread Krishnakumar N
Hello all, I have created a session bean method that I would like to be called on a 'initialization-once-per-application' basis. I think I will be able to do that from a MBean in JBOSS (should ensure the correct order of deployment though). Weblogic seems to offer an extension called

RE: [JBoss-user] Neglected JBoss 3.0.5 falls into a coma

2003-03-10 Thread Jonathan . O'Connor
Sascha, You're right. It is very odd. We noted it because we use ITracker (not very much obviously :-) We also tried it with our own EAR file. In both cases we couldn't get to the main web page for those apps. I must check and see if we can get to the JMX-Console. Lastly, is there a clever way

RE: [JBoss-user] create methods of statefull session beans

2003-03-10 Thread Rupp,Heiko
Hi, The very strange thing is that the log says : Caused by: java.lang.NoSuchMethodException: ...ejbCreate(java.lang.String) instead of ... ejbCreateByUsername(String). It could be that 3.2 is more strict wrt. method signatures. E.g. with CMP finders, you always need to specify the

RE: [JBoss-user] Neglected JBoss 3.0.5 falls into a coma

2003-03-10 Thread Rupp,Heiko
Lastly, is there a clever way to generate a stacktrace dump? Our JBoss server process was started in the background, and then I logged out. Can this be done with the JMX-Console? Is there a handy MBean to At least there is a topic in the http-version, so I assume you can do the same

[JBoss-user] How to change Cipher Suite when doing RMI over SSL?

2003-03-10 Thread Robert Augustyn
Hi, I have setup jboss 3.0.4 to accept rmi calls over ssl but I am not able to define a cipher suite I would like to use for that connection. Is there a way to do that? Btw: I know how to do it when doing https but I need to do it for RMI. Thanks in advance. robert

RE: [JBoss-user] Neglected JBoss 3.0.5 falls into a coma

2003-03-10 Thread Jonathan . O'Connor
Heiko, Thanks for the tip. Sadly, that only gets me a list of threads. I reckon I'll need to write some code to create a stack trace of each thread. Ciao, Jonathan O'Connor Development Manager XCOM Dublin Phone: +353 1 872 3305 Mobile: +353 86 824 0736 Rupp,Heiko [EMAIL PROTECTED] Sent by:

[JBoss-user] Using RMI / JNDI over HTTPS

2003-03-10 Thread Jeremy Rempel
I have recently modified my existing application to use JNDI / RMI over HTTPS as explained in the (non-free) JBoss Admin manual. I have port 8443 open on the server and thats what it references in my jndi.properties. It works on the same machine but when I try and run it through the internet

[JBoss-user] How to setup Session EJB for access over SSL and strait RMI?

2003-03-10 Thread Robert Augustyn
Hi, I need to give access to some of my ejb's over ssl and directly through unencrypted rmi. What is the best way to do it? Currently I have to have 2 beans one for ssl and one for non-ssl connections. This is less then ideal. robert ---

RE: [JBoss-user] Using RMI / JNDI over HTTPS

2003-03-10 Thread Sebastian Hauer
Hi Jeremy, -Original Message- From: Jeremy Rempel [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 12:27 PM To: [EMAIL PROTECTED] Subject: [JBoss-user] Using RMI / JNDI over HTTPS I have recently modified my existing application to use JNDI / RMI over HTTPS as

Re: [JBoss-user] Crazy CPU Usage Problem

2003-03-10 Thread Corby Page
Hunter, I have seen the same problem on my own system since upgrading to 3.0.6 (Win2K, 4-processor P3-1000, JDK 1.4). When I perform a thread dump, it points to Garbage Collection as the active thread! I also notice that in the period leading up to the CPU increase, I am experiencing longer and

Re: [JBoss-user] Using RMI / JNDI over HTTPS

2003-03-10 Thread Jeremy Rempel
Port 8443 is open, is there any other ports JBOSS RMI needs? Robert Augustyn wrote: Jeremy, Whare in the manual did you find it? Are you referring to RMI over SSL? If so then you will need: You need to setup jboss-service.xml: !--

Re: [JBoss-user] Using Thread Dumps to Determine CPU Usage

2003-03-10 Thread Scott M Stark
You can't obtain thread dumps through the JMX console. You have to send the approriate signal to the VM to generate a trace of the threads to stderr which must have been redirected to a file to collect as this will not go to the server.log. Scott Stark Chief Technology

Re: [JBoss-user] Jboss dynamic ql ?

2003-03-10 Thread Brijesh Sood
Hi Anyone has idea of jboss dynamic ql .i have posted this message before but no body seems seems to interested in replying . if someone can provide some help :) it would be great.. thanks in advance - Original Message - From: Rupp,Heiko [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

[JBoss-user] Scoped classloading - .sar

2003-03-10 Thread Keysers, Wonne
Hi, Our webapp.war, ejbs.jar and services.sar are all in a application.ear, with scoped classloading enabled. What's the best way to make one or more libraries available for all these packages? It seems that the .war and .jar are able to use (client-)libraries from the .ear, but .sar files

RE: [JBoss-user] Using RMI / JNDI over HTTPS

2003-03-10 Thread Sebastian Hauer
I almost forgot. Also change in your standardjboss.xml for the whole container or for each bean in jboss.xml the communication layer to use: home-invokerjboss:service=invoker,type=http/home-invoker bean-invokerjboss:service=invoker,type=http/bean-invoker If you have the

Re: [JBoss-user] Using Thread Dumps to Determine CPU Usage

2003-03-10 Thread Scott M Stark
Thread dumps are VM specific so check your VM documentation. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: Hunter Hillegas [EMAIL PROTECTED] To: JBoss User [EMAIL PROTECTED] Sent: Monday, March 10, 2003

[JBoss-user] Linkage Error on Redeploy

2003-03-10 Thread Christian Nelson
Greetings, We're have an issue with Linkage exceptions when we redeploy our application. The exception does *not* happen when we deploy for the first time (since Jboss was started). This happens with both jboss-3.0.4_tomcat-4.1.12 and jboss-3.0.5_tomcat-4.1.18, running under either Windows Xp

RE: [JBoss-user] Linkage Error on Redeploy

2003-03-10 Thread JD Brennan
Title: RE: [JBoss-user] Linkage Error on Redeploy We had a similar error calling System.loadLibrary(). Worked the first time, but not on subsequent redeploys. In our case it turns out you can't load the same library twice into the same VM, so we moved that code out of our EJB jar and just put

Re: [JBoss-user] Using Thread Dumps to Determine CPU Usage

2003-03-10 Thread Alberto Rodriguez Galdo
Hi, i am using Jboss 3.0.6 + tomcat 4.1.x version and i want to connect jboss with iis to serve servlets and jsp but iis for serving web pages What configuration do i have to use?, the same as connectin tomcat and iis? greets [EMAIL PROTECTED]

Re: [JBoss-user] Linkage Error on Redeploy

2003-03-10 Thread Gary S. Cuozzo
This same thing just started happening to my application a few weeks ago. Same versions as you. I went to JBoss 3.0.6/Tomcat and it works fine. Don't know if that is an option for you or not and I just didn't have the time to figure out why it started happening as just don't have that kinda

Re: [JBoss-user] Crazy CPU Usage Problem

2003-03-10 Thread Rafal Kedziorski
hi, At 12:18 10.03.2003 -0600, Corby Page wrote: Hunter, I have seen the same problem on my own system since upgrading to 3.0.6 (Win2K, 4-processor P3-1000, JDK 1.4). When I perform a thread dump, it points to Garbage Collection as the active thread! I also notice that in the period leading up to

Re: [JBoss-user] Using Thread Dumps to Determine CPU Usage

2003-03-10 Thread Rafal Kedziorski
At 12:04 10.03.2003 -0800, Hunter Hillegas wrote: Any place where documentation on these steps exists? On Unix system You can send kill -SIGQUIT pid. than SUN VM is generating a txt file with needen informations. but this ist VM and system specific. under Linux the process was killed every time

Re: [JBoss-user] Using Thread Dumps to Determine CPU Usage

2003-03-10 Thread Brian Wallis
On Tue, 11 Mar 2003 09:44, Rafal Kedziorski wrote: At 12:04 10.03.2003 -0800, Hunter Hillegas wrote: Any place where documentation on these steps exists? On Unix system You can send kill -SIGQUIT pid. than SUN VM is generating a txt file with needen informations. but this ist VM and system

Re: [JBoss-user] Jboss dynamic ql ?

2003-03-10 Thread Dain Sundstrom
Or you can pick through the test suite for an example... or read the cmp slides from last year's JBossOne seminar. There are some bugs in the slides but you will get the idea. -dain On Monday, March 10, 2003, at 02:21 PM, Hunter Hillegas wrote: Truly the best advice is to buy the docs. They

Re: [JBoss-user] Using Thread Dumps to Determine CPU Usage

2003-03-10 Thread Rafal Kedziorski
At 10:57 11.03.2003 +1100, Brian Wallis wrote: On Tue, 11 Mar 2003 09:44, Rafal Kedziorski wrote: At 12:04 10.03.2003 -0800, Hunter Hillegas wrote: Any place where documentation on these steps exists? On Unix system You can send kill -SIGQUIT pid. than SUN VM is generating a txt file with

[JBoss-user] Make $7500 A Month Or It's FREE!!!.......... hra

2003-03-10 Thread Casino_Online_643
Online gambling is taking off! In 2002 alone, the Online Casino industry earned over $3 billion, and is expected to skyrocket to over $5 billion annually by the end of 2003. We've partnered with three of the top online casinos, and we'll give you your very own Online Gaming Portal where your

[JBoss-user] Re: Scoped classloading - .sar

2003-03-10 Thread Eric Jain
Our webapp.war, ejbs.jar and services.sar are all in a application.ear, with scoped classloading enabled. What's the best way to make one or more libraries available for all these packages? I'm using the following strategy (JBoss 3.2): .sar - lib/*.jar - .ear - .war - .jar (ejb) -

[JBoss-user] RE: Scoped classloading - .sar

2003-03-10 Thread Keysers, Wonne
Title: Re: Scoped classloading - .sar This is interesting... Are the libraries of your .sar scoped too? Our application should be able to run in different versions at the same time? thanks Wonne -Original Message- From: Eric Jain [mailto:[EMAIL PROTECTED] Sent: Tue 3/11/2003

Re: [JBoss-user] Crazy CPU Usage Problem

2003-03-10 Thread Hunter Hillegas
Yes, that does sound very similar. Perhaps we can submit some kind of bug report to get this fixed? From: Corby Page [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Mon, 10 Mar 2003 12:18:13 -0600 To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Crazy CPU Usage Problem Hunter, I have

Re: [JBoss-user] Using Thread Dumps to Determine CPU Usage

2003-03-10 Thread Hunter Hillegas
Any place where documentation on these steps exists? Thanks, Hunter From: Scott M Stark [EMAIL PROTECTED] Organization: JBoss Group, LLC Reply-To: [EMAIL PROTECTED] Date: Mon, 10 Mar 2003 11:06:07 -0800 To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Using Thread Dumps to Determine CPU

Re: [JBoss-user] Jboss dynamic ql ?

2003-03-10 Thread Hunter Hillegas
Truly the best advice is to buy the docs. They are worth it. From: Brijesh Sood [EMAIL PROTECTED] Organization: Net4India Pvt Ltd. Reply-To: [EMAIL PROTECTED] Date: Tue, 11 Mar 2003 00:53:40 +0530 To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Jboss dynamic ql ? Hi Anyone has idea of