Error occured When I migrated my APP from JSF1.1 to JSF1.2 in Tomcat6.X

Recently, I accepted a work from my leader that migrate the exist web application based JSF from JSF1.1 to JSF1.2. Because JSF1.2 must be
run in those web servers that implementsJSP2.1 I downloaded Tomcat6.X from apache and put jsf-impl.jar together with jsf-api.jar into Tomcat's Lib directory.
But an exception occured when I start tomcat; the following is the detail information about the exception. Any help welcome!
Dec 5, 2006 5:02:14 PM org.apache.catalina.core.StandardContext listenerStart
SEVERE: Error configuring application listener of class com.sun.faces.config.GlassFishConfigureListener
java.lang.NoClassDefFoundError: javax/el/ExpressionFactory
     at java.lang.Class.getDeclaredConstructors0(Native Method)
     at java.lang.Class.privateGetDeclaredConstructors(Class.java:2328)
     at java.lang.Class.getConstructor0(Class.java:2640)
     at java.lang.Class.newInstance0(Class.java:321)
     at java.lang.Class.newInstance(Class.java:303)
     at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3771)
     at org.apache.catalina.core.StandardContext.start(StandardContext.java:4336)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1014)
     at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1014)
     at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
     at org.apache.catalina.core.StandardService.start(StandardService.java:451)
     at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
     at org.apache.catalina.startup.Catalina.start(Catalina.java:552)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
     at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)

You're using an older version of JSF 1.2. Please upgrade to the latest, 1.2_03 [1].
[1] https://javaserverfaces.dev.java.net

