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 
mailto: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 Webworkexamples (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