Response sendRedirect is not working in JSF

Hi,
I am getting an error on calling response.sendRedirect() method in my backing bean. This piece of code is for redirecting:
            if (userCredentials.isExpired() || userCredentials.isInThreshold()  ) { // Just checking for some boundary conditions
                ViewHandler vh = ctx.getApplication().getViewHandler();
                String viewUrl = vh.getActionURL(ctx, PATH_FOR_CHANGE_USER_PAGE);               
                ExternalContext ectx = ctx.getExternalContext();
                HttpServletResponse response =
                    (HttpServletResponse)ectx.getResponse();       
                response.sendRedirect(viewUrl);   /// This is where the error is thrown.
            }Here is the stack trace:
SEVERE: Error Rendering View[/xhtml/home/AppHomePage.xhtml]
javax.faces.el.EvaluationException: /layout/header.xhtml @27,78 value="#{UserInformation.userName}": Error getting property 'userName' from bean of type com.mrc.web.infrastructure.login.UserInfo: java.lang.IllegalStateException: Response has already been committed, be sure not to write to the OutputStream or to trigger a commit due to any other action before calling this method.
     at com.sun.facelets.el.LegacyValueBinding.getValue(LegacyValueBinding.java:60)
     at javax.faces.component.UIOutput.getValue(UIOutput.java:167)
     at com.sun.faces.renderkit.html_basic.HtmlBasicInputRenderer.getValue(HtmlBasicInputRenderer.java:102)
     at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.getCurrentValue(HtmlBasicRenderer.java:221)
     at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeEnd(HtmlBasicRenderer.java:199)
     at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:740)
     at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:304)
     at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:321)
     at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.PanelPartialRootRenderer.renderContent(PanelPartialRootRenderer.java:64)
     at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.BodyRenderer.renderContent(BodyRenderer.java:142)
     at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.PanelPartialRootRenderer.encodeAll(PanelPartialRootRenderer.java:119)
     at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.BodyRenderer.encodeAll(BodyRenderer.java:78)
     at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:224)
     at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:693)
     at com.sun.facelets.tag.jsf.ComponentSupport.encodeRecursive(ComponentSupport.java:252)
     at com.sun.facelets.tag.jsf.ComponentSupport.encodeRecursive(ComponentSupport.java:249)
     at com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:594)
     at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:182)
     at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)
     at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
     at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)
     at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:262)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:219)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:173)
     at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:644)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391)
     at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:908)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:458)
     at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:226)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:127)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:116)
     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
     at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
     at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
     at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
     at java.lang.Thread.run(Thread.java:595)
*Caused by: java.lang.IllegalStateException: Response has already been committed, be sure not to write to the OutputStream or to trigger a commit due to any other action before calling this method.*
     at com.evermind.server.http.EvermindHttpServletResponse.sendRedirect(EvermindHttpServletResponse.java:1545)
     at javax.servlet.http.HttpServletResponseWrapper.sendRedirect(HttpServletResponseWrapper.java:170)
     at com.sun.faces.context.ExternalContextImpl.redirect(ExternalContextImpl.java:357)
     at org.apache.myfaces.trinidad.context.ExternalContextDecorator.redirect(ExternalContextDecorator.java:253)
     at com.mrc.web.infrastructure.login.UserInfo.getPasswordThreshold(UserInfo.java:547)
     at com.mrc.web.infrastructure.login.UserInfo.getUserName(UserInfo.java:231)
     at sun.reflect.GeneratedMethodAccessor196.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.sun.faces.el.PropertyResolverImpl.getValue(PropertyResolverImpl.java:99)
     at com.sun.facelets.el.LegacyELContext$LegacyELResolver.getValue(LegacyELContext.java:141)
     at com.sun.el.parser.AstValue.getValue(AstValue.java:96)
     at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:183)
     at com.sun.facelets.el.TagValueExpression.getValue(TagValueExpression.java:71)
     at com.sun.facelets.el.LegacyValueBinding.getValue(LegacyValueBinding.java:56)
     ... 39 moreI dont think i am calling the 'sendRedirect' method anywhere before this code(if i understood the error message).
Please help me with some pointers.
Thanks,
Srikanth
Edited by: sriki79 on Jul 26, 2010 5:06 PM
Edited by: sriki79 on Jul 26, 2010 5:06 PM
Edited by: sriki79 on Jul 26, 2010 5:07 PM

Yep, content has already been flushed to the browser and then the redirect cannot work anymore. Move the redirect logic to a filter I'd say.

