Jspx tag warning, on first element of jspx, on ALL pages of app.!!

Hello All,
I am getting the below posted warning on the FIRST TAG ON JSPX, RIGHT AFTER JSP:ROOT ELEMENT, FOR ALL JSPX PAGES OF THE APPLICATION!!!
No grammar available for namespace http://java.sun.com/jsf/core, contents fo element view cannot be validated.
So the <f:view> tag for which the above error is coming is the first tag on the page (as shown below).
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns="http://www.w3.org/1999/xhtml" xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html" xmlns:trh="http://myfaces.apache.org/trinidad/html" xmlns:afh="http://xmlns.oracle.com/adf/faces/html" xmlns:af="http://xmlns.oracle.com/adf/faces" xmlns:tr="http://myfaces.apache.org/trinidad">
<jsp:include page="/pages/includes/checklogin.jspx"/>
<f:view> --> warning
The tag libraries are loaded fine (atleast I think so) If the first tag on the jspx is <tr:panelHeader> then the error will be
No grammar available for namespace http://java.sun.com/jsf/core, contents fo element panelHeader cannot be validated.
The application seems to be running fine though.
Please help!!!

Thanks Timo for the reply. checklogin.jspx is not the culprit here. It is a page included in every page for checking user privileges which are specific to our application. This page has been there since the beginning of the application (pre upgrade). We are upgrading from 10.1.3g to 11G.
We are in the process of upgrade and till now we did not see it. We were adding removing some taglibs and after that this warning started to appear. The application seems to be working ok.
I just hope it is nothing serious as we are very close to the deadlines.
Thanks,

