Try again: jsp:include fails with NPE in ValueBindingImpl

JSF 1.1, RichFaces 3.1.3, WebLogic 9.2.2.
I asked about this a couple of weeks ago, but I didn't get any useful responses.
I have a simple "toy" application using a tabpanel that works fine right now. There is one tab that I will want to repeat several times, with only variations in the data in the fields (and the tab title). So, I copied the current template of that tab into an include file and I'm trying to include it with "jsp:include" from the original page, with a parameter. I've read all the suggestions about how to get jsp:include working with JSF, but it still doesn't work.
When I display the page, I just get this:
java.lang.NullPointerException
     at com.sun.faces.el.ValueBindingImpl.(ValueBindingImpl.java:98)
     at com.sun.faces.application.ApplicationImpl.createValueBinding(ApplicationImpl.java:292)
     at javax.faces.webapp.UIComponentTag.setProperties(UIComponentTag.java:890)
     at org.ajax4jsf.webapp.taglib.UIComponentTagBase.setProperties(UIComponentTagBase.java:80)
     at org.ajax4jsf.webapp.taglib.HtmlComponentTagBase.setProperties(HtmlComponentTagBase.java:78)
     at org.richfaces.taglib.TabTag.setProperties(TabTag.java:568)
     at javax.faces.webapp.UIComponentTag.createComponent(UIComponentTag.java:1017)
     at javax.faces.webapp.UIComponentTag.createChild(UIComponentTag.java:1036)
     at javax.faces.webapp.UIComponentTag.findComponent(UIComponentTag.java:749)
     at javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java:429)
     at jsp_servlet.__main._jsp__tag42(__main.java:1603)
...more...The JSP code for the tab looks like this:
<rich:tab id="property0"
            name="#{ratingRequest.propertyList[0].propertyID}"
            label="Property: #{ratingRequest.propertyList[0].propertyID}"
            rendered="#{ratingRequest.propertyList[0].used}">
     <f:subview id="propertysubview0">
          <jsp:include page="/faces/propertyTab.jsp">
               <jsp:param name="propertyIndex" value="0" />
          </jsp:include>
     </f:subview>
</rich:tab>The file this tries to include is this:
<%@ taglib uri="https://ajax4jsf.dev.java.net/ajax" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<f:subview id="includedPropertyPage">
     <h:panelGrid id="propertyPanelGrid" columns="3">
          <h:outputText id="propertyIDOut" value="Property ID"/>
          <h:inputText id="propertyIDIn"
                          value="#{ratingRequest.propertyList[0].propertyID}">
               <a4j:support id="propertyIDInSupport" event="onchange" reRender="propertyTable"/>
          </h:inputText>
          <rich:message for="propertyIDIn" showDetail="true"/>
          <h:outputText id="valueOut" value="Value"/>
          <h:inputText id="valueIn"
                          value="#{ratingRequest.propertyList[0].value}">
               <a4j:support id="valueInSupport" event="onchange" reRender="propertyTable"/>
          </h:inputText>
          <rich:message for="valueIn" showDetail="true"/>
     </h:panelGrid>
</f:subview>For more background, here's the code in the tab before I changed it to use jsp:include, and remember that this works:
<rich:tab id="property0"
            name="#{ratingRequest.propertyList[0].propertyID}"
            label="Property: #{ratingRequest.propertyList[0].propertyID}"
            rendered="#{ratingRequest.propertyList[0].used}">
     <h:panelGrid id="property0PanelGrid" columns="3">
          <h:outputText id="propertyIDOut" value="Property ID"/>
          <h:inputText id="propertyIDIn" value="#{ratingRequest.propertyList[0].propertyID}">
               <a4j:support id="propertyIDInSupport" event="onchange" reRender="propertyTable"/>
          </h:inputText>
          <rich:message for="propertyIDIn" showDetail="true"/>
          <h:outputText id="valueOut" value="Value"/>
          <h:inputText id="valueIn" value="#{ratingRequest.propertyList[0].value}">
               <a4j:support id="valueInSupport" event="onchange" reRender="propertyTable"/>
          </h:inputText>
          <rich:message for="valueIn" showDetail="true"/>
     </h:panelGrid>