Similar Messages

  • I get an error message when trying to download apps from the app store.  "safari can not open the page because the address is invalid".  Please help!!

    i get an error message when trying to download apps from the app store.  "Safari can not oprn the page because the address is invalid"

    You can't use Safari to download iPad apps. Only use iTunes/App Store.
     Cheers, Tom

  • Error occuring when trying to download movie from apple tv

    When ever I rent a movie from apple tv an error occurs when I go to downlaod it. The error just says that the movie cant download right now, try again later. Even after numerous attempts the movie still wont download. This had been happening for months and I've just been watching movies from netflix. I'm being charged for movies I can't even watch! How can I fix this problem?

    First, what is your internet speed? www.speedtest.net
    iTunes HD content requires 6mbps (SD would be 3mbps)
    Netflix uses variable bit-rate so it simply degrades on slower connections
    iTunes content waits to play until enough has buffered for playback without interupption

  • Unknown error occurred when trying to buy music from iTunes

    Whenever I try to buy a song or album from iTunes it says an unknown error has occurred (-405054) and can't be completed.

    I had this problem just recently.
    I discovered that the problem was located here: ROOT / Users / Shared  -- if you open that and the "adi" folder has a little red minus symbol in its corner, your permissions have somehow been lost. (If you can't see your root directory, open Finder Preferences and, under sidebar, check "Hard disks." That will make your root drive visible.)
    If the "adi" folder has the red minus symbol, right-click the folder and select GET INFO.
    Sharing & Permissions is probably set to "System: Read & Write | wheel: Read Only | everyone: No Access"
    If so, your user account has no permissions, and that means iTunes can't use the folder properly.
    To fix this, first unlock the folder using the padlock icon in the bottom-right corner of "get info." You will have to supply your admin password to do this.
    Then click the little + sign in the bottom left corner to add a user, and select your user ID from the list of choices. Give yourself Read & Write permissions. (Alternatively, you could change the permissions of "everyone" to Read & Write; others have done that, but I was leery of doing it).
    Re-lock the folder when you're done.
    Hopefully that will solve it.

  • Error occured when trying to pass object from Jsp to Applet

    I am trying to pass a serialized object(ie, object class implements java.io.Serializable...so that is not a problem) from a Jsp to an Applet.
    My jsp(Jsp_RMI.jsp) page is:-
    <%@ page import="java.io.*" %>
    <%@ page import="com.itlinfosys.syslab.mfasys.scm.*" %>
    <%@ page import="java.util.*" %>
    <applet code="com/itlinfosys/syslab/mfasys/scm/Applet_RMI" width=200 height=100>
    </applet>
    <%! ObjectOutputStream outputToApplet=null;
    PrintWriter out=null;
    BufferedReader inTest=null;
    %> <% Student student=new Student();
    Vector students=new Vector();
    students.addElement(student);
    outputToApplet=new ObjectOutputStream(response.getOutputStream());
    outputToApplet.writeObject(students);
    out.println(student);
    outputToApplet.flush();
    outputToApplet.close();
    %> <html> <head> <title>My Page</title> </head> <body> </body> </html>
    My Applet Applet_RMI.java is:-
    package com.itlinfosys.syslab.mfasys.scm;
    import java.applet.*;
    import java.net.*;
    import java.io.*;
    import com.itlinfosys.syslab.mfasys.scm.Student;
    import java.util.*;
    public class Applet_RMI extends Applet{
    Vector aStudent=null;
    ObjectInputStream inputFromServlet=null;
    String location="<URL>";
    public void init(){
    getConnection(location);
    public void getConnection(String location) {
    try{
    URL testJsp=new URL(location);
    URLConnection jspConnection=testJsp.openConnection();
    jspConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
    jspConnection.setDoInput(true);
    jspConnection.setDoOutput(true);
    jspConnection.setUseCaches(false);
    jspConnection.setDefaultUseCaches(false);
    inputFromServlet=new ObjectInputStream(jspConnection.getInputStream());
    aStudent=(Vector)inputFromServlet.readObject();
    }catch(MalformedURLException e){ System.out.println(e);
    catch(IOException e){
    System.out.println(e);
    catch(ClassNotFoundException e){ System.out.println(e);
    I am using netscape-4.73 on weblogic server. On server when I try to view Jsp page it gives netscape.security.AppletSecurity Exception.
    When I am trying to call this Jsp from IE-5 on my client machine, I am getting error:-"java.io.StreamCorruptedException: InputStream does not contain a serialized" Pl help me out.

    You should probably change your implementation to use a servlet rather than JSP. There may be extra stuff being put in by the JSP. Besides, servlets run faster. Here is some code that may help.
    From the Servlet:
      public void doPost(
          HttpServletRequest               httpServletRequest,
          HttpServletResponse              httpServletResponse )
          throws ServletException, IOException {
        ObjectInputStream in = new ObjectInputStream(new GZIPInputStream(httpServletRequest.getInputStream()));
        requestObject = in.readObject() ;
        ObjectOutputStream out = new ObjectOutputStream(new GZIPOutputStream(httpServletResponse.getOutputStream()));
        out.writeObject(responseObject);
        out.close();
      } //end doPost()And from the Applet:
      public Object doServletCall(
          Object                           sendObject ) {
        try {
          HttpURLConnection con = (HttpURLConnection)servlet.openConnection() ;
          con.setRequestMethod("POST");
          con.setDoInput(true);
          con.setDoOutput(true);
          con.setUseCaches(false);
          con.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
          ObjectOutputStream out = new ObjectOutputStream(new GZIPOutputStream(con.getOutputStream()));
          out.writeObject(sendObject);
          out.flush();
          out.close();
          ObjectInputStream in = new ObjectInputStream(new GZIPInputStream(con.getInputStream()));
          Object returnObject = in.readObject() ;
          in.close();
          return returnObject ;
        } catch (IOException e) {
          e.printStackTrace();
        } catch (ClassNotFoundException e) {
          e.printStackTrace();
        } //end try
        return null ;
      } //end doServletCall()Of course you can remove the ZIP and send object if you don't need them

  • Installation error occurred when the air is built from another machine.

    The senerio is that .
    AIR SDK: 2.0
    I orginally built an AIR versioned 1.05 from a mac 10.0.6 with FlashBuilder 4.6 and now I used the same code based and same application.xml to build a newer version 1.06 from a windows 7 x64  FlashBuilder 4.5 then i got the following error
    The application could not be installed because an application with that name already exists at the selected installation location. Try installing to a different location.
    I have put publisherID into the descriptor xml.
    Could somebody please help

    I found out the cause.
    What I do:
    Copy the Flex sdk from mac to pc directly.
    More info:
    The reason why i didnt do the above step at the begining because there are so many hidden files are generated by mac and which let the flashbuilder in PC keep prompting error.As a result, I manually deleted all the hidden files (more than 2k files) and build release with that sdk and finally the installation error not show.
    Also,I found that although both mac and pc are using Flex 4.1 sdk ,may be with different build number? The point is I will/may face the same problem if I decide to update the flex sdk from 4.1 to newers version.
    This is a very big problem because there are so many ppl installed the old version  and they may have to manually uninstall and install again and I will receive so many phone calls for support but  which is fine if they are all hot girls..

  • I have an error occurred when i try to print from LabVIEW

    an"error -2147352567 occured at failed to get a printer information" eventhough everything is ok.if somebody can help me with that.
    Thank you.
    file attached.
    Attachments:
    50 HZ FFT2 Print.vi ‏234 KB

    Hi,
    The printer name was probably misspelled.
    I’ve changed your vi to print to the default printer and it seems to work fine…
    Attachments:
    50 HZ FFT2 Print_2.vi ‏231 KB

  • I have Microsoft Word for Mac 2011, version 14.3.1.  When I try to open a document, an error occurs, says file type is "blocked from opening in this version."  This was NOT immediately after a version update.  Any ideas?  Thank you.

    I have Microsoft Word for Mac 2011, version 14.3.1.  When I try to open a document, an error occurs, says file type is "blocked from opening in this version."  This was NOT immediately after a version update.  Any ideas?  Thank you.

    Take a look here:
    http://support.microsoft.com/kb/953266
    If that doesn't help, I'd suggest you take up the question in Microsoft's own forums or with Microsoft support.
    Regards.

  • From an iPhone 5, I receive the following error message when trying to download content from a radio show app:  "Alert Could not parse feed."   How do I fix?

    From an iPhone 5, I receive the following error message when trying to download content from a radio show app:  "Alert Could not parse feed."   How do I fix?

    Since you're using a 3rd party app, suggest contacting the app developer or looking at their support site for help.

  • ???  I just installed Lightroom 5 from Amazon for my Mac with 10.10.1 software.  When I open it I get: "An error occurred when attempting to change modules".  It won't import photos and has no side panels under Library.  What should I do?

    I just installed Lightroom 5 from Amazon for my Mac with 10.10.1 software.  When I open it I get: "An error occurred when attempting to change modules".  It won't import photos and has no side panels under Library.  What should I do?

    I Nearly bought from Amazon too but I found a thread from Adobe stating that the only recognized outlet for lightoom is themselves and other outlets serial numbers will not be guaranteed.
    THat at was sufficient for me to buy direct from Adobe, hope you get it sorted.

  • Getting "an unknown error has occurred" when trying to update apps or download books

    I keep getting "an unknown error has occurred" when trying to update apps   Also get same message trying to purchase an iBook

    Same here.
    I did restart the iPad which had no effect. Adding an app through iTunes still worked this morning.

  • An error occurs when trying to exit from ALV report

    Hi,
    I have a report which imports and display in ALV data from an excel file. Unfortunately when I'm trying to exit I receive an error as I copied below.
    Runtime Errors         MOVE_TO_LIT_NOTALLOWED_NODATA
    Date and Time          17.10.2008 08:39:18
    Short text
         Error at assignment: Overwritten protected field.
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPLSLVC_FULLSCREEN" had to be terminated because it
          has
         come across a statement that unfortunately cannot be executed.
    Error analysis
         A new value is to be assigned to the field "<L_BOX>", although this field is
         entirely or partly protected against changes.
         The following are protected against changes:
         - Character literals or numeric literals
         - Constants (CONSTANTS)
         - Parameters of the category IMPORTING REFERENCE for functions and
         methods
         - Untyped field symbols not yet assigned a field using ASSIGN
         - TABLES parameters if the actual parameter is protected against changes
         - USING reference parameters and CHANGING parameters for FORMs, if the
         actual parameter is protected against changes and
         - Accesses using field symbols if the field assigned using ASSIGN is
         protected (or partially protected, e.g. key components of an internal
         table with the type SORTED or HASHED TABLE) against changes
         - Accesses using references, if the field bound to the reference is
         protected (or partially protected) against changes
         - External write accesses to READ-ONLY attributes,
         - Content of a shared object area instance accessed using a shared lock
         (ATTACH_FOR_READ).
    Trigger Location of Runtime Error
         Program                                 SAPLSLVC_FULLSCREEN
         Include                                 LSLVC_FULLSCREENF02
         Row                                     686
         Module type                             (FORM)
         Module Name                             MARKS_SAVE
    How can I solve the problem ?
    Thanks
    Stefan

    Hi ,
      Please check the GUI status you are using for the ALV.
    Looking at the code what i feel is that the error occurs when the user action is the code &SAL' or '&ALL'.
    Please put a break point at the statement and see why is the error occurring
    Regards,
    Arun

  • I am getting this message when trying to upload an album to Apple from iPhoto - An error occurred when trying to contact the Apple on-line Store. Please try again later!!!

    I am getting this message when trying to upload an album to Apple from iPhoto - An error occurred when trying to contact the Apple on-line Store. Please try again later!!!

    Do you mean trying to purchase an iPhoto book?  Try rebooting and ordering again.  If that fails Boot into Safe Mode, Mac OS X: Starting up in Safe Mode, and try ordering from there.
    OT

  • Error occurred in deployment step 'Install app for SharePoint': The provided App differs from another App with the same version and product ID.

    I am facing this problem while start debugging the Provider-Hosted app through VS2013. I want to deploy the app with same version. So please let me know any solution
    to remove the app instance from office365 online, so that I can deploy the same app with same version on the specified "Developer Site".
    Note: If I change the version in AppManifesst.xml file then this problem/error gets resolved. But I want to deploy with the same version as
    per my business requirement.
    The actual error renders while I click to "Start" button of the Visual Studio 2013 to deploy the provider-hosted app, for the sake
    to deploying it on say "ABC" site collection (i.e. developer site). I work on office365 online. Therefore, request you to please provide the solution for SharePoint online office 365. The occurrences is:
    "Error occurred in deployment step 'Install app for SharePoint': The provided App differs from another App with the
    same version and product ID."
    Please assist me anyone. It will be so kind of you.....
    Naveen Kumar
    Steria India Ltd.

    Did you updated the  AppManifest.xml file
    and change the version.
    If this helped you resolve your issue, please mark it Answered

  • Error occurred in deployment step 'Install app for SharePoint': There were errors when validating the App manifest.

    Hi everyone,
    I `m getting error message like this  "Error occurred in deployment step 'Install app for SharePoint': There were errors when validating the App manifest.". when i try to debug the application with "Start Action"="Internet Explorer".This
    application  is  an apps for office application with Oauth with Office 365
    Any help in this regard is greatly appreciated 
    Thanks!!
    Santosh Sutar

    Thanks Fei for your time.
    >>>I would suggest that you create a new project and set it start action with 'Internet Explorer'
    to see whether this issue could be reproduced.  If no, we can compare the difference between the two menifest files.
    As per your suggestion above ,With new project,I can debug with with start action "Internet Explorer" and I
    could not see much difference between the manifest files.
    Please find below my manifest file for the reference .
    <?xml version="1.0" encoding="UTF-8"?>
    <!--Created:cb85b80c-f585-40ff-8bfc-12ff4d0e34a9-->
    <OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="TaskPaneApp">
      <Id>084cd6cd-2908-44d1-a5cf-4fa029aec211</Id>
      <Version>1.0.0.0</Version>
      <ProviderName>[Provider name]</ProviderName>
      <DefaultLocale>en-US</DefaultLocale>
      <DisplayName DefaultValue="Office 365 MVC" />
      <Description DefaultValue="Office 365 MVC"/>
      <AppDomains>
        <AppDomain>https://login.microsoftonline.com</AppDomain>
      </AppDomains>
      <Hosts>
        <Host Name="Document" />
        <Host Name="Workbook" />
      </Hosts>
      <DefaultSettings>
        <SourceLocation DefaultValue="~remoteAppUrl/Home/Index/" />
      </DefaultSettings>
      <Permissions>ReadWriteDocument</Permissions>
    </OfficeApp>
    Please suggest on this.
    Thanks !!
    Santosh Sutar

Maybe you are looking for