cvs commit: jakarta-struts/src/share/org/apache/struts/taglib/nested/bean/doc-files nested-bean.jpg

2002-03-29 Thread rleland

rleland 02/03/29 18:17:24

  Added:   src/share/org/apache/struts/taglib/nested/bean package.html
   src/share/org/apache/struts/taglib/nested/bean/doc-files
nested-bean.jpg
  Log:
  Add UML Diagrams to nested bean.
  
  Revision  ChangesPath
  1.1  
jakarta-struts/src/share/org/apache/struts/taglib/nested/bean/package.html
  
  Index: package.html
  ===
  
  
  
Package Documentation for org.apache.struts.taglib.nested.bean 
Package
  

   The nested bean tags extend the org.apache.struts.taglib.bean
   tags to allow them to relate to each other in a nested nature. The fundamental
logic of the org.apache.struts.taglib.bean tags don't change, 
  except in that all references to  beans and  bean properties will be managed 
  in a nested context. 
   
   
   
   
   
   
   
   
   
  
  
  
  
  
  1.1  
jakarta-struts/src/share/org/apache/struts/taglib/nested/bean/doc-files/nested-bean.jpg
  
<>
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/src/share/org/apache/struts/taglib/nested/bean/doc-files - New directory

2002-03-29 Thread rleland

rleland 02/03/29 18:16:53

  jakarta-struts/src/share/org/apache/struts/taglib/nested/bean/doc-files - New 
directory

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/src/share/org/apache/struts/taglib/nested/logic/doc-files nested-logic.jpg

2002-03-29 Thread rleland

rleland 02/03/29 18:15:52

  Added:   src/share/org/apache/struts/taglib/nested/html package.html
   src/share/org/apache/struts/taglib/nested/logic package.html
   src/share/org/apache/struts/taglib/nested/logic/doc-files
nested-logic.jpg
  Log:
  Add UML Diagrams to nested.
  These are huge, need to trim if possible,
  or make them a seperate download if
  that turnes out to be a problem.
  
  Revision  ChangesPath
  1.1  
jakarta-struts/src/share/org/apache/struts/taglib/nested/html/package.html
  
  Index: package.html
  ===
  
  
  
Package Documentation for org.apache.struts.taglib.nested.html 
Package
 
  

   The nested html tags extend the org.apache.struts.taglib.html
   tags to allow   them to relate to each other in a nested nature. The fundamental
  logic of   the html tags don't change, except in that all references to beans
  and  bean properties will be managed in a nested context. 
  
  
  
  
  
  
  
  
  
  
  
  1.1  
jakarta-struts/src/share/org/apache/struts/taglib/nested/logic/package.html
  
  Index: package.html
  ===
  
  
  
Package Documentation for org.apache.struts.taglib.nested.logic
  Package
 
  

 The nested html tags extend the org.apache.struts.taglib.logic
 tags to allow   them to relate to each other in a nested nature. The fundamental
   logic of   the logic tags don't change, except in that all references to 
  beans and  bean properties will be managed in a nested context. 
  
  
  
  
  
  
  
  
  
  
  
  
  1.1  
jakarta-struts/src/share/org/apache/struts/taglib/nested/logic/doc-files/nested-logic.jpg
  
<>
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/src/share/org/apache/struts/taglib/nested/logic/doc-files - New directory

2002-03-29 Thread rleland

rleland 02/03/29 18:09:58

  jakarta-struts/src/share/org/apache/struts/taglib/nested/logic/doc-files - New 
directory

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




NestedNotEqualsTag doesn't implement NestedPropertySupport

2002-03-29 Thread Rob Leland

In doing the UML for the nested Logic tags I noticed
that the NestedNotLogicEqual doesn't implement
NestedPropertySupport

