Error: org.richfaces.renderkit.html.PanelMenuGroupRenderer (menu richface)

good morning,
I am implementing a PanelMenu with richfaces but I have an error in Binding the html menu to the BAcking Bean
As follow My Bean Object:
@Stateful
@Name("userMenu")
public class UserMenuBean implements UserMenuLocal {
    private HtmlPanelMenu panelMenu = new HtmlPanelMenu();
public HtmlPanelMenu addControls() {
Application application = FacesContext.getCurrentInstance().getApplication();
             panelMenu.setId("panelMenu");
             panelMenu.setStyle("width:200px");
             panelMenu.setMode("ajax");
             panelMenu.setIconExpandedGroup("disc");
             panelMenu.setIconCollapsedGroup("disc");
             panelMenu.setIconExpandedTopGroup("chevronUp");
             panelMenu.setIconGroupTopPosition("right");
             panelMenu.setIconCollapsedTopGroup("chevronDown");
             panelMenu.setIconGroupTopPosition("right");
             List childrenMenu = getPanelMenu().getChildren();
             HtmlPanelMenuGroup panelMenuGroup = (HtmlPanelMenuGroup) application.createComponent(HtmlPanelMenuGroup.COMPONENT_TYPE);
                 panelMenuGroup.setLabel("products");
                 List childrenGroup = panelMenuGroup.getChildren();
                 HtmlPanelMenuItem output = (HtmlPanelMenuItem)application.createComponent(HtmlPanelMenuItem.COMPONENT_TYPE);
                 output.setId("toto");
                 output.setLabel("toto");
                 childrenGroup.add(output);
                 childrenMenu.add(panelMenuGroup);
return panelMenu;
}Here is my .xhtml page:
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
                xmlns:ui="http://java.sun.com/jsf/facelets"
                xmlns:h="http://java.sun.com/jsf/html"
                xmlns:f="http://java.sun.com/jsf/core"
                xmlns:a4j="http://richfaces.org/a4j"
                xmlns:rich="http://richfaces.org/rich"
                xmlns:c="http://java.sun.com/jstl/core"               
                template="#{theme['template.pageClassic']}">
<!-- Contenu de la page -->
    <ui:define name="pageContent">
<h:form id="customerForm">
        <h:panelGrid columns="2" columnClasses="cols" width="100%" border="1" cellspacing="0">
<rich:panelMenu binding = "#{userMenu.addControls()}"/>
        </h:panelGrid>
    </h:form>
    </ui:define>
</ui:composition>the error displayed when exe"cuting the menu(when displaying the .xhtml page) is as follow:
{code}
java.lang.NullPointerException
at org.richfaces.renderkit.html.PanelMenuGroupRenderer.isSelected(PanelMenuGroupRenderer.java:308)
at org.richfaces.renderkit.html.PanelMenuGroupRenderer.getSelectedClass(PanelMenuGroupRenderer.java:246)
at org.richfaces.renderkit.html.HtmlPanelMenuGroupRenderer.doEncodeBegin(HtmlPanelMenuGroupRenderer.java:112)
at org.richfaces.renderkit.html.HtmlPanelMenuGroupRenderer.doEncodeBegin(HtmlPanelMenuGroupRenderer.java:86)
at org.ajax4jsf.renderkit.RendererBase.encodeBegin(RendererBase.java:101)
at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:788)
{code}
please does any one could help
thanks
regards
bibou
Edited by: bibou on May 5, 2008 10:27 AM

hi,
add something like this
panelMenu.setSelectedChild("toto")and there is my working code:
profiles = new HtmlPanelMenu();
          List<Profile> lp = currentUser.getProfiles();
          int count;
          if(lp.size()==0){
               HtmlPanelMenuItem item = new HtmlPanelMenuItem();
               item.setId("empty");
               item.setName("empty");
               HtmlOutputLink ol = new HtmlOutputLink();
               ol.setValue("/greenid/profiles.seam");
               HtmlOutputText ot = new HtmlOutputText();
               ot.setValue("create new profile");
               ol.getChildren().add(ot);
               item.getChildren().add(ol);
               profiles.getChildren().add(item);
               profiles.setSelectedChild("empty");
          }

