Re: [JBoss-user] JBoss 2.4.4+Tomcat 4.0.1 as NT service

2002-06-07 Thread Guy Rouillier
Don't know about the ones you mention, but javants from the jboss/contrib section has been working fine for us for several months.  We run Tomcat standalone and JBoss standalone, each started as services via javants. - Original Message - From: Mitchell Kim To: [EMAIL PR

RE: [JBoss-user] Jboss 3.0 Server Config Question

2002-06-07 Thread JD Brennan
Title: RE: [JBoss-user] Jboss 3.0 Server Config Question You might want to point to /lib/jboss-system.jar for compiling... -Original Message- From: Greg Turner [mailto:[EMAIL PROTECTED]] Sent: Friday, June 07, 2002 6:45 PM To: [EMAIL PROTECTED] Subject: [JBoss-user] Jboss 3.0 Server

[JBoss-user] web services on jboss

2002-06-07 Thread Rama Kishore Yelamanchilli
Hello, I plugged in jboss.net(web services) into jboss. Now I'm wondering what can I do for deploying a web service and test it. I read the only documentation page of jboss and learned that jws file needs to be wrapped in a .wsr file. What else should .wsr file contain and where it should be plac

[JBoss-user] Jboss 3.0 Server Config Question

2002-06-07 Thread Greg Turner
I started to create an MBean and I pointed my class path to the jars in minimal/lib and it would not compile because org.jboss.util.ServiceMBeanSupport was not there. This means minimal is really minimal. So what I would like to do is create MyConfig = minimal + just enough to run my simple MBea

Re: [JBoss-user] Auto created relationship table name.

2002-06-07 Thread Gary S. Cuozzo
I left out the entity bean stuff as it is pretty long. Let me know if you see my problem or if you want to see other files. gary. java:/ISG_DS PostgreSQL true false false false

Re: [JBoss-user] From RC1 DeploymentException

2002-06-07 Thread Gary S. Cuozzo
I think you need to remove the spaces in your tags: instead of Just a guess, but that is all I see right now. gary. Frank Morton wrote: >Moving from RC1 to 3.0.0 release. Looking smooth except >when deploying beans I get a DeploymentException: > >Error in jboss.xml for Bean Profile: conf

[JBoss-user] From RC1 DeploymentException

2002-06-07 Thread Frank Morton
Moving from RC1 to 3.0.0 release. Looking smooth except when deploying beans I get a DeploymentException: Error in jboss.xml for Bean Profile: configuration '' not found in standardjboss.xml or jboss.xml Here is the jboss.xml file, which I assume is missing something that is now required:

RE: [JBoss-user] Auto created relationship table name.

2002-06-07 Thread Arthur Wang
please post your many-to-many relationship defination in jbosscmp-jdbc.xml. -Original Message- From: Gary S. Cuozzo [mailto:[EMAIL PROTECTED]] Sent: Friday, June 07, 2002 5:21 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Auto created relationship table name. This seems similar to

RE: [JBoss-user] How to run two instances of JBoss on the same machine

2002-06-07 Thread Sheng Zou
Title: How to run two instances of JBoss on the same machine   -Original Message-From: Bill Burke [mailto:[EMAIL PROTECTED]]Sent: Thursday, June 06, 2002 1:04 PMTo: [EMAIL PROTECTED]Subject: RE: [JBoss-user] How to run two instances of JBoss on the same machine port numb

Re: [JBoss-user] Auto created relationship table name.

2002-06-07 Thread Gary S. Cuozzo
This seems similar to the problem that I am seeing. I am not auto-creating the table, but instead have an existing table that I want to use. When I try to use my many-to-many relationship, I get exceptions because the table (that jboss is trying to use) doesn't exist. I have no idea what I

[JBoss-user] queue help

2002-06-07 Thread G.L. Grobe
Anyone help out w/ the order of creation of a dynamic queue. What's in the docs is nothing close to what's in the JBoss src (the only examples I could find). I'm trying to create a dynamic queue locally to the server.   ...    // really don't understand the MBeans, in the src, I see an MBean

RE: [JBoss-user] Auto created relationship table name.

2002-06-07 Thread Arthur Wang
I set create-table as true in my jbosscmp-jdbc.xml, so the jboss will create table for me, but the name of relation table created is like 'A-Bs-B-As", it is not the name I specified in relation-table-mapping of jbosscmp-jdbc.xml. -Original Message- From: Dain Sundstrom [mailto:[EMAIL PROT

[JBoss-user] log4j in JBoss 3.0.0

2002-06-07 Thread Mitchell Kim
I am using log4j for logging in one of my servlets.  It was working as intended until I upgraded to JBoss 3.0.0 with integrated Jetty.  I am seeing following error message on the console output.   ERROR: invalid console appender config detected, console stream is looping   Does anyone know w

RE: [JBoss-user] Using auto increment of mysql for PK

2002-06-07 Thread Arthur Wang
I am using auto_increment function of MySql database for primary key of entity bean , so I don't need to set pk in ejbCreate, mysql will populate pk field in the datatbase automatically, but it has following exceptions. -Original Message- From: Dain Sundstrom [mailto:[EMAIL PROTECTED]] Se

RE: [JBoss-user] Boolean in the ejb-ql has sql exception

2002-06-07 Thread Arthur Wang
Sorry for that, Let's explain myself using a example: A finder method in the ejb home: findAccountsForCustomer(Customer customer), which customer and account has a 1-n relationship, customer is a cmr field in account bean, the query in jbosscmp-jdbc.xml: findAcco

Re: [JBoss-user] performance on linux/windows

2002-06-07 Thread Dain Sundstrom
It is not about performance it's about manageability in production. Widows is simple too much of a pain to manage on a large scale. -dain Tejeshwar wrote: > Hi.. > > > > > > I want to know one thing. > > My question, > > > > JBoss on windows/linux, which gives better performance? >

Re: [JBoss-user] Using auto increment of mysql for PK

2002-06-07 Thread Dain Sundstrom
You need to be more specific. What exactly did you try? -dain Arthur Wang wrote: > Hi, > > I tried to use auto_increment for primary key when I create a new entity > bean, but there are following exception: > > - > HTTP ERROR: 500 removing bean lock and it has tx set!; ne

Re: [JBoss-user] Working CMP/CMR Example For JBoss 3.0?

2002-06-07 Thread Dain Sundstrom
Brandon Knitter wrote: > I know that the JBoss group is working on a new document release, but in my > frustration (read: no more hair) The for pay docs are done. We're just waiting for scott to get home and then we will be waiting for flashline (Monday or Tuesday). > I was hoping to get a w

Re: [JBoss-user] Auto created relationship table name.

2002-06-07 Thread Dain Sundstrom
Arthur Wang wrote: > Hi , > > I have a many to many relationship betwen two beans, and I specify the > relation table in the ejb-jar.xml file, but when set the create-table as > true in jbosscmp-jdbc.xml, the created relation table has a different name > as the one I specified in the relationshi

Re: [JBoss-user] Boolean in the ejb-ql has sql exception

2002-06-07 Thread Dain Sundstrom
Arthur Wang wrote: > Thanks Dain, > > But where can I get the JBossCMP documentation(free or not free) you > mentioned? http://www.jboss.org/docs/ > and first, could you please tell me if I can write declared-sql > with a cmr field as a parameter? I have no idea what you are talking about.

[JBoss-user] Using auto increment of mysql for PK

2002-06-07 Thread Arthur Wang
Hi, I tried to use auto_increment for primary key when I create a new entity bean, but there are following exception: - HTTP ERROR: 500 removing bean lock and it has tx set!; nested exception is: java.lang.IllegalStateException: removing bean lock and it has tx set! Embedded

[JBoss-user] errors on startup ...

2002-06-07 Thread G.L. Grobe
I'm getting errors like below when starting up JBoss and loading of my J2EE app w/ all of my session and entity beans, yet, my beans still run fine and I'm seeing no problems besides this output.--- snip ---[ERROR,ContainerFactory] Bean : AccountMethod : public abstract boolean addAccount(Ac

[JBoss-user] JBoss3.0/Tomcat4.0 - don't want .jsp in war

2002-06-07 Thread Coral Burns
Hi Again: I've posted a couple of times, but I thought I might not have been clear with my problem. I have the Jboss3.0.0/Tomcat4.0.3 bundle working with the .war examples. But I'm wondering what steps I have to take to get my .jsp files to work in an "exploded" directory structure rather than

Re: [JBoss-user] JBoss 3.0.0 hiding RuntimeExceptions ???

2002-06-07 Thread Brandon Knitter
I checked out things with: cvs co -r JBoss_3_0_0 jboss-all So, after I apply that patch, then I go into jboss-all/build dir and run build.sh. Then what? What do I move and copy over the binary distro I downloaded? Is it an entire dir, or just a jar? Thanks in advance, -- -bk Quoting Mariu

RE: [JBoss-user] SapDB and Jboss

2002-06-07 Thread Brandon Knitter
Oh, no, CMP2.0 should work fine. Just make sure to add your DOCTYPE headers to your deployment descriptors and the 2.0 version will show up! :) Been playing with it for a few days now. -- -bk Quoting Arthur Wang <[EMAIL PROTECTED]>: > I did get the jboss stable release this week, but do you

Re: [JBoss-user] JBoss3.0.0 CMR field not persisting

2002-06-07 Thread Brandon Knitter
Thank you! :) I will check this over. Briefly, it looks like what I have too, but on my implementation when I try calling the abstract collection methods, I am met with much dismay. Have you tested the collection calls remotely? You client doesn't seem to do much?!?!? Thanks again, I apprecia

