404 error access JSF pages

Hello,
When I was running my JSF application through the embeded Tomcat 6.0.18 server in Netbeans 6.5.1 all worked fine. After deploying the *.WAR file to the stand alone Tomcat 6.0.18 server I get a 404 error when I access the jsf pages. The default page at http://localhost:8080 work fine and so does the servlet in the same webapp as my jsfs. I tried downloading the JSF & JSTL frameworks and placing the contents of their lib directory into TOMCATHOME/lib and restarted the server - no effect
Pls Help ! Thnx
(URL im using to access one of the jsf pages is http://localhost:8080/LUIDManager/LUID_Config_List.jsf)
Here is my web.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    <context-param>
        <param-name>com.sun.faces.verifyObjects</param-name>
        <param-value>false</param-value>
    </context-param>
    <context-param>
        <param-name>com.sun.faces.validateXml</param-name>
        <param-value>true</param-value>
    </context-param>
    <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>client</param-value>
    </context-param>
    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
        <servlet-name>initServlet</servlet-name>
        <servlet-class>Servlets.initServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>initServlet</servlet-name>
        <url-pattern>/initServlet</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>forwardToJSF.jsp</welcome-file>
        </welcome-file-list>
    <resource-ref>
        <description>DB Connection</description>
        <res-ref-name>jdbc/luidregistry</res-ref-name>
        <res-type>javax.sql.DataSource</res-type>
        <res-auth>Container</res-auth>
    </resource-ref>
    </web-app>Edited by: paulchwd on Apr 15, 2009 5:01 PM

Thnx for your reply. Not sure what Faclets are. I added the JSF 1.2 framework from Netbeans into my project. I am also an idiot :)
The links the servlet generates to take me to the JSFs had a typo - wrong port #
Thnx for the help

Similar Messages

  • Http error 404 when accessing facebook pages

    HI there
    I have read a few of the previous help requests and  tried to turn my mobile netwok off and on and a hard reboot, but I still can't access facebook pages via an email link.  I get a message about a reply say to a comment and when I click through I just get the above error message.
    I'd be very grateful if someone could send me suggestions to resolve this.  In simple terms if poss as although I'm fairly computer literate some of the ideas have gone over my head!
    I have a blackberry curve 8520.  I use virgin/orange.  Not sure if you need this v5.0.0.681  Facebook is version 2.0.0.58
    Thank you

    Hi dear BB User
    I use BB 9900 since 1 Month and i really have alot of Problem and this is one of the problem that you said but i can help you out with this.
    first if you use Wi Fi and in the same time you need your Phone network also with that otherwise it is not gonna work and if you turn off your phone network so you can do nothing and be carefull dont trap when you do something and you are connected with Wi Fi and in real cost you also in Phone NEtwork i hope it is hope full for you....

  • How to custom a conversion error in JSF page in JDeveloper

    According to the book "Core JavaServer Faces" p213 (fifth edition), if I add the following line to messages.properties file, and specifiy it in the faces-config.xml and .jsp file, then the displayed conversion error message should be my tailored one instead of the default. However, I still get the default error message. Besides, I didn't find "CONVERSION" variable in UIInput class. Is the book wrong? And what's the correct way?
    javax.faces.component.UIInput.CONVERSION=Please correct your input

    I didn't choose any special in JDeveloper IDE. I just selected "new" to create a file called "message.properties" and put the line there. I didn't specify converters excepts declaring the type in the Jave Beans. I guess the converting is done by the JSF framework automatically. It must be a JSF converter since I created the page as a JSF page.

  • Javascript error in jsf page.

    Hi,
    I am trying to Do post form a script function in a jsf page. I am using the trh:script tag for adding the script. But when run it i am getting a lot of errors saying that the attributes cannot be recognised. I am trying to send a xml updated with some data after the click of a button to the server. Though its not showing any any errors when not run.
    Below is the code i am using :
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://myfaces.apache.org/trinidad/html" prefix="trh"%>
    <%@ taglib uri="http://myfaces.apache.org/trinidad" prefix="tr"%>
    <%@ taglib uri="http://xmlns.oracle.com/dss/trinidad/faces" prefix="dvtt"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/rich" prefix="af"%>
    <f:view>
    <trh:script text="
    var endpointURL = "http://localhost:7101/services/MobileManagerService";
    var xmlstring = '<?xml version="1.0"encoding="UTF-8"?>\
    <notifications>\
         <notification>\
              <id>1<\/id>\
                   <status>CLOSE<\/status>\               
              <\/notification>\
         <\/notifications>';
    var xmlobject = (new DOMParser()).parseFromString(xmlstring, "text/xml");
    var stautsXml = (new XMLSerializer()).serializeToString(xmlobject);
    alert(stautsXml);
    var http_request = false;
    function makePOSTRequest(method, url, parameters) {
    http_request = false;
    if(window.XMLHttpRequest) { // Mozilla, Safari,...
    http_request = new XMLHttpRequest();
    if (http_request.overrideMimeType) {
    // Set type accordingly to anticipated content type.
    http_request.overrideMimeType('text/xml');
    // http_request.overrideMimeType('text/html');
    } else if (window.ActiveXObject) { // IE
    try {
    http_request = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
    try {
    http_request = new ActiveXObject("Microsoft.XMLHTTP");
    } catch (e) {}
    if (!http_request) {
    alert('Cannot create XMLHttpRequest object');
    return false;
    http_request.onreadystatechange = alertContents;
    // http_request.open(method, url, true);
    if(method=='GET'){
    http_request.open(method, url + parameters, true);
    http_request.setRequestHeader("Content-type", "text/xml");
    http_request.setRequestHeader("Content-length", parameters.length);
    http_request.setRequestHeader("Connection", "close");
    http_request.send(null);
    if(method=='POST') {
    http_request.open(method, url, true);
    http_request.setRequestHeader("Content-type", "text/xml");
    http_request.setRequestHeader("Content-length", parameters.length);
    http_request.setRequestHeader("Connection", "close");
    http_request.send(parameters);
    if(method=='PUT') {
    http_request.open(method, url, true);
    http_request.setRequestHeader("Content-type", "text/xml");
    http_request.setRequestHeader("Content-length", parameters.length);
    http_request.setRequestHeader("Connection", "close");
    http_request.send(parameters);
    if(method=='DELETE') {
    http_request.open(method, url+parameters, true);
    http_request.setRequestHeader("Content-type", "text/xml");
    http_request.setRequestHeader("Content-length", parameters.length);
    http_request.setRequestHeader("Connection", "close");
    http_request.send(null);
    function alertContents() {
    if (http_request.readyState == 4) {
    if (http_request.status == 200) {
    alert('Response received from server:\n'+http_request.responseText);
    result = http_request.responseText;
    // Turn < and > into &lt; and &gt; for displaying on the page.
    result = result.replace(/\<([^!])/g, '&lt;$1');
    result = result.replace(/([^-])\>/g, '$1&gt;');
    document.getElementById('serverresponse').innerHTML = result;
    } else {
    alert('There was a problem with the request.'
    +http_request.responseText +' '+http_request.status);
    document.getElementById('serverresponse').innerHTML = http_request.responseText;
    function postApproveForm() {
    var poststr = stautsXml ;
    alert('Sending XML to server:\n'+poststr);
    makePOSTRequest('POST', endpointURL , poststr);
    "/>
    <trh:html id="h2">
    <trh:head title="ApproveAlerts" id="h1">
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    <link type="text/css" rel="stylesheet" href="css/iPhone.css"/>
    </trh:head>
    <trh:body id="b1">
    <!-- <jsp:useBean id="IdBean" class="oracle.application.IdBean" scope="application"/> -->
    <af:messages id="m1"/>
    <trh:body styleClass="body" id="b2">
    <!-- <td><input type="button" name="Approve" value="Approve" onclick="javascript:approveAlert();"></td> -->
    <td>
    <input type="button" name="Approve" value="Approve" onclick="postApproveform();" </input>
    </td>
    <af:outputText id="ot1" value='"#{requestScope.myId}"'/>
    </trh:body>
    </trh:body>
    </trh:html>
    </f:view>
    Do i need to add some taglib or something to make it work ?
    Regards
    Sishant
    Edited by: user784337 on May 24, 2010 3:37 AM

    Because :
    Session.getAtrribute is java-code that can only run on the server
    and
    var y = session.getAttribute is javascript-code run on the client.

  • Error loading JSF page popup window - Cannot find FacesContext

    Hello,
    I am trying to load a popup window from my Visual Web JSF page. The popup window itself will be a Visual Web JSF page also.
    As an example, i have 2 buttons on my original page with jsp tags as follows::
    <webuijsf:button binding="#{Page1.button1}" id="button1" onClick="window.showModelessDialog('./PopupPage.jsp'); return false;"
    style="left: 19px; top: 16px; position: absolute" text="Button"/>
    <webuijsf:button actionExpression="#{Page1.button2_action}" binding="#{Page1.button2}" id="button2"
    onClick="window.showModelessDialog('./PopupPage.jsp');" style="position: absolute; left: 20px; top: 44px" text="Button"/>
    When i click Button1, the popup window appears but will not load the page within the window. I get the following report in the server log:
    StandardWrapperValve[jsp]: PWC1406: Servlet.service() for servlet jsp threw exception
    java.lang.RuntimeException: Cannot find FacesContext
    at javax.faces.webapp.UIComponentClassicTagBase.getFacesContext(UIComponentClassicTagBase.java:1811)
    at javax.faces.webapp.UIComponentClassicTagBase.setJspId(UIComponentClassicTagBase.java:1628)
    at org.apache.jsp.PopupPage_jsp._jspx_meth_f_view_0(PopupPage_jsp.java from :102)
    at org.apache.jsp.PopupPage_jsp._jspService(PopupPage_jsp.java from :77)
    ETC ETC
    If i click Button2 (which does NOT return false in the onclick Script and thus submits the first page) the first attempt fails with the same error, but if i try a second time the popup window displays and loads the page correctly.
    Any solutions would be greatly appreciated as this is driving me crazy :-s
    Edited by: coxy69 on Jan 9, 2008 10:29 PM

    Cannot find FacesContextThis generally indicates that you invoked a request which points to a JSP page which contains JSF tags, but that the request itself isn't passed through the FacesServlet. Make sure that the request URL is covered by the url-pattern setting of the FacesServlet in the web.xml.

  • Error accessing Dashboard page

    I received error message while accessing "Dashboards" page (under "Administration" menu) as shown below.
    This error occurs only when I go to "Data Workshop" page and followed by going to "Dashboard" page. It seems that the URL for dashboard page is incorrect.
    It's not a big issue but I wonder whether the urls for admin menu is hard-coded and the developer entered the wrong page id. ;)
    Contact your application administrator.
    ERR-1016 Application "4350" Page "3" not found (requested language="en")
    -Gary
    Edited:
    This occurs on APEX 4.0

    Thanks Gary,
    I can confirm that I reproduced the error you've reported. Thanks for outlining the steps to reproduce it, that was a great help. The link from the Administration drop-down menu to "Dashboards" is incorrect, it's going to pg 4350:3 instead of pg 4350:33. I've logged bug 9941099 to track this issue, and a fix will be available in our next release. In the meantime, as you're aware, if you click the Administration tab, you can navigate to the Dashboards via the Dashboards icon on the Administration page, pg 4350:1.
    Thanks again for reporting this.
    Regards,
    Hilary

  • Error Accessing SOA Pages post SOA install

    Dear All,
    I am fairly new to SOA product suite and have recently installed (advanced install not basic one) it in a VMware Server environment on WIndows XP.
    Installation was successful and completed OK.
    I am able to start the SOA suite successfully.
    However if I try to access any other pages for eg: SOA Launch Console, I get an error "Page cannot be displayed".
    The URL I see in the address bar is http://192.168.230.129:8888/
    If I replace the ip address above with my machine name which is "windows-xp" so that URL reads as http://windows-xp:8888/ then The page does appear OK.
    I have an entry in the etc/hosts file
    192.168.230.129 windows-xp
    If I ping this server it does not connect.
    Any ideas what I am not able to access the pages correctly ?
    Can someone also explain or point in the right direction as to what the various servers do and how to find their ip address if required.
    Many Thanks
    Shankar

    This is my output from ipconfig.
    C:\DOCUME~1\test>ipconfig /all
    Windows IP Configuration
    Host Name . . . . . . . . . . . . : windows-xp
    Primary Dns Suffix . . . . . . . :
    Node Type . . . . . . . . . . . . : Hybrid
    IP Routing Enabled. . . . . . . . : No
    WINS Proxy Enabled. . . . . . . . : No
    DNS Suffix Search List. . . . . . : localdomain
    Ethernet adapter Local Area Connection:
    Connection-specific DNS Suffix . : localdomain
    Description . . . . . . . . . . . : VMware Accelerated AMD PCNet Adapter
    Physical Address. . . . . . . . . : 00-0C-29-FE-0B-11
    Dhcp Enabled. . . . . . . . . . . : Yes
    Autoconfiguration Enabled . . . . : Yes
    IP Address. . . . . . . . . . . . : 192.168.17.128
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Default Gateway . . . . . . . . . : 192.168.17.2
    DHCP Server . . . . . . . . . . . : 192.168.17.254
    DNS Servers . . . . . . . . . . . : 192.168.17.2
    Primary WINS Server . . . . . . . : 192.168.17.2
    Lease Obtained. . . . . . . . . . : Monday, June 23, 2008 2:10:20 PM
    Lease Expires . . . . . . . . . . : Monday, June 23, 2008 2:40:20 PM
    C:\DOCUME~1\test>ping 192.168.230.128
    Pinging 192.168.230.128 with 32 bytes of data:
    Request timed out.
    Request timed out.
    Request timed out.
    Request timed out.
    Ping statistics for 192.168.230.128:
    Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),

  • Error accessing support page

    Is the support center down? I need to reactivate my account, but can't because every time I try to access support it redirects me saying that there was an error.

    Hi and welcome to the Skype Community,
    Sorry to hear about your problem with contacting Skype customer service. Can you please share the URL and ideally a screenshot of the error page you are facing so we can follow up on what's wrong? Also: Which browser are you using? You might want to try accessing the page on a different browser.
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

  • HTTP 500 internal server error with jsf pages in OC4J 10.1.2

    Hi all. I am trying to use the Sun RI o fJSF1.1 together with a standalone OC4J 10.1.2. My jsf pages are not being displayed. Any clues.

    Hi ,
      Please answer my following questiosn.
    1)  which PI version are you using?
    2) How many J2EE nodes you have.
    please be reminded that SOAP is not for the heavy messages. Then you need to increase your timeout parameters from BASIS.
    Rgds
    Veeru
    Edited by: viru srivastava on Dec 14, 2010 10:18 PM

  • Access JSF Pages within WEB-INF directory

    Hi,
    I am generating a project using JHeadstart 10.1.3
    with the default setting for the UI Pages directory (/WEB-INF/page).
    This means that the generated pages are placed in the page directory
    within the WEB-INF directory.
    The generated pages use ADF Faces and the problem is that I can't
    get access to the pages in the WEB-INF directory
    When I try to deploy to OC4J standalone, the pages in the WEB-INF directory
    are not accessible.
    I read that I have to construct a index.jspx file that forwards to
    the first page (Home.jspx)
    This is my index.jspx:
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
    <jsp:scriptlet> request.getRequestDispatcher("WEB-INF/page/Home.jspx").forward(request,response);
    </jsp:scriptlet>
    </jsp:root>
    This works, but I now have the problem of not getting a valid FacesContext:
    500 Internal Server Error
    javax.servlet.jsp.JspException: Cannot find FacesContext
    at javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java:405)
    at com.sun.faces.taglib.jsf_core.ViewTag.doStartTag(ViewTag.java:105)
    at web2d_inf._page._Home_jspx._jspService(_Home_jspx.java:100)
    [SRC:/WEB-INF/page/Home.jspx:9]
    at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.0.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:662)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:370)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:478)
    etc. etc.
    What is the required way of setting up the forward (and having a valid FacesContext)?
    I know that this is a JHeadstart problem, but maybe you guys know how to solve it.
    Part of my web.xml:
    <description>Empty web.xml file for Web Application</description>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
    </context-param>
    <context-param>
    <param-name>javax.faces.CONFIG_FILES</param-name>
    <param-value>/WEB-INF/faces-config.xml,/WEB-INF/custom-faces-config.xml,/WEB-INF/JhsCommon-beans.xml,/WEB-INF/AppModule-Breadcrumb-beans.xml,/WEB-INF/Bpas-beans.xml,/WEB-INF/BpasLookup-beans.xml,/WEB-INF/GroupsLookup-beans.xml,/WEB-INF/PersonsLookup-beans.xml,/WEB-INF/OrganizationsLookup-beans.xml</param-value>
    </context-param>
    <context-param>
    <param-name>CpxFileName</param-name>
    <param-value>sumawest.view.DataBindings</param-value>
    </context-param>
    <filter>
    <filter-name>adfFaces</filter-name>
    <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
    </filter>
    <filter>
    <filter-name>adfBindings</filter-name>
    <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <url-pattern>*.jspx</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jspx</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <servlet-name>ordDeliverMedia</servlet-name>
    </filter-mapping>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>ordDeliverMedia</servlet-name>
    <servlet-class>oracle.ord.html.OrdPlayMediaServlet</servlet-class>
    <init-param>
    <param-name>releaseMode</param-name>
    <param-value>Stateful</param-value>
    </init-param>
    </servlet>
    <servlet>
    <servlet-name>resources</servlet-name>
    <servlet-class>oracle.adf.view.faces.webapp.ResourceServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>ordDeliverMedia</servlet-name>
    <url-pattern>ordDeliverMedia</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>resources</servlet-name>
    <url-pattern>/adf/*</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>35</session-timeout>
    </session-config>
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    <welcome-file-list>
    <welcome-file>index.jspx</welcome-file>
    </welcome-file-list>

    I do something similar in my index.jspx file - but I needed to add "faces" to the url path. This will have the faces servlet process it and setup the faces context.
    Have you tried changing
    request.getRequestDispatcher("WEB-INF/page/Home.jspx").forward(request,response);to
    request.getRequestDispatcher("faces/WEB-INF/page/Home.jspx").forward(request,response);

  • Error accessing the page of the SOA Composer

    Hello friends,
    I have a problem when I try to load the page of the SOA Composer
    - I tried to change the Target of the application (Admin Server), when performing this change if you load the page the soa composer when entering credentials and gives lick the login button reappears on the message page:
    Error 500 - Internal Server Error
    From RFC 2068 Hypertext Transfer Protocol - HTTP/1.1:
    10.5.1 500 Internal Server Error
    The server encountered an unexpected condition Which it prevented us from fulfilling the request.
    - When the deployed application in the cluster and you try to access the soa composer page shown on the page:
    Error 500 - Internal Server Error
    From RFC 2068 Hypertext Transfer Protocol - HTTP/1.1:
    10.5.1 500 Internal Server Error
    The server encountered an unexpected condition Which it prevented us from fulfilling the request.
    Log:
    <May 22, 2013 9:38:41 AM CDT> <Error> <Cluster> <BEA-003111> <No channel exists for replication calls for cluster soa_Cluster>
    <May 22, 2013 9:38:41 AM CDT> <Warning> <RMI> <BEA-080003> <RuntimeException thrown by rmi server: weblogic.cluster.replication.ReplicationManagerServerRef@
    10, implementation: 'weblogic.cluster.replication.ReplicationManager@32101bc1', oid: '16', implementationClassName: 'weblogic.cluster.replication.Replicatio
    nManager'
    java.lang.SecurityException: Incorrect channel used for replication.
    java.lang.SecurityException: Incorrect channel used for replication
    at weblogic.cluster.replication.ReplicationManagerServerRef.checkChannelPrivileges(ReplicationManagerServerRef.java:108)
    at weblogic.cluster.replication.ReplicationManagerServerRef.checkPriviledges(ReplicationManagerServerRef.java:83)
    at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:314)
    at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:944)
    at weblogic.rjvm.RJVMImpl.dispatch(RJVMImpl.java:1021)
    Truncated. see log file for complete stacktrace
    >
    <May 22, 2013 9:38:41 AM CDT> <Error> <Cluster> <BEA-003111> <No channel exists for replication calls for cluster soa_Cluster>
    <May 22, 2013 9:38:41 AM CDT> <Warning> <RMI> <BEA-080003> <RuntimeException thrown by rmi server: weblogic.cluster.replication.ReplicationManagerServerRef@
    10, implementation: 'weblogic.cluster.replication.ReplicationManager@32101bc1', oid: '16', implementationClassName: 'weblogic.cluster.replication.Replicatio
    nManager'
    java.lang.SecurityException: Incorrect channel used for replication.
    java.lang.SecurityException: Incorrect channel used for replication
    at weblogic.cluster.replication.ReplicationManagerServerRef.checkChannelPrivileges(ReplicationManagerServerRef.java:108)
    at weblogic.cluster.replication.ReplicationManagerServerRef.checkPriviledges(ReplicationManagerServerRef.java:83)
    at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:314)
    at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:944)
    at weblogic.rjvm.RJVMImpl.dispatch(RJVMImpl.java:1021)
    Truncated. see log file for complete stacktrace
    Any recommendation to fix this problem and I try to create and retrieve the DVM that I have in my environment SOA 11g (11.1.1.3)
    thanks

    Actually, that's exactly what we're doing.
    Later parts of the code have to look at the fill color of each item, check its type (gradient -vs- spot) and compare it to other colors.  In order to avoid a series of 'if' statements every time, we have made a function that takes each page item and returns a path item from it so we can work with that within the rest of the code (it's easier to write all of these comparisons if your'e always expecting to get a path item, and the first path item of every compound path has properties that apply to the entire compound path..) SO...  that function looks like this:
    function getLeadItem(glPage) {   //glPage is the Page Item
        if (glPage.typename == 'CompoundPathItem'){
            return glPage.pathItems[0]    //returns the first path item of the compound path (...but does not work)
        } else {
            return glPage  (if it is a normal page item, it just returns itself)
        glPage = null
    for all of the page items that are regular path items, the code later on that looks like this:
    if(item.fillColor == '[GradientColor]'){
                selectedColor = doc.activeLayer.pageItems[y].fillColor.gradient
    But any of the compound path ones break, which is why we made the function earlier, so that 'item' would ALWAYS be a path item, and not compound.

  • Error Accessing JSF Tags in html div

    Hi,
    I am getting an error when trying to access <h:outputTest from within div. I am trying to embed a style sheet dynamically into the div.
    Following is my code:
    <div class="headerSDPLogo <h:outputText value='#{nlsSupport.align_logo}'/> ">The JSF tag isnt parsed at all. Accessing <h:outputText returns me this error.
    com.sun.facelets.FaceletException:
    Error Traced[line: 13] The value of attribute "class" associated with an element type "div" must not contain the '<' character.What could be the possible turnaround to this.
    Thanks.

    Mujju101 wrote:
    <div class="headerSDPLogo <h:outputText value='#{nlsSupport.align_logo}'/> ">What could be the possible turnaround to this.This perhaps?
    <div class="headerSDPLogo #{nlsSupport.align_logo}">

  • 404 errors with welcome file

    Here's a strange one.
    I've successfully deployed a test application
    with welcome-file-list directive as the only
    entry (besides required ?xml and DOCTYPE headers).
    When I attempt to access my page e.g., http://myMachine:port/testApp, the URL
    changes to read http://myMachine:port/testApp/welcome.htm as expected
    but I get 404 errors saying the page cannot be found.
    Web.xml successfully passes my XML parser so I don't think
    that is the problem.
    Any ideas?
    Thanks,
    TC Young

    Hi.
    What's the layout of your webapp directory structure? More to the point,
    your welcome.htm file should be in the root directory of your webapp. Can
    you confirm this is where you have it?
    Also, please post the relevant bits of your web.xml file here.
    Thanks,
    Michael
    TC Young wrote:
    My apologies.
    I'm running WL 6.1 on Solaris 2.6.
    The weblogic logs do not mention any 'Resource not found'
    exceptions.
    Thanks.
    "TC Young" <[email protected]> wrote:
    Here's a strange one.
    I've successfully deployed a test application
    with welcome-file-list directive as the only
    entry (besides required ?xml and DOCTYPE headers).
    When I attempt to access my page e.g., http://myMachine:port/testApp,
    the URL
    changes to read http://myMachine:port/testApp/welcome.htm as expected
    but I get 404 errors saying the page cannot be found.
    Web.xml successfully passes my XML parser so I don't think
    that is the problem.
    Any ideas?
    Thanks,
    TC Young
    Michael Young
    Developer Relations Engineer
    BEA Support

  • Very odd HTTP 404 Error

    I am getting the HTTp 404 error on some pages in APEX 3.0.0.00.20.
    These are the pages I get the error:
    1. From Home(APEX) Tab when I click the "Application Builder".
    2. From Home(APEX) Tab "Application Builder" Dropdown, select my application 101.
    3. From My App 101 when I click on the "Application 101" button on the developer toolbar.
    4. From the Application Builder Tab on any page in My App 101 when I click on a Named "List of Values" to edit it.
    This is the Error Log:
    [Mon Jul 23 16:22:03 2007] [notice] FastCGI: process manager initialized
    [Mon Jul 23 16:22:10 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185232930:XXX.XXX.XXX.11:3788:2364:2,0] mod_plsql: /pls/htmldb/htmldb HTTP-503 ORA-12514
    [Mon Jul 23 16:22:15 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185232935:XXX.XXX.XXX.11:3788:2520:2,0] mod_plsql: /pls/htmldb/htmldb HTTP-503 ORA-12514
    [Mon Jul 23 16:22:23 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185232943:XXX.XXX.XXX.11:3788:2536:2,0] mod_plsql: /pls/htmldb/htmldb HTTP-503 ORA-12514
    [Mon Jul 23 16:22:52 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185232972:XXX.XXX.XXX.11:3788:2544:1,0] mod_plsql: /pls/htmldb/f HTTP-503 ORA-12514
    [Mon Jul 23 16:27:17 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233236:XXX.XXX.XXX.11:3788:900:9,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:27:17 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233236:XXX.XXX.XXX.11:3788:900:9,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:27:44 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233239:XXX.XXX.XXX.11:3788:1272:5,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:27:44 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233239:XXX.XXX.XXX.11:3788:1272:5,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:27:59 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233278:XXX.XXX.XXX.11:3788:1272:9,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:27:59 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233278:XXX.XXX.XXX.11:3788:1272:9,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:28:07 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233282:XXX.XXX.XXX.11:3788:3516:3,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:28:07 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233282:XXX.XXX.XXX.11:3788:3516:3,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:31:37 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233496:XXX.XXX.XXX.11:3788:816:1,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:31:37 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233496:XXX.XXX.XXX.11:3788:816:1,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:31:43 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233502:XXX.XXX.XXX.11:3788:816:2,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:31:43 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233502:XXX.XXX.XXX.11:3788:816:2,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:31:54 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233513:XXX.XXX.XXX.11:3788:816:17,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:31:54 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233513:XXX.XXX.XXX.11:3788:816:17,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:32:58 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233577:XXX.XXX.XXX.11:3788:2464:17,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:32:58 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233577:XXX.XXX.XXX.11:3788:2464:17,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:34:44 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233683:XXX.XXX.XXX.11:3788:2480:2,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:34:44 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233683:XXX.XXX.XXX.11:3788:2480:2,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:34:50 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233689:XXX.XXX.XXX.11:3788:2480:3,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:34:50 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233689:XXX.XXX.XXX.11:3788:2480:3,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:34:57 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233697:XXX.XXX.XXX.11:3788:2540:14,0] File does not exist: d:/oracle/product/10.2.0/http_1/apache/apache/htdocs/favicon.ico
    [Mon Jul 23 16:35:25 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233724:XXX.XXX.XXX.11:3788:2616:2,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:35:25 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233724:XXX.XXX.XXX.11:3788:2616:2,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:35:41 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233740:XXX.XXX.XXX.11:3788:2616:30,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:35:41 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233740:XXX.XXX.XXX.11:3788:2616:30,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:36:15 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233765:XXX.XXX.XXX.11:3788:2616:34,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:36:15 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233765:XXX.XXX.XXX.11:3788:2616:34,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:37:05 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233824:XXX.XXX.XXX.11:3788:2616:74,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:37:05 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233824:XXX.XXX.XXX.11:3788:2616:74,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:38:46 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233925:XXX.XXX.XXX.11:3788:900:11,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:38:46 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233925:XXX.XXX.XXX.11:3788:900:11,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:41:50 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185234109:XXX.XXX.XXX.11:3788:3760:4,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:41:50 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185234109:XXX.XXX.XXX.11:3788:3760:4,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:44:05 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185234244:XXX.XXX.XXX.11:3788:2456:5,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:44:05 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185234244:XXX.XXX.XXX.11:3788:2456:5,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:47:01 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185234420:XXX.XXX.XXX.11:3788:1820:12,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:47:01 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185234420:XXX.XXX.XXX.11:3788:1820:12,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:48:30 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185234509:XXX.XXX.XXX.11:3788:1488:10,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:48:30 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185234509:XXX.XXX.XXX.11:3788:1488:10,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f

    Hi Chris,
    The ORA-12514 is -
    jes@shellprompt[7:22am]~> oerr ora 12514
    12514, 00000, "TNS:listener does not currently know of service requested in connect descriptor"
    // *Cause:  The listener received a request to establish a connection to a
    // database or other service. The connect descriptor received by the listener
    // specified a service name for a service (usually a database service)
    // that either has not yet dynamically registered with the listener or has
    // not been statically configured for the listener.  This may be a temporary
    // condition such as after the listener has started, but before the database
    // instance has registered with the listener.
    // *Action:
    //  - Wait a moment and try to connect a second time.
    //  - Check which services are currently known by the listener by executing:
    //    lsnrctl services <listener name>
    //  - Check that the SERVICE_NAME parameter in the connect descriptor of the
    //    net service name used specifies a service known by the listener.
    //  - If an easy connect naming connect identifier was used, check that
    //    the service name specified is a service known by the listener.
    //  - Check for an event in the listener.log file.So looks like problems with your listener, the ORA-3113 is more serious -
    jes@shellprompt[7:52am]~> oerr ora 3113
    03113, 00000, "end-of-file on communication channel"
    // *Cause: The connection between Client and Server process was broken.
    // *Action: There was a communication error that requires further investigation.
    //          First, check for network problems and review the SQL*Net setup.
    //          Also, look in the alert.log file for any errors. Finally, test to
    //          see whether the server process is dead and whether a trace file
    //          was generated at failure time.An ORA-3113 usually means a call to support because something has gone very wrong (the error is kind of a last ditch message that something serious went wrong, but the message itself is not specific about what that 'thing' was, however support can track it down from the logs/traces etc).
    How reproducible is this? Was it a 'one-off', or if you restart the listener if everything back to 'normal'?

  • I get problem loading page (error 404) it says the page cannot be found when i try to access the game Mobsters through my mysapce account and i cannot access it no longer through firefox and i want to find out why i cant, can you guys please help?

    i cant access my mobsters account through myspace. every time i try to access it i get "problem loading page" "this page cannot be found" "404 error" and it wont let me access it. myspace works fine but as soon as i click on the mobsters app i get the 404 error, this page cannot be found, problem loading page! can you please help?
    == This happened ==
    Every time Firefox opened
    == i try to access mobsters game through myspace

    I dont understand the answer
    '''''""The problem can be solved by opening FF and choosing Tools...Add On's...select the SEARCH addon and choose UNINSTALL...restart FF browser when asked, then reload Mobsters. This worked for me. The suggestion on the 404 that says to remove Search via Add/Remove Programs is completely BS, as Search doesnt show there. ""'''''

Maybe you are looking for

  • How can I make my application as webservice

    Hi All, I'd like to know ,how can I make my application as webservice which has built on strut framework. with regards Babu H

  • Apple care contract for ipad

    does anyone know if an apple care contract bought in the uk would be valid in belgium? My mother (uk based) wants to buy an ipad for her grandchildren (living in Belgium).  She doesn't know if it makes sense to buy the apple care contract or not?  If

  • Nokia 701 - GPS Signal Lost (Never get it to work...

    I'm having trouble using the GPS on my 701. After a minute it will say  "GPS signal lost" all the time. And moreover the current position it is indicating is wrong.(I'm using it outside) I've tried positioning method Wi-Fi/Network and Network Based.

  • Java error Help!!!

    If I try to run Java I get the following message: Java Runtime Enviroment Cannot Be Loaded If I try to check to see if Java is still loaded I get this message: Several Java Virtual Machines Running In The Same Process Caused An error I am running Win

  • Copy value from one ctype to other  ctype

    Hi Experts, I am creating a sales order with reference to a contract. I want to copy the rate (KBETR) of condition type ZXXX from contract to condition type ZYYY in sale order. But I am not able to copy it through copy control. Can anyone help me????