</rich:tab>I don't have the source for the JSF implementation, but when I disassemble the class with the NPE, I see that the exception occurs in the ValueBindingImpl constructor that takes a Application object, and the NPE might occur because either the FacesContext or ExpressionInfoInstancePool is null (I think the former is the most likely, but I don't know why).

Done. The results are ironically very similar to what happened with the BEA implementation, but I have a feeling this is something else, because it's failing not on the included page, but on a value binding on the main page. Perhaps I'm missing some property settings in my web.xml while using the RI.
The entire stack trace is pretty large. I would have only included the excerpt from the root cause, but the JSF RI stack trace seems to have some interesting info up to that point. You'll see from the code at the top of the stack that either the FacesContext or the Application is null.
org.apache.jasper.JasperException: Exception in JSP: /index.jsp:2
1: <% session.invalidate(); %>
2: <jsp:forward page="/faces/main.jsp"/>
Stacktrace:
     org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:451)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:355)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
root cause
org.apache.jasper.JasperException: Exception in JSP: /main.jsp:104
101:                <rich:tab id="ratings" name="ratings" label="Ratings">
102:                     <h:panelGrid id="ratingsPanelGrid" columns="3">
103:                          <h:outputText id="field3Out" value="Field3"/>
104:                          <h:inputText id="field3In" value="#{ratingRequest.field3}"/>
105:                          <rich:message for="field3In" showDetail="true" passedLabel=" "/>
106:                          <a4j:commandButton id="processRequest" value="Submit Request"
107:                                             action="#{ratingRequest.processRequest}"
Stacktrace:
     org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:451)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:355)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
     com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)
     com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)
     org.ajax4jsf.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:108)
     org.ajax4jsf.application.AjaxViewHandler.renderView(AjaxViewHandler.java:216)
     com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)
     com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
     com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)
     javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)
     org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:141)
     org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:281)
     org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:686)
     org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:656)
     org.apache.jsp.index_jsp._jspService(index_jsp.java:45)
     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
root cause
javax.servlet.ServletException: javax.servlet.jsp.JspException: null
     org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:837)
     org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:774)
     org.apache.jsp.main_jsp._jspService(main_jsp.java:134)
     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
     com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)
     com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)
     org.ajax4jsf.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:108)
     org.ajax4jsf.application.AjaxViewHandler.renderView(AjaxViewHandler.java:216)
     com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)
     com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
     com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)
     javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)
     org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:141)
     org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:281)
     org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:686)
     org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:656)
     org.apache.jsp.index_jsp._jspService(index_jsp.java:45)
     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
root cause
java.lang.NullPointerException
     com.sun.faces.util.Util.getValueBinding(Util.java:987)
     com.sun.faces.taglib.html_basic.InputTextTag.setProperties(InputTextTag.java:265)
     javax.faces.webapp.UIComponentTag.createComponent(UIComponentTag.java:1027)
     javax.faces.webapp.UIComponentTag.createChild(UIComponentTag.java:1046)
     javax.faces.webapp.UIComponentTag.findComponent(UIComponentTag.java:761)
     javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java:451)
     com.sun.faces.taglib.html_basic.InputTextTag.doStartTag(InputTextTag.java:506)
     org.apache.jsp.main_jsp._jspx_meth_h_005finputText_005f3(main_jsp.java:1375)
     org.apache.jsp.main_jsp._jspx_meth_h_005fpanelGrid_005f3(main_jsp.java:1309)
     org.apache.jsp.main_jsp._jspx_meth_rich_005ftab_005f3(main_jsp.java:1278)
     org.apache.jsp.main_jsp._jspx_meth_rich_005ftabPanel_005f0(main_jsp.java:950)
     org.apache.jsp.main_jsp._jspx_meth_a4j_005fform_005f0(main_jsp.java:208)
     org.apache.jsp.main_jsp._jspx_meth_f_005fview_005f0(main_jsp.java:162)
     org.apache.jsp.main_jsp._jspService(main_jsp.java:124)
     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
     com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)
     com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)
     org.ajax4jsf.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:108)
     org.ajax4jsf.application.AjaxViewHandler.renderView(AjaxViewHandler.java:216)
     com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)
     com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
     com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)
     javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)
     org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:141)
     org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:281)
     org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:686)
     org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:656)
     org.apache.jsp.index_jsp._jspService(index_jsp.java:45)
     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)