public class NestedEqualTag extends EqualTag implements 
NestedPropertySupport, NestedNameSupport {

public class NestedNotEqualTag extends NotEqualTag implements 
NestedNameSupport {


Is this an oversite, and if not why ?
-- 
Robert Leland ([EMAIL PROTECTED])
804 N. Kenmore Street
Arlington, VA 22201-2225
Voice: 703-525-3580


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: Problems with 1.1b1

2002-03-29 Thread Ronel Sumibcay


The problem may be that the servlet engine may not be calling 

Thread.setContextClassLoader(ClassLoader) when initializing a servlet from
preload.

This seems to be the case for JRun3.1. It may be the same for Tomcat 3.3a.
I've made the fix to my ActionServlet, but I think it really needs to be
done in LogFactory.findClassLoader(). The fix for ActionServlet involves
moving the LogFactory.getLog() into the init() method of ActionServlet

public void init() 
{

Thread.currentThread().setContextClassLoader(this.getClass().getClassLoader(
));
  log = LogFactory.getLog(this.getClass());

initInternal();
initOther();
initServlet();

...
}

The LogFactory.findClassLoader() checks for null to the call to 
Thread.currentThread().getContextClassLoader(), but according to the docs it
either the primordial classloader or the classloader set when the thread was
created. It seems like it was never set, so the primordial classloader is
being returned, thus the ClassNotFoundExceptions.

Hope this helps

-ronel


-Original Message-
From: Martin Cooper [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 22, 2002 10:15 PM
To: Struts Developers List
Subject: Re: Problems with 1.1b1


Unfortunately, you're not the only one seeing these problems. I really
thought I'd tested the struts-example app with four different containers
(Tomcat 3.3a, Tomcat 4.0.3, Resin 1.2.10, Resin 2.0.5) before I released the
beta, but it seems I must not have tested under Tomcat 3.3a. ;-( The other
three work just fine.

Here's what I know so far:

1) The problem is related to class loaders, and possibly to the
LogFactory.findClassLoader() method. The fact that LogFactory.getLog() is
called at (ActionServlet) class initialisation time may also be significant.

2) It is related to the  element. If the web app is not
loaded on startup, this error does not occur. (Others do, of course, but we
get past this problem.)

3) The problem can be worked around by copying commons-logging.jar to:

%TOMCAT_HOME%\lib\common

Unfortunately, I'm by no means a class loader expert, so I'm not sure where
to go from here. Hopefully someone who has more class loader knowledge than
I do can chip in now...

--
Martin Cooper


- Original Message -
From: "Cedric Dumoulin" <[EMAIL PROTECTED]>
To: "Struts Developers List" <[EMAIL PROTECTED]>
Sent: Friday, March 22, 2002 9:50 AM
Subject: Re: Problems with 1.1b1


>
>   After playing with different configurations, here are my conclusions :
>
>* 1.1b1 struts-example work fine with tomcat4.0.3 and jdk1.4
>* 1.1b1 struts-example doesn't work with tomcat3.3a and jdk1.4 (can't
find
>  LogFactory.java)
>* 1.1b1 struts-example doesn't work with tomcat3.3a and jdk1.3 (can't
find
>  LogFactory.java)
>
>   Am I the only one having these problems ? Does someone else have tried
and got 1.1b1
> running with tomcat3.3.
>   Of course, the commons logging package is in WEB-INF/lib/..
>
>  Cedric
>
> Cedric Dumoulin wrote:
>
> >   I have downloaded and try the 1.1b1 binaries, and can't get it running
> > !
> >   I use tomcat 3.2.3 and jdk1.3.
> >
> >   Does someone have successfully tested the binaries distribution ?
> >
> >   When trying the struts-examples, I've got :
> >
> > java.lang.ExceptionInInitializerError:
> > org.apache.commons.logging.LogConfigurationException:
> > java.lang.ClassNotFoundException:
> > org.apache.commons.logging.impl.LogFactoryImpl
> > at
> > org.apache.commons.logging.LogFactory.newFactory(LogFactory.java:497)
> > at
> > org.apache.commons.logging.LogFactory.getFactory(LogFactory.java:350)
> > at
> > org.apache.commons.logging.LogFactory.getLog(LogFactory.java:381)
> > at
> >
org.apache.struts.util.MessageResourcesFactory.(MessageResourcesFactory.java
:135)
> >
> > at
> >
org.apache.struts.util.MessageResources.getMessageResources(MessageResources
.java:557)
> >
> > at org.apache.struts.taglib.html.HtmlTag.(HtmlTag.java:94)
> >
> >   Cedric
> >
> > --
> > To unsubscribe, e-mail:

