Drop down menu and null pointer exception

I am trying to build a drop down menu that gives you options on sorting a list (eg. it sorts on the Title) . The drop down must show which sort option has been selected after the sort occurs.
I keep getting a "java.lang.NullPointerException". I realize this error arises from not assigning a variable to a specific object in java. I'm a .net developer who got thrown into customixing a java application and I just don't see the error. The error message didn't say on which line this occured but it is in the posted code.
It worked for a while and now i gives me this error.
Can someone help me please!?!?
<%String     strCheck = new String("");%>                     </td>
                <form action="ChangeSorting.jsp?recordView=<jsp:getProperty name='CumulusBean' property='recordView'/>" id="changeSortingForm" target="invisibleFrame" method="POST">
                     <td>
               <select name="uid" size="1" onChange="document.getElementById('changeSortingForm').submit();">
               <%if (session.getAttribute( "theUid" ).equals ("{1e58eab1-f625-4d6b-be82-ef0ea493cb7a}"))  {
               strCheck = ("selected");
                }%>
          <option value="{1e58eab1-f625-4d6b-be82-ef0ea493cb7a}"<%=strCheck%> >
            Title          </option>
</form>     Thanks,
Luis

This is not JSF ..
Anyway, it looks like that the following code returns nullsession.getAttribute( "theUid" )and invoking the equals() on it thus causes a NullPointerException.
So check if this attribute really exists in the session and add a nullpointer check to the code. For example:if (session.getAttribute("theUid") != null && session.getAttribute("theUid").equals("blah")) { }

