----- Original Message -----
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, July 10, 2001 11:10 PM
Subject: JBoss-user digest, Vol 1 #1079 - 9 msgs
> Send JBoss-user mailing list submissions to
> [EMAIL PROTECTED]
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.sourceforge.net/lists/listinfo/jboss-user
> or, via email, send a message with subject or body 'help' to
> [EMAIL PROTECTED]
>
> You can reach the person managing the list at
> [EMAIL PROTECTED]
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of JBoss-user digest..."
>
>
> Today's Topics:
>
> 1. RE: Adding web app to Jetty...pls help. (Brian D. Brown)
> 2. reloading classes (Emerson)
> 3. Re: running JBoss inside another app (Stewart Allen)
> 4. Re: null finder parameter (Fred Loney)
> 5. Re: NoClassDefFoundError: Referencing an EJB from
> another in a different jar file ([EMAIL PROTECTED])
> 6. IT'S ALIVE!!!!! (marc fleury)
> 7. RE: javax.jms.JMSException: Invalid configuration -
> how do I fix this ? (Jon Rose)
>
> --__--__--
>
> Message: 1
> From: "Brian D. Brown" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Subject: RE: [JBoss-user] Adding web app to Jetty...pls help.
> Date: Tue, 10 Jul 2001 12:49:41 -0400
> Reply-To: [EMAIL PROTECTED]
>
> That was it. I had set the JAVA_HOME variable in the run.bat file,
instead
> of run_with_jetty.bat (although I was using run_with_jetty to launch the
> process, which calls run.bat).
>
> Any ideas on the servlet issue?
>
> Thanks for the help.
>
> Brian
>
> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of Burkhard
> Vogel
> Sent: Tuesday, July 10, 2001 12:16 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [JBoss-user] Adding web app to Jetty...pls help.
>
>
> Yep,
> you are missing tools.jar on your calsspath. If youwould have started the
> jboss/jettx combo with the run_with_jetty:* batch and had JAVA_HOME set,
> this would have been added to yout classpath!
> Burkhard
> ----- Original Message -----
> From: "Brian D. Brown" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, July 10, 2001 3:51 PM
> Subject: RE: [JBoss-user] Adding web app to Jetty...pls help.
>
>
> > Jules,
> >
> > Thanks for your reply. I got the application configured, by editing the
> > jetty.xml file. Here is the entry that I made:
> >
> > <Call name="addWebApplication">
> > <Arg>/test/*</Arg>
> > <Arg><SystemProperty name="jetty.home"
> default="."/>/webapps/test</Arg>
> > <Arg><SystemProperty name="jetty.home"
> > default="."/>/etc/webdefault.xml</Arg>
> > <Arg type="boolean">false</Arg> <!-- dont expand war -->
> > </Call>
> >
> > My web app has a jsp and a servlet. I can get the directory listing,
but
> > when I try to run the jsp, I get the following error:
> >
> > HTTP ERROR: 503 Service Unavailable
> >
> > java.lang.NoClassDefFoundError: sun/tools/javac/Main
> >
> > RequestURI=/test/Jsp1.jsp
> >
> > When I try to run the servlet, I get the following:
> >
> > HTTP ERROR: 404 Not Found
> >
> > Could not find resource for /servlet1
> >
> > RequestURI=/servlet1
> >
> > My web.xml looks like this:
> >
> > <?xml version="1.0" encoding="UTF-8"?>
> > <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application
> > 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
> > <web-app>
> > <servlet>
> > <servlet-name>servlet1</servlet-name>
> > <servlet-class>untitled1.Servlet1</servlet-class>
> > </servlet>
> > <servlet-mapping>
> > <servlet-name>servlet1</servlet-name>
> > <url-pattern>/servlet1</url-pattern>
> > </servlet-mapping>
> > </web-app>
> >
> > Why won't the jsp and servlet run? I'm used to working with Resin, and
I
> > just drop them in and the container compiles them, no special magic
> needed.
> > Am I missing something here?
> >
> > Thanks much,
> > Brian
> >
> > -----Original Message-----
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED]]On Behalf Of Julian
> > Gosnell
> > Sent: Monday, July 09, 2001 8:21 PM
> > To: [EMAIL PROTECTED]
> > Subject: Re: [JBoss-user] Adding web app to Jetty...pls help.
> >
> >
> > I've just reread my mail....
> >
> > Ignore the bit 'should be posted....'. There is a lot of reference to
EARS
> > and
> > JBoss, so this is completely relevant.
> >
> > When I started writing it I was only going to talk about the Jetty
config
> > file.
> > Then I took a step back, thought about EAR files and rethought my
answer.
> >
> > Jules
> >
> >
> > Julian Gosnell wrote:
> >
> > > "Brian D. Brown" wrote:
> > >
> > > > I have a question which should be simple to answer. I am trying to
> add
> > a
> > > > new web app to jetty, but I don't understand how to do it. Is there
> > some
> > > > automated mechanism to deploy the app, or do I have to edit some
> config
> > file
> > > > or something? Please explain how to do this with and without using
> > virtual
> > > > hosting.
> > > >
> > > > Thanks in advance.
> > > >
> > > > Brian
> > >
> > > Firstly, this should be posted to [EMAIL PROTECTED] -
being
> a
> > Jetty
> > > and not a Jboss question :-), but seeing as it's here, and it's bound
to
> > be
> > > asked again.....
> > >
> > > Is the webapp going to talk to EJBs ?
> > >
> > > Yes - stick it in a ear and deploy via JBoss, either by copying it
into
> > > jboss/deploy (a hot-deploy) or via the JMX interface to the
J2EEDeployer
> > > (available on port 8082). The J2EEDeployer must be in charge,
otherwise
> it
> > > cannot coordinate the deployment of EJBs and WebApp - this means that
> they
> > > won't share a common ClassLoader and this means that all calls between
> > them
> > > will result in serialisation and will not be optimised down to
standard
> > > function calls.
> > >
> > > No - You could still stick it in an ear and deploy it via JBoss, or
you
> > can put
> > > an entry into Jetty's config file - currently defaults to
> > > jboss/conf/jetty/jetty.xml - this is the demo config. you need to
insert
> > > another entry that looks like this :
> > >
> > > <Call name="addWebApplication">
> > > <Arg>/jetty/*</Arg>
> > > <Arg><SystemProperty name="jetty.home"
> > default="."/>/webapps/jetty</Arg>
> > > <Arg><SystemProperty name="jetty.home"
> > > default="."/>/etc/webdefault.xml</Arg>
> > > <Arg type="boolean">false</Arg>
> > > </Call>
> > >
> > > This translates into the Java :
> > >
> > > jetty.addWebApplication("/jetty/*", System.getProperty("jetty.home",
> > > ".")+"/webapps/jetty", System.getProperty("jetty.home",
> > > ".")+"/etc/default.xml", false);
> > >
> > > the args mean :
> > >
> > > 1 - the URL you want the webapp to deploy to - e.g.
> localhost:8080:/jetty
> > > 2 - where to find the webapp (in this case a dir, but could be a war -
> > i.e. end
> > > in war)
> > > 3 - where to find the webdefault.xml - default bindings for webapps -
> just
> > copy
> > > this - look in the file if you are interested
> > > 4 - whether to unpack the webapp (if it is a war) before running it -
> JSPs
> > will
> > > fail to compile if this is set to false and you deploy an archive
> > >
> > > If you don't understand XML - then you are taking your life into your
> > hands
> > > going this route.
> > >
> > > That's as clear as it gets !
> > >
> > > Jules
> > >
> > > _________________________________________________________
> > > Do You Yahoo!?
> > > Get your free @yahoo.com address at http://mail.yahoo.com
> > >
> > > _______________________________________________
> > > JBoss-user mailing list
> > > [EMAIL PROTECTED]
> > > http://lists.sourceforge.net/lists/listinfo/jboss-user
> >
> >
> > _________________________________________________________
> > Do You Yahoo!?
> > Get your free @yahoo.com address at http://mail.yahoo.com
> >
> >
> > _______________________________________________
> > JBoss-user mailing list
> > [EMAIL PROTECTED]
> > http://lists.sourceforge.net/lists/listinfo/jboss-user
> >
> >
> > _______________________________________________
> > JBoss-user mailing list
> > [EMAIL PROTECTED]
> > http://lists.sourceforge.net/lists/listinfo/jboss-user
>
>
> _______________________________________________
> JBoss-user mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/jboss-user
>
>
>
> --__--__--
>
> Message: 2
> Date: Tue, 10 Jul 2001 14:06:57 -0300
> To: [EMAIL PROTECTED]
> From: Emerson <[EMAIL PROTECTED]>
> Subject: [JBoss-user] reloading classes
> Reply-To: [EMAIL PROTECTED]
>
> I made a system that depending on the pathInfo calls a diferent comand
> class (command design pattern). The problem is that the class is not
> reloaded when I change it, is there any manner to accomplish that?
> Emerson Cargnin
> TRE-SC
> Setor de Desenvolvimento
> Tel: (48) 251-3700 - Ramal 3134
>
>
> --__--__--
>
> Message: 3
> Date: Tue, 10 Jul 2001 13:16:47 -0400
> From: Stewart Allen <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: [JBoss-user] running JBoss inside another app
> Reply-To: [EMAIL PROTECTED]
>
> Thanks for the response, Marc.
>
> I have proceeded to the point where, with the default settings,
> everything boots up until the InstantDB blocks on a pool call. At this
> point, JBoss is frozen. The log tail looks like this:
>
> [Hypersonic] Started
> [InstantDB] Starting
> [InstantDB] XA Connection pool InstantDB bound to java:/InstantDB
> Enhydra InstantDB - Version 3.26
> [InstantDB] The Initial Developer of the Original Code is Lutris
> Technologies Inc.
> Portions created by Lutris are Copyright (C) 1997-2001 Lutris
> Technologies, Inc.
> All Rights Reserved.
> [Hypersonic] Server 1.4 is running
> [Hypersonic] Press [Ctrl]+[C] to abort
> ...frozen at this point
>
> the traceback for the blocking call is:
>
> "main" (TID:0x403487e0, sys_thread_t:0x804fc10, state:CW, native
> ID:0x400) prio=5
> at java.lang.Object.wait(Native Method)
> at java.lang.Object.wait(Object.java:421)
> at
> org.opentools.minerva.pool.ObjectPool.getObject(ObjectPool.java:577)
> at
> org.opentools.minerva.pool.ObjectPool.getObject(ObjectPool.java:521)
> at
>
org.opentools.minerva.jdbc.xa.XAPoolDataSource.getConnection(XAPoolDataSourc
e.java:165)
> at
>
org.jboss.jdbc.XADataSourceLoader.startService(XADataSourceLoader.java:330)
> at
> org.jboss.util.ServiceMBeanSupport.start(ServiceMBeanSupport.java:93)
> at java.lang.reflect.Method.invoke(Native Method)
> at
> com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
> at
> com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
> at org.jboss.util.ServiceControl.start(ServiceControl.java:97)
> at java.lang.reflect.Method.invoke(Native Method)
> at
> com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
> at
> com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
> at Main.<init>(Main.java:225)
> at Main$1.run(Main.java:124)
> at java.security.AccessController.doPrivileged(Native Method)
> at Main.main(Main.java:120)
> at java.lang.reflect.Method.invoke(Native Method)
> at launch.start(launch.java:47)
> at launch.main(launch.java:15)
>
>
> If I change Blocking=false in jboss.jcml then I get NPE's like this, but
> the server continues to boot. However, JBoss seems non-functional at
> this point as it does not recognize anything dropped into the deploy
> directory:
>
>
> [InstantDB] The Initial Developer of the Original Code is Lutris
> Technologies Inc.
> Portions created by Lutris are Copyright (C) 1997-2001 Lutris
> Technologies, Inc.
> All Rights Reserved.
> [InstantDB] Stopped
> [InstantDB] java.lang.NullPointerException
> [InstantDB] at
>
org.opentools.minerva.jdbc.xa.XAPoolDataSource.getConnection(XAPoolDataSourc
e.java:165)
> [InstantDB] at
>
org.jboss.jdbc.XADataSourceLoader.startService(XADataSourceLoader.java:330)
> [InstantDB] at
> org.jboss.util.ServiceMBeanSupport.start(ServiceMBeanSupport.java:93)
> [InstantDB] at java.lang.reflect.Method.invoke(Native Method)
> [InstantDB] at
> com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
> [InstantDB] at
> com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
> [InstantDB] at
> org.jboss.util.ServiceControl.start(ServiceControl.java:97)
> [InstantDB] at java.lang.reflect.Method.invoke(Native Method)
> [InstantDB] at
> com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
> [InstantDB] at
> com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
> [InstantDB] at Main.<init>(Main.java:225)
> [InstantDB] at Main$1.run(Main.java:124)
> [InstantDB] at java.security.AccessController.doPrivileged(Native
> Method)
> [InstantDB] at Main.main(Main.java:120)
> [InstantDB] at java.lang.reflect.Method.invoke(Native Method)
> [InstantDB] at launch.start(launch.java:47)
> [InstantDB] at launch.main(launch.java:15)
> [Service Control] Could not start
> DefaultDomain:service=XADataSource,name=InstantDB
> [Service Control] java.lang.NullPointerException
> [Service Control] at
>
org.opentools.minerva.jdbc.xa.XAPoolDataSource.getConnection(XAPoolDataSourc
e.java:165)
> [Service Control] at
>
org.jboss.jdbc.XADataSourceLoader.startService(XADataSourceLoader.java:330)
> [Service Control] at
> org.jboss.util.ServiceMBeanSupport.start(ServiceMBeanSupport.java:93)
> [Service Control] at java.lang.reflect.Method.invoke(Native Method)
> [Service Control] at
> com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
> [Service Control] at
> com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
> [Service Control] at
> org.jboss.util.ServiceControl.start(ServiceControl.java:97)
> [Service Control] at java.lang.reflect.Method.invoke(Native Method)
> [Service Control] at
> com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
> [Service Control] at
> com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
> [Service Control] at Main.<init>(Main.java:225)
> [Service Control] at Main$1.run(Main.java:124)
> [Service Control] at
> java.security.AccessController.doPrivileged(Native Method)
> [Service Control] at Main.main(Main.java:120)
> [Service Control] at java.lang.reflect.Method.invoke(Native Method)
> [Service Control] at launch.start(launch.java:47)
> [Service Control] at launch.main(launch.java:15)
> [DefaultDS] Starting
>
>
> I'm not sure how to debug this further since I don't really know what's
> going on. I saw what looked like a related post, but there were no
> followups.
>
> Any further help is appreciated. My sample code is available upon request.
>
> Thanks,
>
> Stewart
>
>
> marc fleury wrote:
>
> >|Before I beat my head bloody for too long, I thought I might ask if
> >|anyone else has attempted this. I am working on booting JBoss inside of
> >|an already running Java application. Aside from some hard coded "new
> >|File("../..")" style issues in Main.java there are a lot of assumptions
> >|made in the code about the startup director of the JVM. Some of these I
> >|have addressed with my own classloader, but others persist.
> >
> >yes that is a plague in java in general, java programs should not make
any
> >too many assumptions on the directory structure. Most have to do with
> >configuration files and "anchors" that the different modules look for. A
> >plague in JBoss as well, what you want to do is feasable, I recommend
> >turning the services on as you go (jcml) and seeing who barfs (booooaaaa!
> >missing file)
> >
> >marcf
> >
>
>
>
>
> --__--__--
>
> Message: 4
> Date: Tue, 10 Jul 2001 18:32:50 +0100
> From: Fred Loney <[EMAIL PROTECTED]>
> Organization: Spirited Software, Inc.
> To: [EMAIL PROTECTED], [EMAIL PROTECTED]
> Subject: Re: [JBoss-user] null finder parameter
> Reply-To: [EMAIL PROTECTED]
>
> My mistake. I've been surprised by that distinction before; you'd think
I'd learn.
>
> There is, however, a bigger problem that precludes any jboss declared cmp
finder with a null argument. jboss gets the type of an argument by calling
getClass() on the instance. If the argument is null, this raises an
exception with the unenlightening message "Find failed".
>
> It would be preferable to modify the jboss jaws plugin to check for a null
argument and format the PreparedStatement accordingly. To be precise, a null
check on arg in
org.jboss.ejb.plugins.jaws.jdbc.JDBCDefinedFinderCommand.setParameters():
>
> if (arg == null)
> jdbcType = java.sql.Types.NULL;
> else
> jdbcType = typeMapping.getJdbcTypeForJavaType(arg.getClass());
>
> David Jencks wrote:
>
> > Hi, does jdbc sql syntax differ so much from standard sql syntax that
this
> > works? I haven't found any part of the jdbc spec that indicates this,
> > could you provide a reference?
> >
> > In normal sql, mycolumn = null has truth value unknown, not true if the
> > mycolumn entry is null. (null is not a value, null = null is unknown,
not
> > true or false: you have to supply the missing values for both nulls to
> > determine truth or falsity)
> >
> > I haven't tried this, however:
> >
> > if you always want just null values,
> >
> > <query>mycolumn is null</query>
> >
> > if you want a parameter:
> >
> > <query>(mycolumn = {0}) or ((mycolumn is null) and ({0} is
null))</query>
> >
> > david jencks
> >
> > On 2001.07.09 12:28:55 -0400 Fred Loney wrote:
> > > <query>mycolumn = {0}</query>
> > >
> > > and pass null argument to finder method.
> > >
> > > Keerthi P wrote:
> > >
> > > > Hi all,
> > > > how to declare a finder in jaws.xml if i need to select rows if a
> > > field's value is null.
> > > > for eg: my oracle query is "select * from table where mycolumn is
> > > null". Could any one of you tell
> > > > me the equivalent <finder> construct that i can use in jaws
> > > >
> > >
> > > --
> > > Fred Loney
> > > Spirited Software, Inc.
> > > [EMAIL PROTECTED]
> > >
> > >
> > >
> > > _______________________________________________
> > > JBoss-user mailing list
> > > [EMAIL PROTECTED]
> > > http://lists.sourceforge.net/lists/listinfo/jboss-user
> > >
> >
> > _______________________________________________
> > JBoss-user mailing list
> > [EMAIL PROTECTED]
> > http://lists.sourceforge.net/lists/listinfo/jboss-user
>
> --
> Fred Loney
> Spirited Software, Inc.
> [EMAIL PROTECTED]
>
>
>
>
> --__--__--
>
> Message: 5
> From: [EMAIL PROTECTED]
> To: [EMAIL PROTECTED]
> cc: [EMAIL PROTECTED]
> Date: Tue, 10 Jul 2001 13:44:06 -0400
> Subject: Re: [JBoss-user] NoClassDefFoundError: Referencing an EJB from
> another in a different jar file
> Reply-To: [EMAIL PROTECTED]
>
>
>
> Robert,
> It sounds like you have your session beans in separate jar files.
>
> If so, either
>
> 1) Include the Home and Remote Interfaces of the called session bean in
the
> calling session beans jar file
>
> 2) Use jboss.xml to create the link between the ejb-ref and the Global
namespace
> jndi-names that reference them. If you use the jboss.xml option then you
will
> also need to include a Class-Path entry in your manifest.mf file.
>
> For example:
>
> ---------------------------------------------------
> ejb-jar.xml (SessionBeanA):
>
> <ejb-jar>
> <enterprise-beans>
> <session>
> <ejb-name>SessionBeanA</ejb-name>
> <home>com.acme.ejb.SessionAHome</home>
> <remote>com.acme.ejb.SessionA</remote>
> <ejb-class>com.acme.ejb.SessionABean</ejb-class>
> <session-type>Stateless</session-type>
> <transaction-type>Container</transaction-type>
> </session>
> </enterprise-beans>
> ...
> </ejb-jar>
> ---------------------------------------------------
> ejb-jar.xml (SessionBeanB):
>
> <ejb-jar>
> <enterprise-beans>
> <session>
> <ejb-name>SessionBeanB</ejb-name>
> <home>com.acme.ejb.SessionBHome</home>
> <remote>com.acme.ejb.SessionB</remote>
> <ejb-class>com.acme.ejb.SessionBBean</ejb-class>
> <session-type>Stateless</session-type>
> <transaction-type>Container</transaction-type>
> <ejb-ref>
> <ejb-ref-name>ejb/SessionA</ejb-ref-name>
> <ejb-ref-type>Session</ejb-ref-type>
> <home>SessionAHome</home>
> <remote>SessionA</remote>
> </ejb-ref>
> </session>
> </enterprise-beans>
> ...
> </ejb-jar>
> ---------------------------------------------------
> jboss.xml (SessionBeanA):
>
> <jboss>
> <secure>false</secure>
> <enterprise-beans>
> <session>
> <ejb-name>SessionBeanA</ejb-name>
> <jndi-name>com/acme/ejb/SessionA</jndi-name>
> <configuration-name>Stateless SessionBean</configuration-name>
> </session>
> </enterprise-beans>
> </jboss>
> ---------------------------------------------------
> jboss.xml (SessionBeanB):
>
> <jboss>
> <secure>false</secure>
> <enterprise-beans>
> <session>
> <ejb-name>SessionBeanB</ejb-name>
> <jndi-name>com/acme/ejb/SessionB</jndi-name>
> <configuration-name>Stateless SessionBean</configuration-name>
> <ejb-ref>
> <ejb-ref-name>ejb/SessionBeanA</ejb-ref-name>
> <jndi-name>com/acme/ejb/SessionA</jndi-name>
> </ejb-ref>
> </session>
> </enterprise-beans>
> </jboss>
> ---------------------------------------------------
> manifest.mf (SessionBean B):
>
> Class-Path: ./SessionBeanA.jar
> ---------------------------------------------------
>
> ----- Original Message -----
> Date: Tue, 10 Jul 2001 09:30:38 -0700 (PDT)
> From: Robert Bachan <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> MIME-Version: 1.0
> Content-Type: text/plain; charset=us-ascii
> Subject: [JBoss-user] NoClassDefFoundError: Referencing an EJB from
another in a
> different jar file
> Sender: [EMAIL PROTECTED]
> Precedence: bulk
> Reply-To: [EMAIL PROTECTED]
> List-Help: <mailto:[EMAIL PROTECTED]?subject=help>
> List-Post: <mailto:[EMAIL PROTECTED]>
> List-Subscribe: <http://lists.sourceforge.net/lists/listinfo/jboss-user>,
<
> mailto:[EMAIL PROTECTED]?subject=subscribe>
> List-Id: The JBoss User main mailing list
<jboss-user.lists.sourceforge.net>
> List-Unsubscribe:
<http://lists.sourceforge.net/lists/listinfo/jboss-user>, <
> mailto:[EMAIL PROTECTED]?subject=unsubscribe>
> List-Archive: <http://lists.sourceforge.net/archives//jboss-user/>
>
>
> Hi Guys,
> fairly new to JBoss and trying to call a session bean
> from another.
> I've installed a security manager but and the JNDI
> bean context lookup is fine, but when I try to cast
> the Home Interface I get:
>
> [CompanySearchBean] TRANSACTION ROLLBACK
> EXCEPTION:com/knet/session/utils/UtilitiesHome; nested
> exception is:
> java.lang.NoClassDefFoundError:
> com/knet/session/utils/UtilitiesHome
> [CompanySearchBean] java.lang.NoClassDefFoundError:
> com/knet/session/utils/UtilitiesHome
> [CompanySearchBean] at
>
com.knet.session.companysearch.CompanySearchBean.listCompanies(CompanySearch
Bean.java:48)
>
>
> if any ideas please let me know,
> Thanks alot in advance.
>
> Robert Bachan
>
>
>
>
>
> --__--__--
>
> Message: 6
> From: "marc fleury" <[EMAIL PROTECTED]>
> To: "Jboss-User@Lists. Sourceforge. Net"
<[EMAIL PROTECTED]>,
> "Jboss-Development@Lists. Sourceforge. Net"
<[EMAIL PROTECTED]>
> Date: Tue, 10 Jul 2001 14:07:12 -0400
> Subject: [JBoss-user] IT'S ALIVE!!!!!
> Reply-To: [EMAIL PROTECTED]
>
>
> www.jboss.org/forums
>
>
> so go and bang on it, might go down for some maintainance but let's see
how
> much fire we can bring on it.
>
> It is Jive/Jetty/JBoss
>
> you go girl! bring it on!
>
> marcf
>
> PS: jboss-user is dead! long live jboss-forums!
> _________________
> Marc Fleury, Ph.D
> [EMAIL PROTECTED]
> _________________
>
>
>
>
> --__--__--
>
> Message: 7
> From: Jon Rose <[EMAIL PROTECTED]>
> To: "'[EMAIL PROTECTED]'"
> <[EMAIL PROTECTED]>
> Cc: "'Burkhard Vogel'" <[EMAIL PROTECTED]>
> Subject: RE: [JBoss-user] javax.jms.JMSException: Invalid configuration -
> how do I fix this ?
> Date: Tue, 10 Jul 2001 11:10:44 -0700
> Reply-To: [EMAIL PROTECTED]
>
> The directory db/jbossmq/ is missing - do I have a valid - should I just
> create an empty dir db/jbossmq/ or should I download a different distro?
(I
> will have a look on teh website)
>
> Thanks
>
> Jon
>
> > -----Original Message-----
> > From: Burkhard Vogel [SMTP:[EMAIL PROTECTED]]
> > Sent: Tuesday, July 10, 2001 12:53 AM
> > To: [EMAIL PROTECTED]
> > Subject: Re: [JBoss-user] javax.jms.JMSException: Invalid
> > configuration - how do I fix this ?
> >
> > hi,
> > make sure there is a db/jbossmq/ dir in your distro.
> > Burkhard
> > ----- Original Message -----
> > From: "Jon Rose" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, July 10, 2001 4:37 AM
> > Subject: [JBoss-user] javax.jms.JMSException: Invalid configuration -
how
> > do
> > I fix this ?
> >
> >
> > > I have jboss-2.2.2 with Tomcat running on Windows 2000. For some
reason
> > the
> > > JBossMQ service does not start up properly.
> > >
> > > How can I fix this?
> > >
> > > Thanks
> > >
> > > Jon
> > >
> > > [JBossMQ] Starting
> > > [JBossMQ] Cannot start the JMS server ! Invalid configuration.
> > > [JBossMQ] javax.jms.JMSException: Invalid configuration.
> > > [JBossMQ] at
> > >
> >
org.jbossmq.server.PersistenceManager.<init>(PersistenceManager.java:107)
> > > [JBossMQ] at org.jbossmq.server.StartServer.run(StartServer.java:170)
> > > [JBossMQ] at org.jbossmq.server.StartServer.start(StartServer.java:70)
> > > [JBossMQ] at
> > > org.jbossmq.server.JBossMQService.startService(JBossMQService.java:66)
> > > [JBossMQ] at
> > > org.jboss.util.ServiceMBeanSupport.start(ServiceMBeanSupport.java:93)
> > > [JBossMQ] at java.lang.reflect.Method.invoke(Native Method)
> > > [JBossMQ] at
> > >
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
> > > [JBossMQ] at
> > >
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
> > > [JBossMQ] at
> > > org.jboss.util.ServiceControl.start(ServiceControl.java:97)
> > > [JBossMQ] at java.lang.reflect.Method.invoke(Native Method)
> > > [JBossMQ] at
> > >
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
> > > [JBossMQ] at
> > >
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
> > > [JBossMQ] at org.jboss.Main.<init>(Main.java:217)
> > > [JBossMQ] at org.jboss.Main$1.run(Main.java:121)
> > > [JBossMQ] at java.security.AccessController.doPrivileged(Native
> > > Method)
> > > [JBossMQ] at org.jboss.Main.main(Main.java:117)
> > > [JBossMQ] Linked Exception:
> > > [JBossMQ] javax.jms.JMSException: Could not open the queue's
tranaction
> > log:
> > > /C:/JBoss-2.2.2/db/jbossmq/transactions.dat
> > > [JBossMQ] at
> > > org.jbossmq.persistence.SpyTxLog.throwJMSException(SpyTxLog.java:95)
> > > [JBossMQ] at org.jbossmq.persistence.SpyTxLog.<init>(SpyTxLog.java:35)
> > > [JBossMQ] at
> > >
> >
org.jbossmq.server.PersistenceManager.<init>(PersistenceManager.java:104)
> > > [JBossMQ] at org.jbossmq.server.StartServer.run(StartServer.java:170)
> > > [JBossMQ] at org.jbossmq.server.StartServer.start(StartServer.java:70)
> > > [JBossMQ] at
> > > org.jbossmq.server.JBossMQService.startService(JBossMQService.java:66)
> > > [JBossMQ] at
> > > org.jboss.util.ServiceMBeanSupport.start(ServiceMBeanSupport.java:93)
> > > [JBossMQ] at java.lang.reflect.Method.invoke(Native Method)
> > > [JBossMQ] at
> > >
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
> > > [JBossMQ] at
> > >
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
> > > [JBossMQ] at
> > > org.jboss.util.ServiceControl.start(ServiceControl.java:97)
> > > [JBossMQ] at java.lang.reflect.Method.invoke(Native Method)
> > > [JBossMQ] at
> > >
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
> > > [JBossMQ] at
> > >
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
> > > [JBossMQ] at org.jboss.Main.<init>(Main.java:217)
> > > [JBossMQ] at org.jboss.Main$1.run(Main.java:121)
> > > [JBossMQ] at java.security.AccessController.doPrivileged(Native
> > > Method)
> > > [JBossMQ] at org.jboss.Main.main(Main.java:117)
> > > [JBossMQ] Started
> > >
> > > _______________________________________________
> > > JBoss-user mailing list
> > > [EMAIL PROTECTED]
> > > http://lists.sourceforge.net/lists/listinfo/jboss-user
> >
> >
> > _______________________________________________
> > JBoss-user mailing list
> > [EMAIL PROTECTED]
> > http://lists.sourceforge.net/lists/listinfo/jboss-user
>
>
>
> --__--__--
>
> _______________________________________________
> JBoss-user mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/jboss-user
>
>
> End of JBoss-user Digest
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user