[OS-webwork] WebWorks under jboss 3.04

2003-01-07 Thread Udstrand, Gary
Title: Message



 
I am trying to deploy the webwork.war file 
that is part of the WebWork 1.3rc1 package under jboss 3.04.  I keep 
getting the following deployment error :
 
14:51:24,710 ERROR [URLDeploymentScanner] 
Failed to deploy: org.jboss.deployment.scanner.URLDeploymentScanner$DeployedURL@b34cf404{ 
url="" deployedLastModified=0 
}org.jboss.deployment.DeploymentException: Could not create deployment: 
file:/C:/jboss-3.0.4/server/default/apps/webwork.war;- nested throwable: 
(java.lang.NoClassDefFoundError: 
org/apache/commons/logging/LogFactory)    
at 
org.jboss.deployment.MainDeployer.start(MainDeployer.java:827)    
at 
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:621)    
at 
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:585)    
at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown 
Source)    at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)    
at 
java.lang.reflect.Method.invoke(Method.java:324)    
at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)    
at 
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)    
at 
org.jboss.util.jmx.MBeanProxy.invoke(MBeanProxy.java:174)    
at $Proxy4.deploy(Unknown Source)    
at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:435)    
at 
org.jboss.deployment.scanner.URLDeploymentScanner.scanDirectory(URLDeploymentScanner.java:656)    
at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:507)    
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:212)    
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:225)    
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:202)Caused 
by: java.lang.NoClassDefFoundError: 
org/apache/commons/logging/LogFactory
 
I do have log4j installed and working and 
have tried both jdk 1.3.1 and 1.4, Any ideas?
 
    
-Gary
 


Re: [OS-webwork] WebWorks under jboss 3.04

2003-01-07 Thread Rickard Öberg
Udstrand, Gary wrote:

 
I am trying to deploy the webwork.war file that is part of the WebWork 
1.3rc1 package under jboss 3.04.  I keep getting the following 
deployment error :
 
14:51:24,710 ERROR [URLDeploymentScanner] Failed to deploy: 
org.jboss.deployment.scanner.URLDeploymentScanner$DeployedURL@b34 

cf404{ url=file:/C:/jboss-3.0.4/server/default/apps/webwork.war, 
deployedLastModified=0 }
org.jboss.deployment.DeploymentException: Could not create deployment: 
file:/C:/jboss-3.0.4/server/default/apps/webwork.war;
- nested throwable: (java.lang.NoClassDefFoundError: 
org/apache/commons/logging/LogFactory)

Add Commons Logging from Jakarta.

/Rickard

--
Rickard Öberg
[EMAIL PROTECTED]
Senselogic

Got blog? I do. http://dreambean.com



---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
___
Opensymphony-webwork mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/opensymphony-webwork



Re: [OS-webwork] XWork Status

2003-01-07 Thread Peter Kelley
Better late than never:

We need the JasperReports stuff. We are using it in production.

On Fri, 2002-12-27 at 23:23, Erik Beeson wrote:
> The view releated stuff consists of all the features available in JSP
> available in velocity, cleaned up taglibs, and Tea support. Are people
> expecting anything else?
> 
> You can expect to start seeing this stuff next week sometime after I, too,
> get back to my fast internet :)
> 
> Congrats on the new stuff, Pat.
> 
> --Erik
> 
> On Thu, 26 Dec 2002, Patrick Lightbody wrote:
> 
> > Just letting you guys know that I was a day behind my prediction on getting
> > a working XWork in to CVS, but only because I don't have access to a fast
> > internet connection to check everytihng in :)
> >
> > Also, there is zero view-related stuff, Erik is working on that. But this
> > should be enough to get started.
> >
> > -Pat
> >
> >
> >
> >
> > ---
> > This sf.net email is sponsored by:ThinkGeek
> > Welcome to geek heaven.
> > http://thinkgeek.com/sf
> > ___
> > Opensymphony-webwork mailing list
> > [EMAIL PROTECTED]
> > https://lists.sourceforge.net/lists/listinfo/opensymphony-webwork
> >
> 
> 
> 
> ---
> This sf.net email is sponsored by:ThinkGeek
> Welcome to geek heaven.
> http://thinkgeek.com/sf
> ___
> Opensymphony-webwork mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/opensymphony-webwork
-- 
Peter Kelley <[EMAIL PROTECTED]>
Moveit Pty Ltd



---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
___
Opensymphony-webwork mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/opensymphony-webwork



[OS-webwork] Weblogic: JSP->Java duplicated code causes JSP compilation failure

2003-01-07 Thread Vladimir Konstantinov



Sorry folks, this isn't a WW issue, but I need 
help.
I am trying to run Webwork examples (unpacked) 
on Weblogic. All JSP pages fail compilation, upon request, due to duplicated 
code section i.e (exprformtestfile.jsp -> 
_exprformtestfile.java):
 
...
 
 private static void 
_releaseTags(javax.servlet.jsp.tagext.Tag t) 
{    while (t != null) 
{    
javax.servlet.jsp.tagext.Tag tmp = 
t;    t = 
t.getParent();    
try { tmp.release(); } catch (Exception ignore) 
{}    }    
}
 
 private static void 
_releaseTags(javax.servlet.jsp.tagext.Tag t) 
{    while (t != null) 
{    
javax.servlet.jsp.tagext.Tag tmp = 
t;    t = 
t.getParent();    
try { tmp.release(); } catch (Exception ignore) 
{}    }    
}
 
...
 
Any ideas? 
TIA