Similar Messages

  • Not all of my photos upload to my website when I publish it. when my site finishes publising I get an error that says, "There was an error communicating with the FTP server. Try again later, or check with your service provider."

    Not all of my photos upload to my website when I publish it. when my site finishes publising I get an error that says, "There was an error communicating with the FTP server. Try again later, or check with your service provider."

    I am publishing directly to an FTP server (option 1).  Is this the optimal method or should I be publishing to a folder and then (how do/would I?) publish to my hosting domain?
    I'm wondering if this has really anything to do with the publishing process, or whether it just has to do with the photos and/or the photo albums.  I've deleted the photo albums with the missing pictures from my site on iweb thinking a file might be corrupt. (I'm getting the albums from iphoto -- drag/drop method into iweb) I then replaced these albums with the same albums as the previous ones from iphoto and then published my site again -- and the EXACT same photos were once again missing in the NEW albums as were missing in the old albums...
    Maybe it is a publishing issue, or it could be a photo/file issue.  However, these albums aren't very large -- the largest containing 135 photos --
    Please! if you have any suggestions or ideas as to what is happening I would be greatly appreciative!
    I'm pulling my hair out here trying to diagnose the problem...

  • Trying to publsh changes to my website. I get a message "There was an error communicating with the FTP server. Try again later, or check with your service provider." I did, and all my settings are correct, but still cannot publish

    Trying to publsh changes to my website. I get a message "There was an error communicating with the FTP server. Try again later, or check with your service provider." I did, and all my settings are correct, but still cannot publish.
    Any other ideas?

    Most likely you are suffering from a bug in iWeb that doesn't let you publish websites if an image you have added to your site begins with space. You can either search for that image and remove it.
    <Link Edited by Host>

  • Publish error There was an error communicating with the FTP server. Try again later, or check with your service provider.

    OK! So I got everything filled out right to publish my iWeb site with iCloud now but after it looks like everything is fine this error pops up REPEATLY!:
    PUBLISH ERROR There was an error communicating with the FTP server. Try again later, or check with your service provider.
    Is this an Apple problem or with my server Netfirms???

    Yeah no sorry not the answer.  I have my own online hosting unlimited space and bandwidth.
    It seems to be linked to teh podcast image.  It's very strange...

  • Hello, i need help i'm doing experiment on ilab i have managed to put my experiment on the platform but when i try to launch it fails with an error 404 that the page not found. any one with idea of what i should do to solve this problem. thank you

    hello, i need help i'm doing experiment on ilab i have managed to put my experiment on the platform but when i try to launch it fails with an error 404 that the page not found. any one with idea of what i should do to solve this problem. thank you

    hey Sally,
    Can you elaborate on the ilab and what you are trying to do? I have found this page to explain error 404, but I am not sure if it directly applies to  you
    http://digital.ni.com/public.nsf/allkb/D0998D3734926FA08625782300016E40?OpenDocument
    Regards,
    A. Zaatari
    National Instruments
    Applications Engineer

  • Jsp:include fails when referencing a struts bean:define bean

    When I request the jsp listed at the bottom, I get the following error:
              cannot resolve symbol
              symbol : variable pageTemplate
              The jsp works as is in both Tomcat and Resin.
              I know the pageTemplate bean gets defined by struts, because if I remove
              (1), I get the correct output of (2).
              Does WL precompile the pages differently than Tomcat/Resin?
              We know tiles can provide similar functionality, but for various reasons,
              this is the method that seems preferred.
              <%@ page contentType="text/html;charset=UTF-8" language="java" %>
              <%@ page import = "com.stabilia.site.*" %>
              <%@ page errorPage="/error.jsp" %>
              <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
              <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
              <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
              <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %>
                   <bean:define id="siteConfig" name="siteConfig" scope="session"
                        type="com.stabilia.site.SiteConfiguration"/>
                   <bean:define id="pageTemplate" name="siteConfig"
              property="currentPageTemplate"
                        type="com.stabilia.site.PageTemplate" scope="session"/>
                   (1)<jsp:include page="<%=pageTemplate.getTemplate()%>" />
                   (2)template:<bean:write name="pageTemplate" property="template"/>
              

    I know that in certain versions of WLS the Tag AT_END variables were not getting
              defined properly. Please contact support and ask for a patch referencing this
              with your current version.
              Sam
              Daren Desjardins wrote:
              > To be more specific, I found that I cannot use runtime expressions that
              > involve a bean defined by Struts. If the bean were declared in the
              > following way, it works.
              >
              > <%
              > SiteConfiguration siteconfig = (SiteConfiguration)
              > session.getAttribute(SiteConfiguration.SESSION_KEY);
              > PageTemplate pagetemplate = siteconfig.getCurrentPageTemplate();
              > %>
              > <jsp:include page="<%=pagetemplate.getTemplate()%>" flush="true"/>
              

  • HT4623 Update unavailable, try again later what's with that?

    Okay IOS7 is here but after downloading it will not install. I get a pop up that says installation unavailable at this time try again later.  I thought it was here. Why start something if you can't finish it? When will it be available?  IPhone 5 owner is upset!

    I forgot to add----this is all on my account, any purchases go through my account only, my daughter does not have a seperate account. This way I control the purchases.

  • Jsp:forward failed with 'Response already committed'

    I got a "Response already commited" error when using logic:forward or jsp:forward inside a JSP page fragment that is part of a Struts Tiles layout.
    Here is the code fragment included in the layout.jsp.
    <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
    <logic:notPresent name="user" scope="session">
         <logic:forward name="login" />
    </logic:notPresent>
    Here is the error message:
    [ServletException in:/WEB-INF/tiles/verifyLogin.jsp] Exception forwarding for name login: java.lang.IllegalStateException: Cannot forward. Response already committed. (Servlet 2.3, SRV 8.4)'

    Jsp normally buffers output in a 8k buffer and write it to the output stream (i.e. "commits") it when:
    1) it is explicitly flushed
    2) the buffer overflow
    3) an jsp include is invoked
    My code is in a layout.jsp file which is referenced in a tiles-definition. The tiles definition is tiles:inserted in a top-level jsp file. I am not sure if tiles uses jsp:include or if there is a way to get jsp:foward to work in the layout.jsp.

  • Cannot lock the page to prevent other users from editing it. Please try again later. Error with ASP pages

    Cannot lock the page to prevent other users from editing it.
    Please try again later.
    I get t his error when I try to edit ASP pages on my web
    server, I have all admin rights, anyone know a fix for this?

    App Store support. There is troubleshooting and a contact link.
    Support

  • What is the default 4 digit factory security code on apple devices please ? is it 0000, 1111 ? i now have to wait 60 minutes to try again after 8 failed attempts. I dont believe i have set this code

    can someone help please? I am trying to do a factory restore. I have tried the reboot/plug in to laptop and do it through itunes method and i got a failed message saying there was a glitch with the phone. I have never set a 4 digit security code in the settings menu where I could reset the device. I assume that there is a factory set 4 digit password as I have now tried every number that I would have used if I had set it myself. They are usual 0000, 1111 or something similar.
    I really need this number to proceed without having to visit an apple store over 100 miles away.
    thank you

    I have never heard of a Factory 4-digit passcode.  If you are the original owner of the iPhone you will need to go into DFU Mode...
    First:  Put the device into DFU mode.
    DFU MODE STEPS
    Hold the Power Button (3 secs)
    Continue holding the power button and also hold the home button (15 secs)
    Release the power button while continuing to hold the home button (10 secs)
    Your device should prompt with the "Connect to iTunes Screen"
    Second: Plug it into your computer and open iTunes. It will either prompt to restore and up date or you can manually restore using the following steps. IOS Restore Steps Before restoring:
    Verify that you are using the latest version of iTunes.
    Back up your device.
    Transfer and sync content to your computer.
    Restoring your iOS device
    Connect your device to your computer.
    Select your iPhone, iPad, or iPod touch when it appears in iTunes. Select the Summary tab, and click the Restore button.
    Click Restore.
    After a restore, the iOS device restarts. You should then see "Slide to set up". Follow the steps in the iOS Setup Assistant.
    If needed, restore your device from a previous backup.

  • 'This item is currently being modified. Please try again later.' - Issue with buying app

    I am trying to purchase the Mobile Mouse app from itunes on my ipad 2 and keep getting the above error. Does anyone know how to resolve this? I have tried to buy the app in itunes and I recieved the same error, turned my ipad off and on again, signed out and back into itunes, and still no luck. Any ideas?

    Forgot to mention, I am running os 5.0.1 and itunes 10.

  • JSP compilation failed with java.lang.IllegalStateException: zip file close

    Hi,
    I have a web app successfully deployed on Weblogic7.0 and HP UX 11.0, which uses jdk 1.3.1_02
    In this application, when i invoke a jsp (this exception occurs on any jsp not to any specific jsp), i found the following exception trace on wl-domain.log file and server crashes: -
    java.lang.IllegalStateException: zip file closed
         at java.util.zip.ZipFile.getEntry(Unknown Source)
         at weblogic.servlet.internal.WarClassFinder.getSource(WarClassFinder.java, Compiled Code)
         at weblogic.servlet.internal.WarClassFinder.getSource(WarClassFinder.java, Compiled Code)
         at weblogic.utils.classloaders.MultiClassFinder.getSource(MultiClassFinder.java, Compiled Code)
         at weblogic.utils.classloaders.MultiClassFinder.getSource(MultiClassFinder.java, Compiled Code)
         at weblogic.utils.classloaders.MultiClassFinder.getClassSource(MultiClassFinder.java, Compiled Code)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.upToDate(ChangeAwareClassLoader.java, Compiled Code)
         at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java, Compiled Code)
         at weblogic.servlet.internal.ServletStubImpl.checkForReload(ServletStubImpl.java, Compiled Code)
         at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java, Compiled Code)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java, Compiled Code)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java, Compiled Code)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java, Compiled Code)
         at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java, Compiled Code)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java, Compiled Code)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java, Compiled Code)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java, Compiled Code)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)
    Can anyone help me in figuring out this problem urgently?
    thanks in advance
    manoj

    Hi Manoj.I am also getting the same problem in the weblogicserver version-6.1 SP2.It is also using the jdk 1.31.
    here is my stack trace.Help i smuch appreciated.!!
    java.lang.IllegalStateException: zip file closed
         at java.util.zip.ZipFile.getEntry(ZipFile.java:141)
         at weblogic.servlet.internal.WarClassFinder.getSource(WarClassFinder.java:197)
         at weblogic.servlet.internal.WarClassFinder.getSource(WarClassFinder.java:106)
         at weblogic.utils.classloaders.MultiClassFinder.getSource(MultiClassFinder.java:53)
         at weblogic.utils.classloaders.MultiClassFinder.getSource(MultiClassFinder.java:53)
         at weblogic.utils.classloaders.MultiClassFinder.getClassSource(MultiClassFinder.java:45)
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:265)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:156)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:65)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:297)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:253)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:43)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:313)
         at org.exolab.castor.xml.Unmarshaller.unmarshal(Unknown Source)
         at org.exolab.castor.xml.Unmarshaller.unmarshal(Unknown Source)
         at org.exolab.castor.xml.Unmarshaller.unmarshal(Unknown Source)
         at com.slfc.framework.service.ServiceMessageFactory.createServiceResult(ServiceMessageFactory.java:58)
         at sunlife.nexus.admin.SecPro.establishSupportSession(Unknown Source)
         at sunlife.nexus.admin.Page_secPro_extAppLoader.processPageRequest(Unknown Source)
         at sunlife.wis.servlets.WISServlet.redirect(WISServlet.java:63)
         at sunlife.wis.servlets.WISServlet.doExec(WISServlet.java:107)
         at sunlife.wis.servlets.WISServlet.doGet(WISServlet.java:70)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2495)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2204)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

  • Patch 9655006 failed with code 135 when applying to Oracle Restart

    Hi all,
    I install Oracle RAC single node version 11.2.0.1 on Linux (kernel 2.6.18).
    I try to apply patch 9655006 (prerequis for upgrade to 11.2.0.2).
    Everything is OK for grid applying with success.
    When I apply this patch to oracle db home, I get :
    Oracle Interim Patch Installer version 11.2.0.1.5
    Copyright (c) 2010, Oracle Corporation. All rights reserved.
    Argument(s) Error... Given 'ocmrf' file does not exists.
    Please check the arguments and try again.
    OPatch failed with error code 135
    I've given the complete path and filename (same as for grid applying).
    I've found A document [ID 1283954.1], but not useful in my case.
    Any ideas for workaround ?
    TIA
    yang
    ps. this does not occur when applying to a RAC with 2 nodes.

    yang wrote:
    Hi all,
    I install Oracle RAC single node version 11.2.0.1 on Linux (kernel 2.6.18).
    I try to apply patch 9655006 (prerequis for upgrade to 11.2.0.2).
    Everything is OK for grid applying with success.
    When I apply this patch to oracle db home, I get :
    Oracle Interim Patch Installer version 11.2.0.1.5
    Copyright (c) 2010, Oracle Corporation. All rights reserved.
    Argument(s) Error... Given 'ocmrf' file does not exists.
    Please check the arguments and try again.
    OPatch failed with error code 135
    I've given the complete path and filename (same as for grid applying).
    I've found A document [ID 1283954.1], but not useful in my case.
    Any ideas for workaround ?
    TIA
    yang
    ps. this does not occur when applying to a RAC with 2 nodes.Hello Yang,
    Could you try it again with debug info? Before you run the opatch, run the following:
    $ set OPATCH_DEBUG=TRUE; export OPATCH_DEBUG
    Regards
    Gokhan

  • Mac App Store: Your session has timed out. Try again.

    Whenever i try to do anything in the Mac AppStore, i get the message Your session has timed out. Try again.
    I tried with and without two step verification. It all runs on a MacBook Pro and Yosemite - no updates available in the store to install. Updates, although with a workaround do install, weirdly enough.
    I am sorry if this question was asked before. Also the search here does not work today for me. Start feeling like i am using windows ME again…
    This is getting really frustrating.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this test is to determine whether the problem is localized to your user account. Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault in OS X 10.7 or later, then you can’t enable the Guest account. The "Guest User" login created by "Find My Mac" is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.

  • Since upgrading to Yosemite I am getting frequently "safari can't open the page (blank) because the server unexpectedly dropped the connection this sometimes occurs when the server is busy. wait and then try again"

    Since upgrading to Yosemite on my iMac I am frequently getting "safari can't open the page (blank) because the server unexpectedly dropped the connection this sometimes occurs when the server is busy. wait and then try again". This is with both a WiFi and Ethernet connection. The server is working fine from other devices using WiFi onto it such as iPhones, iPads, MacBook (which is also on Yosemite) so don't believe its an issue with the server.
    I am also noticing page load very slowly when this problem is not occurring.

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

Maybe you are looking for

  • Movieclip jittery when audio plays

    The playback of sound effects from one of my game object's movieclips (such as an alien shooting) is causing other game objects (i.e. the walking hero) to judder in their movement, only while that audio is playing from the other object. But when I de

  • OIM 11g installation : Create Oracle Internet Directory Failed

    Hi, everyone, I have try to install OIM 11g for many times , but also error happened.... I did like follow: 1, install OS, window 2008 R2 64bit.(I have install oracle database 11g on another machine.) 2, install weblogic 10.3.3 (without config domain

  • CS5 upgrade re install problems

    Hi I have a new macbook pro and I am trying to re install my photoshop CS5,which is an upgrade from CS2,on this from the upgrade disc. As this is an upgrade disc I require the original CS2 to install. I am told I cannot use my copy of CS2 from my old

  • IPad DEAD after iOS 4.2 upgrade

    I got my iPad during the Summer (got it as a gift during a corporate trip to China). I've been using it since, no problems at all. A few days ago I upgraded the OS to the new 4.2 version and in the beginning everything was ok. At some random point, I

  • Can you track the time of logged users in Lookout?

    I would like to know if Lookout is capable of logging operators, maintenance, tool room, and set up personnel on and off a machine with the intent of exporting the information to track time?