Similar Messages

  • "JavaScript Error encountered while loading HTML"

    Hi,
    I have been trying to embed a google map on a InDesign CC page, NO LUCK YET.
    I spoke several Adobe InDesign help line people, unfortunately they couldn't solve it.
    Here is the problem: I tried with different versions
    1- version) I copy of a map code and paste the code on a page, shows grey square round image and nothing (no map)
    2- version) From Object menu:
        "Select insert HTML.."
        "This is an HTML snippet."
    I paste the codes into HTML box, a second later, small box message,
         "JavaScript Error encountered while loading HTML"
    I have 64bit 12gb ram computer with windows 8.1
    InDesign CC version 9.2.1 x64
    Java 7 update 51
    I have tried with Internet explorer, google chrome and fire fox, and different maps, still no luck.
    Can anyone solve this problem?
    Thank you in advance,
    atamtan

    Yes, Google changed something and not for the better.
    Try a bing map instead. They work fine.

  • Muse JS Assert: Error calling selector function:Type error: Object has no method Muse Menu

    When exporting html and viewing locally we receive the following error... This error disappears after removing menu from top of page. This error does not occur when viewed on Outdoors360.businesscatalyst.com (our temporary site)
    Muse JS Assert: Error calling selector function:Type error: Object has no method Muse Menu
    Any ideas??

    I fix the problem.
    I have carefully reviewed JAVASCRIPT files and I could see that these are not a major influence within the site, only are reference code and utilities of the same application.
    By removing these files nothing has stopped working, I thought I would have some error in the sliders, or opacities, but no, nothing happened.
    DELETE IT
    FRANCISCO CATALDO DISEÑADOR GRÁFICO

  • Error Message: oracle/jbo/html/databeans/Res

    I have copied required JAR and ZIP files into the /lib directory of Java Web Server. Classpath is also pointed to that. I am getting the first screen of JSP with menu on left side but I am getting "Error Message: oracle/jbo/html/databeans/Res" if I am trying to run any JSP having NavigationBar WebBean..Any Ideas. Otherwise
    null

    This is a new library with Jdev 9.0.3,
    bc4j_jclient_common.jar.
    iAS 9.0.2 doesn't include this file.

  • Org.w3c.dom.html and org.w3c.dom.ls ?

    Please help.
    I use JAXB in VisualAge. When I imported jar files for JAXB from jwsdp-1.1. I have some errors.
    In jwsdp-1.1. I can't found classes from packages org.w3c.dom.html and org.w3c.dom.ls.
    What jar files and where I have to download?

    org.w3c.dom.DOMErrorHandler is a DOM Level 3 class.
    The Xerces2 Java Parser 2.4.0 contains an implementation of the Document Object Model Level 3.
    Get Xerces-J-src.2.4.0.zip from http://xml.apache.org/dist/xerces-j/
    DOMErrorHandler is in the xerces-2_4_0/src/dom3/org/w3c/dom/ drectory.
    Xerces-J-src.2.4.0.zip also has the org.w3c.dom.html and org.w3c.dom.ls packages.

  • ERROR ITMS-9000: "index_split_000.html(257): attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:la

    I have all these errors, can anyone help with this all means? trying to get my book published in iBooks. Nedd your help. Thanks, Jo
    ERROR ITMS-9000: "index_split_000.html(257): attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"" at Book (MZItmspBookPackage)
    Use of the block quote element can cause ePubecheck to give the error "text not allowed here".  Text must not be alone inside of a body tag and if it is not enclosed in some other block level tag, this may lead to the error you are receiving.  

    I have all these errors, can anyone help with this all means? trying to get my book published in iBooks. Nedd your help. Thanks, Jo
    ERROR ITMS-9000: "index_split_000.html(257): attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"" at Book (MZItmspBookPackage)
    Use of the block quote element can cause ePubecheck to give the error "text not allowed here".  Text must not be alone inside of a body tag and if it is not enclosed in some other block level tag, this may lead to the error you are receiving.  

  • Error in SXMB_MONI for HTML to Webservice Scenario

    Hi Experts,
    I am facing following error Error in SXMB_MONI for HTML to Webservice Scenario
    "Runtime exception occurred during application mapping com/sap/xi/tf/_MM_EmailRequest_To_ValidateEmail_; com.sap.aii.utilxi.misc.api.BaseRuntimeException:Content is not allowed in prolog."
    Only one field is used i.e. email address and mapped properly in IR but still the error is persisting, Please suggest some way out.
    Regards,
    Nitin

    Hi,
    Mapping internall follows the SAX parser. Please check if you are trying to process the data of large size.
    generally while parsing the large data this exception get raised. Even though there is just one field, what is the data size you are trying to pass.
    Thanks
    Swarup

  • Error 500--Internal Server Error  org.apache.tapestry

    Hi.
    I am getting the following error when access an application. Application give no error during deployment. Only get this error when trying to logon to the application.
    How do I resolve this issue?
    Thanks
    Sayef
    Error 500--Internal Server Error
    org.apache.tapestry.ApplicationRuntimeException: Could not load class com.vitechinc.v3.core.view.HomeService from weblogic.utils.classloaders.ChangeAwareClassLoader@12816cb finder: weblogic.utils.classloaders.CodeGenClassFinder@19a917d annotation: [email protected]: com.vitechinc.v3.core.view.HomeService
         at org.apache.tapestry.util.DefaultResourceResolver.findClass(DefaultResourceResolver.java:107)
         at org.apache.tapestry.engine.AbstractEngine.createServiceMap(AbstractEngine.java:1868)
         at org.apache.tapestry.engine.AbstractEngine.setupForRequest(AbstractEngine.java:1346)
         at com.vitechinc.core.VitechEngine.setupForRequest(VitechEngine.java:53)
         at com.vitechinc.v3.core.view.V3Engine.setupForRequest(V3Engine.java:282)
         at org.apache.tapestry.engine.AbstractEngine.service(AbstractEngine.java:824)
         at org.apache.tapestry.ApplicationServlet.doService(ApplicationServlet.java:197)
         at org.apache.tapestry.ApplicationServlet.doGet(ApplicationServlet.java:158)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         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 com.vitechinc.core.locale.ExtractLocaleFilter.doFilterInternal(ExtractLocaleFilter.java:43)
         at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:75)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at org.springframework.orm.hibernate.support.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:170)
         at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:75)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at org.apache.tapestry.RedirectFilter.doFilter(RedirectFilter.java:106)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3368)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Lweblogic.security.acl.internal.AuthenticatedSubject;Lweblogic.security.acl.internal.AuthenticatedSubject;Ljava.security.PrivilegedAction;)Ljava.lang.Object;(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2117)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2023)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1359)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    Caused by: java.lang.ClassNotFoundException: com.vitechinc.v3.core.view.HomeService
         at java.lang.Class.forName(Ljava.lang.String;ZLjava.lang.ClassLoader;)Ljava.lang.Class;(Unknown Source)
         at org.apache.tapestry.util.DefaultResourceResolver.findClass(DefaultResourceResolver.java:103)
         ... 30 more

    The "com.vitechinc.v3.core.view.HomeService" class isn't part of the deployment package.

  • Link BC blog to html/css menu

    Re the Blog
    Client site is not using BC Dynamic Menus - I'm using html/css menu.
    How can I link the menu item to the BC Blog in Admin or DW
    Appreciate all your support
    Will

    Hi
    Is this what you're looking for: http://screencasteu.worldsecuresystems.com/AP/menu.swf
    Here's the kb on this as well: http://helpx.adobe.com/business-catalyst/partner/create-menu.html
    Kind Regards,
    Alex

  • Obtaining org.w3c.dom.html implementation?

    I'm would like to obtain implementations of the org.w3c.dom.html interfaces so that I can create HTML documents/fragments from scratch (as opposed to parsing files). After some pretty lengthy investigation (and much frustration), it looks like I need to (as one possible option) use JAXP to obtain implementation-independent versions of those interfaces. I still can't figure out how to wire everything up.
    Any help would be appreciated.
    Thanks,
    Gary

    I've been able to get an instance of DOMImplementation using the following code:
    private DOMImplementation getDomImplementation() throws ParserConfigurationException {
        DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
        DocumentBuilder builder = factory.newDocumentBuilder();
        return builder.getDOMImplementation();
        // // get an instance of the DOMImplementation registry
        // DOMImplementationRegistry registry =
        // DOMImplementationRegistry.newInstance();
        // // get a DOM implementation the Level 3 XML module
        // return registry.getDOMImplementation("XML 3.0");
    }I tried casting the returned DOMImplementation to HTMLDOMImplementation but received a cast exception.
    The commented code was actually my first unsuccessful attempt (it would return null). I tried calling
    System.getProperty("org.w3c.dom.DOMImplementationSourceList") just to see what was listed and it also returned null. I'm guessing that maybe I need to configure/install/register/etc. an implementation but I'm not sure where to start with that. I downloaded the J2SE 5.0 source code and discovered the com.sun.org.apache.html.internal.dom package which contains implementations of all the interfaces I need but I'm not sure how to point to them.
    This seems much harder than it should be. Any help would be appreciated.
    Thanks,
    Gary

  • Error at import oracle.html.*

    i have installed oas,and am able to create PL/SQL applications.but when ti comes to jweb cartridge i am unable to compile as i get an error of import oracle.html.*.
    kindly help how do i write program for creating jweb application .
    pl. help
    thankyou

    Hello Venkat,
    After running  Report SMIGR_CREATE_DDL you have to  copy the results in either install dir of your target server or in case of oracle it should be copied to export_dump/DB/ORA.
    Make sure you have done this.
    It is also recommended that you should run this report just before starting the export.
    First it looks for .SQL files (generated by the report), if it doesnt find then it takes from the standard .tsk file.
    Probable reasons:-
    1)  Report not run before export
    2) Did not put the files generated in the location mentioned by me.
    Thanks,
    Vishal

  • GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown error

    I recently updated my system and now it giving me an error:
    GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.cinnamon.SettingsDaemon was not provided by any .service files
    How can I easily start troubleshooting this issue?
    Pacman.log:  http://pastebin.com/BRRmuWPV
    I've got an IBM T520 laptop with built-in i915:
    [blah@blah ~]$ lspci -v -s `lspci | awk '/VGA/{print $1}'`
    00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09) (prog-if 00 [VGA controller])
    Subsystem: Lenovo Device 21cf
    Flags: bus master, fast devsel, latency 0, IRQ 28
    Memory at f0000000 (64-bit, non-prefetchable) [size=4M]
    Memory at e0000000 (64-bit, prefetchable) [size=256M]
    I/O ports at 5000 [size=64]
    Expansion ROM at <unassigned> [disabled]
    Capabilities: <access denied>
    Kernel driver in use: i915
    Kernel modules: i915
    [blah@blah ~]$
    Any help would be appreciated
    Last edited by Anoniem (2015-02-09 13:02:53)

    Anoniem wrote:
    Haha, well:
    1. I turn on laptop
    2. Login into my desktop
    3. My display is low resolution and external display too, fonts and theme settings are gone (gnome)
    4. I want to change resolution
    5. Get error message like above
    Checked my logs, tried reverting packages I updated
    Still the same GDBUS thing.
    Maybe there is an conflict when the X starts on 2 monitors with 2 different resolutions...
    It depends from your graphic card. For example, on my nvidia when X starts with both internal and external monitors plugged in, the resolution is messed up. But when you enter to your desktop, usually it reads the last resolution states and the screen resolution problem if fixed.
    One solution is to plug the external monitor after desktop is loaded or create a config file for the monitors on the /etc/X11/... folder Xorg wiki
    Last edited by alex.theoto (2014-12-05 17:18:11)

  • JS error when exporting to HTML

    Hi,
    I'm getting JS error when exporting to HTML.
    When publishing to catalyst, all functions are OK, but when exporting there're lots of bugs and I get the error message.
    Pop-up attached.
    Please advise,
    Avi

    Hi, Sorry for the late response, are you still experiencing this issue. If yes, please let me know

  • Jumping to a page in HTML SideBar Menu

    Hello,
    I have following kind of menu hierarchy attached to a responsibility.
       Home Menu
           HTML Tab Menu (Tab)
               Function1
               HTML Sub Tab Menu (SubTab)
                   HTML SideBar  (SideBar)
                       Function2
                       Function3
                       Function4When user choose the responsibility, he is taken to the page corresponding to Function1 and this page appears under Tab. When user clicks a button on this page, user is
    taken to Function2, by using setForwardURL("Function2", .....)
    This works fine, i.e., user is taken to page corresponding to Function2 but I don't see SideBar menu, which should appear on left hand side of the page like
    Function2
    Function3
    Function4
    Is it something to do with parameters passed to setForwardURL?
    May not be relevant to the problem, but some more info.
    When I added SubTab to Tab, I specified prompt as <empty>, as I don't want SubTab to be seen as it serves no purpose, only reason SubTab is added
    to have 3rd level of menu, i.e. SideBar, which should appear on left hand side of the page.
    regards, Yora
    Edited by: 785174 on Jan 23, 2011 3:49 AM

    As said in
    setForwardURL functionName vs PG.xml path
    check the url of the page your function is pointing to
    and use the same url with KEEP_MENU_CONTEXT as menuContext parameter to setForwardURL and try.
    Hope you dont see any difference
    Regards
    Ravi

  • ERROR [org.jboss.web.localhost.Engine] StandardWrapperValve[jsp]: Servlet.s

    My Code:
    <%@ page import="com.tcs.utilities.ExceptionHandler" %>
    <%@ page import="com.tcs.core.UserProfile" %>
    <%@ page import="com.tcs.core.HelpDeskUserProfile" %>
    <%@ page import="com.tcs.exception.InvalidSessionException" %>
    <%@ page import="com.tcs.constants.HelpDeskConstants" %>
    <%@ page import="com.tcs.utilities.LogHandler" %>
    <%@ page import="com.tcs.jsp.SessionDataContainer" %>
    <%@ page import="com.tcs.jsp.ContentModel" %>
    <%@ page import="com.tcs.jsp.helpdesk.HelpDeskSearchResultCM" %>
    <%@ page import="com.tcs.jsp.helpdesk.HelpDeskSearchResultCmd" %>
    <%@ page import="com.tcs.constants.CoreConstants" %>
    <%@ page import="com.tcs.constants.ExceptionTokens" %>
    <%@ page errorPage="s_error.jsp" %>
    <%@ include file="session_validation.jsp" %>
    <%
    System.out.println("recieved flag");
        LogHandler log = LogHandler.init();
    %>
    <%
    System.out.println("recieved flag");
          UserProfile profile = (UserProfile)session.getValue(HelpDeskConstants.SESSION_PROFILE);
              if(null == profile)
                   throw new InvalidSessionException();
         if(session.isNew())
              throw new InvalidSessionException();
    try{System.out.println("going for search");
        HttpSession sesshome = request.getSession(false);
        if(null == sesshome.getValue(HelpDeskConstants.SESSION_PROFILE) ) {
            throw new Exception ();
    System.out.println("going for search within");
        HelpDeskUserProfile objPrfl = (HelpDeskUserProfile) sesshome.getValue(HelpDeskConstants.SESSION_ADMIN);
        if (!objPrfl.isAdminFlag())
            throw new Exception();
    System.out.println("going for search1");
        HelpDeskSearchResultCM cm = new HelpDeskSearchResultCM();
        HelpDeskSearchResultCmd cmd = new HelpDeskSearchResultCmd();
    System.out.println("going for search2");
        cm = (HelpDeskSearchResultCM) cmd.execute( request, response );
         System.out.println("going for search2.5");
        SessionDataContainer.put(session.getId(),cm);
         System.out.println("going for search3");
         String pag="s_helpDeskSearchResult.jsp?hidComingFrom="+"SearchMenus";
    %>
          <jsp:forward page="<%=pag%>"/>
    <!--jsp:forward page="s_helpDeskSearchResult.jsp" /> 
    <jsp:param name="hidComingFrom" value="SearchMenus" />
    </jsp:forward -->
    <%  
    } catch(Exception e) {
       /*log.error(e,"p_helpDeskSearchResult.jsp",CoreConstants.HELPDESK);
        ExceptionHandler.handleJSPException(e, ExceptionTokens.HD_GET_DATA_ERROR,
                                        "p_helpDeskSearchResult.jsp");*/
                                                 System.out.println("Exception is " + e.getMessage());
    %>
    I get the following error when i run this code.
    ERROR [org.jboss.web.localhost.Engine] StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exception
    org.apache.jasper.JasperException: /p_helpDeskSearchResult.jsp(68,5) jsp.error.badaction
         at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:94)
         at org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:428)
         at org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:126)
         at org.apache.jasper.compiler.Parser.parseAction(Parser.java:671)
         at org.apache.jasper.compiler.Parser.parseElements(Parser.java:803)
         at org.apache.jasper.compiler.Parser.parse(Parser.java:122)
         at org.apache.jasper.compiler.ParserController.parse(ParserController.java:199)
         at org.apache.jasper.compiler.ParserController.parse(ParserController.java:153)
         at org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:227)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:369)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:473)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:190)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.jboss.web.tomcat.security.JBossSecurityMgrRealm.invoke(JBossSecurityMgrRealm.java:220)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.jboss.web.tomcat.tc4.statistics.ContainerStatsValve.invoke(ContainerStatsValve.java:76)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2416)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:65)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:577)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:601)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
         at java.lang.Thread.run(Thread.java:536)

    Hi,
    This forum is related to sun java studio creator . Could you please post this to appropriate forum
    Regards
    CreatorTeam

Maybe you are looking for

  • How to include Time delay in GUI enviroment

    hi all, i want to include time delay while drawing the shapes in the Canvas. I tried with Thread.sleep() and also delaying methods by making them to loop for large number of times.... but it affects the repainting of my Frame window like just previou

  • Camera Roll Trouble

    OK, so when I go to the photos app on my iPhone 3GS, and I tap Camera Roll, only about half of my pictures show up. The rest are simply black thumbnails. However, when I tap on one, the picture shows up full screen. This is really annoying, and I wou

  • I want to connect  3 displays on to my 2007 mac mini, but what adapter or splitter do i use?

    I need help whith getting 3 monitors running of my mac mini (2007). But what adapter/spliiter do i use to do it?

  • Form - already exists Error

    Hi All, While accessing the form more than once error occurs like 'Form - already exists'. How to avoid this error?. Thanks in Advance. Regards, Madhavi

  • How to execute query only when user submits request in af:query

    Hi, I'm using an <af:query> based on a named view criteria. The view criteria contains a bind variable. When the web page is initially rendered the query is executed and the result is displayed in an <af:table>. Instead, I want the user to trigger th