> > For additional commands, e-mail:

>
>
> --
> To unsubscribe, e-mail:

> For additional commands, e-mail:

>


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/src/share/org/apache/struts/taglib/template/doc-files templateUML.jpg

2002-03-29 Thread rleland

rleland 02/03/29 15:30:49

  Modified:src/share/org/apache/struts/config package.html
   src/share/org/apache/struts/taglib/nested package.html
   src/share/org/apache/struts/taglib/template package.html
  Added:   src/share/org/apache/struts/config/doc-files configUML.jpg
   src/share/org/apache/struts/doc-files Stamp.gif
jakarta-feather-small.gif
   src/share/org/apache/struts/taglib/nested/html/doc-files
nested-html.jpg
   src/share/org/apache/struts/taglib/template/doc-files
templateUML.jpg
  Log:
  Update more UML for JavaDoc
  
  Revision  ChangesPath
  1.2   +10 -5 jakarta-struts/src/share/org/apache/struts/config/package.html
  
  Index: package.html
  ===
  RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/config/package.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- package.html  15 Jan 2002 19:14:26 -  1.1
  +++ package.html  29 Mar 2002 23:30:48 -  1.2
  @@ -1,10 +1,15 @@
  +
   
   
  -Package Documentation for org.apache.struts.config Package
  +  Package Documentation for org.apache.struts.config Package
   
  -
  -The "config" package contains configuration objects that correspond to elements
  -that may be specified in the struts-config.xml application
  -configuration file.
  + 
  + The "config" package contains configuration objects that correspond to elements 
  +that may be specified in the struts-config.xml application 
configuration
  +file.
  +
  +
  +
  + 
   
   
  
  
  
  1.1  
jakarta-struts/src/share/org/apache/struts/config/doc-files/configUML.jpg
  
<>
  
  
  1.1  jakarta-struts/src/share/org/apache/struts/doc-files/Stamp.gif
  
<>
  
  
  1.1  
jakarta-struts/src/share/org/apache/struts/doc-files/jakarta-feather-small.gif
  
<>
  
  
  1.5   +121 -119  
jakarta-struts/src/share/org/apache/struts/taglib/nested/package.html
  
  Index: package.html
  ===
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/nested/package.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- package.html  24 Mar 2002 07:14:45 -  1.4
  +++ package.html  29 Mar 2002 23:30:48 -  1.5
  @@ -1,63 +1,64 @@
   
   
   
  -  Package Documentation for org.apache.struts.taglib.bean Package
  +  Package Documentation for org.apache.struts.taglib.nested Package
  
   
 
  -   Nested tags & supporting classes extend the base struts tags to allow
  - them to relate to each other in a nested nature. The fundamental logic of
  - the original tags don't change, except in that all references to beans and
  - bean properties will be managed in a nested context. 
  + Nested tags & supporting classes extend the base struts tags to
  +allow   them to relate to each other in a nested nature. The fundamental
  +logic of   the original tags don't change, except in that all references
  +to beans and   bean properties will be managed in a nested context. 
   
   
