[JBoss-user] classpath

2004-07-07 Thread Yang Xiao
Hi all, I have a jar file in the $SERVER/lib directory that contains utility classes for a web app, however, I also have the same class files under the default/deploy/mywebapp/classes dir that I use for testing. The problem is that JBoss seems to load the class in the jar file in the $SERVER/lib di

Re: [JBoss-user] classpath for JSP compiling

2003-02-25 Thread Rod Macpherson
ause of the JSP compilation issue. That would be nice to avoid but it's not a show-stopper that we have to run the tests serveral times. Rod - Original Message - From: "Jules Gosnell" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 25, 2003 2:31

Re: [JBoss-user] classpath for JSP compiling

2003-02-25 Thread Jules Gosnell
Guys, I understand that it would be nice for you not to have to worry about when/how your JSPs get compiled. This fn-ality should be a part of Jasper. I only do the Jetty/JBoss integration. If you really want it, and I am always dealing with traffic on this subject - so many people do, then y

Re: [JBoss-user] classpath - dynamic class load problem

2003-02-19 Thread Scott M Stark
Wednesday, February 19, 2003 10:19 AM Subject: Re: [JBoss-user] classpath - dynamic class load problem > Hi Scott, > > Thanks for your help. We have tried 3.2.0 RC2, but it > did not solve the problem. It still says > ClassNotFoundException for the dynamically generated > classes (

Re: [JBoss-user] classpath - dynamic class load problem

2003-02-19 Thread Muruga Chinnananchi
for your help. i really appreciate it. -muruga > From: "Scott M Stark" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Subject: Re: [JBoss-user] classpath - dynamic class > load problem > Date: Tue, 18 Feb 2003 18:51:52 -0800 > > Look at 3.2.0RC2. > &g

Re: [JBoss-user] classpath - dynamic class load problem

2003-02-18 Thread Scott M Stark
Look at 3.2.0RC2. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Muruga Chinnananchi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 18, 2003 3:36 PM Subject:

[JBoss-user] classpath - dynamic class load problem

2003-02-18 Thread Muruga Chinnananchi
Hello, I am using JBoss 3.2 RC1, Here is my conf/jboss-service.xml: Here is the problem: The dynamically generated classes under C:/mycom/classes/ directory is not visible to the class which is in C:/mycom/lib/myapp.jar file. I start the jboss server, then i generate MyClass.class and put it

Re: [JBoss-user] classpath for JSP compiling

2003-02-18 Thread Rod Macpherson
bjørn Ravn Andersen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 18, 2003 12:32 AM Subject: Re: [JBoss-user] classpath for JSP compiling Jules Gosnell wrote: > This step is problematic to perform in an automated manner, due to the > need for developme

Re: [JBoss-user] classpath for JSP compiling

2003-02-18 Thread Thorbjørn Ravn Andersen
Jules Gosnell wrote: This step is problematic to perform in an automated manner, due to the need for development time knowledge (which jsps are servlets and which are just included, etc...). I understand there is a problem detecting this automatically, but would it be hard to implement given

Re: [JBoss-user] classpath for JSP compiling

2003-02-17 Thread Rod Macpherson
> To: <[EMAIL PROTECTED]> Sent: Monday, February 17, 2003 1:56 PM Subject: Re: [JBoss-user] classpath for JSP compiling > Used to use -package to specify the base package name and then JspC would > assume that the directory structure of your JSPs was the fully qualified > package

Re: [JBoss-user] classpath for JSP compiling

2003-02-17 Thread Rod Macpherson
l" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 17, 2003 10:50 AM Subject: Re: [JBoss-user] classpath for JSP compiling > Rod Macpherson wrote: > > >To summarize, > > > >1. deploy-time compilation precludes a specific optimization.

Re: [JBoss-user] classpath for JSP compiling

2003-02-17 Thread Jules Gosnell
vey useful... - Original Message - From: "Jules Gosnell" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 17, 2003 2:38 AM Subject: Re: [JBoss-user] classpath for JSP compiling Rod Macpherson wrote: Can we specify that we want all JSPs compiled at deplo

Re: [JBoss-user] classpath for JSP compiling

2003-02-17 Thread Rod Macpherson
> To: <[EMAIL PROTECTED]> Sent: Monday, February 17, 2003 2:38 AM Subject: Re: [JBoss-user] classpath for JSP compiling > Rod Macpherson wrote: > > >Can we specify that we want all JSPs compiled at deploy time? The servlet > >approach has shortcomings such as losing the abi

Re: [JBoss-user] classpath for JSP compiling

2003-02-17 Thread Jules Gosnell
ell" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, February 16, 2003 9:35 AM Subject: Re: [JBoss-user] classpath for JSP compiling Jasper expects it's classpath to be passed as a string via an init-param. This string is generated by walking up the classloader hi

Re: [JBoss-user] classpath for JSP compiling

2003-02-17 Thread Thorbjørn Ravn Andersen
Rod Macpherson wrote: Can we specify that we want all JSPs compiled at deploy time? The servlet approach has shortcomings such as losing the ability to just update a page on the fly. Since jetty controls the package structure and the location of class files it would be nice to have a compile-on-

Re: [JBoss-user] classpath for JSP compiling

2003-02-16 Thread Rod Macpherson
least an interface to point to a war and say "compile this". - Original Message - From: "Jules Gosnell" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, February 16, 2003 9:35 AM Subject: Re: [JBoss-user] classpath for JSP compiling > Jasper expec

Re: [JBoss-user] classpath for JSP compiling

2003-02-16 Thread SainTiss
Hi, it certainly was deployed, otherwise the servlets wouldn't work either... But I've solved the issue by creating an .ear with the .jar and the .war listed as modules in the application.xml... I didn't know this was obligatory though... I thought an .ear wasn't really needed because the .jar

Re: [JBoss-user] classpath for JSP compiling

2003-02-16 Thread Jules Gosnell
Jasper expects it's classpath to be passed as a string via an init-param. This string is generated by walking up the classloader hierarchy and adding all relevant dirs/jars to it. This generation is done on deployment of the war. It looks s if it is missing the classes in your ejb-jar. was it

[JBoss-user] classpath for JSP compiling

2003-02-16 Thread SainTiss
Hi, I'm writing a simple JSP in which I try to access an Entity EJB. Yet while accessing the jsp, I get javac errors in the JBoss log, like this: Error compiling file: /usr/local/jboss-3.0.4_tomcat-4.1.12/tomcat-4.1.x/work/MainEngine/localhost/eenloketsysteem/jsp/stTest_jsp.java /usr/local/jbos

Re: [JBoss-user] classpath order in jboss-service.xml

2003-01-22 Thread Scott M Stark
nday, January 20, 2003 3:04 PM Subject: [JBoss-user] classpath order in jboss-service.xml > Hi, > > i have the following configuration in my > jboss-service.xml. for loading MyClass.class. > > > archives="myapp.jar/> > > MyClass.class is present in myapp.jar

RE: [JBoss-user] classpath order in jboss-service.xml

2003-01-20 Thread Marco Tedone
Chinnananchi Sent: Monday, January 20, 2003 11:05 PM To: [EMAIL PROTECTED] Subject: [JBoss-user] classpath order in jboss-service.xml Hi, i have the following configuration in my jboss-service.xml. for loading MyClass.class. http://mailplus.yahoo.com

[JBoss-user] classpath order in jboss-service.xml

2003-01-20 Thread Muruga Chinnananchi
Hi, i have the following configuration in my jboss-service.xml. for loading MyClass.class. http://mailplus.yahoo.com --- This SF.NET email is sponsored by: FREE SSL Guide from Thawte are you planning your Web Server Security? Click here to g

[JBoss-user] Classpath issue in web application within ear

2003-01-09 Thread Eric Jain
Trying to access a class in WEB-INF/lib/*.jar from a class located under 'WEB-INF/classes' results in a NoClassDefFoundError. I am using JBoss 3.2 with Jetty 4.2.4. Any ideas what I am doing wrong? -- Eric Jain --- This SF.NET email is sponso

Re: [JBoss-user] classpath

2002-05-28 Thread David Jencks
I don't think this would affect the class visibility problem, however I think you need to rename oracle-service.xml to jboss-service.xml when you include it in mysar.sar/META-INF/ rather than as a standalone file. david jencks On 2002.05.28 13:13:03 -0400 áÎÄÒÅÊ ïÎÉÝÕË wrote: > Hello! > >

RE: [JBoss-user] classpath

2002-05-28 Thread JD Brennan
Title: RE: [JBoss-user] classpath You can put the .sar in your EJB .jar file to give your beans access to it. Not sure about other stuff in the .ear - I'm assuming you have an EJB .jar in the .ear JD -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]

[JBoss-user] classpath

2002-05-28 Thread Андрей Онищук
Hello! Can anyone please point me, how can I place my JARs within EAR application to be able to use defined there classes wintin EnterpriseBean? Now I have 2 archives: - EAR with beans and webbapp; - SAR with oracle-servise.xml and my utility class

Re: [JBoss-user] classpath confusion

2002-01-04 Thread Richard Kasperowski
Guy Rouillier wrote: > Don't put anything in classpath. It's tempting, and it can make > development easier, and you can probably get along fine for awhile. But > sooner or later, you'll get bizarre problems. The most common is that > updates to your EJBs don't take (i.e, they appear to dep

Re: [JBoss-user] classpath confusion

2002-01-03 Thread Guy Rouillier
n To: [EMAIL PROTECTED] Sent: Thursday, January 03, 2002 1:20 PM Subject: [JBoss-user] classpath confusion I have accumulated a lot of stuff in my CLASSPATH and JBOSS_CLASSPATH that probably doesn't need to be there. Advice on the forums seems to range from to

[JBoss-user] classpath confusion

2002-01-03 Thread Frank Morton
I have accumulated a lot of stuff in my CLASSPATH and JBOSS_CLASSPATH that probably doesn't need to be there. Advice on the forums seems to range from to not touch JBOSS_CLASSPATH to just pile everything into the two paths until it works, which is what I've done.   Does anyone really know wh

RE: [JBoss-user] Classpath in Manifest file

2001-08-01 Thread Sternagel Annegret (PN-SYS/DAS)
ttwoch, 1. August 2001 10:14 > To: [EMAIL PROTECTED] > Subject: [JBoss-user] Classpath in Manifest file > > Hi, > I had created application which lists home and remote interface class of > all deployed beans in Jboss. I had had used session bean named searchBean > for

[JBoss-user] Classpath in Manifest file

2001-08-01 Thread Rajesh Vilasrao Bhujbal
Hi, I had created application which lists home and remote interface class of all deployed beans in Jboss. I had had used session bean named searchBean  for this purpose. searchBean lists beans starting with JNDI name "interest/ ".   it gives correct result only if I add home and remotes

[JBoss-user] Classpath and WEB-INF/lib

2001-07-26 Thread Tait, Allen
I am using Jboss2.2.1 with embedded Tomcat 3.2.1. Here is the question. My application is jarred up into a .war file and deployed under jboss_home/tmp/deploy/Default/... If I include the .jar files this app needs explicitly in the CLASSPATH, then there is an error in another pre-existing app d

Re: [JBoss-user] Classpath Order

2001-06-22 Thread Scott M Stark
iday, June 22, 2001 1:01 PM Subject: [JBoss-user] Classpath Order > > > I want a class in my ejb-jar file to override/replace a class in > lib/ext/some.jar. Every time I access my bean it's picking up the class in > some.jar *not* the one in my ejb-jar. How

[JBoss-user] Classpath Order

2001-06-22 Thread mlindsey
I want a class in my ejb-jar file to override/replace a class in lib/ext/some.jar. Every time I access my bean it's picking up the class in some.jar *not* the one in my ejb-jar. How do I control the load order? Mark Lindsey ___ JBoss-user mailing l

[JBoss-user] classpath problems

2001-06-01 Thread Eric Lindauer
Hi,   I am attempting to use JBoss SessionBeans to wrap JDO objects and am having two problems with JBoss.   1. Undeploying a SessionBean does not seem to work.  When I redeploy a bean with the same name, the Home interface provided to the client by the server seems to be originally deployed

[JBoss-user] classpath and jms problems in jboss/tomcat(very urgent)

2001-05-31 Thread Venkat Ammisetty
hi I am getting the following error while using jms. javax.naming.CommunicationException [Root exception is java.rmi.UnmarshalException: error unmarshalling return; nested exception is: java.lang.ClassNotFoundException: org.jbossmq.referenceable.ObjectRefAddr (no security manager: RMI class

[JBoss-user] classpath problem, help...

2001-05-30 Thread Prabhakar Ram
Hi,   I'm trying to test a Message driven bean. I'm new to Jboss.   The MDB portion of Jboss is working... I get a 'ClassNotFoundException' as Jboss cannot find my application specific interfaces.   I tried adding %CLASSPATH%  to %JBOSS_CLASSPATH% in run.bat. But by doing this, the mdb itself

[JBoss-user] Classpath Extension

2001-05-08 Thread Norton Lam
Hi, I'm curious about the Classpath extension in JBoss. I am using JBoss-Tomcat on Linux. I uncommented the lines: The jboss server log reports that the jars in $TOMCAT_HOME/lib were added to the classpath: [Info] Java version: 1.3.0_02,Sun Microsystems Inc. [Info] Java VM: Java HotS

Re: [JBoss-user] Classpath error in Zip Download

2001-03-28 Thread Scott M Stark
The run.jar archive is not an executable jar any longer because this makes it impossible to swap out which xml parser is being used via JAXP. - Original Message - From: "Tim Sawlor" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 28, 2001 8:18 A

Re: [JBoss-user] Classpath error in Zip Download

2001-03-28 Thread Dan Christopherson
JBoss is really meant to be launched via the run.bat or run.sh scripts (For better or worse...) On Wed, 28 Mar 2001, Tim Sawlor wrote: > Hey, > > I just wanted to let you know I downloaded the jboss-2.1.zip file today, > and tried to start it up, and I discovered that the ../lib/crimson.jar > f

[JBoss-user] Classpath error in Zip Download

2001-03-28 Thread Tim Sawlor
Hey, I just wanted to let you know I downloaded the jboss-2.1.zip file today, and tried to start it up, and I discovered that the ../lib/crimson.jar file needed to be added to the manifest in the bin/run.jar file. I was getting a ClassNotFoundException: org.apache.crimson.jaxp.DocumentBuilderFa

RE: [JBoss-user] CLASSPATH with JBOSS

2001-03-26 Thread Kimpton,C (Chris)
Hi, > -Original Message- > From: Kirill Averianov [mailto:[EMAIL PROTECTED]] > Sent: Friday, 23 March 2001 20:42 > > Do I have to put my EJB.jar files into lib/ext folder if > I intent to use them from another EJB's ? > I don't think that is recommended. I'd suggest either a)

[JBoss-user] CLASSPATH with JBOSS

2001-03-23 Thread Kirill Averianov
Do I have to put my EJB.jar files into lib/ext folder if I intent to use them from another EJB's ? Thanks a lot , Kirill. ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-u