Similar Messages

  • Response.sendRedirect is not working for IE5.5

    Hi All,
    I am using response.sendRedirect method to go to different page from jsp file. It was working file before IE was upgraded to version 5.5. It is still working fine with Netscape.
    With IE, it remains on the same page even after executing response.sendRedirect method. IT ACTUALLY GOES TO ANOTHER PAGE AFTER SELECTING REFRESH. Could this be a CACHE problem. However, I tried to append the URL with some random number every time it executes response.sendRedirect method just to make it a different URL and still getting the same result.
    Any Help will be greatly appreciated.
    Thanks.

    Every time I clear the History Cache, It works for the first time and after that it remains on the same page.
    I tried to set the days to store the hist pages as 0.
    please let me know if any other browser settings OR program changes required.
    Thanks.

  • Response.sendRedirect doesn't work

    Hi,
    I implemented the post authentication class. I added some code to the onLoginFailed method and i am trying to redirect user for my own page and not the standard error page of opensso (IdP). When using response.sendRedirect("/my_page") i got an error message telling me that redirection has failed because record already committed.
    I think the problem is due to the original redirection done by the IdP, isn't it? Is there a solution to redirect user for my own login failure page?
    Thanks.

    How about this.
    Do a combination of the two.
    Use the post auth plugin to do your work with LDAP it has access and has all the needed information.
    Add the attributes to the ?session?header? in the post auth plugin maybe?
    Use the default failrue url you are sending them to to pull the info out of the session headers and do whatever is needed at that point?
    I would try just populating one attribute first and redirecting using the default failure url to some simple page that prints out to validate if it would work.
    J

  • Response.sendRedirect doesn't work with Internet Explorer

    I do posts like advised here: http://www.theserverside.com/tt/articles/article.tss?l=RedirectAfterPost. GET-POST-REDIRECT-GET. Now I have a problem when do redirecting to the same page in Internet Explorer. It works good with Mozilla Firefox but not with Internet Explorer. When user click to "Enable"/"Disable" link and do submit, application makes changes on the database. Changes occurs, but redirect to the page doesn't work. When I refresh page, I see that, the changes was occurred. When I use Mozilla Firefox with same JSP, there is no need to refresh page, because, redirect works. When I change redirect URL to other, for example http://www.google.com/, redirect doesn,t work in Internet Explorer too.
    Code of users.jsp JSP:
    <%@ page import="az.ub.ccs.beans.User" %>
    <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <%@ page errorPage="error.jsp" %>
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <jsp:useBean id="bc" scope="page" class="az.ub.ccs.beans.BreadCrumb" />
    <jsp:useBean id="user" scope="request" class="az.ub.ccs.beans.User"/>
    <c:if test="${sessionScope.active == null}"><c:redirect url="login.jsp" /></c:if>
    <%
       if(request.getParameter("stateAction") != null)
          int state = (request.getParameter("stateAction").equals("enable")) ? 0 : 1;
          User.changeUserState(Integer.parseInt(request.getParameter("itemID")), state);
          response.sendRedirect("users.jsp");
          //response.setStatus(HttpServletResponse.SC_SEE_OTHER);
          //response.setHeader("Location", "users.jsp");
       bc.add("Users");
    %>
    <jsp:include page="top.jsp" flush="true">
       <jsp:param name="breadCrumbString" value="${bc.breadCrumbsAsHTML}"/>
       <jsp:param name="pageTitle" value="Users"/>
    </jsp:include>
    <tr>
       <td>
          <table border="1" width="100%">
             <tr class="tableHeader">
                <td>ID</td>
                <td>&#1048;&#1084;&#1103; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;</td>
                <td>&#1051;&#1086;&#1075;&#1080;&#1085;</td>
                <td>&#1053;&#1086;&#1084;&#1077;&#1088; &#1075;&#1088;&#1091;&#1087;&#1087;&#1099;</td>
                <td>&#1053;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1077; &#1075;&#1088;&#1091;&#1087;&#1087;&#1099;</td>
                <td>Email</td>
                <td>&#1053;&#1086;&#1084;&#1077;&#1088;</td>
                <td colspan="2">&#1044;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1077;</td>
             </tr>
             <c:forEach items="${user.userList}" var="user">
             <tr>
                <td align="right">"${user.userID}"</td>
                <td><c:out value="${user.userName}"/></td>
             </c:forEach>
             <tr>
                <td colspan="7"> </td>
                <td colspan="2"><a href="addEditUser.jsp">[Add new]</a></td>
             </tr>
          </table>
          <form name="stateForm" method="post" action="users.jsp">
             <input type="hidden" name="itemID"/>
             <input type="hidden" name="stateAction"/>
          </form>
       </td>
    </tr>
    <jsp:include page="bottom.jsp" flush="true"/>

    I use HttpWatch to see request and response details. Link to the report file of HttpWatch http://tasadar8.googlepages.com/CCSHttpWatch.rar

  • ActionListener not working in JSF

    Hi
    The use case for my application is as follows:-
    CommandToolbarButton - Clicked
    Quick Logic in Backing Bean using ActionListener / LaunchListener
    Popup Dialog opens up which has some data given by above code in Backing Bean
    For this my code in jspx is
    <af:toolbar>
    <af:commandToolbarButton immediate="true"
    icon="/ico_delete.gif"
    launchListener="#{TestBean.launchListener}" partialSubmit="true">
    <af:showPopupBehavior popupId="popupDialog"/>
    </af:commandToolbarButton>
    </af:toolbar>
    <!--Pop -->
    <af:popup id="popupDialog" contentDelivery="lazyUncached">
    <f:subview id="popupSubview">
    <jsp:include page="ShowPopup.jsff"/>
    </f:subview>
    </af:popup>
    and code in the TestBean is
    public void launchListener(LaunchEvent launchEvent) {
    System.out.println("TEST");
    // Add event code here...
    But, I am not able to invoke this Listener as I am getting the TEST message. I even tried the same thing by writing a ActionListener as
    public void actionListener(ActionEvent actionEvent) {
    System.out.println("TEST");
    // Add event code here...
    Even this is not working. I have also tried to use <af:commandImageLink> instead of commandToolbarButton, but it is still not working.
    Any help on this problem will be highly appreciated.

    Hi,
    I guess, I couldn't explain my problem clearly, so re-posting the code and the query.
    JSPX Page
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=windows-1252"/>
    <f:view>
    <af:document>
    <af:form>
    <af:popup id="popupDialog">
    <af:dialog title="Test Dialog">
    <af:outputText value="TEST Dialog" />
    </af:dialog>
    </af:popup>
    <af:outputText value="test"/>
    <af:toolbar>
    <af:commandToolbarButton immediate="true" icon="/ico_delete.gif"
    launchListener="#{TestBean.launchListener}"
    partialSubmit="true"
    actionListener="#{TestBean.actionListener}">
    <af:showPopupBehavior popupId="popupDialog"/>
    </af:commandToolbarButton>
    </af:toolbar>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    Backing Bean
    public void actionListener(ActionEvent actionEvent) {
    System.out.println("actionListener called");
    // Add event code here...
    public void launchListener(LaunchEvent launchEvent) {
    System.out.println("launchListener called");
    // Add event code here...
    I want to execute some code in one of these listeners, so that I can display corresponding data in
    <af:popup id="popupDialog">
    <af:dialog title="Test Dialog">
    <af:outputText value="TEST Dialog" />
    </af:dialog>
    </af:popup>
    I have tried keeping only one Listeners(from actionListner and launcListener), but it doesn't work.
    Any help will be highly appreciated.

  • Response.sendRedirect() doesn't work immediately

    Hello,
    I'm moving my application to JDK 1.4 and IAS 10g.
    It's alright, but I noticed one problem.
    For long operation I created my way to display a "Working..." page.
    I use response.sendRedirect() to an HTML page, with the "Working..." message, that reload itself every five seconds (due to the fact that the message will be replaced, as I explained later).
    Once the operation has terminated it change a session variable that is loaded by the HTML page and it replace the "Working..." message with a "Done!" message.
    The problem is that in IAS 10g it doesn't redirect to the HTML file immediately, it seems that "wait" the operation is almost finished: il redirect to the HTML file displaying "Working...", and after the first reload of the page (5 seconds) it display "Done!".
    This is the part of the code:
    String urlToLoad = "/myApp/tools/template/cache/tempxyz.html";
    // SESSION VALUE: "Working..."
    response.sendRedirect(urlToLoad);
    response.flushBuffer();
    // OPERATIONS
    // CHANGE SESSION VALUE WITH "Done!"
    // END OF METHODThe "response.sendRedirect(urlToLoad);" instruction is executed without any error.
    I also tried to use the absolute path with "http://name_server", but it still doesn't work.
    I hope I explained my situation.
    I already read many post in this and others forums, but I didn't found any working solution.
    Thanks in advance for any suggestions,
    EP

    You could try putting your operations into a new thread... but I don't see why that would be necessary...
    String urlToLoad = "/myApp/tools/template/cache/tempxyz.html";
    // SESSION VALUE: "Working..."
    response.sendRedirect(urlToLoad);
    response.flushBuffer();
    Thread t = new Thread( new Runnable() {
      public void run() {
        // OPERATIONS
         // CHANGE SESSION VALUE WITH "Done!"
    t.start();
    // END OF METHOD(Or put the operations in a method in another class that implements the Runnable interface, ... whatever)

  • Response.sendRedirect doesn't work with IAS 10g

    Hello,
    I'm moving my application to JDK 1.4 and IAS 10g.
    It's alright, but I noticed one problem.
    For long operation I created my way to display my "Working in progress..." page.
    I create an HTML file into a cache folder and I redirect to that file that reload itself every five seconds.
    Once the operation is terminated it change a session variable that is loaded by the HTML page and it ends the "Working in progress..." message.
    The problem is that in IAS 10g it doesn't redirect to the HTML file immediately, it seems that "wait" the operation is almost finished: il redirect to the HTML file, and after 5 seconds it loads the end message of the operation.
    This is the part of the code:
    [WRITE FILE IN c:\application\tools\template\cache as tempxyz.html]
    String urlToLoad = "/myApp/tools/template/cache/tempxyz.html";
    response.sendRedirect(urlToLoad);
    [OPERATIONS]
    [CHANGE SESSION VALUE]
    -END-
    The "response.sendRedirect(urlToLoad);" instruction pass without errors.
    I hope I explained my situation.
    Thanks in advance for any suggestions,
    EP

    Thanks Qiang,
    Ive done exactly as youve said and it must be a rewriting problem as you suggested. Here is the header from accessing the servlet on the Linux host machine (IP 192.168.5.121 called 'BEAST')
    --10:12:27-- http://192.168.5.121:7780/webapp/test
    => `test'
    Connecting to 192.168.5.121:7780... connected.
    HTTP request sent, awaiting response...
    1 HTTP/1.1 302 Moved Temporarily
    2 Date: Wed, 11 May 2005 09:12:27 GMT
    3 Server: Oracle-Application-Server-10g/10.1.2.0.0 Oracle-HTTP-Server
    4 Content-Length: 183
    5 Cache-Control: private
    6 Location: http://BEAST:7779/webapp/testJ.jsp
    7 Keep-Alive: timeout=15, max=100
    8 Connection: Keep-Alive
    9 Content-Type: application/octet-stream
    Location: http://BEAST:7779/webapp/testJ.jsp [following]
    --10:12:27-- http://beast:7779/webapp/testJ.jsp
    => `testJ.jsp.3'
    Resolving beast... done.
    Connecting to beast[127.0.0.1]:7779... connected.
    That worked fine. Here is the header on my windows machine on the network ( IP 192.168.5.120) :
    HTTP/1.1 302 Moved Temporarily
    Date: Wed, 11 May 2005 09:03:21 GMT
    Server: Oracle-Application-Server-10g/10.1.2.0.0 Oracle-HTTP-Server
    Content-Length: 183
    Cache-Control: private
    Location: http://BEAST:7779/webapp/testJ.jsp
    Keep-Alive: timeout=15, max=100
    Connection: Keep-Alive
    Content-Type: application/octet-stream
    I think the problem must be that the response is telling it to redirect to BEAST (which is the name of the server) but the windows box cant resolve the name. Must be why i get the page cannot be displayed.
    The code in the servlet 'test' to redirect is just:
    response.sendRedirect("testJ.jsp");
    Any ideas would be much appreciated on how I can fix this other than setting up a local DNS server?!
    Cheers,
    Rob.

  • Response.setHeader() does not work

    Hi,
              We have not been able to set any header parameters using response.setHeader() method. Has anybody else seen this problem ? I read a posting in this newsgroup ( Subject: RE: Re: setHeader with Response.sendRedirect ) which mentioned a change request # CR073102 filed for this with BEA. Any update or workaround for this issue ?
              Thanks in advance.
              Amar
              

    I'm assuming that you are attempting to bypass the sign-on prompt from the other site. What you will have to do is access the other site from within your servlet and foward the content to the user. In other words, you would be setting your servlet(s) up as a proxy. This can become rather complex as you may run into the need to handle cookies and such from your servlet. Another alternative, if you can modify the remote site, is to set up the other site to accept some sort of keyword or password that your servlet can include in the URL string which would bypass the initial signon.

  • SendRedirect is not working properly in WebSphere 6.0.2.21

    hi: I am using WebShpere 6.0.2.21 as my application server. (using JVM 1.4)
    One of my servlet call response.sendRedirect("/SecondPage");
    Given that my Host is www.test.com and context root is "test".
    I expect that it will call page with http://www.test.com/test/SecondPage.
    It is redirect to the page http://www.test.com/SecondPage
    Does anyone know how to fix this? Appreciate.
    Wayne

    From the JavaDocs (http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/http/HttpServletResponse.html#sendRedirect(java.lang.String)) : This method can accept relative URLs; the servlet container must convert the relative URL to an absolute URL before sending the response to the client. If the location is relative without a leading '/' the container interprets it as relative to the current request URI. If the location is relative with a leading '/' the container interprets it as relative to the servlet container root.
    So you should change it to response.sendRedirect("SecondPage") if your current request is at http://test.com/test/something

  • Application not working with JSF 1.2

    I am new to JSF. I am trying to create a sample application with JSF 1.2. I am using weblogic 10.0. I have followed the instructions give in the whitepaper to configure JSF 1.2.
    http://download.oracle.com/technology/products/weblogic/portal/weblogic-portal-jsf-whitepaper.pdf
    Deployment descriptor contains following content.
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>AlfaInsPortalWebApp</display-name>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>server</param-value>
    <!--<description>
                   State saving method: "client" or "server" (= default)
                   See JSF Specification 2.5.2
              </description>-->
    </context-param>
    <listener>
    <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
    </listener>
    <servlet>
    <servlet-name>faces</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>faces</servlet-name>
    <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>faces</servlet-name>
    <url-pattern>*.faces</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
    <welcome-file>index.jsf</welcome-file>
    <welcome-file>index.faces</welcome-file>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
         <session-config>
         <session-timeout>30</session-timeout>
         </session-config>
    </web-app>
    Weblogic.xml contains reference to following libraries
    <?xml version="1.0" encoding="UTF-8"?>
    <wls:weblogic-web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wls="http://www.bea.com/ns/weblogic/90" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/90/weblogic-web-app.xsd">
         <wls:container-descriptor>
              <wls:prefer-web-inf-classes>true</wls:prefer-web-inf-classes>
         </wls:container-descriptor>
    <wls:context-root>AlfaInsPortalWebApp</wls:context-root>
    <wls:library-ref>
    <wls:library-name>jstl</wls:library-name>
    <wls:specification-version>1.2</wls:specification-version>
    <wls:exact-match>true</wls:exact-match>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>wlp-tools-visitor-web-lib</wls:library-name>
    <wls:specification-version>10.2.0</wls:specification-version>
    <wls:implementation-version>10.2.0</wls:implementation-version>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>wlp-tools-framework-web-lib</wls:library-name>
    <wls:specification-version>10.2.0</wls:specification-version>
    <wls:implementation-version>10.2.0</wls:implementation-version>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>wlp-commonui-web-lib</wls:library-name>
    <wls:specification-version>10.2.0</wls:specification-version>
    <wls:implementation-version>10.2.0</wls:implementation-version>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>wlp-framework-full-web-lib</wls:library-name>
    <wls:specification-version>10.2.0</wls:specification-version>
    <wls:implementation-version>10.2.0</wls:implementation-version>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>wlp-clipper-web-lib</wls:library-name>
    <wls:specification-version>10.2.0</wls:specification-version>
    <wls:implementation-version>10.2.0</wls:implementation-version>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>wlp-lookandfeel-web-lib</wls:library-name>
    <wls:specification-version>10.2.0</wls:specification-version>
    <wls:implementation-version>10.2.0</wls:implementation-version>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>wlp-rest-full-web-lib</wls:library-name>
    <wls:specification-version>10.2.0</wls:specification-version>
    <wls:implementation-version>10.2.0</wls:implementation-version>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>wlp-framework-rest-web-lib</wls:library-name>
    <wls:specification-version>10.2.0</wls:specification-version>
    <wls:implementation-version>10.2.0</wls:implementation-version>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>wlp-rest-web-lib</wls:library-name>
    <wls:specification-version>10.2.0</wls:specification-version>
    <wls:implementation-version>10.2.0</wls:implementation-version>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>wlp-light-web-lib</wls:library-name>
    <wls:specification-version>10.2.0</wls:specification-version>
    <wls:implementation-version>10.2.0</wls:implementation-version>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>wlp-wsrp-producer-web-lib</wls:library-name>
    <wls:specification-version>10.2.0</wls:specification-version>
    <wls:implementation-version>10.2.0</wls:implementation-version>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>wlp-framework-common-web-lib</wls:library-name>
    <wls:specification-version>10.2.0</wls:specification-version>
    <wls:implementation-version>10.2.0</wls:implementation-version>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>wlp-framework-struts-1.2-web-lib</wls:library-name>
    <wls:specification-version>10.2.0</wls:specification-version>
    <wls:implementation-version>10.2.0</wls:implementation-version>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>struts-1.2</wls:library-name>
    <wls:specification-version>1.2</wls:specification-version>
    <wls:exact-match>true</wls:exact-match>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>wlp-services-web-lib</wls:library-name>
    <wls:specification-version>10.2.0</wls:specification-version>
    <wls:implementation-version>10.2.0</wls:implementation-version>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>content-management-web-lib</wls:library-name>
    <wls:specification-version>10.2.0</wls:specification-version>
    <wls:implementation-version>10.2.0</wls:implementation-version>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>beehive-netui-1.0.1-10.0</wls:library-name>
    <wls:specification-version>1.0</wls:specification-version>
    <wls:exact-match>true</wls:exact-match>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>beehive-netui-resources-1.0.1-10.0</wls:library-name>
    <wls:specification-version>1.0</wls:specification-version>
    <wls:exact-match>true</wls:exact-match>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>p13n-web-lib</wls:library-name>
    <wls:specification-version>10.2.0</wls:specification-version>
    <wls:implementation-version>10.2.0</wls:implementation-version>
    </wls:library-ref>
    <wls:library-ref>
    <wls:library-name>jsf</wls:library-name>
    <wls:specification-version>1.2</wls:specification-version>
    <wls:implementation-version>1.2.3.1</wls:implementation-version>
    </wls:library-ref>
    </wls:weblogic-web-app>
    When i start the application server following logs were obtained
    Apr 9, 2010 7:09:32 AM com.sun.faces.config.ConfigureListener contextInitialized
    INFO: Initializing Sun's JavaServer Faces implementation (1.2_03-b04-FCS) for context '/SampleJSF'
    Apr 9, 2010 7:09:33 AM com.sun.faces.config.ConfigureListener contextInitialized
    INFO: Completed initializing Sun's JavaServer Faces implementation (1.2_03-b04-FCS) for context '/SampleJSF'
    Apr 9, 2010 7:09:33 AM com.sun.faces.config.ConfigureListener contextInitialized
    INFO: Initializing Sun's JavaServer Faces implementation (1.2_03-b04-FCS) for context '/SampleJSF'
    Apr 9, 2010 7:09:33 AM com.sun.faces.config.ConfigureListener contextInitialized
    INFO: Completed initializing Sun's JavaServer Faces implementation (1.2_03-b04-FCS) for context '/SampleJSF'
    When i invoke the application I get the following error.
    java.lang.NoSuchMethodError: initView
         at com.sun.faces.lifecycle.RestoreViewPhase.execute(RestoreViewPhase.java:92)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:248)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:117)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    Please help me in configuring JSF 1.2.

    If you are new to JSF, then I'd try and simplify the environment in which you are working as the first step to achieving a successful outcome.
    JSF 1.2 is a certified and well tested component of WLS, so we know it works. I'm not sure of the effect of all those additional modules you are adding in there -- it appears as if you have gotten a Faces implementation instantiated, but there could be some form of version difference/conflict since it can't find a method its looking for.
    Using Oracle Enterprise Pack for Eclipse (http://www.oracle.com/technology/software/products/oepe/oepe_11115.html) you can build yourself out a pretty simple JSF application to get started from and deploy it to a WLS server. This would remove all the additional libraries you currently have, provide you with a bundled applicaton to deploy and give you a pretty good environment from which you can learn and experiment with JSF.
    -steve-

  • OBJECT tag is not working in jsf

    Hello,
    I am trying to add an object tag in jsp page. it is working fine with html page but it is not recognize by the jsf.
    JDeveleoper is 12c
    Thank you.

    Hi Timo,
    I added the tag you mentioned nothing change the red line still there. But, I did something else and I do not know if this has any thing to do with the problem.
    What I did is:
    the tag is working fine in html page and here is the tag in html page:
    <DIV STYLE="position:absolute; top:100px; left:50px;">
    <table border=1 cellpadding="0">
       <tr><td> 
         <OBJECT classid=clsid:69A40DA3-4D42-11D0-86B0-0000C025864A height=75
                id=SigPlus1 name=SigPlus1
      <PARAM NAME="_Version" VALUE="131095">
      <PARAM NAME="_ExtentX" VALUE="4842">
      <PARAM NAME="_ExtentY" VALUE="1323">
      <PARAM NAME="_StockProps" VALUE="0">
                </OBJECT>
       </td></tr>
    </table>
    </DIV>
    <FORM id=FORM1 method=get name=FORM1>
    <p>
    <INPUT id=SignBtn name=SignBtn type=button value=Sign onclick=OnSign()>    
    <INPUT id=button1 name=ClearBtn type=button value=Clear onclick=OnClear()>   &nbsp
    <INPUT id=button2 name=Cancel type=button value=Cancel onclick=OnCancel()>    
    <INPUT id=submit1 name=Save type=submit value=Save onclick=OnSave()>    
    </p>
    As I mention before once I copy the previous tag into jsp page the red lines appears.  in jsp when I convert the word from uppercase to lower case the red lines disappeared and I am able to run the page but the tag is not functioning. the changed tag is:
    <div style="position:absolute; top:100px; left:50px;">
    <table border="1" cellpadding="0">
       <tr><td>  
         <object classid= "clsid:69A40DA3-4D42-11D0-86B0-0000C025864A" height="75"
                id="SigPlus1" name="SigPlus1">
      <param name="_Version" value="131095"/>
      <param name="_ExtentX" value="4842"/>
      <param name="_ExtentY" value="1323"/>
      <param name="_StockProps" value="0"/>
                </object>
       </td></tr>
    </table>
    </div>
    <p>
    <input id="SignBtn" name="SignBtn" type="button" value="Sign" onclick="OnSign()"/>    
    <input id="button1" name="ClearBtn" type="button" value="Clear" onclick="OnClear()"/>    
    <input id="button2" name="Cancel" type="button" value="Cancel" onclick="OnCancel()"/>    
    <input id="submit1" name="Save" type="submit" value="Save" onclick="OnSave()"/>    
    </p>

  • ValueChangeListener is not working in JSF

    Hi Friends,
    Though there were several threads related to the same topic, i could not get the exact information required to get the expected functionality of the valueChangeListener..
    I have configured the necessary things for the valueChangeListener to work. But it (the method in valueChangeListener) does not get invoked at all, which makes me wonder and surprised!!!!
    I am sure that there is no need of incorporating the JavaScript to get any of the JSF built-in functionalities working. aint i?
    ======================================================
    jsp page
    ======================================================
    <h:selectOneMenu id="myMenu" value="#{PersonBean.selectedValue}"   valueChangeListener="#{PersonBean.processValueChange}">
         <f:selectItems id="mySelectItems" value="#{PersonBean.listValues}"/>
    </h:selectOneMenu>=====================================================
    PersonBean.java file
    =====================================================
    public void processValueChange(ValueChangeEvent value) throws AbortProcessingException {
            System.out.println("PersonBean processValueChange()");
            String selectedValue = (String)value.getNewValue();
            System.out.println("PersonBean processValueChange(),     value="+selectedValue);
             if(selectedValue.equals("1")){
                        System.out.println("PersonBean processValueChange(), value chosen is 1");
                        displayOutValues();
            else
                       System.out.println("PersonBean processValueChange(), value chosen is <>1");
    }===================================================
    faces-config.xml file
    ===================================================
    <managed-bean>
         <description>Input Value Holder</description>
         <managed-bean-name>PersonBean</managed-bean-name>
         <managed-bean-class>jsfks.PersonBean</managed-bean-class>
         <managed-bean-scope>session</managed-bean-scope>
         <managed-property>
                <property-name>userName</property-name>
                <property-class>java.lang.String</property-class>
                <value></value>
         </managed-property>
    </managed-bean>Hope the information provided is enough to understand. I do get the list of values populated in the selectOneMenu ( dropdown box). But no action is occuring when there is a change in value being selected. Of course, i do call displayOutValues() inside the processValueChange() which never occurs.
    Can anyone give me a good and clear suggestion to resolve this issue? Does any way the scope of the Managed bean contribute towards this? Even though i have given enough - session scope only.
    Awaiting an earliest reply with thanks in advance!
    Thanks,
    Raghavan alias Saravanan M.

    hi friends,
    the code seems to be working only if i place the submit() in onchange method. thanks for the replies..
    but then still i m wondering without which why it doesnt work as expected?
    i do understand that none of the valueChangeListeners do auto submit of the forms when there is a value change. But the expected actions are supposed to happen even before the form is submitted rite?
    can anyone explain please?
    Thanks,
    Raghavan.

  • Responsive nav bar not working correctly

    Hi All,
    The responsive nab bar on the site below is working correctly. When it changes from horizontal buttons to vertical, the sub menu buttons do not display correctly and i cannot work out how to correct it, they should display underneath the menu button when clicked on but they don't?
    Appreciate any help please.
    http://www.clockdoctors.co.uk/index.html

    The below css is all you should need for your media queries. I would think about using some jQuery onClick to show those sub menus as it's way to jumpy.
    #nav {
    width: 100%;
    #nav li {
    float: none;
    font-size: 16px;
    text-align: center;
    width: 100%;
    #nav li a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #999;
    #nav li a:hover{
    color: #fff;
    #nav li ul  {
    position: static;
    #nav li ul li a {
    padding: 8px 0;
    #nav li a {
    font-size:14px;
    margin: 0;

  • Responsive object test not working

    I am working on a tutorial found in the AS Bible for flash 8
    which is suposed to create a square which responds to your mouse
    movement by dragging part of the square to change it's shape.
    The script works partially, but not all the way. When loading
    initially the square is already altered and doesn't respond to the
    mouse to change it's shape.
    There is also a portion of the script which changes the color
    of the square when you mouse over a menu on the left hand side and
    this works fine.
    Here is my code:
    import DrawingUtilities;
    var aColors:Array = [0xFEEFD6, 0xEDFED6, 0xDED7FD,
    0xFED6ED, 0xFFD5D5];
    var nSelectedColor:Number = aColors[0];
    var oSides
    bject = new Object();
    var oColors
    bject = new Object();
    var mCurrent:MovieClip;
    var nInterval:Number;
    oSides.mRight = {y:0, x:110, rotation:90};
    oSides.mBotom = {y:100, x:0, rotation:0};
    oSides.mLeft = {y:0, x:0, rotation:90};
    oSides.mTop = {y:-10, x:0, rotation:0};
    makeColorOptions(aColors);
    makeBoxAndSides(aSides);
    drawSquare();
    function makeBoxAndSides():Void{
    this.createEmptyMovieClip("mShape",
    this.getNextHighestDepth());
    mShape.createEmptyMovieClip("mBox",
    mShape.getNextHighestDepth());
    var mSide:MovieClip;
    var duDrawer: DrawingUtilities;
    for (var sSide:String in oSides) {
    mSide = mShape.createEmptyMovieClip(sSide,
    mShape.getNextHighestDepth());
    duDrawer = new DrawingUtilities(mSide);
    duDrawer.lineStyle (0,0,0);
    duDrawer.beginFill(0,0);
    duDrawer.drawRectangle(100, 10, 50, 5);
    mSide.useHandCursor = false;
    mSide.onRollover = function():Void {
    if(mCurrent == this) {
    return;
    resetSide(mCurrent);
    mCurrent = this;
    this.startDrag(true);
    nInterval = setInterval(drawSquare, 10);
    resetSide(mSide);
    addBoxMethod();
    drawsquare();
    mShape._x = Stage.width/2 -mShape._width/2;
    mShape._y = Stage.width/2 -mShape._height/2;
    function resetSide(mSide:MovieClip):Void {
    mSide._y = oSides[mSide._name].y;
    mSide._x = oSides[mSide._name].x;
    mSide._rotation = oSides[mSide._name].rotation;
    mSide.stopDrag();
    clearInterval (nInterval);
    function makeColorOptions (aColors:Array) :Void {
    for (var i:Number = 0; i < aColors.length; i++) {
    mSwatch = this.createEmptyMovieClip(
    "mColorSwatch" + i, this.getNextHighestDepth());
    oColors[mSwatch._name] = aColors
    duDrawer = new DrawingUtilities(mSwatch);
    duDrawer.beginFill(aColors, 100);
    duDrawer.drawRectangle(15, 15, 7.5, 7.5);
    duDrawer.endFill();
    mSwatch._x = 30;
    mSwatch._y = 20 * i + 30;
    mSwatch.onRelease = function():Void {
    nSelectedColor = oColors[this._name];
    drawSquare();
    function drawSquare():Void {
    var oRight
    bject = {x:mShape.mRight._x - 10,
    y: mShape.mRight._y};
    var oBottom
    bject = {x:mShape.mBottom._x,
    y: mShape.mBottom._y};
    var oleft
    bject = {x: mShape.mLeft._x, y: mShape.mLeft._y};
    var oTop
    bject = {x: mShape.mTop._x, y: mShape.mTop._y + 10};
    var nMx:Number = mShape.mBox._xmouse;
    var nMy:Number = mShape.mBox._ymouse;
    switch (mCurrent._name) {
    case "mRight":
    if(nMx > 110) {
    resetSide(mCurrent);
    mCurrent = null;
    if(nMx < 25) {
    nMx = 25;
    else if(nMx > 100) {
    nMx = 100;
    if (nMy < 25) {
    nMy = 25;
    else if(nMy > 75) {
    nMy = 75;
    oRight.x = 2*nMx - 100;
    oRight.y = 2*nMy - 50;
    break;
    case "mBottom":
    if(nMy > 110) {
    resetSide(mCurrent) ;
    mCurrent = null;
    if(nMx < 25) {
    nMx = 25;
    else if(nMx > 75) {
    nMx = 75;
    if(nMy < 25) {
    nMy = 25;
    else if(nMy > 100) {
    nMy= 100;
    oBottom.x = 2*nMx - 50;
    oBottm.y = 2*nMy - 100;
    break;
    case "mLeft":
    if(nMx < -10) {
    resetSide (mCurrent);
    mCurrent = null;
    if(nMx < 0) {
    nMx = 0;
    else if(nMx > 75) {
    nMx = 75;
    if(nMy < 25) {
    nMy = 25;
    oLeft.x = 2*nMx;
    oLeft.y = 2*nMy - (.5 * 100);
    break;
    case "mTop":
    if(nMy < -10) {
    resetSide(mCurrent);
    mCurrent = null;
    if (nMx < 25) {
    nMx = 25;
    else if (nMx > 75) {
    NMx = 75;
    if(nMy < 0) {
    nMy = 75;
    oTop.x = 2*nMx - (.5 * 100);
    oTop.y = 2*nMy;
    break;
    mShape.mBox.clear();
    mShape.mBox.lineStyle(0, 0, 100);
    mShape.mBox.beginFill (nSelectedColor, 100);
    mShape.mBox.curveTo(oTop.x, oTop.y, 100, 0);
    mShape.mBox.curveTo(oRight.x, oRight.y, 100, 100);
    mShape.mBox.curveTo(oBottom.x, oBottom.y, 0, 100);
    mShape.mBox.curveTo(oLeft.x, oLeft.y, 0, 0);
    mShape.mBox.endFill();
    updateAfterEvent();
    I was hoping someone could see what is going wrong
    here.

    Look in Edit > Preferences.  One of the screens there has a check box for Export Audio and that may be unchecked.

  • Responsive videos will not work

    In Captivate 8 I have inserted two video files both mp4 format.  It is a responsive format and the videos will not load on iPad.  What am I doing wrong????

    This is a copy of the code in Dream Weaver... I feel like it should show the video file name somewhere.... Captivate changed the file names to Vi2.mp4 and Vi4.mp4.  Any thought on this being the problem?
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta
    name='viewport' content='initial-scale = 1, minimum-scale = 1, maximum-scale =
    1'/>
    <meta
    http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <meta
    http-equiv="x-ua-compatible" content="IE=10">
    <title></title>
    <style
    type="text/css">#initialLoading{background:url(assets/htmlimages/loader.gif)
    no-repeat center
    center;background-color:#ffffff;position:absolute;margin:auto;top:0;left:0;right:0;bottom: 0;z-index:10010;}</style>
    <script>
    function
    initializeCP()
    function cpInit()
    document.body.innerHTML = " <div class='cpMainContainer'
    id='cpDocument' style='left: 0px; top:0px;' >       
    <div id='main_container'
    style='top:0px;position:absolute;width:100%;height:100%;'>          
    <div id='projectBorder'
    style='top:0px;left:0px;width:100%;height:100%;position:absolute;display:block'></div>
    <div class='shadow' id='project_container' style='left: 0px;
    top:0px;width:100%;height:100%;position:absolute;overflow:hidden;' >     
    <div id='project' class='cp-movie' style='width:100%
    ;height:100%;overflow:hidden;'>               
    <div id='project_main' class='cp-timeline
    cp-main'>                         
    <div id='div_Slide' onclick='cp.handleClick(event)' style='top:0px; width:100%
    ;height:100% ;position:absolute;-webkit-tap-highlight-color:
    rgba(0,0,0,0);'></div> 
    </div>                      
    <div id='autoplayDiv'
    style='display:block;text-align:center;position:absolute;left:0px;top:0px;'>                                 
    <img id='autoplayImage' src=''
    style='position:absolute;display:block;vertical-align:middle;'/>                                 
    <div id='playImage' tabindex='9999' role='button' aria-label='play'
    onkeydown='cp.CPPlayButtonHandle(event)' onClick='cp.movie.play()'
    style='position:absolute;display:block;vertical-align:middle;'></div>          
    </div>          
    </div>          
    <div id='toc' style='left:0px;position:absolute;-webkit-tap-highlight-color:
    rgba(0,0,0,0);'>        
    </div>          
    <div id='playbar' style='bottom:0px;
    position:fixed'>   
    </div>          
    <div id='cc' style='left:0px;
    position:fixed;visibility:hidden;pointer-events:none;'
    onclick='cp.handleCCClick(event)'>                
    <div id='ccText' style='left:0px;float:left;position:absolute;width:100%;height:100%;'>           
    <p
    style='margin-left:8px;margin-right:8px;margin-top:2px;'>                  
    </p>             
    </div>                      
    <div id='ccClose' style='background-image:url(./assets/htmlimages/ccClose.png);right:10px;
    position:absolute;cursor:pointer;width:13px;height:11px;'
    onclick='cp.showHideCC()'>             
    </div>          
    </div>          
    <div id='gestureIcon'
    class='gestureIcon'>       
    </div>          
    <div id='gestureHint'
    class='gestureHintDiv'>                 
    <div id='gImage'
    class='gesturesHint'></div>   
    </div>          
    <div id='pwdv'
    style='display:block;text-align:center;position:absolute;width:100%;height:100%;left:0px;t op:0px'></div>   
    <div id='exdv' style='display:block;text-align:center;position:absolute;width:100%;height:100%;left:0px; top:0px'></div>  
    </div>          
    </div></div><div id='blockUserInteraction' class='blocker'
    style='width:100%;height:100%;'>          
    <table style='width:100%;height:100%;text-align:center;vertical-align:middle'
    id='loading'
    class='loadingBackground'>                   
    <tr style='width:100%;height:100%;text-align:center;vertical-align:middle'>                                  
    <td style='width:100%;height:100%;text-align:center;vertical-align:middle'>                                              
    <image
    id='preloaderImage'></image>                                  
                <div
    id='loadingString'
    class='loadingString'>Loading...</div>                                  
    </td>
    </tr>   </table></div> <div
    id='initialLoading'></div>";
    cp.DoCPInit();
    if((typeof InitAppPackager !== "undefined") && (typeof
    InitAppPackager === "function"))
    InitAppPackager(cpInit);
    else
    cpInit();
    </script>
    </head>
    <body>
    <div id='initialLoading'></div>
    <script>
                           (function()
    if(document.documentMode < 9)
    document.body.innerHTML = "";
                                                   document.write("The
    content you are trying to view is not supported in the current Document Mode of
    Internet Explorer. Change the Document Mode to Internet Explorer 9 Standards
    and try to view the content again.<br>To change the Document Mode, press
    F12, click Document Mode: <current mode>, and then select Internet
    Explorer 9 Standards.");
    return;
    window.addEventListener("load",function()
    setTimeout(function()
    var script = document.createElement('script');
    script.type = 'text/javascript';
    script.src = 'assets/js/CPXHRLoader.js';
    script.defer = 'defer';
    script.onload = function()
    var lCSSLoaded = false;
    var lJSLoaded = false;
    function constructDIVs()
    if(lCSSLoaded && lJSLoaded)
    initializeCP();
    cpXHRJSLoader.css('assets/css/CPLibraryAll.css',function() {
    lCSSLoaded = true;
    constructDIVs();
    var lJSFiles = [  'assets/js/jquery-1.6.1.min.js','assets/js/CPM.js','assets/playbar/playbarScript.js'
    cpXHRJSLoader.js(lJSFiles,function()
    //console.log("js loaded");
    lJSLoaded = true;
    constructDIVs();
    document.getElementsByTagName('head')[0].appendChild(script);
    },1);
    },false);
    </script>
    <noscript
    style="text-align:center;font-size:24px;">Enable Javascript
    support in the browser.</noscript>
    </body>
    </html>

Maybe you are looking for

  • Error while loading data from FDM (EPM 11.1.1.3)

    Hi, We are loading data into HFM from FDM. While loading data from FDM it is throwing an error which as below. "Load data started: 5/20/2012 9:30:45 PM Line 27, Error: Cell for Period Mar is not an input cell. Actual,2011,Mar,YTD,ENT_JJ,JPY,A23232323

  • My ipod is stuck in recovery mode. How do i get out eithout restoring it?

    it is 4g and verion 5.1.1 it got stuck while i was trying to restore it the first time. error 21 came up and i went to the apple website. that wasnt very helpful and it is still stuck in recovery. the apple directions to get it out were very confusin

  • Recommended Modem to use with Airport Extreme

    I currently have AT&T DSL. It is connected to AT&T's really crummy 2Wire 2701HG-B modem/router combo. I want to ditch the 2Wire and replace it with the Airport Extreme router, but I am told that I will also have to buy a modem to hook up to the route

  • Syncing OSX Contacts with Google

    Hello, I am making a move to Android but want to take my icloud contacts over. I know iCloud cant be synced with Google. So I have iCloud synced with my Mac OSX Contacts (10.8). I configured the Mac contacts to sync with my google account(which is a

  • How to play an arbitrary frequency

    I'm looking for a way to play an arbitrary frequency for a certain time. Something like the playTone(note, duration, vol), but without the tone restriction. I'm more or less trying to create high-frequency noise. I've been googling for days now, but