Similar Messages

  • Bookmarks disappeared in bookmarks drop down menu and bookmarks toolbar disappeared too after upgrading

    I still have all my bookmarks so they are not lost (I can find them under 'bookmarks'>'Edit bookmarks' and also when I put them in the left side windowframe by clicking 'View'>'Sidebar'>'Bookmarks'
    I saw them appear once again in the dropdown menu but now they're gone again.
    The Firefox help page suggest to go to the 'add ons window' and select 'Extentions'>'Torbutten' but I don't even have that. They say that if you don't find the button, that means the torbutton is not installed. And then they leave you without another possibility. But I think that's only for when your bookmarks are totally lost anyway.
    I always use the drop down menu and the bookmarks toolbar so would love to get it back. Adding, erasing and moving the bookmarks in the 'edit bookmarks' window all works just fine.

    This issue can also be caused by a missing "Bookmarks Toolbar items" on the Bookmarks Toolbar.
    * Make sure that you have the "Bookmarks Toolbar" visible: "View > Toolbars"
    * Check in "View > Toolbars > Customize" that the "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    * If the "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the Customize window onto the Bookmarks Toolbar
    * If you do not see the "Bookmarks Toolbar items" then click the "Restore Default Set" button

  • Hover Hyperlink State in Drop-Down Menu and other Hyperlink display problems

    Hi World!
    So, I'm finishing my new website for a client, but a have some problems:
    At first:
    I putted a Drop-Down Menu and it contains hyperlinks. Normal. But, I can't give a specific state to each hyperlink in the under-menus, I only can put a state for the global link in the Under-Menu! I can put a hover state to a normal HyperLink but not those into a Drop-Down Menu! It is normal?
    How can I make that each link in the Under-Menu has a specific hover state and not all together in the same group! (pictures jointed)
    (what I want to do with the links into the menu. - Juste a picture, not from A-Muse)
    Then:
    When I want to manage my website on BusinessCatalyst, I see strange underlines under my Menu links! (picture). But on Adobe Muse, I see no underline to these links! What's the matter? ^^
    (when it's on the prewiew mode)
    (On A-Muse)
    RESOLVED! But not completely. I've made a Hyperlink-style, but it doesn't works...
    On the prewiew (with the hovering mouse)
    EDIT: In the menu, "Accueil" and *Gérants Indépendants" musn't open another window under. So I made independent forms on the menu. But can I make that those one are in the menu TOO? I don't want to open the blue window for those one.
    Thanks a lot!
    O.

    http://metisfiance.businesscatalyst.com/
    That's the link!
    No I just can't "activate" the hover-modes, like the pictures! Normally, Adobe Muse must be easy to use and i used Muse like I have to do and so,.. It doesn't work^^ Why? You have now the link, I hope you can help me

  • How to store session variables in drop down menu (and radiobutton/checkbox)

    How am I going to store session variables in the drop down menu, radio button, checkbox.
    In text area, I do like below:
    <input type="text" name="membershipno" size="5" maxlength="50" value="<%=((session.getValue("Smembershipno")!=null)?session.getValue("Smembershipno"):"") %>">
    Any idea?

    Hi jeffkyt79, I could have answered this on Expert's Exchange. But I suppose it would be hard as the site is down right now :-(
    Here is sample code for the form:
    <form action="" name="form1">
    <input type="text" name="field1" value="<%
    if (session.getAttribute("field1")!=null) {
    out.println(session.getAttribute("field1"));
    } %>"><br>
    <input type="text" name="field2" value="<%
    if (session.getAttribute("field2")!=null) {
    out.println(session.getAttribute("field2"));
    } %>"><br>
    <input type="text" name="field3" value="<%
    if (session.getAttribute("field3")!=null) {
    out.println(session.getAttribute("field3"));
    } %>"><br>
    <input type="checkbox" name="check1" value="tick"<% if (session.getAttribute("check1")!=null) out.println(" checked"); %>><br>
    <% String selRadio=(session.getAttribute("r1")!=null)?(String)session.getAttribute("r1"):""; %>
    <input type="radio" name="r1" value="yesdot"<% if (selRadio.equals("yesdot")) {out.println(" checked");} %>>
    <input type="radio" name="r1" value="nodot"<% if (selRadio.equals("nodot")) {out.println(" checked");} %>><br>
    <select name="sel">
    <% String selOption=(session.getAttribute("sel")!=null)?(String)session.getAttribute("sel"):""; %>
    <option value="option1"<% if (selOption.equals("option1")) {out.println(" selected");} %>>OPTION 1
    <option value="option2"<% if (selOption.equals("option2")) {out.println(" selected");} %>>OPTION 2
         <option value="option3"<% if (selOption.equals("option3")) {out.println(" selected");} %>>OPTION 3
    </select>
    </form>
    And here's the revised javascript function to put in form1.jsp:
    function newWin() {
    f=document.form1.elements;
    str="?";
    mypage="test2.jsp"; // I've hardcoded the url for testing but you can fix this
    for (i=0;i<f.length;i++) {
    if (f.type=="text") {
    if (f[i].value!="") {
    str=str+f[i].name+"="+f[i].value+"&";
              continue;
         if (f[i].type=="checkbox"||f[i].type=="radio") {
         if (f[i].checked) {
         str=str+f[i].name+"="+f[i].value+"&";
         if (f[i].type=="select-one") {
         str=str+f[i].name+"="+f[i].options[f[i].selectedIndex].value+"&";
    str=str.substr(0,str.length-1);
    // now open the popup
    mypage+=str;
    win=window.open(mypage, 'myname'); // I've left out the winprops but you can fix this
    If you can ask any more questions, could you do it on EE (if possible!!). I know this works because I've tested it.

  • Returning vector and null pointer exception

    Hi, I'm writing a mailing program which so far is working fine, but I have now run into a problem which is completely throwing me. My mailer needs to be able to load multiple attachments - and also to be able to deal with an HTML text which contains multiple images. In each case, what I'm trying to do is to put the attachments and the images into separate vectors and process them through an iterator. The logic, at least, I hope is correct.
    I can get my code to compile but it keeps throwing a null pointer exception a runtime. Somehow, I just can't get it to pass the vector from one part of the code to another.
    Can anyone help me? I've tried various things, none of which seem to work. My code, as it stands, is posted in a skeletal form below.
    Thanks for any ideas:
    public class MailSender
       // declare various variables, including:   
         Vector embeddedImages;
         String HTMLString;
        public MailSender()
            setup();
        private void setup()
         //this part of the program sets up the various parts of the mail  (to, from, body etc)    
          HTMLString = "blah blah blah";  //sample HTMLString   
           Vector embeddedImages = null; //is this correct?
            if (HTMLString.length() > 0)
                processHTMLString(HTMLString);
         private String procesHTMLString(String htmlText)
            Vector embeddedImages = new Vector(); // I construct my vector here, is this correct?
            //Here I process the HTML string to extract the images
            //get the file path of the image and pass it to the vector
            addToVector(imageFile);
            return HTMLString;
        public Vector addToVector(String imageFile)
            embeddedImages.add(imageFile);
            return embeddedImages;
        private void send()
            //this part does the sending of the mail
            //at some part in this method I need to get at the contents of the vector:
            //but this part isn't working, I keep getting a null pointer exception
            Iterator singleImage = embeddedImages.iterator();
            while (singleImage.hasNext())
        public static void main(String[] args)
            MailSender ms = new MailSender();
            ms.send();
            System.out.println("MailSender is done ");
    }

    >>>>while they don't have a clue on how the language and/or programming in general works.
    Thank you, salpeter, for your esteemed estimation of my programming competence.
    >>>What I'm wondering is: how come people always start building applications... blah blah
    The reason being, is that it happens to be my job.
    OK, I'm perhaps slower than most and there are things I don't yet understand but I get paid probably about a tenth of what you do (and maybe even less). I regard it as a kind of apprenticeship which, after a past life having spent twenty years packing crates in a warehouse, is worth the sacrifice. Six months ago I'd never written a line of code in my life and everything I've learned since has been from books, the good people in these forums, and a lot of patient trial and error. It's hard work, but I'll get there.
    I say this, only as encouragement to anyone else who is trying to learn java and hasn't had the benefit of IT training at school and a four year computing course at university paid for by the parents, and for whom the prohibitive cost (in both time and money) of most java courses would never allow them to get on this ladder.
    Excuse my somewhat acerbic posting, but comments such as yours tend to provoke...
    Thank you EverNewJoy for explaining this to me. I haven't had time yet to try it out, but at least the concept now is clear to me.

  • JTextArea, getText, and Null pointer exception

    Hi, I am having trouble figuring out why i get a null pointer exception when i call
    ta = theGUI.AbName_TA;
    ta.getText();does anyone have any ideas as to what the problem is?
    (NOTE: i am somewhat new to java, and am DEFINITELY new to swing. so, if there is a better way to go about the stuff that i'm trying to accomplish, PLEASE feel free to offer suggestions.)
    Thanks, Kim
    Code for GUI_CreateAntibody
    import javax.swing.*;
    import java.awt.*;
    import javax.swing.border.*;
    import java.awt.event.*;
    import java.util.*;
    public class GUI_CreateAntibody implements ActionListener
         private String AntibodyName;
         private TheDBInterface3 TheInterface2 = new TheDBInterface3();
         private JTextArea ta;
         GUI_CreateAntibody_Sketcher theGUI = new GUI_CreateAntibody_Sketcher();
         public static void main (String[] args) {
              System.out.println("In Main");
              GUI_CreateAntibody atry = new GUI_CreateAntibody();
              atry.init();
         protected void init () {
              System.out.println("In init");
              GUI_CreateAntibody atry = new GUI_CreateAntibody();
              theGUI.init();
              theGUI.button1.addActionListener(atry);
              System.out.println("added the actionlistener");
              System.out.println(theGUI.button1.toString());
         public void CloseWindow() {
              theGUI.window.dispose();
         public void actionPerformed(ActionEvent e) {
              System.out.println("In actionPerformed");
              Object source = e.getSource();
              System.out.println(source.toString());
              System.out.println("");
         //     System.out.println(theGUI.button1.toString());
         //     if (source == theGUI.button1) {
                   System.out.println("BUTTON1 WAS PRESSED");
                   ta = theGUI.AbName_TA;
                   ta.getText();
                   // String name = theGUI.AbName_TA.getText();
                   System.out.println("hi");
                   //TheInterface2.CreateAb(name);
                   //GUI_AddingAntibody AddingAb = new GUI_AddingAntibody();
                   //AddingAb.init();
                   //CloseWindow();
    Code for GUI_CreateAntibody_Sketcher
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    public class GUI_CreateAntibody_Sketcher implements WindowListener
         public JTextArea AbName_TA;          
         public JButton button1;
         String currentPattern;
         String[] patternExamples = {
                     "Yes",
                     "No",
         JComboBox patternList;
         JLabel result;
         JComboBox AbList;
         public void init ()
              window  = new SketchFrame("GUI_CreateAntibody_Sketcher");     // create the application window
              Toolkit theKit = window.getToolkit();     // get the window toolkit
              Dimension wndSize = theKit.getScreenSize();     //     get screen size
              double xPosition = 200;
              double yPosition = 200;
              double xSize = 200;
              double ySize = 200;
              window.setBounds((int) xPosition, (int) yPosition,
                                   (int) xSize, (int) ySize);
              theApp.window.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
              GridBagLayout gridbag = new GridBagLayout();     // create a layout manager
              GridBagConstraints constraints = new GridBagConstraints();
              JPanel contentPane  = new JPanel();
              theApp.window.getContentPane().setLayout(gridbag); // set the container layout mgr
              contentPane.setBorder(BorderFactory.createCompoundBorder(
                                  BorderFactory.createMatteBorder(
                                                  1,1,2,2,Color.black),
                                  BorderFactory.createEmptyBorder(5,5,5,5)));
            constraints.fill = GridBagConstraints.BOTH;
            constraints.gridy = 0;
            constraints.gridx = 1;
            constraints.insets = new Insets(10,0,10,10);
            JLabel l = null;
            l = new JLabel("Add Antibody");
            l.setFont(new Font("Serif", Font.BOLD + Font.ITALIC, 18));
            gridbag.setConstraints(l, constraints);
            contentPane.add(l);
              window.getContentPane().add(l);
         /////// Antibody Name
            constraints.gridy = 2;
            JLabel AbLabel = null;
            AbLabel = new JLabel("Antibody Name:");
            AbLabel.setFont(new Font("Serif", Font.BOLD, 12));
             AbName_TA = new JTextArea();
            AbName_TA.setEditable(true);
            JScrollPane AbName_ScrollPane = new JScrollPane(AbName_TA);
            JPanel AbPanel = new JPanel();
            gridbag.setConstraints(AbPanel, constraints);
            AbPanel.setLayout(new BoxLayout(AbPanel, BoxLayout.Y_AXIS));
            AbPanel.add(AbLabel);
            AbPanel.add(AbName_ScrollPane);
            window.getContentPane().add(AbPanel);
         /////// SET CONSTRAINTS AND ADD BUTTON
         /////// Pressing button will indicate that you have
         /////// entered the Ab name
              // set constraints and add button     
              constraints.gridy = 7;          
              String label = "Enter the Antibody";     
              button1 = new JButton(label);
              addButton(button1, constraints, gridbag);
              window.setVisible(true);      
         public void windowClosing(WindowEvent e)
              window.dispose();
              System.exit(1);
         public void windowOpened(WindowEvent e) { }
         public void windowClosed(WindowEvent e) { }
         static void addButton(JButton button, GridBagConstraints constraints, GridBagLayout layout)
              // create a border object using a BorderFactory method
              // Border edge = BorderFactory.createRaisedBevelBorder();
              Border edge = BorderFactory.createRaisedBevelBorder();
              Color LightBlue = new Color(180,180,255);
              button.setBorder(edge);
              button.setFont(new Font("Times", Font.ITALIC + Font.BOLD, 14));
              button.setBackground(LightBlue);
              layout.setConstraints(button, constraints);
              window.getContentPane().add(button);           
         public void windowIconified(WindowEvent e) {}
         public void windowDeiconified(WindowEvent e) {}
         public void windowActivated(WindowEvent e) {}
         public void windowDeactivated(WindowEvent e) {}
         public static SketchFrame window;
         public static GUI_CreateAntibody_Sketcher theApp;
    }

    I changed my "actionPerformed" function a bit.
    Thanks for your comments - I hadn't realized some mistakes I had made while trying to fix my code.
    I'm still getting a null pointer exception, though.
    Also, in the main function of GUI_CreateAntibody, I call init for GUI_CreateAntibody. Within THIS init function I call init for GUI_CreateAntibody_Sketcher. I don't understand what is wrong with this (except that I suppose I should be using constructors as opposed to init functions.)
    Thanks,
    Kim
    Code for GUI_CreateAntibody
    import javax.swing.*;
    import java.awt.*;
    import javax.swing.border.*;
    import java.awt.event.*;
    import java.util.*;
    public class GUI_CreateAntibody implements ActionListener
         private String AntibodyName;
         private TheDBInterface3 TheInterface2 = new TheDBInterface3();
         private JTextArea ta;
         GUI_CreateAntibody_Sketcher theGUI = new GUI_CreateAntibody_Sketcher();
         public static void main (String[] args) {
              System.out.println("In Main");
              GUI_CreateAntibody atry = new GUI_CreateAntibody();
              atry.init();
         public void init () {
              System.out.println("In init");
              GUI_CreateAntibody atry = new GUI_CreateAntibody();
              theGUI.init();
              theGUI.button1.addActionListener(atry);
              System.out.println("added the actionlistener");
              System.out.println(theGUI.button1.toString());
         public void CloseWindow() {
              theGUI.window.dispose();
         public void actionPerformed(ActionEvent e) {
              System.out.println("In actionPerformed");
              Object source = e.getSource();
              System.out.println(source.toString());
              System.out.println("");
         //     System.out.println(theGUI.button1.toString());
         //     if (source == theGUI.button1) {
                   System.out.println("BUTTON1 WAS PRESSED");
                   String name = theGUI.AbName_TA.getText();
                   // String name = theGUI.AbName_TA.getText();
                   System.out.println("hi");
                   //TheInterface2.CreateAb(name);
                   //GUI_AddingAntibody AddingAb = new GUI_AddingAntibody();
                   //AddingAb.init();
                   //CloseWindow();
    }

  • In Edit this Bookmark box there is no drop-down menu and there used to be!

    When we ask to "bookmark this page" we are presented with the appropriate box but there is no drop-down menu on demand just three options from the past followed by an empty box. We used to be presented with all our bookmark categories and then we did something which stopped this (cannot remember what) and we cannot recover the original presentation. Hope this is clear? Please forgive incorrect terms!

    Not really clear, but I will try to clear up some of what you see, and tell you that you can fix most of the problems by installing the "'''Add Bookmark to Here2'''" extension, which can help clear up some of the ambiguities, but not all of them, so read the explanation below.
    The main problems are:
    # You can't really do much unless/until you expand the dialog that is the first drop-down button that appears by itself at the far right as [V] or as [^]. With the extension you can make the expansion automatic for each time you open the bookmark dialog.
    # The drop-down to the left shows the most recently bookmarked to folders, but once you click on it you will be at the selected folder and can scroll through all of your bookmarks, expanding where necessary to see subfolders but not bookmarks.
    # Below that is a drop-down for tags, this is the most confusing thing every added to a dialog because it gets close to and confused with other drop-downs. My suggestion is if you don't use tags, eliminate the tag display entirely with the extension.
    Additional advantages of installing the extension.
    # Adds back the keyword field, which is essentially a single alias for a bookmark and will allow you to invoke a commonly used bookmark without the foolish additional searching and clicking to lookup or use a bookmark, and it allows you to include substitution values associated with a shortcut. (see [http://dmcritchie.mvps.org/firefox/kws.htm keyword shortcuts] for examples and how to make your own).
    #Allows you to make use of the Description field, you can modify it to suit yourself, but correctly made web pages have a description, and you can include that or modify how it reads for your bookmark. The description is not searchable when you try to search your bookmarks.
    #Like its name implies you select right-click a bookmark folder and use the "Add Bookmark Here" to bookmark into the folder. Feature further enhanced if you install the "Multiple Tab Handler" extension.
    #The text areas within the dialog are expandable by moving the bottom border of the areas, see the third picture shown on the add-ons page.
    References:
    * '''[https://addons.mozilla.org/firefox/addon/add-bookmark-here-2/ Add Bookmark Here ²]''' extension
    * -- my notes -- http://dmcritchie.mvps.org/firefox/firefox.htm#addbookmarkhere2
    * -- more notes -- http://dmcritchie.mvps.org/firefox/addbookmarkhere2.txt
    * [https://addons.mozilla.org/firefox/addon/multiple-tab-handler/ Multiple Tab Handler] extension
    * -- my notes - -http://dmcritchie.mvps.org/firefox/multiple_tab_handler.txt
    Additional references:
    * [https://support.mozilla.com/en-US/questions/836619 How do I save a page to my imported favorites? Double clicking the star does not allow me to scroll all of my folders to choose and neither does clicking on &quot;bookmarks"? | Firefox Support Forum | Firefox Help]
    * [http://webcache.googleusercontent.com/search?q=cache:http%3A%2F%2Fkb.mozillazine.org%2FBookmark_dialog Bookmark dialog - MozillaZine Knowledge Base] (cached copy) -- real link is [http://kb.mozillazine.org/Bookmark_dialog here].
    * [https://support.mozilla.com/questions/872310 Can one add an item to the bookmarks toolbar bookmarks menu? | Firefox Support Forum | Firefox Help]
    Additional disambiguation may be needed:
    :"bookmark categories" -- suggested last used bookmark folders, or bookmark folders, or tags -- I think I covered those above if not, indicate what you meant.

  • Difference between Drop down menu and F4 help

    Hi ,
    I have developed a  adobe form in which i  have a drop down menu  for a field wage type ....
    I have created a Badi which is  linked to the field Wage type in the form......  In that Badi i have created a F4 help . ..
    What i want to know is that whether it will serve the purpose of drop down menu  or not ? because i have not attached that badi till now with that field in the form .......
    Is there any function module for a drop down menu which i want to put for my field .?
    Thanks a lot  in advance

    For drop down,
    check the FM
    VRM_GET_VALUES
    VRM_SET_VALUES

  • I would like to create a web that gives users choices from drop down menu and it then calculates the results back to them and copy to me

    Hello I am a wedding planner and have decided to create new website.   I would like to have the user make choices of different items and have it calculate so that they can print it off.  Like an estimate of what costs would be to plan a wedding .  I will be giving them different selections to choose from  in drop down or radio selections .
    I was thinking much like a shopping cart but that seems too involved is there a simpler way.   Thank you for any help.

    Just based on your question I can tell that you're probably not experienced enough to develop something like a shopping cart. Hiring a web developer is the way to go, as previously said.

  • I clicked the full screen choice on the firefox drop down menu and now the firefox icon has disappeared. How do I get it back?

    I used the pull down menu on the firefox icon on the left hand upper corner to create a full a screen. Once the full screen was created the icon disappeared and I cannot go back to regular screen. HELP.

    If you run Firefox in full screen mode then press F11 or Fn + F11 to toggle (Mac: command+Shift+F).
    If you are in full screen mode then hover the mouse to the top to make the Navigation Toolbar and Tab bar appear.
    You can click the Maximize button at the top right to leave full screen mode or right click empty space on a toolbar and use "Exit Full Screen Mode" or press F11.
    *Press F10 or tap the Alt key to bring up the "Menu Bar" temporarily if the Menu Bar is hidden.
    *Use "Firefox > Options" instead of "Tools > Options" if the menu bar is hidden.
    See also:
    *https://support.mozilla.com/kb/Menu+bar+is+missing

  • I have created a drop down menu and duplicated it in other parts of the document.

    When a selection is made in a box, they all change.  How can I fix it so that every drop down is independent?

    The "#" indicates the number of the field with the same name. This is referred to as a "widget" and for most fields it can be a problem. Only buttons, check boxes, and radio buttons can have widgets and work independently within limits. Check boxes and radio buttons with the same name but different option values allow only one selection within the group of like named fields.

  • Is it possible to make an  animated drop down menu  and still use  the menu widget?

    Hi- I am trying to create a menu bar that is hidden with just a tab exposed  to indicate that there is a menu  there. Upon  rollover,  the full menu bar slides down and reveals the menu items.  I can't find a way to make it smoothly  slide down so I settled for the Photoshop button and just moved the button position in Photoshop to fake it.    The problem is  now I need to find a way to still use the menu widget along with this.  if that can't be done,  can I use the Photoshop button and populate the menu there and abandon the menu widget?
    Someone suggested using  Edge Animate ( why the hell is this a separate  software from Muse?)  to make the animation.  If that's a possibility,  can the menu widget be used with the Edge file that's imported?  please help me get to where I need to go  however it needs to happen!  Thanks in  advance.
    Here's a link to a screenshot of my menu: http://www.groovindj.com/menu.jpg
    Here's a site that  does  pretty much what I'm looking to do... www.bagigia.com

    Ok, thanks! I have another way to do what I'm trying to do, I just thought it might be better to do it this way. Obviously I was wrong!
    Thanks again!

  • ADF_FACES-60098 and null pointer exception at oracle.adfinternal.controller.debug.ActivityBreakpointFacadeImpl$1.afterPhase(ActivityBreakpointFacadeImpl.java:111)

    Can you please look at this stack trace to see if you can identify a reason why this error happens when I leave a page open in my ADF application for 3 minutes or longer?
    Target URL -- http://127.0.0.1:7101/PTS/faces/dashboard.jsf
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewXmlImpl> <parse> ADFc: /WEB-INF/adfc-menuSearch-config.xml:>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewXmlImpl> <parse> ADFc: Failed to find/parse page name for view activity.>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ActivityXmlImpl> <parse> ADFc: /WEB-INF/adfc-menuSearch-config.xml:>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ActivityXmlImpl> <parse> ADFc: Activity metadata could not be parsed. [Activity Type, ID] = ['view', 'view1'].>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewXmlImpl> <parse> ADFc: /WEB-INF/adfc-menuEst-config.xml:>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewXmlImpl> <parse> ADFc: Failed to find/parse page name for view activity.>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ActivityXmlImpl> <parse> ADFc: /WEB-INF/adfc-menuEst-config.xml:>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ActivityXmlImpl> <parse> ADFc: Activity metadata could not be parsed. [Activity Type, ID] = ['view', 'createProjEstimate'].>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewXmlImpl> <parse> ADFc: /WEB-INF/adfc-toolBoxMenu-config.xml:>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewXmlImpl> <parse> ADFc: Failed to find/parse page name for view activity.>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ActivityXmlImpl> <parse> ADFc: /WEB-INF/adfc-toolBoxMenu-config.xml:>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ActivityXmlImpl> <parse> ADFc: Activity metadata could not be parsed. [Activity Type, ID] = ['view', 'basicEstimator'].>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewXmlImpl> <parse> ADFc: /WEB-INF/adfc-toolBoxMenu-config.xml:>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewXmlImpl> <parse> ADFc: Failed to find/parse page name for view activity.>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ActivityXmlImpl> <parse> ADFc: /WEB-INF/adfc-toolBoxMenu-config.xml:>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ActivityXmlImpl> <parse> ADFc: Activity metadata could not be parsed. [Activity Type, ID] = ['view', 'writeReport'].>
    <Nov 8, 2013 2:24:53 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewHandlerImpl> <_checkTimestamp> Apache Trinidad is running with time-stamp checking enabled. This should not be used in a production environment. See the org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION property in WEB-INF/web.xml>
    <Nov 8, 2013 2:24:59 PM CST> <Notice> <Stdout> <BEA-000000> <<UIXEditableValue> <_isBeanValidationAvailable> A Bean Validation provider is not present, therefore bean validation is disabled>
    <Nov 8, 2013 2:25:16 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:25:22 PM CST> <Notice> <LoggingService> <BEA-320400> <The log file C:\Users\kri\AppData\Roaming\JDeveloper\system11.1.2.3.39.62.76.1\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Nov 8, 2013 2:25:22 PM CST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Users\kri\AppData\Roaming\JDeveloper\system11.1.2.3.39.62.76.1\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log03208. Log messages will continue to be logged in C:\Users\kri\AppData\Roaming\JDeveloper\system11.1.2.3.39.62.76.1\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log.>
    <Nov 8, 2013 2:25:23 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    [02:26:14 PM] Updated /C:/Users/kri/AppData/Roaming/JDeveloper/system11.1.2.3.39.62.76.1/o.j2ee/drs/PTS_MavenProjectTrackingSys/PTS_ViewControllerWebApp.war
    <Nov 8, 2013 2:26:18 PM CST> <Notice> <Stdout> <BEA-000000> <<GlobalConfiguratorImpl> <_startConfiguratorServiceRequest>
    weblogic.utils.NestedRuntimeException: Cannot parse POST parameters of request: '/PTS/faces/projectPlan-task-flow/projectPlan'
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.mergePostParams(ServletRequestImpl.java:2144)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.parseQueryParams(ServletRequestImpl.java:2024)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.getQueryParams(ServletRequestImpl.java:1918)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.getParameter(ServletRequestImpl.java:1995)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.access$800(ServletRequestImpl.java:1817)
    at weblogic.servlet.internal.ServletRequestImpl.getParameter(ServletRequestImpl.java:804)
    at javax.servlet.ServletRequestWrapper.getParameter(ServletRequestWrapper.java:169)
    at org.apache.myfaces.trinidadinternal.context.external.ServletRequestParameterMap.getAttribute(ServletRequestParameterMap.java:43)
    at org.apache.myfaces.trinidadinternal.context.external.ServletRequestParameterMap.getAttribute(ServletRequestParameterMap.java:31)
    at org.apache.myfaces.trinidadinternal.context.external.AbstractAttributeMap.get(AbstractAttributeMap.java:73)
    at oracle.adfinternal.controller.state.ControllerState.getRootViewPortFromRequest(ControllerState.java:788)
    at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:185)
    at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:79)
    at oracle.adfinternal.controller.application.AdfcConfigurator.beginRequest(AdfcConfigurator.java:53)
    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl._startConfiguratorServiceRequest(GlobalConfiguratorImpl.java:562)
    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.beginRequest(GlobalConfiguratorImpl.java:212)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:174)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at main.java.com.dairynet.pts.util.ApplicationSessionExpiryFilter.doFilter(ApplicationSessionExpiryFilter.java:37)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at nagiworld.net.filters.gzip.GZIPFilter.doFilter(Unknown Source)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.net.ProtocolException: EOF after reading only: '0' of: '16' promised bytes, out of which at least: '0' were already buffered
    at weblogic.servlet.internal.PostInputStream.complain(PostInputStream.java:93)
    at weblogic.servlet.internal.PostInputStream.read(PostInputStream.java:179)
    at weblogic.servlet.internal.ServletInputStreamImpl.read(ServletInputStreamImpl.java:228)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.mergePostParams(ServletRequestImpl.java:2118)
    ... 43 more>
    <Nov 8, 2013 2:26:19 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    [02:28:40 PM] Updated /C:/Users/kri/AppData/Roaming/JDeveloper/system11.1.2.3.39.62.76.1/o.j2ee/drs/PTS_MavenProjectTrackingSys/PTS_ViewControllerWebApp.war
    <Nov 8, 2013 2:28:48 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:29:00 PM CST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 127.0.0.1:57,697 during the configured idle timeout of 5 secs>
    <Nov 8, 2013 2:29:00 PM CST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 127.0.0.1:57,696 during the configured idle timeout of 5 secs>
    <Nov 8, 2013 2:29:00 PM CST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 127.0.0.1:57,698 during the configured idle timeout of 5 secs>
    <Nov 8, 2013 2:29:05 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:29:10 PM CST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 127.0.0.1:57,704 during the configured idle timeout of 5 secs>
    <Nov 8, 2013 2:29:19 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    [02:31:19 PM] Updated /C:/Users/kri/AppData/Roaming/JDeveloper/system11.1.2.3.39.62.76.1/o.j2ee/drs/PTS_MavenProjectTrackingSys/PTS_ViewControllerWebApp.war
    <Nov 8, 2013 2:31:46 PM CST> <Notice> <Stdout> <BEA-000000> <<GlobalConfiguratorImpl> <_startConfiguratorServiceRequest>
    weblogic.utils.NestedRuntimeException: Cannot parse POST parameters of request: '/PTS/faces/projectPlan-task-flow/projectPlan'
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.mergePostParams(ServletRequestImpl.java:2144)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.parseQueryParams(ServletRequestImpl.java:2024)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.getQueryParams(ServletRequestImpl.java:1918)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.getParameter(ServletRequestImpl.java:1995)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.access$800(ServletRequestImpl.java:1817)
    at weblogic.servlet.internal.ServletRequestImpl.getParameter(ServletRequestImpl.java:804)
    at javax.servlet.ServletRequestWrapper.getParameter(ServletRequestWrapper.java:169)
    at org.apache.myfaces.trinidadinternal.context.external.ServletRequestParameterMap.getAttribute(ServletRequestParameterMap.java:43)
    at org.apache.myfaces.trinidadinternal.context.external.ServletRequestParameterMap.getAttribute(ServletRequestParameterMap.java:31)
    at org.apache.myfaces.trinidadinternal.context.external.AbstractAttributeMap.get(AbstractAttributeMap.java:73)
    at oracle.adfinternal.controller.state.ControllerState.getRootViewPortFromRequest(ControllerState.java:788)
    at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:185)
    at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:79)
    at oracle.adfinternal.controller.application.AdfcConfigurator.beginRequest(AdfcConfigurator.java:53)
    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl._startConfiguratorServiceRequest(GlobalConfiguratorImpl.java:562)
    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.beginRequest(GlobalConfiguratorImpl.java:212)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:174)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at main.java.com.dairynet.pts.util.ApplicationSessionExpiryFilter.doFilter(ApplicationSessionExpiryFilter.java:37)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at nagiworld.net.filters.gzip.GZIPFilter.doFilter(Unknown Source)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.net.ProtocolException: EOF after reading only: '0' of: '16' promised bytes, out of which at least: '0' were already buffered
    at weblogic.servlet.internal.PostInputStream.complain(PostInputStream.java:93)
    at weblogic.servlet.internal.PostInputStream.read(PostInputStream.java:179)
    at weblogic.servlet.internal.ServletInputStreamImpl.read(ServletInputStreamImpl.java:228)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.mergePostParams(ServletRequestImpl.java:2118)
    ... 43 more>
    <Nov 8, 2013 2:32:06 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:32:12 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:33:23 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:33:35 PM CST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 127.0.0.1:57,740 during the configured idle timeout of 5 secs>
    <Nov 8, 2013 2:33:35 PM CST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 127.0.0.1:57,738 during the configured idle timeout of 5 secs>
    <Nov 8, 2013 2:33:35 PM CST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 127.0.0.1:57,739 during the configured idle timeout of 5 secs>
    <Nov 8, 2013 2:33:59 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:37:13 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:37:17 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    [02:38:43 PM] Updated /C:/Users/kri/AppData/Roaming/JDeveloper/system11.1.2.3.39.62.76.1/o.j2ee/drs/PTS_MavenProjectTrackingSys/PTS_ViewControllerWebApp.war
    <Nov 8, 2013 2:38:48 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:40:54 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:41:00 PM CST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 127.0.0.1:57,790 during the configured idle timeout of 5 secs>
    <Nov 8, 2013 2:46:53 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    [02:50:22 PM] Updated /C:/Users/kri/AppData/Roaming/JDeveloper/system11.1.2.3.39.62.76.1/o.j2ee/drs/PTS_MavenProjectTrackingSys/PTS_ViewControllerWebApp.war
    <Nov 8, 2013 2:50:43 PM CST> <Notice> <Stdout> <BEA-000000> <<GlobalConfiguratorImpl> <_startConfiguratorServiceRequest>
    weblogic.utils.NestedRuntimeException: Cannot parse POST parameters of request: '/PTS/faces/projectPlan-task-flow/projectPlan'
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.mergePostParams(ServletRequestImpl.java:2144)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.parseQueryParams(ServletRequestImpl.java:2024)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.getQueryParams(ServletRequestImpl.java:1918)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.getParameter(ServletRequestImpl.java:1995)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.access$800(ServletRequestImpl.java:1817)
    at weblogic.servlet.internal.ServletRequestImpl.getParameter(ServletRequestImpl.java:804)
    at javax.servlet.ServletRequestWrapper.getParameter(ServletRequestWrapper.java:169)
    at org.apache.myfaces.trinidadinternal.context.external.ServletRequestParameterMap.getAttribute(ServletRequestParameterMap.java:43)
    at org.apache.myfaces.trinidadinternal.context.external.ServletRequestParameterMap.getAttribute(ServletRequestParameterMap.java:31)
    at org.apache.myfaces.trinidadinternal.context.external.AbstractAttributeMap.get(AbstractAttributeMap.java:73)
    at oracle.adfinternal.controller.state.ControllerState.getRootViewPortFromRequest(ControllerState.java:788)
    at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:185)
    at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:79)
    at oracle.adfinternal.controller.application.AdfcConfigurator.beginRequest(AdfcConfigurator.java:53)
    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl._startConfiguratorServiceRequest(GlobalConfiguratorImpl.java:562)
    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.beginRequest(GlobalConfiguratorImpl.java:212)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:174)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at main.java.com.dairynet.pts.util.ApplicationSessionExpiryFilter.doFilter(ApplicationSessionExpiryFilter.java:37)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at nagiworld.net.filters.gzip.GZIPFilter.doFilter(Unknown Source)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.net.ProtocolException: EOF after reading only: '0' of: '16' promised bytes, out of which at least: '0' were already buffered
    at weblogic.servlet.internal.PostInputStream.complain(PostInputStream.java:93)
    at weblogic.servlet.internal.PostInputStream.read(PostInputStream.java:179)
    at weblogic.servlet.internal.ServletInputStreamImpl.read(ServletInputStreamImpl.java:228)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.mergePostParams(ServletRequestImpl.java:2118)
    ... 43 more>
    <Nov 8, 2013 2:50:43 PM CST> <Notice> <LoggingService> <BEA-320400> <The log file C:\Users\kri\AppData\Roaming\JDeveloper\system11.1.2.3.39.62.76.1\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Nov 8, 2013 2:50:43 PM CST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Users\kri\AppData\Roaming\JDeveloper\system11.1.2.3.39.62.76.1\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log03209. Log messages will continue to be logged in C:\Users\kri\AppData\Roaming\JDeveloper\system11.1.2.3.39.62.76.1\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log.>
    <Nov 8, 2013 2:50:43 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:50:52 PM CST> <Notice> <Stdout> <BEA-000000> <<GlobalConfiguratorImpl> <_startConfiguratorServiceRequest>
    weblogic.utils.NestedRuntimeException: Cannot parse POST parameters of request: '/PTS/faces/dashboard.jsf'
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.mergePostParams(ServletRequestImpl.java:2144)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.parseQueryParams(ServletRequestImpl.java:2024)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.getQueryParams(ServletRequestImpl.java:1918)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.getParameter(ServletRequestImpl.java:1995)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.access$800(ServletRequestImpl.java:1817)
    at weblogic.servlet.internal.ServletRequestImpl.getParameter(ServletRequestImpl.java:804)
    at javax.servlet.ServletRequestWrapper.getParameter(ServletRequestWrapper.java:169)
    at org.apache.myfaces.trinidadinternal.context.external.ServletRequestParameterMap.getAttribute(ServletRequestParameterMap.java:43)
    at org.apache.myfaces.trinidadinternal.context.external.ServletRequestParameterMap.getAttribute(ServletRequestParameterMap.java:31)
    at org.apache.myfaces.trinidadinternal.context.external.AbstractAttributeMap.get(AbstractAttributeMap.java:73)
    at oracle.adfinternal.controller.state.ControllerState.getRootViewPortFromRequest(ControllerState.java:788)
    at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:185)
    at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:79)
    at oracle.adfinternal.controller.application.AdfcConfigurator.beginRequest(AdfcConfigurator.java:53)
    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl._startConfiguratorServiceRequest(GlobalConfiguratorImpl.java:562)
    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.beginRequest(GlobalConfiguratorImpl.java:212)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:174)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at main.java.com.dairynet.pts.util.ApplicationSessionExpiryFilte

    Frank,
    I do not get this error when I run the application on the Weblogic standalone server. I do not get this error when I run the application on my integrated weblogic server, unless I run it is debug mode. I do get it on my integrated weblogic server if I run in debug mode.
    Can you please give me an idea of where I can look for settings on the other weblogic servers where this is happening to see if I can chase this down? I am not a weblogic server admin by any means, but I have looked at the Debug tab for the server to see if I can see anything enabled. Unfortunately, I may not be looking in the right place to know if there is some kind of debug setting enabled.
    Any assistance would be greatly appreciated! This is happening to our users on our production server as well.
    Thank you!

  • Trying to reinstall cs4 on my old G5.  doesnt recognize previous version when I select it from drop down menu and put in serial #

    I'm trying to reinstall CS4 on my G5, but when I put in the serial number it doesn't recognize it.  I installed Creative suite premium without trouble but can't get beyond that. My G5 isn't an Intel processor so cant go out and buy new software.  I have discs and sn #'s.

    Piper and me it looks like you have a full version of Photoshop CS4 registered under this account.  Have you tried downloading a fresh copy of the installation files from Download CS4 products?  If so is there any event which occurred on this Mac which is leading you to need to reinstall Photoshop CS4?

  • A box with a blue outline appeared in my bookmark drop-down menu. I can't get rid of it, and it obstructs the view of the bookmarks as I scroll up or down. Help!

    I was trying to bookmark a page, using the "Choose" menu in the bookmarks. I must have touched a key by accident, and a box with a blue outline & the name of one of my folders appeared in my bookmark drop-down menu. At first the box contained the folder name, then I was trying to delete the box, and erase the name, thinking it might get rid of the box, but it didn't. I can't get rid of this box! It obstructs the view of what is underneath. It stays in the same position as I scroll up & down in the drop-down menu, and it hides what is underneath. Please help me get rid of this box. It is driving me crazy! Thanks!

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    See also:
    *http://kb.mozillazine.org/Corrupt_localstore.rdf

Maybe you are looking for