Re: [jBoss-User] STILL having problems running with JBoss

2000-07-27 Thread Karl-Fredrik Blixt
That means you've installed jBoss in C:\Program Files\jboss2 (the default location) and the space in the URL is throwing off the whole URL. Try installing in a different directory (like C:\jboss2\) or using "progra~1" instead of "Program Files". Shouldn't it be automatically converted or

RE: [jBoss-User] STILL having problems running with JBoss

2000-07-27 Thread Joe Shevland
use %20 instead of the space? ^^ I'm fairly sure you can do that, though I'd probably put it into C:\jboss or similar anyway to save a bit of typing ;) Just a thought. /Kalle, trying to keep up with jBoss' development to be able to help when I get the time... -- Karl-Fredrik Blixt

RE: [jBoss-User] STILL having problems running with JBoss

2000-07-27 Thread Karl-Fredrik Blixt
^^ I'm fairly sure you can do that, though I'd probably put it into C:\jboss or similar anyway to save a bit of typing ;) Well, I think jBoss should autoconvert spaces and the likes (isn't there a method that does just that?) since many users install in directories like "program files" and

Re: [jBoss-User] STILL having problems running with JBoss

2000-07-27 Thread Rickard Öberg
Hi! Ken Jenks wrote: java.net.MalformedURLExcption: no protocol:Files/jboss2/lib/ext/jboss.jar] That means you've installed jBoss in C:\Program Files\jboss2 (the default location) and the space in the URL is throwing off the whole URL. Try installing in a different directory (like

Re: [jBoss-User] STILL having problems running with JBoss

2000-07-27 Thread Ken Jenks
At 08:51 AM 07/27/2000 +0200, you wrote: Hi! Ken Jenks wrote: java.net.MalformedURLExcption: no protocol:Files/jboss2/lib/ext/jboss.jar] That means you've installed jBoss in C:\Program Files\jboss2 (the default location) and the space in the URL is throwing off the whole URL. Try

[jBoss-User] Help on using mySQL needed.

2000-07-27 Thread Jan Heise
Hello all, can anyone post some hints on setting up for using mySQL? I used the information posted under bug #133 regarding msSQL to setup the mm-jdbc driver which loads just fine. Where I'm failing is a correct setup in jaws.xml, ejb-jar.xml. In jaws.xml I set datasourceMySQL/datasource

RE: [jBoss-User] Stateful Session Bean Support

2000-07-27 Thread Luan O'Carroll
I did some further checking and it seems that if a (partial/incomplete) jboss.xml file is present then jboss uses onlythose configurations found in the jboss.xml file and fails to find the default configurations. org.jboss.ejb.ContainerFactory.java#381 conf =

[jBoss-User] Stateful Session Bean not being bound

2000-07-27 Thread Craig Berry
I'm not sure if this is the same problem that other people have been having trying to deploy stateful session beans but in case it isn't I'll post again. If it is then some should be able to help soon I hope :) Anway, I have a very simple single stateful session bean (it doesn't call anything

Re: [jBoss-User] STILL having problems running with JBoss

2000-07-27 Thread Rickard Öberg
marc fleury wrote: Absolutely, but once I got it I *really* got it ;-) Wait and reward and all that Right...- and now it will take us another 6 month before you put the EJX stuff in cvs, and then you will say "I really get it now, guys, I *really* do, cvs rulez". EJX is in CVS now

RE: [jBoss-User] Shutting down server

2000-07-27 Thread marc fleury
That did not work with the first version of the IBM jdk13 due to a bug in it. The latest release from SUN fixes this marc -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jeffrey Nikkole Bonevich Sent: Wednesday, July 26, 2000 9:09 PM To: jBoss

RE: [jBoss-User] Help on using mySQL needed.

2000-07-27 Thread Dan
I'd be interested in this as well. I'm attempting to get BMP working with db2, and can't seem to find any docs that both make sense and seem to match the current config files. (I can't even get the driver loading, which seems to be due to needing to specify the archive someplace, but I can't

RE: [jBoss-User] Stateful Session Bean Support

2000-07-27 Thread marc fleury
mm just checked it on my installation with org.jboss.ejb.ContainerFactory.java#381 conf = jar.getContainerConfigurations().getContainerConfiguration(DEFAULT_STATEFUL_ CONFIGURATION); and System.out.println("The configuration is "+conf); and I get The configuration is Default

Re: [jBoss-User] Stateful Session Bean Support

2000-07-27 Thread Luan O'Carroll
marc fleury wrote: mm just checked it on my installation with org.jboss.ejb.ContainerFactory.java#381 conf = jar.getContainerConfigurations().getContainerConfiguration(DEFAULT_STATEFUL_ CONFIGURATION); and System.out.println("The configuration is "+conf); and I get The

[jBoss-User] Does JBoss create the Primary key for CMP??

2000-07-27 Thread Apichat Banyatsupasil
Hi, I developed a CMP bean and successfully be able to run it on JBoss. However, I noticed that eventhough JBoss created the table, it didn't create the primary key for me. Here is the output when I run jboss. ... [Auto deploy] Auto deploy of file:/usr/java/jboss2/deploy/ejb-jar-ic.jar

RE: [jBoss-User] Stateful Session Bean Support

2000-07-27 Thread marc fleury
I've got the stateful entry, and it gets loaded and works fine for the testbeans. In the case where a jboss.xml file is available defaultjboss.xml doesn't seem to be loaded (I added some logging jBossFileManager where it loads the file). interesting, send me that code so I can troubleshoot

[jBoss-Dev] new CVS OK!!!!

2000-07-27 Thread marc fleury
folks, It works! :) go get it! :) TestBeans.jar now complete the test since sebastien solved the tuned updates bug, the Enumeration bug and helped me trouble shoot the bind problem with the EJX classes. I have to go so I won't list the new features... regards marc PS: I will put it in

Re: [jBoss-User] new CVS OK!!!!

2000-07-27 Thread Adam Cassar
When I deploy a bean why do I get: [Auto deploy] Auto deploy of file:/usr/local/jboss2/deploy/domain.jar [Container factory] Deploying:file:/usr/local/jboss2/deploy/domain.jar [Container factory] Font specified in font.properties not found

Re: [jBoss-User] new CVS OK!!!!

2000-07-27 Thread Jeffrey Nikkole Bonevich
Marc- Just checked out the latest cvs and re-built. I am getting an IndexOutOfBoundsException when trying to change a field on an entity bean: // Now we will retrieve the bean with a primary key SimpleCmpPK pk = new SimpleCmpPK(1); SimpleCmp simpleCmp3 = home.findByPrimaryKey(pk);