Upgrading Struts in JDeveloper 10.1.3.5

Hi everyone,
Is it even recommended or prudent to upgrade the struts libs in Jdeveloper? 10g ships with struts 1.1, and we're looking at upgrading to 1.3.10 (I've read struts 2 is too much of a jump)...
I've read the following article from Duncan Mills and followed the instructions, but my IDE still ignores my new struts libs.... actually, my existing struts project was no longer compiling.
http://www.oracle.com/technology/products/jdev/tips/mills/struts1_2.html
Any thoughts or ideas on how best to upgrade Struts for the IDE? Or is it better to simply add the required jar files to each project library explicitly?
Thanks for the info

Bug fixes is the main reason, and other enhancements.
One thing, although trivial to some, was a problem for us... the html action form tag in struts 1.1 was spitting out invalid xhtml code, (invalid attribute), even when setting the <html:xhtml/> tag... big enough deal when trying to validate your pages to xhtml strict and they fail because of an invalid attribute being output that you have no control over.
That is a minor thing, but there were other little enhancements that were nice to have.
As for Struts 2.0... I've also read that it isn't recommended, since it's a totally different product from struts 1.x... and would cause problems in Jdeveloper.

Similar Messages

  • Using Struts with JDeveloper, BC4J and OC4J 9.0.2

    Is it feasible to use Struts with JDeveloper 9.0.2, BC4J 9.0.2 and OC4J 9.0.2? We have an application that uses the BC4J JBO tags in version 9.0.2. We wish to use Struts and we want to retain the use of the JBO tags. Is there a way to do this without upgrading to 9.0.3?

    Here are two related questions:
    Can we upgrade to oracle9iAS 9.0.3 yet still use JDeveloper 9.0.2 and BC4J/JBO 9.0.2?
    Can we upgrade to JDeveloper 9.0.3 and BC4J/JBO 9.0.3 yet still deploy to oracle9iAS 9.0.2?

  • Struts and JDeveloper

    Has anybody used Struts in JDeveloper? If yes, could you give the step-by-step instruction on how to do it?
    thanks,
    yan

    Hi Shay,
    Thanks a lot for ur reply...this thing is driving me nuts and i need to to say to my development team if its possible to run this particular struts project in jdeveloper.
    Why did i migrate to Jdev10.1.2 from Jdev10.1.3.The application needs to be deployed to a 10G applicatin server(9.0.4v),hence after seeing the AS support matrix by oracle we decided to move it to Jdev10.1.2
    ARe there any differences in the project build from war in 10.1.2 from that made in 10.1.3.Yes the structure of the project after we imported it from ear file is diffreent from that in 10.1.3.
    Under the classes folder in 10.1.2 i dont see any of the classes.when i try to add them in the project it prompts me that the classes are not in the classpath.Would u like to update.If i say Yes,i adds them in project under a miscellaneous package but not under classes.
    which version of J2SE.its 1.4
    Could the taglib version be a problem for Jdev10.1.2 with j2SE version being 1.4.
    In the tld files i see the JSp version to be 1.1 and tlibversion to be 1.2
    PLS...help me understand wats going on with compiling the jsps in this project.

  • Struts in JDeveloper - PrivilegedActionException

    We upgraded to JDeveloper 9.0.3.10.76 from 9.0.2.
    We were using Struts and Struts Validator in 9.0.2 also.
    In 9.0.3 when we try to build a jsp page or the full application we get the following exception.
    Error: java.security.PrivilegedActionException <<java.lang.ClassNotFoundException: org.apache.commons.validator.ValidatorResources>>
    Any idea why this happens and how to fix it?
    The same code compiles and runs without any problems in 9.0.2.

    Hi unkown,
    so what is the solution you found?
    Don't you like to share it to the other users?
    Timo

  • Learning JSP/Struts with JDeveloper

    Hi. We have an older version of Java on our Unix production web server (1.4.2_12-b03) and it'll be a year before we upgrade it and use JSF. In the meantime, I'm looking at learning Struts and JSP. Can you point me to a few tutorials specific to JDeveloper for JSP/Struts? Most of the tutorials now are for ADF/JSF -- which we can't use yet. Thanks.

    Just to clarify - JSF can run on OAS 10.1.2 (that supports J2EE 1.3 and uses JDK 1.4).
    See: http://download.oracle.com/docs/html/B25947_01/deployment_topics006.htm#CIHCGGDF
    So this shouldn't be a reason for you not to use JSF and JDeveloper 10.1.3.
    That said if you want to learn Struts try following the archive links on the various JDeveloper tutorials/demos pages to the demos from the 9.0.5/10.1.2 days.

  • Multiple configuration files in one application in struts using jDeveloper

    I am using Jdeveloper 9.0.3 using this i tried to create two struts-config.xml file with different names and configured them in the web.xml files( struts 1.1 feature)
    as
    <init-param>
                   <param-name>config</param-name>
                   <param-value>/WEB-INF/struts-config.xml, /WEB-INF/struts-config-reg.xml</param-value>
              </init-param>
    but i am getting parsing error for this. Please tell me how it can be done in Jdeveloper

    I have been trying to do something similar, but I keep receiving the following exception:
    java.lang.NoSuchFieldError: appConfig
    at oracle.jbo.html.struts11.BC4JRequestProcessor.processContent(BC4JRequestProcessor.java:148)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:233)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    My web.xml looks like:
    <servlet>
    <servlet-name>bc4jaction</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
    <param-name>mapping</param-name>
    <param-value>oracle.jbo.html.struts11.BC4JActionMapping</param-value>
    </init-param>
    <init-param>
    <param-name>BC4JDefinition</param-name>
    <param-value>Struts</param-value>
    </init-param>
    <!--<init-param>-->
    <!-- <param-name>config</param-name>-->
    <!-- <param-value>/WEB-INF/struts-config-documentservices.xml</param-value>-->
    <!--</init-param>-->
    <init-param>
    <param-name>config</param-name>
    <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <init-param>
    <param-name>config/documentservices</param-name>
    <param-value>/WEB-INF/struts-config-documentservices.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>

  • Struts + ActionErrors + JDeveloper 10.1.3.4

    Hi, i'm working with Stuts and JDeveloper 10.1.3.4. My actions (DataPages) classes extends PageController. I wanna show struts error messages like using the saveErrors() method, but this method was removed since 10.1.3 version. How can i do that?. (sorry for my english, i'm Argentinian).
    Thanks for your help.

    hi hguaymas
    You write "+I don't know another way to put my errors and confirmations messages on the page.+".
    Maybe you could post some short relevant pieces of code of how you do this in 10.1.2, this could help others to suggest an alternative in more recent JDeveloper versions, possibly using the API of this PageController :
    http://download.oracle.com/docs/cd/B25221_04/web.1013/b25779/oracle/adf/controller/v2/lifecycle/PageController.html
    regards
    Jan Vervecken

  • Struts in Jdeveloper 10.1.3.3

    hi
    I am working on Jdeveloper 10.1.3.3
    Previously i was run my struts app in JDeveloper 10.1.2, it was successful run.
    I am trying to run the same application using Jdeveloper 10.1.3.3,but it is not running.
    i am selecting the template as (JSP,Struts ADF BC)web application
    the structure is like below
    +model
    - viewcontroller
    -application sources
    - view
    L AdminAction.java
    L ApplicationResources.properties
    -webcontent
    -WEB-INF
    L struts-config.xml
    L web.xml
    -WEB-INF/lib
    struts.jar
    L admin.jsp
    L succ.jsp
    L fail.jsp
    In this app, i observed when it is run on Enbedded OC4J Server it displays the first page as admin.jsp the url is
    http://hostname/context /admin.jsp
    when i perform any action on this page it is not going to page what i map (i,e succ.jsp , showing page not found ) the url is
    http://hostname/admin.do here it is not taking the context
    Do i need to do any new setting other then Jdeveloper 10.1.2 ,why becoz it is ruuning in that.
    can anybody have the solution for JDeveloper10.1.3.3 (struts)
    thanks

    Hi unkown,
    so what is the solution you found?
    Don't you like to share it to the other users?
    Timo

  • Problem on struts using jdeveloper 10.1.2

    hi
    Iam completly new to jdeveloper
    Iam using jdev 10.1.2 for my simple struts application
    I have
    action class -- LoginAction
    form bean -- login (using DynaActionForm)
    login.jsp to enter username
    success.jsp for welcom msg
    failure.jsp --- in this i use one submit btn when i press this it will go to login.jsp for relogin
    <form action="/login.jsp">....
    the problem is
    In LoginAction
    String password=(String)((DynaActionForm)form).get("password");
    // String pwd =request.getParameter("username");
    if(password.equalsIgnoreCase("oracle"))
    return mapping.findForward("success");
    else
    return mapping.findForward("failure");
    iam import all the class for the respective reff variables.
    But it will indicate err underline(blue) under text which are in bold saying msgs as
    --method get(java.lang.string) not found in org.apache.struts.action.DynaActionform
    the samething for remaining two showing on ActionMapping
    plese tell me where is the problem
    running on Embedded OC4J SERVER
    error message is
    http://hostname:8988/hello_struts1-ViewController-context-root/login.do
    07/07/19 17:12:31 Oracle Application Server Containers for J2EE 10g (10.1.2.0.2) initialized
    Jul 19, 2007 5:12:32 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.util.LocalStrings', returnNull=true
    Jul 19, 2007 5:12:32 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.action.ActionResources', returnNull=true
    Jul 19, 2007 5:12:32 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='view.ApplicationResources', returnNull=true
    Jul 19, 2007 5:12:32 PM org.apache.struts.action.RequestProcessor processException
    WARNING: Unhandled Exception thrown: class java.lang.NullPointerException
    thanks

    Well if you are just starting with JDeveloper - why are you starting with an old version?
    You should start with 10.1.3 it has hundreds of new features over 10.1.2.
    I created a struts action in 10.1.3 copied your code into it and compiled without any problems.

  • Struts and jdeveloper 10.1.2

    Dear All,
    i am trying to run a struts project in jdeveloper 10.1.2.2.0(build 1929). I have created a workspace from an ear file.
    The project seems to bve set-up.When i compile the jpr i get JSp compilation errors for all the jsps in the project.
    The stack trace for each jsp look like below.
    Error(3,48): FIXED type Attribute value not equal to the default value 'http://java.sun.com/xml/ns/j2ee'.
    Error(4,58): Attribute 'xmlns:xsi' used but not declared.
    Error(5,115): Attribute 'xsi:schemaLocation' used but not declared.
    Error(6,18): Attribute 'version' used but not declared.
    Error(8,15): Invalid element 'description' in content of 'taglib', expected elements '[tlibversion]'.
    Error(8,15): Element 'description' used but not declared.
    Error(9,16): Invalid element 'display-name' in content of 'taglib', expected elements '[tlibversion]'.
    Error(9,16): Element 'display-name' used but not declared.
    Error(10,16): Invalid element 'tlib-version' in content of 'taglib', expected elements '[tlibversion]'.
    Error(10,16): Element 'tlib-version' used but not declared.
    Error(11,14): Invalid element 'short-name' in content of 'taglib', expected elements '[tlibversion]'.
    Error(11,14): Element 'short-name' used but not declared.
    Error(12,7): Invalid element 'uri' in content of 'taglib', expected elements '[tlibversion]'.
    Error(14,13): Invalid element 'validator' in content of 'taglib', expected elements '[tlibversion]'.
    Error(14,13): Element 'validator' used but not declared.
    Error(15,17): Element 'description' used but not declared.
    Error(18,21): Element 'validator-class' used but not declared.
    Error(23,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(24,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(24,17): Element 'description' used but not declared.
    Error(29,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(29,15): Element 'tag-class' used but not declared.
    Error(30,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(30,18): Element 'body-content' used but not declared.
    Error(31,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(32,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(32,21): Element 'description' used but not declared.
    Error(41,9): Element tag not complete, expected elements '[tagclass]'.
    Error(43,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(44,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(44,17): Element 'description' used but not declared.
    Error(50,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(50,15): Element 'tag-class' used but not declared.
    Error(51,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(51,18): Element 'body-content' used but not declared.
    Error(52,9): Element tag not complete, expected elements '[tagclass]'.
    Error(54,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(55,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(55,17): Element 'description' used but not declared.
    Error(61,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(61,15): Element 'tag-class' used but not declared.
    Error(62,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(62,18): Element 'body-content' used but not declared.
    Error(63,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(64,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(64,21): Element 'description' used but not declared.
    Error(71,7): Invalid element 'type' in content of 'attribute', expected closing tag.
    Error(71,7): Element 'type' used but not declared.
    Error(73,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(74,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(74,21): Element 'description' used but not declared.
    Error(83,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(84,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(84,21): Element 'description' used but not declared.
    Error(91,9): Element tag not complete, expected elements '[tagclass]'.
    Error(93,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(94,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(94,17): Element 'description' used but not declared.
    Error(99,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(99,15): Element 'tag-class' used but not declared.
    Error(100,15): Invalid element 'tei-class' in content of 'tag', expected elements '[tagclass]'.
    Error(100,15): Element 'tei-class' used but not declared.
    Error(101,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(101,18): Element 'body-content' used but not declared.
    Error(102,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(103,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(103,21): Element 'description' used but not declared.
    Error(110,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(111,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(111,21): Element 'description' used but not declared.
    Error(120,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(121,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(121,21): Element 'description' used but not declared.
    Error(128,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(129,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(129,21): Element 'description' used but not declared.
    Error(138,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(139,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(139,21): Element 'description' used but not declared.
    Error(148,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(149,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(149,21): Element 'description' used but not declared.
    Error(157,9): Element tag not complete, expected elements '[tagclass]'.
    Error(159,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(160,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(160,17): Element 'description' used but not declared.
    Error(166,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(166,15): Element 'tag-class' used but not declared.
    Error(167,15): Invalid element 'tei-class' in content of 'tag', expected elements '[tagclass]'.
    Error(167,15): Element 'tei-class' used but not declared.
    Error(168,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(168,18): Element 'body-content' used but not declared.
    Error(169,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(170,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(170,21): Element 'description' used but not declared.
    Error(176,7): Invalid element 'type' in content of 'attribute', expected closing tag.
    Error(176,7): Element 'type' used but not declared.
    Error(178,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(179,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(179,21): Element 'description' used but not declared.
    Error(2): Unable to load taghandler class: /tags/struts-bean
    Error(3,48): FIXED type Attribute value not equal to the default value 'http://java.sun.com/xml/ns/j2ee'.
    Error(4,58): Attribute 'xmlns:xsi' used but not declared.
    Error(5,115): Attribute 'xsi:schemaLocation' used but not declared.
    Error(6,18): Attribute 'version' used but not declared.
    Error(8,15): Invalid element 'description' in content of 'taglib', expected elements '[tlibversion]'.
    Error(8,15): Element 'description' used but not declared.
    Error(9,16): Invalid element 'display-name' in content of 'taglib', expected elements '[tlibversion]'.
    Error(9,16): Element 'display-name' used but not declared.
    Error(10,16): Invalid element 'tlib-version' in content of 'taglib', expected elements '[tlibversion]'.
    Error(10,16): Element 'tlib-version' used but not declared.
    Error(11,14): Invalid element 'short-name' in content of 'taglib', expected elements '[tlibversion]'.
    Error(11,14): Element 'short-name' used but not declared.
    Error(12,7): Invalid element 'uri' in content of 'taglib', expected elements '[tlibversion]'.
    Error(14,13): Invalid element 'validator' in content of 'taglib', expected elements '[tlibversion]'.
    Error(14,13): Element 'validator' used but not declared.
    Error(15,17): Element 'description' used but not declared.
    Error(18,21): Element 'validator-class' used but not declared.
    Error(23,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(24,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(24,17): Element 'description' used but not declared.
    Error(29,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(29,15): Element 'tag-class' used but not declared.
    Error(30,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(30,18): Element 'body-content' used but not declared.
    Error(31,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(32,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(32,21): Element 'description' used but not declared.
    Error(41,9): Element tag not complete, expected elements '[tagclass]'.
    Error(43,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(44,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(44,17): Element 'description' used but not declared.
    Error(50,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(50,15): Element 'tag-class' used but not declared.
    Error(51,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(51,18): Element 'body-content' used but not declared.
    Error(52,9): Element tag not complete, expected elements '[tagclass]'.
    Error(54,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(55,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(55,17): Element 'description' used but not declared.
    Error(61,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(61,15): Element 'tag-class' used but not declared.
    Error(62,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(62,18): Element 'body-content' used but not declared.
    Error(63,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(64,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(64,21): Element 'description' used but not declared.
    Error(71,7): Invalid element 'type' in content of 'attribute', expected closing tag.
    Error(71,7): Element 'type' used but not declared.
    Error(73,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(74,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(74,21): Element 'description' used but not declared.
    Error(83,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(84,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(84,21): Element 'description' used but not declared.
    Error(91,9): Element tag not complete, expected elements '[tagclass]'.
    Error(93,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(94,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(94,17): Element 'description' used but not declared.
    Error(99,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(99,15): Element 'tag-class' used but not declared.
    Error(100,15): Invalid element 'tei-class' in content of 'tag', expected elements '[tagclass]'.
    Error(100,15): Element 'tei-class' used but not declared.
    Error(101,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(101,18): Element 'body-content' used but not declared.
    Error(102,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(103,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(103,21): Element 'description' used but not declared.
    Error(110,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(111,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(111,21): Element 'description' used but not declared.
    Error(120,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(121,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(121,21): Element 'description' used but not declared.
    Error(128,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(129,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(129,21): Element 'description' used but not declared.
    Error(138,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(139,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(139,21): Element 'description' used but not declared.
    Error(148,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(149,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(149,21): Element 'description' used but not declared.
    Error(157,9): Element tag not complete, expected elements '[tagclass]'.
    Error(159,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(160,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(160,17): Element 'description' used but not declared.
    Error(166,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(166,15): Element 'tag-class' used but not declared.
    Error(167,15): Invalid element 'tei-class' in content of 'tag', expected elements '[tagclass]'.
    Error(167,15): Element 'tei-class' used but not declared.
    Error(168,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(168,18): Element 'body-content' used but not declared.
    Error(169,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(170,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(170,21): Element 'description' used but not declared.
    Error(176,7): Invalid element 'type' in content of 'attribute', expected closing tag.
    Error(176,7): Element 'type' used but not declared.
    Error(178,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(179,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(179,21): Element 'description' used but not declared.
    Error(3): Unable to load taghandler class: /tags/struts-html
    Error(3,48): FIXED type Attribute value not equal to the default value 'http://java.sun.com/xml/ns/j2ee'.
    Error(4,58): Attribute 'xmlns:xsi' used but not declared.
    Error(5,115): Attribute 'xsi:schemaLocation' used but not declared.
    Error(6,18): Attribute 'version' used but not declared.
    Error(8,15): Invalid element 'description' in content of 'taglib', expected elements '[tlibversion]'.
    Error(8,15): Element 'description' used but not declared.
    Error(9,16): Invalid element 'display-name' in content of 'taglib', expected elements '[tlibversion]'.
    Error(9,16): Element 'display-name' used but not declared.
    Error(10,16): Invalid element 'tlib-version' in content of 'taglib', expected elements '[tlibversion]'.
    Error(10,16): Element 'tlib-version' used but not declared.
    Error(11,14): Invalid element 'short-name' in content of 'taglib', expected elements '[tlibversion]'.
    Error(11,14): Element 'short-name' used but not declared.
    Error(12,7): Invalid element 'uri' in content of 'taglib', expected elements '[tlibversion]'.
    Error(14,13): Invalid element 'validator' in content of 'taglib', expected elements '[tlibversion]'.
    Error(14,13): Element 'validator' used but not declared.
    Error(15,17): Element 'description' used but not declared.
    Error(18,21): Element 'validator-class' used but not declared.
    Error(23,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(24,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(24,17): Element 'description' used but not declared.
    Error(29,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(29,15): Element 'tag-class' used but not declared.
    Error(30,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(30,18): Element 'body-content' used but not declared.
    Error(31,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(32,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(32,21): Element 'description' used but not declared.
    Error(41,9): Element tag not complete, expected elements '[tagclass]'.
    Error(43,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(44,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(44,17): Element 'description' used but not declared.
    Error(50,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(50,15): Element 'tag-class' used but not declared.
    Error(51,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(51,18): Element 'body-content' used but not declared.
    Error(52,9): Element tag not complete, expected elements '[tagclass]'.
    Error(54,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(55,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(55,17): Element 'description' used but not declared.
    Error(61,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(61,15): Element 'tag-class' used but not declared.
    Error(62,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(62,18): Element 'body-content' used but not declared.
    Error(63,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(64,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(64,21): Element 'description' used but not declared.
    Error(71,7): Invalid element 'type' in content of 'attribute', expected closing tag.
    Error(71,7): Element 'type' used but not declared.
    Error(73,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(74,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(74,21): Element 'description' used but not declared.
    Error(83,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(84,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(84,21): Element 'description' used but not declared.
    Error(91,9): Element tag not complete, expected elements '[tagclass]'.
    Error(93,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(94,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(94,17): Element 'description' used but not declared.
    Error(99,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(99,15): Element 'tag-class' used but not declared.
    Error(100,15): Invalid element 'tei-class' in content of 'tag', expected elements '[tagclass]'.
    Error(100,15): Element 'tei-class' used but not declared.
    Error(101,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(101,18): Element 'body-content' used but not declared.
    Error(102,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(103,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(103,21): Element 'description' used but not declared.
    Error(110,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(111,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(111,21): Element 'description' used but not declared.
    Error(120,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(121,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(121,21): Element 'description' used but not declared.
    Error(128,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(129,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(129,21): Element 'description' used but not declared.
    Error(138,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(139,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(139,21): Element 'description' used but not declared.
    Error(148,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(149,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(149,21): Element 'description' used but not declared.
    Error(157,9): Element tag not complete, expected elements '[tagclass]'.
    Error(159,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(160,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(160,17): Element 'description' used but not declared.
    Error(166,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(166,15): Element 'tag-class' used but not declared.
    Error(167,15): Invalid element 'tei-class' in content of 'tag', expected elements '[tagclass]'.
    Error(167,15): Element 'tei-class' used but not declared.
    Error(168,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(168,18): Element 'body-content' used but not declared.
    Error(169,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(170,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(170,21): Element 'description' used but not declared.
    Error(176,7): Invalid element 'type' in content of 'attribute', expected closing tag.
    Error(176,7): Element 'type' used but not declared.
    Error(178,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(179,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(179,21): Element 'description' used but not declared.
    Error(3): Unable to load taghandler class: /tags/ipec/ipd
    Error(3,48): FIXED type Attribute value not equal to the default value 'http://java.sun.com/xml/ns/j2ee'.
    Error(4,58): Attribute 'xmlns:xsi' used but not declared.
    Error(5,115): Attribute 'xsi:schemaLocation' used but not declared.
    Error(6,18): Attribute 'version' used but not declared.
    Error(8,15): Invalid element 'description' in content of 'taglib', expected elements '[tlibversion]'.
    Error(8,15): Element 'description' used but not declared.
    Error(9,16): Invalid element 'display-name' in content of 'taglib', expected elements '[tlibversion]'.
    Error(9,16): Element 'display-name' used but not declared.
    Error(10,16): Invalid element 'tlib-version' in content of 'taglib', expected elements '[tlibversion]'.
    Error(10,16): Element 'tlib-version' used but not declared.
    Error(11,14): Invalid element 'short-name' in content of 'taglib', expected elements '[tlibversion]'.
    Error(11,14): Element 'short-name' used but not declared.
    Error(12,7): Invalid element 'uri' in content of 'taglib', expected elements '[tlibversion]'.
    Error(14,13): Invalid element 'validator' in content of 'taglib', expected elements '[tlibversion]'.
    Error(14,13): Element 'validator' used but not declared.
    Error(15,17): Element 'description' used but not declared.
    Error(18,21): Element 'validator-class' used but not declared.
    Error(23,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(24,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(24,17): Element 'description' used but not declared.
    Error(29,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(29,15): Element 'tag-class' used but not declared.
    Error(30,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(30,18): Element 'body-content' used but not declared.
    Error(31,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(32,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(32,21): Element 'description' used but not declared.
    Error(41,9): Element tag not complete, expected elements '[tagclass]'.
    Error(43,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(44,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(44,17): Element 'description' used but not declared.
    Error(50,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(50,15): Element 'tag-class' used but not declared.
    Error(51,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(51,18): Element 'body-content' used but not declared.
    Error(52,9): Element tag not complete, expected elements '[tagclass]'.
    Error(54,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(55,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(55,17): Element 'description' used but not declared.
    Error(61,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(61,15): Element 'tag-class' used but not declared.
    Error(62,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(62,18): Element 'body-content' used but not declared.
    Error(63,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(64,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(64,21): Element 'description' used but not declared.
    Error(71,7): Invalid element 'type' in content of 'attribute', expected closing tag.
    Error(71,7): Element 'type' used but not declared.
    Error(73,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(74,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(74,21): Element 'description' used but not declared.
    Error(83,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(84,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(84,21): Element 'description' used but not declared.
    Error(91,9): Element tag not complete, expected elements '[tagclass]'.
    Error(93,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(94,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(94,17): Element 'description' used but not declared.
    Error(99,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(99,15): Element 'tag-class' used but not declared.
    Error(100,15): Invalid element 'tei-class' in content of 'tag', expected elements '[tagclass]'.
    Error(100,15): Element 'tei-class' used but not declared.
    Error(101,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(101,18): Element 'body-content' used but not declared.
    Error(102,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(103,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(103,21): Element 'description' used but not declared.
    Error(110,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(111,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(111,21): Element 'description' used but not declared.
    Error(120,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(121,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(121,21): Element 'description' used but not declared.
    Error(128,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(129,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(129,21): Element 'description' used but not declared.
    Error(138,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(139,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(139,21): Element 'description' used but not declared.
    Error(148,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(149,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(149,21): Element 'description' used but not declared.
    Error(157,9): Element tag not complete, expected elements '[tagclass]'.
    Error(159,7): Invalid element 'tag' in content of 'taglib', expected elements '[tlibversion]'.
    Error(160,17): Invalid element 'description' in content of 'tag', expected elements '[name]'.
    Error(160,17): Element 'description' used but not declared.
    Error(166,15): Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    Error(166,15): Element 'tag-class' used but not declared.
    Error(167,15): Invalid element 'tei-class' in content of 'tag', expected elements '[tagclass]'.
    Error(167,15): Element 'tei-class' used but not declared.
    Error(168,18): Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    Error(168,18): Element 'body-content' used but not declared.
    Error(169,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(170,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(170,21): Element 'description' used but not declared.
    Error(176,7): Invalid element 'type' in content of 'attribute', expected closing tag.
    Error(176,7): Element 'type' used but not declared.
    Error(178,15): Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    Error(179,21): Invalid element 'description' in content of 'attribute', expected elements '[name]'.
    Error(179,21): Element 'description' used but not declared.
    Error(4): Unable to load taghandler class: /tags/struts-logic
    the tlds are all under web-inf and the struts.jar is also there.
    I am been looking into it from oneday and have tried several thns to make it work.but i am unable to understand why it isnt running 10.1.2 when it was running perfectly in 10.1.3.

    Hi Shay,
    Thanks a lot for ur reply...this thing is driving me nuts and i need to to say to my development team if its possible to run this particular struts project in jdeveloper.
    Why did i migrate to Jdev10.1.2 from Jdev10.1.3.The application needs to be deployed to a 10G applicatin server(9.0.4v),hence after seeing the AS support matrix by oracle we decided to move it to Jdev10.1.2
    ARe there any differences in the project build from war in 10.1.2 from that made in 10.1.3.Yes the structure of the project after we imported it from ear file is diffreent from that in 10.1.3.
    Under the classes folder in 10.1.2 i dont see any of the classes.when i try to add them in the project it prompts me that the classes are not in the classpath.Would u like to update.If i say Yes,i adds them in project under a miscellaneous package but not under classes.
    which version of J2SE.its 1.4
    Could the taglib version be a problem for Jdev10.1.2 with j2SE version being 1.4.
    In the tld files i see the JSp version to be 1.1 and tlibversion to be 1.2
    PLS...help me understand wats going on with compiling the jsps in this project.

  • Help Me Error Message When Run action strut on jdeveloper 10.1.3 Preview

    java.lang.ExceptionInInitializerError: org.apache.commons.logging.LogConfigurationException
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 3].server.http.HttpApplication.loadServlet(HttpApplication.java:2060)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 3].server.http.HttpApplication.findServlet(HttpApplication.java:4430)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 3].server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4520)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 3].server.http.HttpApplication.initDynamic(HttpApplication.java:912)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 3].server.http.HttpApplication.<init>(HttpApplication.java:593)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 3].server.ApplicationStateRunning.getHttpApplication(ApplicationStateRunning.java:399)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 3].server.Application.getHttpApplication(Application.java:404)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 3].server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:1976)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 3].server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:1959)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 3].server.http.HttpSite$HttpApplicationRunTimeReference.getHttpApplication(HttpSite.java:1911)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 3].server.http.HttpSite$HttpApplicationRunTimeReference.getHttpApplication(HttpSite.java:1901)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 3].server.http.HttpSite.checkSessionTimeouts(HttpSite.java:967)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 3].server.http.SessionTimeoutTask.checkSessionTimeouts(SessionTimeoutTask.java:156)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 3].server.http.SessionTimeoutTask.run(SessionTimeoutTask.java:126)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 3].util.Task.schedule(Task.java:51)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 3].util.TaskManager.run(TaskManager.java:196)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 3].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:294)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: org.apache.commons.logging.LogConfigurationException: org.apache.commons.logging.LogConfigurationException: No suitable Log constructor
         at org.apache.commons.logging.LogConfigurationException.<init>(LogConfigurationException.java:107)
         at org.apache.commons.logging.impl.LogFactoryImpl.newInstance(LogFactoryImpl.java:509)
         at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:285)
         at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:255)
         at org.apache.commons.logging.LogFactory.getLog(LogFactory.java:381)
         at org.apache.struts.action.ActionServlet.<clinit>(ActionServlet.java:375)
         ... 20 more
    Caused by: org.apache.commons.logging.LogConfigurationException: No suitable Log constructor
         at org.apache.commons.logging.impl.LogFactoryImpl.getLogConstructor(LogFactoryImpl.java:420)
         at org.apache.commons.logging.impl.LogFactoryImpl.newInstance(LogFactoryImpl.java:502)
         ... 24 more
    Caused by: oracle.oc4j.loader.util.AnnotatedClassNotFoundException:
         Missing class: org.apache.log4j.Category
         Dependent class: java.lang.Class
         Loader: jre bootstrap
         Code-Source: unknown
         Configuration: jre bootstrap
    This load was initiated at oc4j:10.1.3 using the loadClass() method.
         at oracle.oc4j.loader.PolicyClassLoader.handleClassNotFound(PolicyClassLoader.java)
         at oracle.oc4j.loader.PolicyClassLoader.internalLoadClass(PolicyClassLoader.java:1641)
         at oracle.oc4j.loader.PolicyClassLoader.loadClass(PolicyClassLoader.java:1591)
         at oracle.oc4j.loader.PolicyClassLoader.loadClass(PolicyClassLoader.java:1577)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
         at java.lang.Class.getDeclaredConstructors0(Native Method)
         at java.lang.Class.privateGetDeclaredConstructors(Class.java:1610)
         at java.lang.Class.getConstructor0(Class.java:1922)
         at java.lang.Class.getConstructor(Class.java:1019)
         at org.apache.commons.logging.impl.LogFactoryImpl.getLogConstructor(LogFactoryImpl.java:417)
         ... 25 more

    Hi,
    to me it seems that this is the line that should get your attention
    Caused by: org.apache.commons.logging.LogConfigurationException: org.apache.commons.logging.LogConfigurationException: No suitable Log constructor
    Since I don't know what you did in your application to get this, this answer is all I can provide to help
    Frank

  • Using STRUTS with JDeveloper 9I

    Anybody having practical experience please provide the info that you think would be usefull for starting such project. STRUTS web pages have instructions for bunch of J2EE containers but nothing for Oracle Application Server.

    just found this thread
    BC4J MultipartRequestHandler is null

  • How to upgrade struts into Netbeans?

    Hi,
    I'm currently using Netbeans IDE its showns 1.2.9
    of struts version, I have downloaded new version of struts.
    How can I update new version of struts to Netbeans?
    Thanks for advance

    I have create new library named as "Struts2.0.6" and add all jar needed.
    when I creating new project Netbeans show only Struts 1.2.9
    Do I miss anything?

  • Apache Struts Upgrade

    Hi all,
    after upgrade Struts to 1.1RC1 I have a problem:
    When I create new empty Struts application and use <bean:message/> tag, this error follows:
    500 Internal Server Error
    javax.servlet.jsp.JspException: Missing message for key index.message
         int org.apache.struts.taglib.bean.MessageTag.doStartTag()
              MessageTag.java:297
         void index.jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         [index.jsp]
              index.jsp:18
         void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              HttpJsp.java:139
         void oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
              JspPageTable.java:317
         void oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              JspServlet.java:465
         void oracle.jsp.runtimev2.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              JspServlet.java:379
         void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              HttpServlet.java:853
         void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              ServletRequestDispatcher.java:721
         void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(javax.servlet.ServletRequest, javax.servlet.http.HttpServletResponse)
              ServletRequestDispatcher.java:306
         boolean com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.ApplicationServerThread, com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.EvermindHttpServletRequest, com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.EvermindHttpServletResponse, java.io.InputStream, java.io.OutputStream, boolean)
              HttpRequestHandler.java:767
         void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.HttpRequestHandler.run(java.lang.Thread)
              HttpRequestHandler.java:259
         void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.HttpRequestHandler.run()
              HttpRequestHandler.java:106
         void EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run()
              PooledExecutor.java:803
         void java.lang.Thread.run()
              Thread.java:484
    I think JDeveloper don't copy ApplicationResources.properties file from src directory to classes directory (with appropriate path). Is it a bug in it?
    Many thanks
    Karel Pazdera

    OK, I think I figured out what the problem was.
    JDEV creates AppRes.prop file in a directory that is named after your package name. But if your package is nested like this mypackage.orders.items that means that you actualy have three nested directories. Your last innermost directory holds your class files, and thats where you need to copy your properties file to.
    What Jdev does is creates a folder with the name "mypackage.orders.items" and puts the properties file in there. Works fine for the embeded server but not for the deployed iAS.
    That's what I observed.
    Dmitry.

  • Is there any tutorial for integrating struts with hibernate using JDevelope

    Hi Everybody
    I am using Jdeveloper...and I want to know is there any tutorial available for usinfg struts and hibernate.
    If anybody knows abt them...plz tell me the links.
    Thanks and Regards
    K Sreenivas

    A tutorial about using hibernate in JDeveloper is here:
    http://www.oracle.com/technology/pub/articles/vohra_hibernate.html
    There are many papers and tutorials about Struts in JDeveloper - just go to the tutorials page and technical papers pages linked from the JDeveloper home-page.

Maybe you are looking for

  • Deactivation of CS5 & install on new iMac

    This is kind of two questions. First, how do I deactivate CS5 from an old imac when the harddrive has failed?Second, how do I install CS5 on my new imac without a disk drive?

  • Import Po Excise Part 2

    Hi 1) I  have create Import po 2) did custom Migo 3 ) Capture and post excise invoice in MIGO.on excise tab i am getting all values and status posted but Iam not getting excise accounting doc part two anu solution Regards Kailas Ugale

  • Notification SC requester receive a notification when linked PO approved

    Hello, Our customer would enhance its SRM solution by satisfying the following need: Here is the context: - A requester creates a SC - A purchaser take this SC back and creates a PO linked to the SC When the PO is approved, the SC requester is not in

  • Apex on Sourceforge!

    Just ran into Scott's recently blog entry about Apex on Sourceforge! http://spendolini.blogspot.com/2006/04/apex-open-source-applications.html http://sourceforge.net/projects/oracle-apex/ http://apex.oracle.com/pls/otn/f?p=45326:107 Looks like this i

  • Problem printing since Yosemite update.

    We run iMacs on 10.10.2. We run an HP 55100 Photosmart printer wirelessly from a BT Home Hub 3. The iMacs run on an ethernet via a router. This has been working fine for a long time but since the most recent Yosemite update we can't print until we re