[ Introduction
  -   ] [ Foundation Concepts - model
  -   ] [ Foundation Concepts - tags
  -   ] [ Nested Tag List
  -   ] [ The "property" Property
  -   ] [ Implementation Details
  -   ] 
  + ] [ Foundation Concepts - model
  + ] [ Foundation Concepts - tags
  + ] [ Nested Tag List
  + ] [ The "property" Property
  + ] [ Implementation Details
  + ] 
   
   Introduction
   The nesting extension provides the ability to define a nested object model
  - and   efficiently represent and manage that model through JSP's custom tags.
  +  and   efficiently represent and manage that model through JSP's custom
  +tags.
   It's written in a layer that extends the current Struts tags, building
  - on   their logic and functionality. The layer enables the tags to be aware
  - of the   tags which surround them so they can correctly provide the nesting
  - property   reference to the Struts system. Struts already supported properties
  - which use   "dot notation" in accessing nested objects and properties.
  +  on   their logic and functionality. The layer enables the tags to be aware
  +  of the   tags which surround them so they can correctly provide the nesting
  +  property   reference to the Struts system. Struts already supported properties
  +  which use   "dot notation" in accessing nested objects and properties.
   e.g. myProperty.childProperty.finalProperty
   Because of this the controller servlet excellently manages this nested 
  -   model. These tags are about bringing such ease of management to the JSP
  - view   of the architecture.
  +model. These tags are about bringing such ease of management to the JSP

cvs commit: jakarta-struts/src/share/org/apache/struts/doc-files - New directory

2002-03-29 Thread rleland

rleland 02/03/29 15:28:15

  jakarta-struts/src/share/org/apache/struts/doc-files - New directory

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/src/share/org/apache/struts/taglib/nested/html/doc-files - New directory

2002-03-29 Thread rleland

rleland 02/03/29 15:17:05

  jakarta-struts/src/share/org/apache/struts/taglib/nested/html/doc-files - New 
directory

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/src/share/org/apache/struts/taglib/nested/html NestedCheckboxTag.java NestedErrorsTag.java NestedFormTag.java NestedHiddenTag.java NestedImageTag.java NestedLinkTag.java NestedMessagesTag.java NestedMultiboxTag.java NestedOptionsCollectionTag.java NestedOptionsTag.java NestedPasswordTag.java NestedRadioTag.java NestedSelectTag.java NestedSubmitTag.java NestedTextTag.java NestedTextareaTag.java

2002-03-29 Thread rleland

rleland 02/03/29 13:49:09

  Modified:src/share/org/apache/struts/taglib/nested/html
NestedCheckboxTag.java NestedErrorsTag.java
NestedFormTag.java NestedHiddenTag.java
NestedImageTag.java NestedLinkTag.java
NestedMessagesTag.java NestedMultiboxTag.java
NestedOptionsCollectionTag.java
NestedOptionsTag.java NestedPasswordTag.java
NestedRadioTag.java NestedSelectTag.java
NestedSubmitTag.java NestedTextTag.java
NestedTextareaTag.java
  Log:
  Explicitly include classes used by tag so UML Tool
  can resolve names. Yes it is stupid, but free Tool.
  SilverRun JD 1.1
  
  Revision  ChangesPath
  1.3   +14 -12
jakarta-struts/src/share/org/apache/struts/taglib/nested/html/NestedCheckboxTag.java
  
  Index: NestedCheckboxTag.java
  ===
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/nested/html/NestedCheckboxTag.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- NestedCheckboxTag.java22 Jan 2002 03:30:50 -  1.2
  +++ NestedCheckboxTag.java29 Mar 2002 21:49:09 -  1.3
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/nested/html/NestedCheckboxTag.java,v
 1.2 2002/01/22 03:30:50 arron Exp $
  - * $Revision: 1.2 $
  - * $Date: 2002/01/22 03:30:50 $
  + * $Header: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/nested/html/NestedCheckboxTag.java,v
 1.3 2002/03/29 21:49:09 rleland Exp $
  + * $Revision: 1.3 $
  + * $Date: 2002/03/29 21:49:09 $
* 
*
* The Apache Software License, Version 1.1
  @@ -59,7 +59,9 @@
*/
   package org.apache.struts.taglib.nested.html;
   
  -import org.apache.struts.taglib.nested.*;
  +import org.apache.struts.taglib.nested.NestedNameSupport;
  +import org.apache.struts.taglib.nested.NestedPropertyHelper;
  +import org.apache.struts.taglib.nested.NestedReference;
   import javax.servlet.jsp.*;
   import javax.servlet.jsp.tagext.*;
   import org.apache.struts.taglib.html.CheckboxTag;
  @@ -68,10 +70,10 @@
