HELP!-really urgent- problem while deployng

I'm using jdeveloper 10g.
I've depoyed a lot of tim e my application to the server.
Now,when I try to deploy,I get a lot of compile errors like
invalid element 'uri' in content of 'taglib' expected elements '[validator,listener,tag]'
(Unable to load class taghandler http://java.sun.com/jsf/html)
same thing for every jsf-html tag and tiles tag.
Is it a problem in web.xml?
web.xml
<?xml version = '1.0' encoding = 'windows-1252'?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<description>web.xml per view realizzato con JSF</description>
<context-param>
<param-name>tree.control.images</param-name>
<param-value>/images</param-value>
</context-param>
<filter>
<filter-name>logFilter</filter-name>
<filter-class>demo.filters.LoggingFilter</filter-class>
</filter>
<filter>
<filter-name>authFilter</filter-name>
<filter-class>demo.filters.AuthorizationFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>logFilter</filter-name>
<url-pattern>/faces/track/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>authFilter</filter-name>
<url-pattern>/faces/track/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>authFilter</filter-name>
<url-pattern>/faces/reserved/*</url-pattern>
</filter-mapping>
<!-- listener di inizializzazione applicazione -->
<listener>
<listener-class>demo.controller.StartUpListener</listener-class>
</listener>
<servlet>
<servlet-name>tiles</servlet-name>
<servlet-class>org.apache.struts.tiles.TilesServlet</servlet-class>
<init-param>
<param-name>definitions-config</param-name>
<param-value>/WEB-INF/tiles-defs.xml</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>faces/welcome.jsp</welcome-file>
</welcome-file-list>
<error-page>
<exception-type>javax.servlet.ServletException</exception-type>
<location>/error.jsp</location>
</error-page>
<error-page>
<exception-type>javax.faces.FacesException</exception-type>
<location>/error.jsp</location>
</error-page>
<error-page>
<exception-type>java.io.IOException</exception-type>
<location>/error2.jsp</location>
</error-page>
<taglib>
<taglib-uri>http://java.sun.com/jsf/html</taglib-uri>
<taglib-location>/WEB-INF/html_basic.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>http://java.sun.com/jsf/core</taglib-uri>
<taglib-location>/WEB-INF/jsf_core.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>/WEB-INF/struts-tiles.tld</taglib-uri>
<taglib-location>/WEB-INF/struts-tiles.tld</taglib-location>
</taglib>
</web-app>
please,help!

Add the JSF-Html and JSF-Core jar files to the Classpath.

Similar Messages

  • Really Urgent: Problem in making link b/w sales order and production order

    Hi,
    I am trying to make link b/w the sales order delivery(VL03) by taking its Batch Number(LIPS- Delivery table) and linking with AFPO(Production order Table) field (batch no) so that i can see the fruther operations done o dat production order made against sales order,but it is not coming .
    I want to have help which allows me to make link b/w delivery (vf03) and the productiona order.
    plzz help me out it is really urgent.
    Edited by: ric .s on Apr 11, 2008 7:43 AM
    Edited by: ric .s on Apr 11, 2008 7:59 AM
    Edited by: ric .s on Apr 11, 2008 9:23 AM

    You have delivery no(VBELN) & itam no (Posnr)from lips table.
    Now
    1. go to VBFA table end get the corresponding sales oredr no and order item no.
    In VBFA table pass the delivery no in VBELN and delivery item in POSNN and 'J' in VBTYP_N and 'C' in VBTYP_V.
    Now VBELV & POSNV will return the sales order no and sales order item.
    2. Got to VBAP table and get the corresponding AUFNR to the order no and item no.
    3. Now with that AUFNR you will get a connection with AFPO(Production order Table.

  • Urgent : problem while migrating from forms 6i to 9i

    We are trying to upgrade forms 6i to forms 9i.
    One of our forms is using the host command to call a shell script . This command worked successfully in the form when it was
    in character mode in forms 6i. But we are facing problems while deploying it on web using forms9i.
    Would appreciate an early response.
    Regards ,
    Pooja

    Hi Pooja,
    1. Please check out the script by running it manually in the App Server Machine.
    2. If you are using any environment variables in the shell script, that are not defined in the shell script itself, then try defining in the shell script itself. Because, the environment variable that you are using might not be availble for the script while running using host.
    HTH,
    Regards,
    Arun

  • Help neede urgently(Problem in adding exponential numbers)

    Hi,
    Actually i want to add the contents of two files which contains exponential numbers.
    i'm not able to add these numbers. Can any one help me?
    import java.io.*;
    import java.nio.*;
    class  userFile
         public static void main(String[] args) throws IOException
              try
                   BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
              String s1,s2,s3;
              FileReader fr1,fr2;
              System.out.println("Enter first file :");
              s1=br.readLine();
              System.out.println("Enter second file :");
              s2=br.readLine();
              System.out.println("Enter new file :");
              s3=br.readLine();
              fr1= new FileReader(s1);
              fr2= new FileReader(s2);
              BufferedReader fin1=new BufferedReader(fr1);
              BufferedReader fin2=new BufferedReader(fr2);
              String str1,str2,str3;
              double i1,i2,i3;
              OutputStream fout=new FileOutputStream(s3);
              while((str1=fin1.readLine()) != null)
                   while((str2=fin2.readLine()) != null)
                   i1=Float.parseFloat(str1);
                   System.out.println(i1);
                   i2=Float.parseFloat(str2);
                   System.out.println(i2);
                   i3=i1+i2;
                   System.out.println("i3=" +i3);
                   str3 = Float.toString(i3);
                   byte buf[]=str3.getBytes();
                   fout.write(buf);
                   fout.write('\n');
              catch(NumberFormatException e)
                   System.out.println(e);
    }I need help urgently.
    Thanks in advance.

    By "exponential number, do you mean one in scientific notation (eg. -1.55743e21) or what?
    What do your files look like?
    What problem are you encountering? Is an exception being thrown? If so, give us the exact message (copy/paste). Is the results simply not what was expected? If so, give us the input, the expected results and the actual results for us to compare and consider.
    Chuck

  • Can anyone pls. help me : facing problem while fetching the data from BAPI

    Hi all,
        we have installed xMII in a new server. In this new server I am trying to fetch data from a BAPI & write it into a file thru a transaction, but i cant see the data in the tracer, & neither is the file created. But with the same configuration & connection am able to get the data in the old server. Can anyone pls. tell me wat could be the problem?? or is there anything else that we might have forgotten while installing xMII in the new server.
    ur help would be greatly appreciated.
    Thanks,
    Sushma.

    Hi Ravi,
           no am not able to see the table structure also. This is what it is showing in the tracer :
       [INFO ]: Execution Started At: 17:24:17
    [DEBUG]: 00000.03100 Begin Transaction 'TMP99A51958-5BAE-CDE0-0DB5-A3A8C72BC297'
    [DEBUG]: 00000.03100 Begin Sequence Sequence : ()
    [DEBUG]: 00000.03100 Begin Action SAPJCOInterface_0 : (SAP JCO Interface)
    [DEBUG]: 00006.43700 Connection Took 6406 mS
    [DEBUG]: 00009.82800 Function Creation Took 3391 mS
    [DEBUG]: 00010.25000 Execution Took 422 mS
    [DEBUG]: 00010.25000 End Action SAPJCOInterface_0 : (SAP JCO Interface)
    [DEBUG]: 00010.25000 Begin Sequence Sequence_0 : ()
    [DEBUG]: 00010.25000 Begin Action Repeater_0 : (Repeater)
    [DEBUG]: 00010.26600 End Action Repeater_0 : (Repeater)
    [DEBUG]: 00010.26600 End Sequence Sequence_0 : ()
    [DEBUG]: 00010.26600 End Sequence Sequence : ()
    [DEBUG]: 00010.26600 End Transaction 'TMP99A51958-5BAE-CDE0-0DB5-A3A8C72BC297'
    [INFO ]: Execution Completed At: 17:24:28 Elapsed Time was 10235 mS
    I doubt the repeater is not working, becoz i checked the JCO connection & thats fine..
    Thanks,
    Sushma.

  • Really weird problem while Print to Video

    Hi.
    I've tried to fix this problem by searching this forum but I couldn't find any solution so I have no choice but to ask for help.
    Basically when I'm trying to Print my NTSC DV project to tape through firewire enabled camcorder, I can see video with weird gray block all over with no sound. Same thing happens when I'm trying to preview the project through my camcorder.
    I even exported my project and imported it into imovie hd 6 and tried to export to tape but same result.
    My camcorder is Sony HDR-HC5 (HDV) and the setting in both my camera and Final cut pro 6.0.2 is correctly set up.
    Strange thing is, when I'm using HDV1080i60 preset in Final cut pro, log and capture works flawlessly, but somehow I can't even choose HDV device under video playback. I can see all the HDV settings but they are all gray and can't select any of them.
    I remember being able to print DV project to my camcorder with same settings using Final Cut 5.1.4 so I really can't figure out what is wrong with all these.
    Any kind of input would be appreciated.

    Just curious. How do you get your computer too see the HVR. I am using I movie HD and it does not see anything. Is there a camera setup procedure? I looked at the vague manual which was no help.
    Thanks in Advance
    Thom

  • Please help really urgent

    I have a small JFrame on top of another JFrame which covers the
    entire comp screen. In the smaller JFrame I have a JMenuBar;
    once u click on the JMenu I would like for the menu to open and
    diplay itself completely without having to resize the frame.
    Something which im unable to do now the menu ends at the boundaries of the JFrame and the user would have to resize the screen. Can someone help please im really stuck

    A wild guess: Are you mixing Swing and AWT? I experienced exactly what you describe when I had a JFrame containing AWT components.

  • PLEASE HELP ITS URGENT (PROBLEM IN INCLUDE)

    IF I EXECUTE IN 4.6C ITS NOT GIVIN NY ERROR BUT THE SAME CODE IN 6.0 IS GIVING ERROR
    IF NOT ( ( text_flag = 'X' AND tcode_level > 0 ) OR
                 ( text_flag_level0 = 'X' AND
                   tcode_level      = 0   AND          )    ).
    ERROR IS:
    Incorrect logical expression: "AND" or "OR" must be preceded by an          
    expression (e.g. a comparison).          
    PLZ HELP ME AS IT IS VERY URGENT.
    THANX IN ADVANCE

    Hi anit,
    1. minor mistake
    2. remove this AND in bold.
    IF NOT ( ( text_flag = 'X' AND tcode_level > 0 ) OR
    ( text_flag_level0 = 'X' AND
    tcode_level = 0 <b>AND</b> ) ).
    regards,
    amit m.

  • Help.. carbonlib problems while installing office2004

    Hi, I'm a Mac newbie and I need help on installing Office for Mac 2004; when I try to install the program(while running the set up assistant or by just dragging the folder) I received a warning that says :"office setup assistant" could not be launched because of shared library error "=<office assistant > <carbonlib> ".
    please I need any advised on this matter, help is GREATLY appreciated.....
    G4   Mac OS X (10.4.9)   ?

    Did you check your applications folder for a copy of Office Test Drive? Some machines shipped with such a program. If it is there you must throw it away before you instal Office.
    Hope this helps.

  • Help, Really annoying problem,

    when I copy certain tracks to my ipod, they appear 2 times in the ipod listings as in If I copy over 'Since I've been loving you by led zepp' and then click on led zep in the artist listings, there will be two idenical names 'Since I've Been Loving You', like its referencing the same song twice, I'm using a Nano latest firmware, and latest itunes with a macbook, its really annoying,
    Also alot of times songs I send over wont appear under the artist as expected, and they dont even appear under the unknown section, instead the only way to play them is find them in the all songs section, I mean whats that about??
    Thanks in advance,
    John

    A spelling or punctuation mistake, or sometimes a trailing space usually causes this after the artists and/or song name, which fools the iPod into thinking that there are two different artists or songs. The trailing space is the hardest to spot. 

Best way to cure this is to go into iTunes, highlight that artist and/or songs, right click on them and select "get info". 

This brings up the multiple song info window. In the artist or song box retype the name, as you would like it, and then click ok. Do this even if no mistakes are immediately visible.
    

Re sync this new artist/song info to your iPod.
    As for your artist problem, it could be that you have inadvertently imported these CDs into iTunes as part of a compilation. If so, the artists won't show in the artists menu on the iPod.
    To check, highlight the tracks on one of the offending artists CDs in iTunes, right click and select "get info". This brings up a multiple song info window, and from there you can check if you have 'yes' in the box marked "part of a compilation".
    If you have, select 'no' instead and click 'ok'. Do this with any CD that has this issue. This will alter the info in iTunes, and you should then connect your iPod and synchronize the changes.
    The problem arises because the information contained on the Gracenote CD Data Base (where iTunes gets all it's album/artist/track info from), is sometimes incorrect. It can show CDs as compilations when in fact they are not.
    You should also check that the songs have album name info in their ID tags.
    See: Some songs don't don't show under artist on my iPod.

  • HELP - REALLY URGENT : iCal sending loop mails for an alarm, and more

    Hi.
    My iCal is not working since 2 months now. Even I post here something, I had no replies. iCal is REALLY slow since 2 months, needing 20 seconds to pass a field (as to go from 20 to 00 field in a 20:00 meeting).
    I reinstalled totally my Mac OS for that and it did not change anything. It's linked to SyncServer.
    Worst, now I have an alarm that was set last year, to send an email. Everytime I start my laptop, iCal loop this alarm and sent 500 mails, I have to force to quit SyncServer. And if I go to iCal to remove the alarm, iCal crash !
    I can't loose all my datas... please do help me !

    I made that, but as my OS X reinstallation, did not solve anything
    and even .mac sync does not work anymore now pff i'm getting tired of Apple in this kind of situation, nobody cares

  • Please help me urgently (Problem in using delete statement)

    Hello,
    I want to run delete query where table name should come from a variable .I have written the following procedure but its not working .Could you please help me
    DECLARE
    processtemplatename VARCHAR2(64);
    CURSOR T1Cursor IS
    select Process_template_name from ProcessTemplate
    where PROCESS_template_ID in
    ( select PROCESS_template_ID from PROCESSINSTANCE
    where process_instance_id in
    (select process_instance_id from processinstance where STATUS = 'PI_COMPLETED' OR STATUS = 'PI_REMOVED' ));
    BEGIN
    OPEN T1Cursor;
    LOOP
    FETCH T1Cursor INTO processtemplatename;
    EXIT WHEN T1Cursor%NOTFOUND;
    DELETE FROM processtemplatename WHERE process_instance_id in
    ( select process_instance_id from PROCESSINSTANCE where STATUS = 'PI_COMPLETED' OR STATUS = 'PI_REMOVED' );
    END LOOP;
    CLOSE T1Cursor;
    END;
    I am getting the error
    ERROR at line 19:
    ORA-06550: line 19, column 27:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 19, column 15:
    PL/SQL: SQL Statement ignored
    even when i used
    DECLARE
    processtemplatename VARCHAR2(64);
    BEGIN
    processtemplatename := 'example1';
    DELETE FROM processtemplatename WHERE process_instance_id in
    ( select process_instance_id from PROCESSINSTANCE where STATUS = 'PI_COMPLETED' OR STATUS = 'PI_REMOVED' );
    END;
    I am still getting the same error message
    Thanks,
    Salam.

    And BTW you do not need that clumsy CURSOR c.. OPEN c.. FETCH c INTO... CLOSE c etc. It is "reserved" for more complex cases when you cannot use:
    <pre>
    FOR P IN
         select Process_template_name
              from ProcessTemplate
              where PROCESS_template_ID in
                   (select PROCESS_template_ID
                        from PROCESSINSTANCE
                        where process_instance_id in
                             (select process_instance_id
                                  from processinstance
                                  where STATUS = 'PI_COMPLETED'
                                       OR STATUS = 'PI_REMOVED'
    LOOP
         EXECUTE IMMEDIATE
              'DELETE FROM ' || P.Process_template_name ||
                   ' WHERE process_instance_id in
                        (select process_instance_id
                             from PROCESSINSTANCE
                             where STATUS = ''PI_COMPLETED'' OR STATUS = ''PI_REMOVED''
    END LOOP;
    </pre>

  • Urgent, Please help me in this problem.I am getting problem while installation

    I am using Windows 8 in my system. I am trying to install Sql Server in system . Everything is fine, but finally  when i click on install button i am getting the following error .
    please help me quickly. I well be thankful to you.

    Triple post meanwhile:
    http://social.msdn.microsoft.com/Forums/en-US/7fafa499-ca1e-42f7-a117-73df924d9847/urgent-please-help-me-in-this-problemi-am-getting-problem-while-installation?forum=sqlsetupandupgrade
    http://social.msdn.microsoft.com/Forums/en-US/a1c7978c-2f84-495f-a8b6-9e9fe46654d7/getting-problem-while-installing-sql-server-2012?forum=sqlsetupandupgrade
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • I have a problem while typing in my MacBook pro. it is showing different characters when i type. for example: qw`e§r]t[y=   this is how when we type "qwerty|" can anyone help me pls?

    I have a problem while typing in my MacBook pro. it is showing different characters when i type. for example: qw`e§r]t[y=   this is how when we type "qwerty|" can anyone help me pls?

    You could just try changing your Input Sources under System Preferences>Language & Text:
    But I kind of doubt that's going to work. It may be a hardware problem or a system problem. If you take it into Apple they might be able to determine which and might advise a reinstallation of System software. I would take it to an Apple Store or an AASP but, first, make sure that you have a backup just in case they suggest a clean install of the system.
    Good luck,
    Clinton

  • I am facing problems while openin an application in facebook and other places.when i go to the application,an error shows and firefox closes autmatically either i send error reports or dont.....plz help

    i am facing problems while openin an application in facebook and other places.when i go to the application,an error shows and firefox closes autmatically either i send error reports or dont.....plz help

    Notes:
    1) Please use the code tags when posting code or JNLP/HTML. It helps to retain indentation and avoids asterisks and plus sings being interpreted as formatting marks. To do that, select the code/JNLP etc. and click the CODE button seen on the Plain Text tab of the message posting form.
    2) That launch file is invalid. You might check it (and the project in general) using JaNeLA.
    3) The only place that SimpleSerial class could be, that the JRE would find, is in the root of aeon.jar. Is it actually there?

Maybe you are looking for

  • Porting EJBS from orion to JBoss

    Hi I want to port EJBs written in Orion application server to JBoss, Which of the arreas chages are needed ? , Currently I am accessing EJBs from an Applet. So can i use directly ear files in the Orion application server for JBoss. I want my what all

  • Ipod turns itself off - only playing 1 certain album!

    on Monday evening I purchased Ne-Yo- Year of the Gentleman via the i-tunes store. Having played the album on Tuesday morning, I incurred a problem. It will play 2-3 songs perfectly fine, but if I go to skip to the next song the ipod turns it self off

  • Dynamic Actions for Rehire

    Hi All: I've been trying to write a dynamic action to take the termination date from infotype 0041 and based on that data change the benefit eligibility date and rehire date on infotype 0041. Can anyone explain how can this be done? Thanks Venkat

  • Can Hierarchies created in BW be Transported

    Hi, I have created some  hierarchies in BW & i want to take it to quality system through TRANSPORT ,can we take this to quality system ? Also in my Production i am already having hierachies with same technical name that i created in dev system now as

  • Why is routine update is not working?

    For several days now I have had difficulty opening Firefox. It seems to be taking a long time to open. When it eventually responds I usually get a window headed: "Update failed". The window reads: "There were problems checking for, downloading or ins