Jsf compnent rendering

I have the below code that displays the image before my table tags. Why does this render this way?
table width="100%" border="0" cellpadding="0" cellspacing="0">
                    <tr>
                            <td width="20%"> <h:graphicImage value="images/generic/myriteaid_logo.png" alt="MyRiteAid.com" width="140" height="70"></h:graphicImage></td>
                       </tr>
</table>the html that it displays is this:
<img src="images/generic/myriteaid_logo.png" alt="MyRiteAid.com" height="70" width="140" /><script type="text/JavaScript" language="JavaScript">
</script>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
               <tr>
                    <td width="20%"> </td>
</tr>
</table>
That is not correct. Am I doing something wrong?

This code that I posted is being included in another file like this:
<f:subview id="header">
<jsp:include page="heade2r.jsp">
</f:subview>
I put the <f:verbatim> tags around my entire header.jsp file, but it still rendered the same way. Here is my header.jsp code:
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
     xmlns:f="http://java.sun.com/jsf/core"
     xmlns:c="http://java.sun.com/jstl/core"
     xmlns:fmt="http://java.sun.com/jstl/fmt"
     xmlns:h="http://java.sun.com/jsf/html"
     xmlns:hx="http://www.ibm.com/jsf/html_extended" version="1.2">
     <!-- jsf:codeBehind language="java" location="/JavaSource/com/xxx/xxx/web/Header2.java" --><!-- /jsf:codeBehind -->
     <f:subview id="headerTopRow">
     <hx:scriptCollector>
     <f:verbatim>
          <table width="100%" border="0" cellpadding="0" cellspacing="0">
                    <tr>
                            <td width="20%"> <h:graphicImage value="images/generic/myriteaid_logo.png" alt="MyRiteAid.com" width="140" height="70"></h:graphicImage></td>
                       <td width="80%" align="right" valign="top">
                             <table width="261" border="0" cellpadding="0" cellspacing="0">
                                  <tr>
                                     <td><a href="http://www.riteaid.com"><img src="images/generic/tm_riteaid.jpg" alt="" name="tm_riteaid" width="73" height="34" border="0" id="tm_riteaid" /></a></td>
                                      <td><a href="http://www.riteaid.com/stores/locator/"> <img src="images/generic/tm_locator.jpg" alt="" name="tm_locator" width="92" height="34" border="0" id="tm_locator" /></a></td>
                                      <td><c:url var="jsessionid" value="privacy.jsf"></c:url><a href="${jsessionid}"><img src="images/generic/tm_privacy.jpg" alt="" name="tm_privacy" width="58" height="34" border="0" id="tm_privacy" /></a></td>
                                      <td><c:url var="jsessionid" value="customer_help.jsf"></c:url><a href="${jsessionid}"><img src="images/generic/tm_help.jpg" alt="" name="tm_help" width="38" height="34" border="0" id="tm_help" /></a></td>
                                     </tr>
                                </table>
                          </td>
                     </tr>
                   </table>
        </f:verbatim>
        </hx:scriptCollector>
     </f:subview>
</jsp:root>

Similar Messages

  • JSF page rendered propert

    Hi all,
    How to make reference either AmImpl method or VORowImpl method to the JSF page rendered property??
    thanks
    santosh

    You can NOT directly use the method reference in the page.
    Instead do the following
    - Add the exposed method to the PageDef
    - Have a boolean property in the managed bean that returns the value by invoking the method
    - For any UI component's rendered property, use EL expression based on boolean property in the managed bean.
    Thanks,
    Navaneeth

  • JSF custom renderer executes multiple times

    I have just created a jsf custom component to render three input texts next to each other (for SSN input). My custom renderer extends javax.faces.render.Renderer, and I am writing out the elements in the encodeEnd method. The problem I encountered is - upon saving the form and the screen refreshes, the renderer gets called two times. So what I end up seeing on the screen are two sets of the three input texts component. Does anyone know why the renderer gets called more than once? Any insight is much appreciated.

    To the best of my knowledge, the standard does not specify the default renderer class for any components.
    I would take a wrapper/decorator approach. Add a field to your renderer for the default renderer. Before configuring your renderer, obtain the default renderer and set it on your renderer, then configure it.
    OTOH, there might be easier ways for you to accomplish what you want to do. You could use a PhaseListener to add components to the view whenever a commandButton is encountered in the tree.

  • JSF page rendering

    In my application, i am rendering the jsff pages by using ADF regions. I am on page A(a jsff page), from where i go to page B(another jsff page). when the page B is loaded first time all the getters and setters for components(buttons,input box, buttons etc) are been called in the managed bean. On page B i have a back button which send control back to page A.
    when the page B is loaded for the 2nd time, i can not see any of the getters and setters been called in managed bean.
    Can someone help me on this?

    I added the mentioned lines of code in my adfc-config.xml.
    Still the getters and setters are not being called while the page is being loaded.
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <adf-config xmlns="http://xmlns.oracle.com/adf/config">
        <adf-faces-config xmlns="http://xmlns.oracle.com/adf/faces/config">
          <caching-rules xmlns="http://xmlns.oracle.com/adf/faces/rich/acf">
            <caching-rule id="cache-rule1">
              <cache>false</cache>
              <agent-caching>false</agent-caching>
            </caching-rule>
          </caching-rules>
        </adf-faces-config>
      </adf-config>
      <task-flow-definition id="accountSummaryTaskflow">
    <Rest of the taskflows>
    </adfc-config>
    please guide whats wrong here

  • JSF RE-Rendering a specific Component

    hey guys,
    need a bit of help here... I am doing a JSF Page.. where a person selects a vehicle type (vehicle he wants to book for... as in a chauffeurs service) the two options he can choose from are - limo and sedan.
    now as per the choice i need to populate a f:oneSelectMenu.... with available models. say if the person picks up a limo.. then the menu should only show limo models but not sedan's.
    for this i have already put up a listener on the f:selectOneRadio that offers the choice of two types of vehicles. as the person selects any type the listener populates a variable... and a backing bean that fetches the data from the database and populates the f:selectItems... that should go ii the f:selectOneMenu.
    everything till here is fine... even i an populate the f:selectItems in the backingbean. But as this is all in the same page.... i want my f:selectOneMenu to re-render so that it can pick those f:selectItems to show the desired data.
    I have struggled a lot searching on google.. but did not get any relevant solution for this prob.
    Could anyone please help me with this.. It would be great help....
    Regards

    Thanks for your reply sir...
    and yes i would like to do it async. what I want is as soon as the user choses a particular value using the :selectOneRadio, the values in the f:selectOneMenu should be populated accordingly.... both of these components are on the same page. and yes without hitting submit...
    Ok is there a way.. to refresh the whole page... using the valueChangeListener? or something equivalent? anything frm the bean?
    Regards

  • NoClassDefFoundError  running jsf page rendering datacontrol return value

    Hi all,
    For a fusion web application, I have created a java file and converted it to a data control .The file has the code to establish the connection to an external SES endpoint and fetching the results.Dragged the return value to a jsf page part of a bounded task flow. The project has the Oracle SOAP jar in the classpath.Still when I run the jsf page ,I get the java.lang.NoClassDefFoundError: oracle/soap/transport/http/OracleSOAPHTTPConnection exception in the console.Any ideas.
    Thanks
    Regards
    Deepak

    I guess I wondering whether issue lies with
    1. a "com.sun.faces.util.DebugUtil" that doesn't perform correctly...
    OR,
    2. a "rule" that says the component tree will not support multiple panelGrids on the same page.
    [For whatever reason, in the above example, "DebugUtil" does not appear to "see" the "id's" of the last panelGrid (i.e.,  id="panelGrid3"),  component or  its nested component  (i.e.,  id="panelGroup3" )]
    NOTE: I have neither been successful in referencing "panelGrid3" and "panelGroup3" using "FacesContext.getCurrentInstance().findComponet("panelGrid3") and "FacesContext.getCurrentInstance().findComponet("panelGroup3"), respectively.
    Could someone let me know? (My apologies if the answer is obvious ... I admit I am relatively new to JSF.)
    Thanks again!!!

  • ADF-JSF Page rendering Twice

    Hi,
    I have a JSF page with 5 command links, Each link takes me to a different page(.jspx), based on the "action" attribute of the command link.
    For some reason on clicking on one Link, the contents of the Page are being displayed Twice.
    Can anyone help, why is it so and how can i avoid the diaplying of the contents Twice.
    Thanks
    Vishnu

    Hi,
    its not clear what you mean with "content appears twice". How likely is it that the problem is within your code as you don't mention what you did. If possible, provide a step by step reproducable testcase
    Frank

  • JSF form rendering and javascript

    Hi,
    Is there any possibility to execute javascript code each time before the form is rendered? As I see it has nothing like onrender attribute. Where should I put my javascript method call?

    The problem is that this form is situated inside Richfaces tabpanel and it rerenders after some event happens. So, it's not possible to use onload. And I want to show a simple dialog before it's rerendered.

  • Jsf not rendering the new data

    On the page a.jsp, when i select the year and company name, it displays the reqd company info. when i click edit, it goes to b.jsp and displays those information. after i edit, i click save. data is updated in the database and it goes back to a.jsp and displays the new data. now in a.jsp, when i select the year and company name, it shows the prior data and not the new data. even if logout of the appl and login again, this does not show the new data. only when i restart the appln server, i am able to see the modified data
    Can someone please help me on this. thanks.

    Crossposted:
    [http://forums.sun.com/thread.jspa?threadID=5447882&messageID=11036013#11036013|http://forums.sun.com/thread.jspa?threadID=5447882&messageID=11036013#11036013]
    If you don't get an answer, do you really think it is going to help to simply post the exact same question again?
    Why don't you do yourself a favor and try to reason about the problem yourself. You can be 100% assured this is your own fault that this is happening, somewhere in your code is a mistake. So where could it be? What could you have done to make the page display the old data in stead of the new data?
    Perhaps you will also want to invest some time into learning how to use a debugger, those things were invented to be able to work out these kind of "mysteries".

  • JSF Design View broken? Fallback Rendering, "Render Kit" not found

    Hi,
    I just wanted to toy around with JDeveloper 11g TP3, created a new project, added technology scope JSF (+ JSP/Servlets, etc.) then the tag-library ADF Faces Component 11-ji3.
    Then I created a data control from a POJO and wanted to visualize this within a JSF page. So I created one (via faces-config visual editor), dragged the appropriate getter-method to the page in the up-to-this-point working WYSIWYG editor, selected ADF-read-only-form and suddenly found myself in the JSF "alternate rendering" (a view like in an hierachical XML editor). I enabled "design time messages in log" to see what the problem was.
    Stopping/Starting JDeveloper or removing tag libraries like suggested in other threads did not work. I was unable to reactivate the wysiwyg editor for this page or any new JSF page in this application, always the "alternate rendering".
    Log said "oracle.sql.OraData" was missing, so I added ojdbc6.jar to the project classpath. Didn't help, no wysiwyg editor, log now says:
    --- snip ---
    18.02.2008 14:12:37 oracle.adfinternal.view.faces.lifecycle.LifecycleImpl _isPostback
    WARNUNG: Render Kit konnte nicht gefunden werden
    WARNING: A problem was encountered executing the page. Using fallback rendering.
    java.lang.NullPointerException
         at org.apache.myfaces.trinidad.util.Service.getService(Service.java:82)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl._getExtendedRenderKitService(ViewHandlerImpl.java:333)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:154)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:633)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:244)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:204)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
    --- end ---
    I have this error even for newly created (ie blank/HelloWorld) JSF pages in my application. I started adding some libraries, but nothing helped. How do I reactivate the wysiwyg editor?
    Thanks!

    Frank,
    thanks for the reply. I will try what you suggested, but the trinidad-config.xml is actually not missing in my project, although it does not include a render kit definition.
    As my first step with 11g I also tried one of the tutorials (http://www.oracle.com/technology/obe/obe11jdev/11/ejb/ejb.html) and there the wysiwyg was working nicely the whole time.
    In both cases (my project == not working wysiwyg editor, tutorial == nicely working wysiwyg editor) the content of the trinidad-config.xml is the same:
    --- trinidad-config.xml ---
    <?xml version="1.0" encoding="windows-1252"?>
    <trinidad-config xmlns="http://myfaces.apache.org/trinidad/config">
    <skin-family>blafplus-rich</skin-family>
    </trinidad-config>
    --- end-of-file ---
    Rgds
    Axel

  • Challenge with dynamic rendered content

    I have a complex JSF file that I want to conditionally render a portion of the page based on a dynamic value. Here is the simplified scenario.
    <h:form>
    <h:inputHidden value="#{aRequestScopedMbean.id}"/>
    <h:outputText value="JSF rocks" rendered="#{aRequestScopedMbean.showValue}"/>
    </h:form>
    ...The JSP's mbean has an id value binding which is key to determining the return value of aRequestScopedMbean.showValue. In other words the getShowValue method uses the id to determine its return result. Unfortunately, during server side processing, it appears that during the early JSF phases (I believe the restore view phase) the framework tries to determine the result from our showValue method, but that method fails because the id has not yet been restored.
    I must be missing something as this scenario seems fairly simple. The only solution that I can devise is to put the id as a session scoped variable, that is a viable solution for this trivial case, but that won't suffice because the actual pages that I'm working with would contain too much session data.
    What am I missing?
    Thanks,
    Josh.

    I don't think you are missing anything. That's just how it works.
    The rendered component property is checked many times within the lifecycle as the lifecycle methods are applied to the component tree.
    As you already seem to know, the problem is that your showValue expression is being called before you set the id value. Here are a couple suggestions:
    1. You can try to "send" the id parameter to your managed bean as an HTTP parameter. You can then set the id property on your managed bean using the managed-property element. Something like:
    <managed-bean>
    <managed-bean-name>aRequestScopedMbean</managed-bean-name>
    <managed-bean-class>foo.aRequestScopedMbean</managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    <managed-property>
    <property-name>id</property-name>
    <value>#{param.id}</value>
    </managed-property></managed-bean>
    The setId() method will be called right after the constructor is done and this will be before your showValue method is called.
    2. It might be possible to ask the FacesContext what phase it's in or something similar and use this information in your showValue method (although that seems very messy and prone to error)
    3. As you suggest, persist the id in session. Though, as you also point out, this has it's drawbacks as well.
    In any case, you must devise a way to populate your id value before showValue gets called.

  • SJSAS v9.0 : jsf-api 1.2 in javaee.jar causes trouble for jsf 1.1 apps

    In Sun Java System Application Server v9.0 (or 9.1), jsf-api v1.2 is embeded in javaee.jar. This causes a lot of trouble when deploy web applications written with jsf v1.1. Is there a way to avoid this without modifying web applications to migrate to jsf v1.2? I got strong reasons/requirements not to migrating source to comply jsf v1.2.
    In JSF v1.2 spec, it states "Faces 1.2 is backwards compatible with Faces 1.1. This means that a web-application that was developed to run with Faces 1.1 won�t require any modification when run with Faces 1.2 except in the cases described in the following section." Does anybody have the experience running v1.1 applications on top of SJSAS v9+ (or JSF v1.2 RI)? What are the best practices?
    Thanks

    It took me quite some time to diving in the codes as my situation is not simple - we have tens of custom coded JSF components/renders written in JSF v1.1 and suddently found everything not working on SJSAS v9. It turns out that I have to remove EVERY jar files related to JSF v1.1 or dependant by JSF v1.1, then it seems working but I couldn't be too sure untill the testing cycle finishes.
    Thanks for the hint BalusC - it helps.

  • Has any one had success using JSF over JRun?

    JRus is surely a very strange app.server to what I had seen till now. I am facing tons of problem trying to deploy my JSP (has JSF compnents) and it blows out after the first successful load throwing me some null pointer exception.
    Also can any one tell me what Tomcat version does the current JSF EA4 works? I have also been getting strange Grammar errors when using Tomcat for the development machines.
    Your help is greatly appreciated.
    Thanks
    Ram

    Even when I try to deploy simple JSF application in JRun 4.0 I am also getting error.
    Error:
    07/28 10:30:31 error Could not pre-load servlet: JSPServlet
    [2]jrun.jsp.compiler.JRunTagLibraryInfo$InvalidTLDElementException: The tag function on line 14 is not a valid TLD element
    [2]jrun.jsp.compiler.JRunTagLibraryInfo$InvalidTLDElementException: The tag function on line 14 is not a valid TLD element
    at jrun.jsp.compiler.JRunTagLibraryInfo$TLDParser.startElement(JRunTagLibraryInfo.java:627)
    at jrunx.util.SAXReflectionHandler.startElement(SAXReflectionHandler.java:24)
    at org.xml.sax.helpers.XMLReaderAdapter.startElement(XMLReaderAdapter.java:329)
    at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1490)
    at org.apache.crimson.parser.Parser2.content(Parser2.java:1779)
    at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1507)
    at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:500)
    at org.apache.crimson.parser.Parser2.parse(Parser2.java:305)
    at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:442)
    at org.xml.sax.helpers.XMLReaderAdapter.parse(XMLReaderAdapter.java:223)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:314)
    at jrun.jsp.compiler.JRunTagLibraryInfo.init(JRunTagLibraryInfo.java:202
    at jrun.jsp.compiler.JRunTagLibraryInfo.<init>(JRunTagLibraryInfo.java:130)
    at jrun.jsp.JSPEngine.checkResourceForTaglibs(JSPEngine.java:460)
    at jrun.jsp.JSPEngine.findImplicitTaglibs(JSPEngine.java:428)
    at jrun.jsp.JSPEngine.<init>(JSPEngine.java:120)
    at jrun.jsp.JSPServlet.init(JSPServlet.java:56)
    at jrun.servlet.WebApplicationService.loadServlet(WebApplicationService.java:1208)
    at jrun.servlet.WebApplicationService.preloadServlets(WebApplicationService.java:763)
    at jrun.servlet.WebApplicationService.postStart(WebApplicationService.java:258)
    at jrun.deployment.DeployerService.initModules(DeployerService.java:711)
    at jrun.deployment.DeployerService.createWatchedDeployment(DeployerService.java:242)
    at jrun.deployment.DeployerService.deploy(DeployerService.java:430)
    at jrun.deployment.DeployerService.deployPersistentURL(DeployerService.java:1532)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at jrunx.kernel.agents.JRunAdminService.invoke(JRunAdminService.java:126)
    at sun.reflect.GeneratedMethodAccessor52.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at jrunx.rmi.RMIBroker.invokeService(RMIBroker.java:266)
    at jrunx.rmi.RMIBroker.invoke(RMIBroker.java:130)
    at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:261)
    at sun.rmi.transport.Transport$1.run(Transport.java:148)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
    at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
    at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
    at java.lang.Thread.run(Thread.java:536)
    [1]jrun.jsp.compiler.JRunTagLibraryInfo$TLDParseException: Exception parsing the TLD null : The tag function on line 14 is not a valid TLD element
    at jrun.jsp.compiler.JRunTagLibraryInfo.init(JRunTagLibraryInfo.java:210)
    at jrun.jsp.compiler.JRunTagLibraryInfo.<init>(JRunTagLibraryInfo.java:130)
    at jrun.jsp.JSPEngine.checkResourceForTaglibs(JSPEngine.java:460)
    at jrun.jsp.JSPEngine.findImplicitTaglibs(JSPEngine.java:428)
    at jrun.jsp.JSPEngine.<init>(JSPEngine.java:120)
    at jrun.jsp.JSPServlet.init(JSPServlet.java:56)
    at jrun.servlet.WebApplicationService.loadServlet(WebApplicationService.java:1208)
    at jrun.servlet.WebApplicationService.preloadServlets(WebApplicationService.java:763)
    at jrun.servlet.WebApplicationService.postStart(WebApplicationService.java:258)
    at jrun.deployment.DeployerService.initModules(DeployerService.java:711)
    at jrun.deployment.DeployerService.createWatchedDeployment(DeployerService.java:242)
    at jrun.deployment.DeployerService.deploy(DeployerService.java:430)
    at jrun.deployment.DeployerService.deployPersistentURL(DeployerService.java:1532)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at jrunx.kernel.agents.JRunAdminService.invoke(JRunAdminService.java:126)
    at sun.reflect.GeneratedMethodAccessor52.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at jrunx.rmi.RMIBroker.invokeService(RMIBroker.java:266)
    at jrunx.rmi.RMIBroker.invoke(RMIBroker.java:130)
    at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:261)
    at sun.rmi.transport.Transport$1.run(Transport.java:148)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
    at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
    at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
    at java.lang.Thread.run(Thread.java:536)
    [0]javax.servlet.ServletException: Exception parsing the TLD null : The tag function on line 14 is not a valid TLD element
    at jrun.jsp.JSPEngine.findImplicitTaglibs(JSPEngine.java:434)
    at jrun.jsp.JSPEngine.<init>(JSPEngine.java:120)
    at jrun.jsp.JSPServlet.init(JSPServlet.java:56)
    at jrun.servlet.WebApplicationService.loadServlet(WebApplicationService.java:1208)
    at jrun.servlet.WebApplicationService.preloadServlets(WebApplicationService.java:763)
    at jrun.servlet.WebApplicationService.postStart(WebApplicationService.java:258)
    at jrun.deployment.DeployerService.initModules(DeployerService.java:711)
    at jrun.deployment.DeployerService.createWatchedDeployment(DeployerService.java:242)
    at jrun.deployment.DeployerService.deploy(DeployerService.java:430)
    at jrun.deployment.DeployerService.deployPersistentURL(DeployerService.java:1532)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at jrunx.kernel.agents.JRunAdminService.invoke(JRunAdminService.java:126)
    at sun.reflect.GeneratedMethodAccessor52.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at jrunx.rmi.RMIBroker.invokeService(RMIBroker.java:266)
    at jrunx.rmi.RMIBroker.invoke(RMIBroker.java:130)
    at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:261)
    at sun.rmi.transport.Transport$1.run(Transport.java:148)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
    at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
    at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
    at java.lang.Thread.run(Thread.java:536)
    Any suggestion ?

  • JSF radiobutton OnChange Event

    Hello Friends,
    I am creating a form and I have 3 radio buttons on top of the form. Depending on which radio button the user selects the rest of the form is displayed. Every form has totally different fields and totally different validations.
    In our prototype, which was a plain jsp, it was handled easily using 3 div tags and onchange of the radio button the div to be displayed was selected using javascript. All validations were also handled using javascript.
    I am now looking at a nice way of implementing this using JSF. Any inputs or suggestions in the area will be of great help.
    Best Regards,
    Ramesh

    Depending on which radio button the user selects the rest of the form is displayedYou could use rendered attribute or disabled attribute of JSF component.
    rendered="#{myBean.buttonXSelected}"

  • JSF-RI. Is it possible to have ID for for elements?

    It is more convenient to address to the form element with 'id' attribute rather than 'name' attribute (just because jsf-ri use very unexpected naming convention). However, jsf-ri renderer removes 'id' from the final code (just uses it to contruct 'name' attribute).
    Probably, it it will be not a critical solution for final release of jsf-ri to leave 'id' as is along with 'name'.

    JSF should definitely not prohibit the setting of
    "id"-attribute for the generated HTML table.
    I strongly hope that such a severe constraint is
    removed in the FCS.
    Can somebody comment on the issue?
    Thanks,
    erikAny code that assumes the "id" property of a UIComponent will be the generated "id" in the markup created by a renderer is pretty much guaranteed to fail -- renderers are explicitly not required to use such identifies in the markup they create. Instead, if you need to know what identifier the renderer is giong to create, call getClientId() on the component instead. This is the value you should use, for example, in JavaScript created by your renderer that refers to the component in question.
    Craig McClanahan

Maybe you are looking for

  • Assigning task to a position?

    can you assign a task to a position? trying to find out if you can conduct a search where an employee's qualification matches a task requirement of a position. also, how would this be done, via PPOME? Message was edited by:         andrew chan

  • Problem Related to PR Line Items

    Hi, I want tht user won't be able to add more thn 250 line items. so I want tht whn user tries to do so PR will raise an error message . So Plz Tell Me How Can I Do tht.

  • CO integration for student accounting

    Hi All We are currently thinking about intensifying our costing related to programms of studies and are setting up different options how to track corresponding fees and eventually costs in our CO module. I've learned in last years IHE 203 with Marlie

  • MWA services in R12

    Hi All, We have MWA setup in R12.1.3 Getting some errors like this in system.log : java.io.IOException: -1 is read from input stream at oracle.apps.mwa.presentation.telnet.ProtocolHandler.readChar(ProtocolHandler.java:1422) at oracle.apps.mwa.present

  • LOG FOR SPOOL AND MAIL

    Hi all, can any one tell me in which directory in OS do we find the log entries for MAIL(SO01) and SPOOL (SP01) will be? thnx in advance.