RE: [jBoss-User] Linux "url cannot be null" exception

2000-09-26 Thread Jeff McArthur
This is the problem I had previously. I thought it went away when I upgraded to the Sept 13th build, but I've had it one time since (bean deployment problem at the same time). In a previous email, I detailed what I saw occuring during the export of the .jcml file. Paraphrasing here, there are t

RE: [jBoss-User] dynamically get a class

2000-09-20 Thread Jeff McArthur
You're on the right track. The call Class.forname should take a full package path to work. For instance, Class.forname("java.lang.String"); It's also the case that this call should be made inside of a try block: try { Class c = Class.forName("java.lang.String"); PortableRemoteObject.n

RE: [jBoss-User] simple client code

2000-09-14 Thread Jeff McArthur
In my case, this error was caused by including the wrong jboss-client.jar file in my client's classpath. If you are building jBoss from CVS, make sure that you include ~/jboss/dist/client/jboss-client.jar instead of ~/jboss/client/jboss-client.jar. Should do the trick. Error is caused when clas

[jBoss-User] PostgreSQL working with Minerva

2000-09-09 Thread Jeff McArthur
Can anyone do this? If yes, could you please send me interesting sections of jboss.jcml and jboss.conf? It would be greatly appreciated, Jeff Mc -- -- To subscribe:[EMAIL PROTECTED] To unsubscribe: [EMAIL PROTECTED] Proble

RE: [jBoss-User] Minerva, jboss.jcml, and XADataSourceLoaderusin g PostgreSQL

2000-09-07 Thread Jeff McArthur
I've "figured" out what's going on with my jboss.jcml URL problem. Here are the facts: 1) Creation of the XML doc object occurs in ConfigurationService.java in the method save(). This method loops through each attribute of the MBeanInfo loaded from jboss.jcml for the minerva XADataSource servic

RE: [jBoss-User] Minerva, jboss.jcml, and XADataSourceLoaderusin g PostgreSQL

2000-09-07 Thread Jeff McArthur
-Original Message- From: Aaron Mulder [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 07, 2000 1:22 PM What happens if you let it overwrite your file, and then you shut down jBoss and just paste the correct URL into the appropriate spot in the rewritten file and start jBoss again?

RE: [jBoss-User] Minerva, jboss.jcml, and XADataSourceLoaderusin g PostgreSQL

2000-09-07 Thread Jeff McArthur
tember 07, 2000 4:18 AM See below... On Wed, 6 Sep 2000, Jeff McArthur wrote: > I can get PostgreSQL working using Minerva, but found something weird. > To get it to work, I followed Minerva docs and setup the following for > a pool named "ejbPool" usi

[jBoss-User] Minerva, jboss.jcml, and XADataSourceLoader usingPostgreSQL

2000-09-06 Thread Jeff McArthur
I can get PostgreSQL working using Minerva, but found something weird. To get it to work, I followed Minerva docs and setup the following for a pool named "ejbPool" using a PostgreSQL database named perctest: [jboss.properties] jdbc.drivers=org.hsql.jdbcDriver,jdbc.idbDriver,org.postgresql.Driver

RE: [jBoss-User] Interest example fails to deploy

2000-09-06 Thread Jeff McArthur
I've asked this before and have debugged various iterations of this bug. That it is a deployment exception points to the fact that your meta data is not kosher. It's likely having problems with the container configuration in the jboss.xml file that is overriding the standardjboss.xml file. Could

RE: [jBoss-User] OpenSource EJB-Capable IDE

2000-08-31 Thread Jeff McArthur
class?  I've been looking in the market at those types of things both COTS and Open Source in terms of generating EJBs and their associated deployment files, etc.   Cheers -Original Message-From: Jeff McArthur [mailto:[EMAIL PROTECTED]]Sent: Thursday, August 3

RE: [jBoss-User] OpenSource EJB-Capable IDE

2000-08-31 Thread Jeff McArthur
From what I can tell, some IDEs make it cute to create, but not maintain EJBs.  I am writing EJB management tools myself.  For example, I will generate my own ejb-jar.xml, home/remote interface, etc.   A great tool idea, I think, is a "EJB-Jar Verifier".  This tool would take a .jar file

RE: [jBoss-User] simple debugging question

2000-08-31 Thread Jeff McArthur
Answering my own question (sorta): I switched to jdk1.3, checked all my environment variables, relogged in, and danced a jig. Now it works. I set JAVA_HOME and J2EE_HOME, although these weren't needed in non-classic mode. Who knows how I fixed it. I had another problem earlier trying to get jb

[jBoss-User] simple debugging question

2000-08-31 Thread Jeff McArthur
I'm trying to run jboss in debug mode and am getting an error about not finding "libjdwp.so". I can see this file in my jdk1.2.2/lib/i386/ directory. I'm starting jboss with the args "-classic -Xdebug...-Xrunjdwp:transport=dt_socket..." on LINUX using jdk1.2.2. Questions: 1) Is this an environ

RE: [jBoss-User] ejb-ref question

2000-08-23 Thread Jeff McArthur
My suggestion is optimization, clean-up, and irksome details be patched as updates to the final release. Seriously. For your beta cycle, I suggest creating a wish list to go with your bug list (should be an eXtreme Programming practice). Try putting everything there and fix what you can't and v

RE: [jBoss-User] RuntimeMBean exception in Auto deploy

2000-08-21 Thread Jeff McArthur
This bug is my current hurdle. I'm trying to debug it but... Questions: 1) Is there source for the JMX stuff so I can look at the line in MBeanServer that is failing? 2) Inspecting the server getting passed to .invoke shows a NULL classloader in the server. Is this okay? Since I have to debug

RE: [jBoss-User] Question about redeployment

2000-08-18 Thread Jeff McArthur
marc, I'm sorry, but I'm unsure what you mean by this question. I'm possibly a little over my head here, but I assume that when I start jBoss with "-classic -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,address=7081,suspend=n" I'm telling it that I want to debug on address 7081. The

RE: [jBoss-User] Question about redeployment

2000-08-18 Thread Jeff McArthur
ne using Kawa or JBuilder test this? Thanks, Jeff Mc. -Original Message- From: Rickard Öberg [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 17, 2000 11:44 PM To: jBoss Subject: Re: [jBoss-User] Question about redeployment Hi! Jeff McArthur wrote: > I have a problem debugging a redeploy

[jBoss-User] Question about redeployment

2000-08-17 Thread Jeff McArthur
I have a problem debugging a redeployed bean. Here are the steps I took: 1) Redeployed a bean (start server, touch .jar in deploy directory) 2) Connected a remote debugger to JVM 3) Set a breakpoint, ran a client...no break in EJB 4) Reboot jBoss (bean now deployed in startup) 5) Reattach debugg

RE: [jBoss-User] Debugging EJB

2000-08-17 Thread Jeff McArthur
Oops, I'll be more careful what I say. 4NT is a scriptable NT dos-shell (was 4DOS). My clients use Windows so I live there for now. Thanks, Jeff Mc. > Cool. The tools I don't mind paying for: 4NT. ^^ You don't mind

RE: [jBoss-User] Debugging EJB

2000-08-17 Thread Jeff McArthur
nt is hit. Cool. The tools I don't mind paying for: debugger, editor, 4NT. Now I'm off... Jeff Mc. -Original Message- From: Jeff McArthur [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 16, 2000 5:10 PM To: '[EMAIL PROTECTED]' Subject: [jBoss-User] Debugging EJB

RE: [jBoss-User] Debugging EJB

2000-08-16 Thread Jeff McArthur
on Debugging jboss there were several threads on the topic regards marc > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Jeff McArthur > Sent: Wednesday, August 16, 2000 5:10 PM > To: '[EMAIL PROTECTED]' > Subject: [jBoss

[jBoss-User] Debugging EJB

2000-08-16 Thread Jeff McArthur
EJB resources, programming enviroment set-up, and the like. It would be really nice to have a "How to program and debug EJB using Open Source tools" document. I can put that together with an answer to my questions. Sorry so verbose, I'm Too Much Coffee Man (tm) today. Sincerely,