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

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.

  • 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.

  • 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 - 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

  • 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.

  • 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.

  • 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

  • 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.

  • How to export the source from a Jdeveloper to another Jdeveloper?

    Help me. In my company I have begun to write a Java Web Application with Struts using Jdeveloper. I have the necessity to move all the project in my laptop, work on it and after move another time the project into the PC of my firm and so on. How i can do this operation? I have red that this possibility in the help section of Jdeveloper "Importing Existinf Files into a New Jdeveloper project", but follwing the steps at the end I don't have the same structure (there isn't WEB-INF folder but a folder who is name is Miscellanous etc). How can I export and import correctly the project.
    I have also another question. In my firm there are 2 application server oracle. 1 is 9.0.4 and the other one is 10.1.2.0.2. and two web-application are deployed in the first and other two web application in the second. Now i have the necessity to work in all the web application so i have downloaded the Jdeveloper 9.0.4 and 10.1.2. Can I install both the Jdeveloper in the same pc?
    Thanks for the help
    Giò

    Assuming you can find the Project in iMovie, right-click (Control-click) on the clip (or clips) and select "Reveal in Event Browser" or select "Reveal in Finder".
    This is the method in iMovie '09. I think it worked the same in iMovie '08.
    John

  • How to use struts Logic tags in weblogic8.1

    hi
              i have used jakarta struts in JDeveloper there i used logic tags
              but the same i have to use in weblogic8.1 ,how should i use it
              i am new to weblogic platform
              it is very urgent
              please

    Hi harish,
              Procedure for using a Struts Tag Libraries in weblogic 8.1 :
              â€¢Copy the tag lib jar files under WEB-INF/lib ( if tag handler supplied as
              classes without package a jar file then we need to copy the classes
              under WEB_INF/classes.
              â€¢ Copy the tld files files under WEB-INF or create a directory under
              WEB-INF and copy tld files under this directory.
              â€¢ We need to give the information about the tag libraries in web.xml by
              adding the following lines to it as,
              <taglib>
              <taglib-uri>bean</taglib-uri>
              <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
              </taglib>
              <taglib>
              <taglib-uri>html</taglib-uri>
              <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
              </taglib>
              <taglib>
              <taglib-uri>logic</taglib-uri>
              <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
              </taglib>
              To use tags in jsp file we need to add taglib directive as ,
              <%@ taglib uri="logic" prefix=“logic"%>
              <%@ taglib uri="html" prefix=“html"%>
              <%@ taglib uri="bean" prefix=“bean"%>
              Every tag can support zero or more number of attributes and a tag may or
              may not support body content
              Every Tag Library Uniquely identified by uri defined in web.xml.
              we can use the tags in jsp according to the tags and attributes which are defined in *.tld files.
              if we look at .tld files we can find several tags and its attributes.
              note :any jar files that are related to struts framework ,place under the lib directory of the webapplication.
              ----- Anilkumar kari

Maybe you are looking for

  • Heterogeneous Connectivity to MySQL with ODBC 5.1

    Hi, I have a setup with an oracle 10g XE version on an windows Server 2003 together with a MySQL 5.5 I setup a Heterogeneous Link using MySQL ODBC 5.1. Every time I select something from a mysql table all varchar and text fields ignored in result set

  • Rename State Service Database in SharePoint 2010

    As the title says, I want to rename/change database for State Service Application. I did some experiments wit it as suggested by others but I think I somehow managed to broken my service. I can SharePoint Products Configuration again and I got anothe

  • Ale with user created message type

    Hello, I have a created a segment ,idoc and message type and done the assignment of Idoc with message type also. i have to send the material 800 to 810 client through ALE. By using the Standard Message type MATMAS i m getting the material on 810 clie

  • HOw to get  DatabaseMetaData using JPA

    hi; I am using ejb3 , jpa for database connectivity .is there any way to get the metadata about the database in JPA. ie:- in JDBC we can use DatabaseMetaData for getting this. HOw can we get the Database Meta Data by using JPA. Regards Irshad

  • Just bought an AppleTV recently and now cheaper.

    http://apple.slashdot.org/story/15/03/09/1839245/apples-spring-forward-event-deb uts-apple-watch-and-more says Apple lowered the price on AppleTV. Is it possible to get a refund of the price if it was bought recently from a store? Thank you in advanc