RE: [JBoss-user] SapDB and Jboss

2002-06-07 Thread Arthur Wang
I did get the jboss stable release this week, but do you mean that I cann't run cmp2.0 with jboss-sapdb? Thanks -Original Message- From: Brandon Knitter [mailto:[EMAIL PROTECTED]] Sent: Friday, June 07, 2002 3:14 PM To: [EMAIL PROTECTED]; Arthur Wang Subject: Re: [JBoss-user] SapDB and J

Re: [JBoss-user] SapDB and Jboss

2002-06-07 Thread Brandon Knitter
I grepped the binary distro, nothing matches sap. Also, 3.0 Final was released. -- -bk Quoting Arthur Wang <[EMAIL PROTECTED]>: > Hi everyone, > > I am using Jboss3.0 RC2, I found some example db-service.xml file under > docs/examples/jca, but no example for sapdb (there is data mapping for

Re: [JBoss-user] JBoss3.0.0 CMR field not persisting

2002-06-07 Thread Greg Turner
I have a simple app that relates hrefs to keywords in a many to many relationship. The idea is to be able to save hrefs with a list of keywords and then, later on, search the library for hrefs that match a list of keywords. There are 3 tables, one table that has id as a long, href as a varcha

RE: [JBoss-user] JBoss 3.0.0 hiding RuntimeExceptions ???

2002-06-07 Thread Paul Kavanagh
Thanks Brandon, but unfortunately that didn't work - I still don't see any stack trace on the server (I've attached my log4j.xml also). I uncommented the TRACE entries, set the threshold level to "All", but still no stack trace. Here is the code which I'm using to programmatically create a Runtim

Re: [JBoss-user] JBoss3.0.0 CMR field not persisting

2002-06-07 Thread Brandon Knitter
I just noticed that you are working on an example for all of us! :) Do you have this ready, perhaps with the changes below? I got the zip from your site below about an hour ago, and I'm happy to see an example! :) Thanks, -- -bk Quoting David Jones <[EMAIL PROTECTED]>: > Greg Turner <[EMAI

Re: [JBoss-user] JBoss 3.0.0 hiding RuntimeExceptions ???

2002-06-07 Thread Marius Kotsbak
I have reported it as bug (http://sourceforge.net/tracker/?func=detail&aid=565279&group_id=22866&atid=376685), and submitted a patch to solve it (#562036 http://sourceforge.net/tracker/index.php?func=detail&aid=562036&group_id=22866&atid=376687), , but noone seems to notice. So I have to apply

[JBoss-user] Working CMP/CMR Example For JBoss 3.0?

2002-06-07 Thread Brandon Knitter
I know that the JBoss group is working on a new document release, but in my frustration (read: no more hair) I was hoping to get a working CMP example which has CMR relationships as well. If you have something that will build, and has all the deployment descriptors and works on JBoss 3.0, I'd gre

[JBoss-user] Auto created relationship table name.

2002-06-07 Thread Arthur Wang
Hi , I have a many to many relationship betwen two beans, and I specify the relation table in the ejb-jar.xml file, but when set the create-table as true in jbosscmp-jdbc.xml, the created relation table has a different name as the one I specified in the relationship defination, this should not be

[JBoss-user] SapDB and Jboss

2002-06-07 Thread Arthur Wang
Hi everyone, I am using Jboss3.0 RC2, I found some example db-service.xml file under docs/examples/jca, but no example for sapdb (there is data mapping for sapdb in standardjaws.xml and standardjbosscmp-jdbc.xml), I am not sure if I can deploy cmp2.0 application in JBoss-SapDB. Your early reply

RE: [JBoss-user] Boolean in the ejb-ql has sql exception

2002-06-07 Thread Arthur Wang
Thanks Dain, But where can I get the JBossCMP documentation(free or not free) you mentioned? and first, could you please tell me if I can write declared-sql with a cmr field as a parameter? Arthur -Original Message- From: Dain Sundstrom [mailto:[EMAIL PROTECTED]] Sent: Friday, June 07,

RE: [JBoss-user] Apache Tomcat/4.0 - Http Status 404

2002-06-07 Thread Coral Burns
Thanks Olek! The only issue with what you mention below is that I do want to run the Tomcat that is integrated with JBoss - I don't want to run TomCat in standalone mode , since for the application I'm working with I'm deploying a Bean to Jboss and also bringing up .jsp files via Tomcat (in an ex

Re: [JBoss-user] Startup tasks

2002-06-07 Thread Greg Turner
don't focus on the beans themselves.  Focus, instead on the MBean deployer that deploys the jar file that contains the beans.  Try to figure out how to make the dependency on that specific deployer.  I'm not 100% sure, but I think a deployer gets instantiated for each jar file that needs deployme

Re: [JBoss-user] diff free-docs paid-docs

2002-06-07 Thread Aleksander Grzebyta
http://www.softagency.co.jp/jboss/org/documentation/HTML/ch13s145.html That's what I meant. sincerely Olek - Original Message - From: "Dain Sundstrom" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 07, 2002 8:33 PM Subject: Re: [JBoss-user] diff free-docs paid-docs > T

Re: [JBoss-user] Startup tasks

2002-06-07 Thread Greg Turner
Yes, there is a depends tag.  I'm not sure how it works, but search for it in the deploy directory for examples. JD Brennan wrote:   I have written an MBean, but can't figure out how to get it to wait until all my Session and Entity Beans have been deployed before doing the startup activity. Is t

Re: [JBoss-user] Boolean in the ejb-ql has sql exception

2002-06-07 Thread Dain Sundstrom
If you can wait a week, this will be fixed. Also declared-sql is described in the JBossCMP documentation. -dain Arthur Wang wrote: > Hi Everyone, > > I am depoying my applcation in JBoss-Oracle, I have a query in ejb-jar.xml > taking a boolean parameter like, columnName= FALSE or TRUE, when

[JBoss-user] Read Clob from oracle using cmp2.0

2002-06-07 Thread Arthur Wang
Hi everyone, I deployed my cmp2.0 to jboss3.0 and oracle8, when I get the entity from oracle, the clob field of this bean always return null. I found that this is a bug from the jboss forum, so I fix this by a utility class to retrieve clob data directly, not through container, but i'd like to kn

RE: [JBoss-user] CMP Generated SQL Problem

2002-06-07 Thread Matt Munz
Dain, >You need to chill. It will be in soon enough. I can add the feature in >5 minutes (java.rmi.server.UID), but you want it done intelligently >right? Yes -- please take the time to do it right. To be honest, I don't plan on using CMP. I am planning on using JBoss for evaluation purpose

RE: [JBoss-user] Startup tasks

2002-06-07 Thread JD Brennan
Title: RE: [JBoss-user] Startup tasks Cool!  I'm running JBoss 3.x, but I can't figure out the dependency. You can make one MBean depend on another, but I can't figure out how to get a MBean to depend on a set of Session/Entity beans being deployed.   JD   -Original Message-From: Star

[JBoss-user] Boolean in the ejb-ql has sql exception

2002-06-07 Thread Arthur Wang
Hi Everyone, I am depoying my applcation in JBoss-Oracle, I have a query in ejb-jar.xml taking a boolean parameter like, columnName= FALSE or TRUE, when this finder was called, there will be a SQL exception, (Invalid Column name), I found the reason for this is that Oracle doesn't have boolean ty

Re: [JBoss-user] Where to put a ejb jar especif lib

2002-06-07 Thread Brandon Knitter
That being the case, I did a little searching. I had a very similar discussion with a friend this week. For an explanation on the archives: http://www.onjava.com/pub/a/onjava/2001/06/26/ejb.html And here's a description on the different classloaders and where to include things in your archives:

[JBoss-user] JBoss 2.4.4+Tomcat 4.0.1 as NT service

2002-06-07 Thread Mitchell Kim
I have been trying to make JBoss+Tomcat to run as NT service but doesn't look like it's working correctly.  I was able to install Tomcat alone as NT Service using JavaService.exe.  However, when I try to install JBoss alone as a NT service, it gets installed fine but when I try to start the

Re: [JBoss-user] JBoss 3.0.0 hiding RuntimeExceptions ???

2002-06-07 Thread Brandon Knitter
Near the bottom of the log4j.xml file there are two "TRACE" entries, I uncommented those and restarted jboss and have better errors now. Hope that's what you were looking for. -- -bk Quoting Paul Kavanagh <[EMAIL PROTECTED]>: > Hi guys, > > hoping someone can shed some light on this. > > I

Re: [JBoss-user] Where to put a ejb jar especif lib

2002-06-07 Thread David Jencks
yes david jencks On 2002.06.07 14:26:16 -0400 Brandon Knitter wrote: > Would making an EAR make it possible to package an ejb.jar file with > other > necessary supporting jars? > > -- > -bk > > > Quoting JD Brennan <[EMAIL PROTECTED]>: > > > If you are trying to put a .jar inside your EJB j

RE: [JBoss-user] Startup tasks

2002-06-07 Thread Starsinic, Frank
Title: RE: [JBoss-user] Startup tasks this is not possible until jboss 3.0   even at that, i'm not sure how to set up the dependency.     frank -Original Message-From: JD Brennan [mailto:[EMAIL PROTECTED]]Sent: Friday, June 07, 2002 11:22 AMTo: '[EMAIL PROTECTED]'Subject:

Re: [JBoss-user] jbosscmp-jdbc.xml DTD?

2002-06-07 Thread Brandon Knitter
Hmmm, also it looks like is an empty field, not as per the doc examples: order-has-lineitems lineitem-belongsto-order ordernumber

Re: [JBoss-user] diff free-docs paid-docs

2002-06-07 Thread Dain Sundstrom
There was never any text in the CMP 2 section. I haven't written it yet. -dain Aleksander Grzebyta wrote: > Hello ! > > Lately the CMP 2.0 section disappeared from free docs so u have sample > answer. > > sincerely Olek > > - Original Message - > From: "Rajesh Acharya" <[EMAIL PROTE

[JBoss-user] JBoss 3.0.0 hiding RuntimeExceptions ???

2002-06-07 Thread Paul Kavanagh
Hi guys, hoping someone can shed some light on this. I'm using JBoss 3.0.0 (using default settings for everything) on Win2K, but when I run my test applciation (Java client connecting to a simple session bean) on it, JBoss is not showing us any RuntimeExceptions which are being thrown (neither o

RE: [JBoss-user] Where to put a ejb jar especif lib

2002-06-07 Thread Brandon Knitter
Would making an EAR make it possible to package an ejb.jar file with other necessary supporting jars? -- -bk Quoting JD Brennan <[EMAIL PROTECTED]>: > If you are trying to put a .jar inside your EJB jar, you can > extract the contents of the jar into your jar. That's what > we do. One stop

RE: [JBoss-user] Startup tasks

2002-06-07 Thread JD Brennan
Title: RE: [JBoss-user] Startup tasks I have written an MBean, but can't figure out how to get it to wait until all my Session and Entity Beans have been deployed before doing the startup activity. Is there some depends attribute I can put in the jboss-service.xml file in my .sar? I tried

Re: [JBoss-user] jbosscmp-jdbc.xml DTD?

2002-06-07 Thread David Russell
The final DTD has and respectively as opposed to the foreign-key-field versions. Just spent a little time finding that one myself. David David P. Russell Lead Technical Consultant Idea Integration [EMAIL PROTECTED] [EMAIL PROTECTED] (585) 249-2600 (585) 273-7728 >>> [EMAIL PROTECTED] 06/07

Re: [JBoss-user] Some working CMP 2.0 examples ?

2002-06-07 Thread Brandon Knitter
If you bought a subscription which has not expired (6 months and 12 months are available), then you should get them. If you bought them straight away ($10), then no. -- -bk Quoting Ricardo Argüello <[EMAIL PROTECTED]>: > I bought the CMP docs from Flashline in January. > > Am I elegible for

Re: [JBoss-user] Some working CMP 2.0 examples ?

2002-06-07 Thread Dain Sundstrom
You only get free updates with the documentation or CD subscription. -dain Ricardo Argüello wrote: > I bought the CMP docs from Flashline in January. > > Am I elegible for an free update, or should I buy'em again? > > Thanks in advance. > > Ricardo Argüello > > > - Original Message ---

Re: [JBoss-user] Entity Bean Cache performance issue in Jboss3.0.0

2002-06-07 Thread Dain Sundstrom
Jos Henrique Varanda wrote: > Hello Dain, > > I'm using the same ear file in RC3 and 3.0.0. I'm > using Oracle8 db and using CMP 2.0 as well. The > problem is: the same ear executes 100 times slower in > 3.0.0 than in RC3. What about with hypersonic? > What about transaction demarcation? I'm

Re: [JBoss-user] diff free-docs paid-docs

2002-06-07 Thread Aleksander Grzebyta
Hello ! Lately the CMP 2.0 section disappeared from free docs so u have sample answer. sincerely Olek - Original Message - From: "Rajesh Acharya" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 07, 2002 6:54 PM Subject: Re: [JBoss-user] diff free-docs paid-docs > It wou

Re: [JBoss-user] jbosscmp-jdbc.xml DTD?

2002-06-07 Thread Brandon Knitter
I am looking at %JBOSS_HOME%/docs/dtd/jbosscmp-jdbc_3_0.dtd, is this the correct one? If so, the example with the CMP docs has the following excerpt: userId USER_ID But there is no st

Re: [JBoss-user] Apache Tomcat/4.0 - Http Status 404

2002-06-07 Thread Aleksander Grzebyta
Hello ! OK. Maybe go to catalina/bin dir, and run tomcat separately from JBoss. Then put some dir under webapps and then jsp in it. This must be WAR structure I don't knwo its minimal set, however Tomcat allows to put dir into webapps not only wars. On the other hand it seems to me that JBoss mus

Re: [JBoss-user] Some working CMP 2.0 examples ?

2002-06-07 Thread Ricardo Argüello
I bought the CMP docs from Flashline in January. Am I elegible for an free update, or should I buy'em again? Thanks in advance. Ricardo Argüello - Original Message - From: "Dain Sundstrom" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 07, 2002 9:46 AM Subject: Re: [J

Re: [JBoss-user] jbosscmp-jdbc.xml DTD?

2002-06-07 Thread Dain Sundstrom
The old docs are OLD. The correct dtd to use is the one included with the release in docs/dtd. Also type-mapping was changed to datasource-mapping between alpha and beta 2. -dain Brandon Knitter wrote: > I added the following to the top of my jbosscmp-jdbc.xml file and was met with > TONS o

Re: [JBoss-user] diff free-docs paid-docs

2002-06-07 Thread Dain Sundstrom
I can tell you that the free docs have nothing on CMP 2, as I haven't written it yet. I'm a little burnt out on writing, so it will be a few weeks before I get anything on cmp written for the free docs. -dain Rajesh Acharya wrote: > It would be of great help for new visitors (and for me too)

[JBoss-user] jbosscmp-jdbc.xml DTD?

2002-06-07 Thread Brandon Knitter
I added the following to the top of my jbosscmp-jdbc.xml file and was met with TONS of errors, including errors from things I copied from the cmp2 commerce example: http://www.jboss.org/j2ee/dtd/jbosscmp-jdbc_3_0.dtd";> I did check out the "patch for cmp documentation updates" in another email

[JBoss-user] Re: (JBoss3)Handles problem in Tomcat standalone

2002-06-07 Thread Jon Swinth
Since nobody seems to have answered you. Here is what I use to connect standalone Tomcat to Jboss. There is more here than you asked for, but you get the idea. private static final String contextFactory = "org.jnp.interfaces.NamingContextFactory" ; private static final String

Re: [JBoss-user] Startup tasks

2002-06-07 Thread Greg Turner
Get the docs and learn to write and deploy an MBean. Then write an MBean wrapper around your tftp server and deploy it. Also the JMX book has an example of writing an MBean for JBoss. Ludovico Basili wrote: > Hello, > I would like to execute some tasks at startup (i.e., starting a tftp > serve

Re: [JBoss-user] Connection waiting...

2002-06-07 Thread Burkhard Vogel
Hi, Give us some stack/log... Regards, Burkhard - Original Message - From: "Oskars Škutāns" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 07, 2002 9:06 AM Subject: [JBoss-user] Connection waiting... Hi There is one problem with my JBoss running on Windows 2000: After

[JBoss-user] EXCEPTION_ACCESS_VIOLATION

2002-06-07 Thread Greg Dunn
I'm running JBoss-2.4.6_Tomcat-4.0.3 on Windows 2000, jre1.3.1_03 and I'm getting the following error after my welcome page loads. A call to the database on another server is made successfully and the page loads completely but then this error hits. Can anyone help me out on this? An unexpect

Re: [JBoss-user] Problem binding on Name Server using RMI/IIOP

2002-06-07 Thread Francisco Reverbel
On Fri, 7 Jun 2002, Gerard BUNEL wrote: > Francisco Reverbel a écrit : > > > I have seen a stack trace like this before. Aren't you using an older > > JacORB version at the client side by any chance? > > > > Don't know. I downloaded the jboss-all which included the jacorb.jar. Is > there mean

RE: [JBoss-user] Apache Tomcat/4.0 - Http Status 404

2002-06-07 Thread Coral Burns
Thanks for your reply! But what I would like to do is bring up one simple .html or .jsp file (not within a war or ear file) on localhost port 8080 rather than deploying the test .jsp file within a war file...how do I go about doing that? Also, if I have downloaded the JBoss3.0.0/Tomcat4.0.3 bund

Re: [JBoss-user] Apache Tomcat/4.0 - Http Status 404

2002-06-07 Thread Vincent Stoessel
Hello, thanks for that advice you answered my tomcat question as well. I think maybe this tomcat issue should be added to the FAQ. Thanks. Aleksander Grzebyta wrote: > Hello ! > > It seems to me that original Tomcat webapps is not active when working with > JBoss. Try to deploy same simple war

Re: [JBoss-user] diff free-docs paid-docs

2002-06-07 Thread Rajesh Acharya
It would be of great help for new visitors (and for me too) to JBoss site... if there is a pointer to an URL or Info where one can find the comparison between free docs and paid docs to get an Idea of what the buyer gets extra in terms of Information in the paid docs (in addition to the pride of

[JBoss-user] Re: IIOP CosNaming

2002-06-07 Thread Francisco Reverbel
Hi Darius, Thanks for your feedback! The refactoring caused a change in the CosNaming IOR indeed. Now I see that maybe I got a bit carried away when did this. I've made the CORBA naming service use the new IIOPInvoker stuff, but this was not really necessary. The IOR change could have been avoi

[JBoss-user] Startup tasks

2002-06-07 Thread Ludovico Basili
Hello, I would like to execute some tasks at startup (i.e., starting a tftp server). To do so, I need a way to load classes and invoke methods on them as JBoss starts. Which is the better way to do that ? Thanks, -- Ludovico Basili Software Engineer Allied Telesis K.K. Phone +39 02 41411245 - F

Re: [JBoss-user] Problem binding on Name Server using RMI/IIOP

2002-06-07 Thread Dain Sundstrom
Oh, are trying to use a foreign key as a primary key? If you are, it is not supported yet. A new guy Ken is working on this, and said it "shouldn't be that hard" (that is what I said about the CMP 2.0 engine when I started). If he has any luck, we should have this within a month or two. -d

[JBoss-user] Entity Bean Cache performance issue in Jboss3.0.0

2002-06-07 Thread Jos Henrique Varanda
Hello, I was using jboss-3.0.0rc3 and performance was not an issue. Now I've installed jboss-3.0.0 and there is a serious performance problem in that version. I have 1500 entities into my DB and in a finder method I look for them all. In RC3 the first time I execute the finder is 2 times slower

Re: [JBoss-user] Apache Tomcat/4.0 - Http Status 404

2002-06-07 Thread Aleksander Grzebyta
Hello ! It seems to me that original Tomcat webapps is not active when working with JBoss. Try to deploy same simple war under /server/default/deploy dir. sincerely Olek - Original Message - From: "Coral Burns" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 07, 2002 4:55

Re: [JBoss-user] Some working CMP 2.0 examples ?

2002-06-07 Thread Dain Sundstrom
Wait until it says it is the new docs. We will make an announcement on the lists. -dain Aleksander Grzebyta wrote: > Hello Dain ! > > OK we will make an order monday. I hope we will not obtain the older docs. > > sincerely Olek > > > - Original Message - > From: "Dain Sundstrom" <

Re: [JBoss-user] Problem binding on Name Server using RMI/IIOP

2002-06-07 Thread Gerard BUNEL
Francisco Reverbel a écrit : > I have seen a stack trace like this before. Aren't you using an older > JacORB version at the client side by any chance? > Don't know. I downloaded the jboss-all which included the jacorb.jar. Is there mean to know the version ? > > JBoss requires JacORB 1.4. N

Re: [JBoss-user] ERROR: Internal error getting results for field member

2002-06-07 Thread Brandon Knitter
I turned it up to trace and got for my method call that it's bombing on the below. I've noted that odd relational query, it just doesn't make sense. It's almost like the foreign-key-fields mapping is wrong. I tried taking out the section (docs say it's auto generated), but still say results. 2

Re: [JBoss-user] Some working CMP 2.0 examples ?

2002-06-07 Thread Aleksander Grzebyta
Hello Dain ! OK we will make an order monday. I hope we will not obtain the older docs. sincerely Olek - Original Message - From: "Dain Sundstrom" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 07, 2002 4:46 PM Subject: Re: [JBoss-user] Some working CMP 2.0 examples ?

Re: [JBoss-user] performance on linux/windows

2002-06-07 Thread Stephen Davidson
Greetings. Which 2.4 Kernel? And did you reset the Thread/Process handles in the Kernel? Above 2.4.10 (I would STRONGLY RECOMMEND 2.4.18 for this, btw), a new thread manager and virtual process manager was put into the Linux Kernel. The gotcha's; 1) Many Distro's, including SuSE, patched OUT t

Re: [JBoss-user] performance on linux/windows

2002-06-07 Thread Stephen Davidson
Greetings. Which 2.4 Kernel? And did you reset the Thread/Process handles in the Kernel? Above 2.4.10 (I would STRONGLY RECOMMEND 2.4.18 for this, btw), a new thread manager and virtual process manager was put into the Linux Kernel. The gotcha's; 1) Many Distro's, including SuSE, patched OUT t

Re: [JBoss-user] Problem binding on Name Server using RMI/IIOP

2002-06-07 Thread Francisco Reverbel
I have seen a stack trace like this before. Aren't you using an older JacORB version at the client side by any chance? JBoss requires JacORB 1.4. Neither JacORB 1.3.X or 1.4.betaX will work. JacORB 1.4 was not yet publicly available when we released JBoss 3.0, which went out with an unofficial

AW: AW: [JBoss-user] NPE using JBoss.net

2002-06-07 Thread Jung , Dr. Christoph
Yup. That´s exactly the place to put it them into (and of course to reference it from the web-service.xml), unless You want to use the across several ears in which case I would recommend you to put them somwhere under lib. CGJ -Ursprüngliche Nachricht- Von: David Ward [mailto:[EMAIL PROT

Re: [JBoss-user] ERROR: Internal error getting results for field member

2002-06-07 Thread Brandon Knitter
Just noticed something. > 2002-06-06 22:05:51,823 DEBUG > [org.jboss.ejb.plugins.cmp.jdbc.JDBCFindByPrimaryKeyQuery.PlaylistBean.findByPrimaryKey] > Executing SQL: SELECT playlist_id FROM playlists WHERE playlist_id=? The above is correct SQL. > 2002-06-06 22:05:52,145 DEBUG > [org.jboss.ejb.pl

[JBoss-user] Apache Tomcat/4.0 - Http Status 404

2002-06-07 Thread Coral Burns
Hello: I downloaded the Jboss-3.0.0/Tomcat4.0.3 bundle from the jboss.org site and I'm trying to bring up a test .html page using the Tomcat webserver, but I keep getting this error: Apache Tomcat/4.0 - Http Status 404 - the requested resource /jsp/test.html is not available. Jboss, with the e

Re: [JBoss-user] ERROR: Internal error getting results for field member

2002-06-07 Thread Dain Sundstrom
Doh, It looks like we have gone to far in reducing the excessive exception reporting. You could try turing up the logging in the log4j.xml file. It has examples and good comments. If you can't figure it out, post a bug report at sourceforge and I'll take a look at it. -dain Brandon Knitte

[JBoss-user] Newbie Question about Jboss 3 and tomcat 4

2002-06-07 Thread Vincent Stoessel
Hello All, I installed "jboss-3.0.0_tomcat-4.0.3" and they both seem to start up with no problems. When I try to access tomact on port 8080 I get an error page and this message in the console: INFO [Engine] StandardHost[localhost]: MAPPING configuration error for request URI I'm sure this is a

Re: [JBoss-user] Some working CMP 2.0 examples ?

2002-06-07 Thread Dain Sundstrom
The examples are included in the for pay doc. If you can wait until monday the new docs for the 3.0 final release should be available on flashline. We are just waiting for scott to get to his home computer. He has been in my city (Minneapolis) this week doing training. If you are in a hurry,

Re: [JBoss-user] Error on bean deploy with CMR

2002-06-07 Thread Dain Sundstrom
Andre Selton wrote: > Hi, > > When I deploy my EJB with CMR I got this error : > > org.jboss.deployment.DeploymentException: Error in > ejb-jar.xml for relation Order-Item: cmr-field-type > should be java.util.Collection or java.util.Set but is > Order. > > items >

[JBoss-user] (JBoss3)Handles problem in Tomcat standalone

2002-06-07 Thread Andrew
EJB handles not properly work in Tomcat environment seems it's using Tomcat's JNDI Context for lookup... What could be wrong? Thanks. ___ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25-28 in Las Veg

[JBoss-user] Connection waiting...

2002-06-07 Thread Oskars Škutāns
Hi There is one problem with my JBoss running on Windows 2000: After some jar files was changed, the "Connection wait..." messages appeared in my console. What can this mean? I`m using JBoss and Resin servers on W2000 Server. Can anybody help me? Oscar ___

[JBoss-user] [JBOSSSX] 'LoginCallBack' handler

2002-06-07 Thread Jean-Christophe Pazzaglia
Hi, I was wondering if it is possible to store something else than the username/passwd in the 'login' callbackhandler ? or do you think I need to use a Subject ? [I want to share the same 'login module' for a set (currently 2 but later 3 or 4) of related applications] I tried unsuccesfully t

[JBoss-user] Some working CMP 2.0 examples ?

2002-06-07 Thread Aleksander Grzebyta
Hello ! I cannot find any working sample of CMP 2.0 CMR. I obtain : org.jboss.deployment.DeploymentException: Error while creating table; - nested hrowable: (java.sql.SQLException: ORA-00904: invalid column name ) when trying deploy relator sample from: http://iris.cs.byu.edu/tim/462/tutorial/

Re: [JBoss-user] Apache Tomcat/4.0.3 - HTTP Status 500 - No Contextconfigured to process this request

2002-06-07 Thread Jean-Christophe Pazzaglia
On Thu, 2002-06-06 at 19:45, Burkhard Vogel wrote: > Hi, > very simply there is nothing bound to the root context. As default there is > (AFAIK) only something at /jboss/ , but to make sure check the server.log > which gives anything deploy as web-application. > hth, > Burkhard well I do have the

Re: [JBoss-user] IIOP CosNaming

2002-06-07 Thread Gerard BUNEL
Hello Darius, Your question and mine (related to JNDI Binding using RMI/IIOP) which I think are related, seem to not inspire anybody in this mailing list. Did you have any indirect answer that could help me also ? "Schier, Darius" a écrit : Hi Francisco, I had a question about the refactori

[JBoss-user] strange NameNotFoundException under Linux

2002-06-07 Thread moritz petersen
hello list members, i have a strange problem with jboss: the EJBs and the webapplication are developed under win2k. everything works fine. then, copying the same configuration to a Linux box, i get an exception while accessing a bean: javax.naming.NameNotFoundException: data not bound

  1   2   >