Similar Messages

  • Elements Organizer - How do I sync historical Elements tags between Revel and Elements 12?

    I used Elements 11 Organizer to manage my photos including adding tags. I've uploaded to Revel photos before Revel had tagging capabilities photos from Elements 11. Now that Revel can handle tags how can I sync my tagged photos that are currently in Elements Organizer (I upgraded to Elements 12) with the photos that were already loaded into Revel.

    Hi David
    Since the introduction of PSE12 the method of synchronization has changed e.g. now via mobile albums. In PSE11 photos were uploaded to the Library level; not albums.
    I’m not entirely sure how this affects keywords, but you may need to upload photos again using the new method. But I suggest you check first over on the Revel forum where there are more experienced users.
    http://forums.adobe.com/community/revel

  • Sort an an arrayList by the first element of an array

    Hi,
    I am really struggling trying to sort an arratList of arrays. I have an arrayList
    ArrayList<String[]> myArrayList = new ArrayList<String []>(100);
    Within this array I have may arrays with 2 elements
    String[] myArray1 = {"Peter", "London"};
    String[] myArray2 = {"John", "London"};
    String[] myArray3 = {"Tony", "Birmingham"};
    I add all these arrays to the arrayList and want to sort by the first element of the array. Basically I expect the final arrayList to be in the order of:
    "John", "London"
    "Peter", "London"
    "Tony", "London"
    Thanks
    Peter

    Hi,
    I am really struggling trying to sort an arratList of
    arrays. I have an arrayList
    ArrayList<String[]> myArrayList = new
    ArrayList<String []>(100);
    Within this array I have may arrays with 2 elements
    String[] myArray1 = {"Peter", "London"};
    String[] myArray2 = {"John", "London"};
    String[] myArray3 = {"Tony", "Birmingham"};
    I add all these arrays to the arrayList and want to
    sort by the first element of the array. Basically I
    expect the final arrayList to be in the order of:
    "John", "London"
    "Peter", "London"
    "Tony", "London"
    Thanks
    PeterThis can be done by using
    Collections.sort(myArrayList, new Comparator<String[]>() {
    public int compare(String[] s1, String[] s2) {
    if (s1.length() <1) {
    return -1;
    if (s2.length() <1) {
    return 1;
    return s1[0].compareTo(s2[0]);
    });

  • Hi. Migrated photos from Photoshop Album to Phtoshop Elements 13. Lost all tags Any ideas?

    Hi. Migrated photos from Photoshop Album to Photoshop Elements 13. Lost all tags Any ideas?

    I'm not sure but it sounds a lot like the question I posed to the forum a little later today.  It may be that the newer versions of PSE are not compatible with transfering all the Categories, Sub Categories and Tags from versions up to PSE 10.  I am presently using PSE 10 because I couldn't figure out how to save all the organization I have put into Elements over the past 10 years or so.
    I'm hoping for an answer to my question.

  • How to set the focus to a first element in oracle apex 3.2.1  and 3.1.2.00

    Hello ,
    I am using oracle apex 3.2.1 in development env. How to set the focus to a first element of a page.
    thanks/mahesh

    Hi,
    This might help
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/bldr_pgs.htm#CJGJDHCI
    Find "Cursor Focus" from page Display Attributes
    Br,Jari

  • NXSD is missing first element

    Hi ,
    When I test the nxsd generated I see the first element is being used for differentiating the records and it is missing from the output xml.But I want that to appear in the output xml.
    I treid modifying the nxsd to include c1 element manually it didn't helped.
    <xsd:choice minOccurs="1" maxOccurs="unbounded" nxsd:choiceCondition="fixedLength" nxsd:length="4">
            <xsd:element name="RECORD1" nxsd:style="array" nxsd:cellSeparatedBy="${eol}" nxsd:conditionValue="P03A">
              <xsd:complexType>
                <xsd:sequence>
                  <xsd:element name="C2" type="xsd:string" nxsd:style="fixedLength" nxsd:length="3" />
    C1 elements declaration is missing from the generated nxsd. I am expecting the value "P03A" to be present in the output xml,during the initial config of nxsd I used these 4 characters to differentiate the records.My records have data PO3A,P03B etc...where the 4th character is the differentiator.The data is being used for identifying the different records in the flat file and it is not appearing in the output xml.

    This is most probably because the Periodicity input value has been configured as "Required" and no value has been input for it.
    Please enter a value and try to re-run Quick Pay.

  • WebService problem: only the first element of a string array is returned

    Hello,
    i did the J2EE QuickCarRental tutorial and extended it by some features: I created another entity bean and implemented four new methods in the QuickOrderProcessor. Then i deployed it as a WebService and accessed it using the Visual Composer.
    Everything works fine except the return value of one WebService method. I created a method with the return value String[]. But the Visual Composer reads it as String. Only the first element of the resulting string array is displayed. Although the test at the web-page http://<server>:<port>/QuickCarRentalService/Config1 displays the whole string array with all its elements. What did i wrong?
    Another problem is that after deploying the J2EE-Application with new WebService methods the changes are not visible inside the visual composer. Although the test at the web-page http://<server>:<port>/QuickCarRentalService/Config1 displays the changes. Do i have to restart the WebService system in the portal content? If yes how can i do that?

    Here are details about setting up and using web services and some examples:
    /people/prakash.darji/blog/2006/10/10/external-web-service-proxy-configuration-for-visual-composer

  • Is it possible to bind the first element in a collection in a datagrid?

    I have a datagrid and I need to bind a property in the first element of the collection of my datasource object. By the momento I am using a converter:
    <DataGridTextColumn Header="MyValue" Binding="{Binding Converter={StaticResource myConverter}}"/>
    But I would like to avoid the need to use a converter, so I have tried this:
    <DataGridTextColumn Header="MyValue" Binding="{Binding MyCollectionProperty.ElementAt(0).MyValue}"/>
    Is there any way to do it?

    You cannot call ElementAt(i) from the XAML because it is a method.
    MyCollectionProperty[0] will certainly get you the first value of the MyCollectionProperty collection provided that the type has an indexer.
    If you want to be able to this without using a converter you must change the type of the property from ICollection<T> to for example IList<T>.
    You could create a wrapper property (potentially in a partial class definition) and bind to this one:
    //old property:
    public ICollection<YourType> MyCollectionProperty {
    get;
    set;
    //new wrapper:
    public IList<YourType> MyCollectionPropertyWrapper {
    get {
    return new List<YourType>(this.MyCollectionProperty);
    <DataGridTextColumn Header="MyValue" Binding="{Binding MyCollectionPropertyWrapper[0].MyValue}"/>
    ICollections are not very XAML friendly and you cannot bind to the first item of an ICollection using an indexer or ElementAt(0) or any other direct way.
    Please remember to mark all helpful posts as answer to close your threads.

  • ArrayList drops the first element

    I hate asking for help, but this has me confused.
    I have a code that outputs the elements of an arraylist as text strings to a file. For some reason, the first element of the ArrayList gets dropped, but every other element after gets saved to text perfectly.
    public void writeOut(ArrayList a)throws IOException{
        String[] out=new  String[a.size()];
        for(int i=0;i<out.length;i++){
            out=a.get(i).toString();
    System.out.println("" + out[i]); //test line to see if element has been moved
    I have also tried:
    public void writeOut(ArrayList a)throws IOException{
        String[] out=new  String[a.size()];
        for(int i=0;i<out.length;i++){
            out=(String)a.get(i);
    System.out.println("" + out[i]); //test line to see if element has been moved
    The code is straight forward, the best I can tell...so what am I overlooking? I am assuming that my array needs to be primed or something first. I suppose I could make the array one bigger and put some bogus value in the first element...That doesn't really seem the right way to do it though.

    I didn't notice it either until I tried to pass it an ArrayList with only one string....I must be having a problem where the ArrayList is being created then.
    And that is exactly where the problem was... :sigh:
    Thanks for checking that for me.

  • Retrieve first element of a Collection

    Hello,
    How to retrieve only the first element (class) of a Collection?
    Thank you
    Sylvain

    Object firstElement = yourCollection.iterator().next()

  • Creating XML from XSD, Only create The First Element

    Hi,
    I create a XML File from a xsd schema by this way:
                DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
              factory.setNamespaceAware(true);
              factory.setValidating(true);
                   factory.setAttribute(JAXP_SCHEMA_LANGUAGE,W3C_XML_SCHEMA);
                   factory.setAttribute(JAXP_SCHEMA_SOURCE, new File(MY_SCHEMA));   
                    DocumentBuilder documentBuilder =factory.newDocumentBuilder();
              documentBuilder.setErrorHandler(new SimpleDOMHandler());
              Document parse = documentBuilder.parse(new File(MY_XML));The first lines of the schema:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
         targetNamespace="http://gencat.net/scsp/esquemes/peticion"
         elementFormDefault="qualified" attributeFormDefault="unqualified"
         id="Peticio" xmlns:p="http://gencat.net/scsp/esquemes/peticion">
         <xs:element name="Apellido1">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:maxLength value="40" />
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="Apellido2">
            .............................The problem is that the created document only have the first element "Apellido1". I dont know if it is a wrong xsd, or i'm using a bad way to do it.
    Thanks a lot, and apologize for my english

    Hi,
    Is it possible to create and populate XML from an XSD
    without knowing what the XSD elements are beforehand
    (all the examples appear to know what the input XSD
    will be, and therefore know what the set and get
    methods should be called)? I think it is possible--you would have to recompile each time (unless you can dynamically recompile, which would be neat), but using the classes getMethod() function, you can list all the methods. You would then have to do some tricky logic to determine which of the getMethods you want (for example NOT getClass()), and you can basically call them in sequence. You also need to worry about handling lists & recursively call xxxType classes.
    I'm experimenting with this, and it can get a little frustrating because there are a lot of odd cases to handle (for example, while setting the elements of a list, you need to actually get the list & add elements to it), but I think it's possible.
    >
    Can a user browse for an xsd to input, and the java
    will dynamically create the get methods, and be able
    to create instances and populate variables before
    converting to XML?
    What I'm puzzled about is where you'd get the data to populate the variables? Perhaps a database, or a bean? If you just want to make a test xml file, then it doesn't matter, but with real data, I think you'd still have to change how you actually get the variables you want to populate the xml file with, right? In other words, if your schema changed, the parameters you're passing to the set methods would change as well.
    Maybe we'll see some more packages in the future to make this task easier.

  • HT1386 When I connect my iPod to my computer and try to sync Apps from my computer to the iPod, a warning comes up saying that I will lose all my existing Apps. Please help

    I have got a new computer and i can no longer do a full sync. Apple always tells me I will lose all my exisiting Apps if I do a new sync. I prefer to purchase Apps on my computer over my iPod because of the smaller iPod. The new computer is recognized by Apple as an allowable new PC.
    But this Sync warning is a pain. Plus, when i view my iPod's App icons on my copmputer, I can no longer drag and move them. I have the latest version of iTunes installed. Thank you for your help

    Syncing to a new iTunes library or computer will erase your iPod. Only if you back up your device manually before syncing, you can restore it from that backup again. A manual backup does not include the sync process.
    Do this:
    Disable autosync in iTunes, connect your iPod to your new computer and right click on it in the device list and choose backup. iTunes will backup your iPod without syncing.
    Transfer your purchases the same way, choosing "transfer purchases" this time.
    When you connect your iPod for the first time, all media content will be erased. But you can restore your settings and app data from your manual backup afterwards.
    Don't forget to set up at least one contact and event on your new computer to be able to merge calendars and contacts when you sync the iPod for the first time.
    Music is one way only, from the computer to your device, unless you bought the songs in itunes and transferred your purchases.
    There is 3rd party software out there, but not supported by Apple, see this thread:http://discussions.apple.com/thread.jspa?threadID=2013615&tstart=0
    About backups and what's saved: iTunes: About iOS backups
    How to back up and restore:http://support.apple.com/kb/HT1414
    How to download apps for free again:http://support.apple.com/kb/HT2519
    Saving other data is also described here. How to back up your data and set up as a new device
    As for your second problem, see if restrictions for app installation and deleting apps are active in Settings/General/Restrictions. If yes, allow to install and delete app again.
    Don't forget to authorize your PC in iTunes:
    About iTunes Store authorization and deauthorization
    Message was edited by: Ingo2711

  • Hi. I'm new here and a noob. I just got my new rMBP and I already have an iPad3. When I tried syncing it with the MacBook, I was warned that I was about to loose all data?

    My iPad 3 usually syncs with a Windows PC, but since I got the new Mac I thought I'd now sync with it. But when I connected the iPad and tried syncing, iTunes is warning me that I am about to loose all existing data in the iPad and it will be replaced with data from the Mac. I do not have any data on the laptop yet, though I have a lot of photos, music, videos and stuff, most of all many paid apps and games! Now how do I do the syncing without loosing all this? How can I tell my laptop to keep all data in the iPad intact, make a copy of it in teh laptop and go on from there?

    It's a problem that happens when you change libraries. Backward syncing only works if you have the Apps on your iDevice downloaded into iTunes through the Transfer Purchases option, but this still does not cover your media (Movies.. Songs.. etc.)
    When you double click on a file to play it in iTunes, it will duplicate that file and place the new copy in iTunes' directory. By default, all the files that appear in iTunes must come from this location, and you do not have this directory 'filled up' with the same files you used to sync to.
    I guess Apple could solve this issue by allowing iTunes libraries to automatically tag media to particular devices for ease of syncing, but what if you want to sync the same device with 2 different libraries on different computers?
    I normally don't sync apps with iTunes at all, because iCloud handles that.

  • How can i print all pages instead of only the first page using firefox

    How can i set firefox to print off my mac to my lexmark printer all pages i want. It is only printing the first page as of about 4 days ago
    == This happened ==
    Every time Firefox opened
    == about 4 days ago. it works ok on safari!

    Then duplicate that button to pages 3-23.
    To do that effectively go to Form Edit mode, right-click the button and select Duplicate Across Pages.

  • HT204053 If I have an apple ID for myself and my wife has just got a iPhone for the first time how can she get the same apps as I have for my iPhone and iPad

    If I have an apple ID for myself and my wife has just got a iPhone for the first time how can she get the same apps as I have for my iPhone and iPad by getting it off my iCloud?

    She can't from iCloud without setting up your iCloud account on her phone. But just sync the same apps from your iTunes Library on your computer to her phone.
    Your wife should setup her own iCloud account - which is separate to the iTunes Store accounts.

Maybe you are looking for

  • I'd like to set my gutters in em or px, rather than %.

    Hi, I know this is likely to be a big ask, but is it going to be possible to set gutters in em or px at some stage? In my opinion, gutter width should be relative to type size. My type size increases a little as the page (screen) size increases - due

  • How to create a specific audio track in arrange

    There's gotta be something simple I'm missing. In Logic 7 you could create an audio track in the arrange and then click to open a drop-down menu to select any audio track number you wanted to assign it to. I don't see how to do that in 8. All I'm try

  • RSDG_DATCLS_ASSIGN - Upgrade BW 3.5 to BI 70

    Hi there, I am trying to do the BI upgrade from BW 3.5 to BI 7.0, and I am currently working on the preparation phase. I am struck at steps where they are mentioned about SAP NW BI: Converting Data Classes of infocubes. I am lilttel confused.  We are

  • Web analysis 9.3  error

    while connecting to database( i want to connect to analytic server data cube) i gave servername: my prodution server name username:admin password: after clicking on Next iam getting the following error No HssJNIDriver930 in java.library.path;nested e

  • Webi reports and objects associated with uiverses

    Hi, I want to know the list all universes associated with wei reports and their objects (database field) using query builder. I am using select * from ci_infoobjects where si_kind='Webi'. I could able to get the universe associated with webi report i