* NestedCheckboxTag.
* @author Arron Bates
* @since Struts 1.1
  - * @version $Revision: 1.2 $ $Date: 2002/01/22 03:30:50 $
  + * @version $Revision: 1.3 $ $Date: 2002/03/29 21:49:09 $
*/
  -public class NestedCheckboxTag extends CheckboxTag implements NestedNameSupport {
  -  
  +public class NestedCheckboxTag extends CheckboxTag implements 
org.apache.struts.taglib.nested.NestedNameSupport {
  +
 /**
  * Overriding method of the heart of the matter. Gets the relative property
  * and leaves the rest up to the original tag implementation. Sweet.
  @@ -79,20 +81,20 @@
  * This is in the hands of the super class.
  */
 public int doStartTag() throws JspException {
  -
  +
   /* singleton tag implementations will need the original property to be
  set before running */
   super.setProperty(originalProperty);
  -
  +
   /* let the NestedHelper set the properties it can */
   isNesting = true;
   NestedPropertyHelper.setNestedProperties(this);
   isNesting = false;
  -
  +
   /* do the tag */
   return super.doStartTag();
 }
  -  
  +
 /** this is overridden so that properties being set by the JSP page aren't
  * written over by those needed by the extension. If the tag instance is
  * re-used by the JSP, the tag can set the property back to that set by the
  @@ -108,7 +110,7 @@
 originalProperty = newProperty;
   }
 }
  -  
  +
 /* hold original property */
 private String originalProperty = null;
 private boolean isNesting = false;
  
  
  
  1.2   +9 -7  
jakarta-struts/src/share/org/apache/struts/taglib/nested/html/NestedErrorsTag.java
  
  Index: NestedErrorsTag.java
  ===
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/nested/html/NestedErrorsTag.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- NestedErrorsTag.java  19 Mar 2002 06:45:11 -  1.1
  +++ NestedErrorsTag.java  29 Mar 2002 21:49:09 -  1.2
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/nested/html/NestedErrorsTag.java,v
 1.1 2002/03/19 06:45:11 dwinterfeldt Exp $
  - * $Revision: 1.1 $
  - * $Date: 2002/03/19 06:45:11 $
  + * $Header: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/nested/html/NestedErrorsTag.java,v
 1.2 2002/03/29 21:49:09 rleland Exp $
  + * $Revision: 1.2 $
  + * $Date: 2002/03/29 21:49:09 $
* 

cvs commit: jakarta-struts/src/share/org/apache/struts/taglib/template/doc-files - New directory

2002-03-29 Thread rleland

rleland 02/03/29 12:50:09

  jakarta-struts/src/share/org/apache/struts/taglib/template/doc-files - New directory

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/src/share/org/apache/struts/config/doc-files - New directory

2002-03-29 Thread rleland

rleland 02/03/29 12:31:05

  jakarta-struts/src/share/org/apache/struts/config/doc-files - New directory

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/src/share/org/apache/struts/action ActionServlet.java

2002-03-29 Thread rleland

rleland 02/03/29 10:40:43

  Modified:src/share/org/apache/struts/action ActionServlet.java
  Log:
  Remove double ;; to keep UML Modeler from complaining.
  
  Revision  ChangesPath
  1.101 +6 -6  
jakarta-struts/src/share/org/apache/struts/action/ActionServlet.java
  
  Index: ActionServlet.java
  ===
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/action/ActionServlet.java,v
  retrieving revision 1.100
  retrieving revision 1.101
  diff -u -r1.100 -r1.101
  --- ActionServlet.java23 Mar 2002 01:20:20 -  1.100
  +++ ActionServlet.java29 Mar 2002 18:40:43 -  1.101
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/action/ActionServlet.java,v 1.100 
2002/03/23 01:20:20 craigmcc Exp $
  - * $Revision: 1.100 $
  - * $Date: 2002/03/23 01:20:20 $
  + * $Header: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/action/ActionServlet.java,v 1.101 
2002/03/29 18:40:43 rleland Exp $
  + * $Revision: 1.101 $
  + * $Date: 2002/03/29 18:40:43 $
*
* 
*
  @@ -270,7 +270,7 @@
*
* @author Craig R. McClanahan
* @author Ted Husted
  - * @version $Revision: 1.100 $ $Date: 2002/03/23 01:20:20 $
  + * @version $Revision: 1.101 $ $Date: 2002/03/29 18:40:43 $
*/
   
   public class ActionServlet
  @@ -331,7 +331,7 @@
*/
   protected Log log = LogFactory.getLog(this.getClass());
   
  -
  +
   /**
* The RequestProcessor instance we will use to process
* all incoming requests.
  @@ -923,7 +923,7 @@
   try {
   plugIns[i] = (PlugIn)
   RequestUtils.applicationInstance
  -(plugInConfigs[i].getClassName());;
  +(plugInConfigs[i].getClassName());
   BeanUtils.populate(plugIns[i],
  plugInConfigs[i].getProperties());
   plugIns[i].init(this, config);
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: (Ted) Struts UML Action Diagrams

2002-03-29 Thread Ted Husted

http://rollerjm.free.fr/pro/Struts.html

Jean-Michel has been kind enough to donate it to the ASF for us to use. 

Rob Leland wrote:
> 
> Ted, you sent me the URL of some nice
>  interaction Diagrams. These might have a place
>  in the JavaDoc or Users Guide, could you
>  resent that URL ?
> 
> -Rob
> 
> --
> Robert Leland ([EMAIL PROTECTED])
> 804 N. Kenmore Street
> Arlington, VA 22201-2225
> Voice: 703-525-3580
> 
> --
> To unsubscribe, e-mail:   
> For additional commands, e-mail: 

-- Ted Husted, Husted dot Com, Fairport NY US
-- Developing Java Web Applications with Struts
-- Tel: +1 585 737-3463
-- Web: http://husted.com/about/services

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




(Ted) Struts UML Action Diagrams

2002-03-29 Thread Rob Leland

Ted, you sent me the URL of some nice
 interaction Diagrams. These might have a place
 in the JavaDoc or Users Guide, could you
 resent that URL ?

-Rob

-- 
Robert Leland ([EMAIL PROTECTED])
804 N. Kenmore Street
Arlington, VA 22201-2225
Voice: 703-525-3580


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




DO NOT REPLY [Bug 7606] New: - Oracle JDeveloper RC2 problems with Beta1

2002-03-29 Thread bugzilla

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7606

Oracle JDeveloper RC2 problems with Beta1

   Summary: Oracle JDeveloper RC2 problems with Beta1
   Product: Struts
   Version: 1.1 Beta 1
  Platform: PC
OS/Version: Windows NT/2K
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Custom Tags
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


I'm getting errors when using the latest builds or the Beta 1.1-b1. When
I turn back to a version from January 19, all errors disappear and I can
work. Samples of the errors are as follows (from many JSP pages):

Error: java.lang.ExceptionInInitializerError:
java.lang.NullPointerException
Error: java.lang.ExceptionInInitializerError:
org.apache.struts.taglib.logic.EqualTag
Error: java.lang.NoClassDefFoundError:
org/apache/struts/taglib/html/FormTag
Error: java.lang.ExceptionInInitializerError:
java.lang.NullPointerException
Error: java.lang.ExceptionInInitializerError:
org.apache.struts.taglib.html.HiddenTag
Error: java.lang.NoClassDefFoundError:
org/apache/struts/taglib/html/FormTag
Error: java.lang.ExceptionInInitializerError:
org.apache.struts.taglib.html.BaseFieldTag
Error: java.lang.NoClassDefFoundError:
org/apache/struts/taglib/html/HiddenTag
Error: java.lang.NoClassDefFoundError:
org/apache/struts/taglib/html/FormTag

--
To unsubscribe, e-mail:   
For additional commands, e-mail: