Global Enqueue Deadlock causing 404 errors?

I am having a real problem with only certain pages in my application. I can open, edit, and run these pages from the application developer, but when my users go to try and use them, they get a 404 Page Not Found error. One page is a popup that loads from a sub-form. The user clicks on a link and the entry pops-up for them to complete, save, and close. The page pops up, but when they try to use the Save Button to complete the entry, they immediately get the 404 error.
On another, there is a link to a page where the page loads automatically based on default parameters. If they want to rerun the report, clicking on the Submit button to rerun the page immediately generates the error.
I have looked in the DB alert log and I can see several references to the following error:
Wed Nov 04 06:06:21 2009
Global Enqueue Services Deadlock detected. More info in file
e:\oracle\10gr2\admin\ts\bdump\ts1_lmd0_724.trc.
Are the two even related? Is there some other explanation or fix to try?
I'm running Application Express 3.2.0.00.27 on Windows 2003 R2 using Oracle Database 10.2.0.2.
This ones got me hopelessly confused. I've submitted an SR under Metalink, but I thought maybe someone here would have an idea as well.

This one came out of an error log:
: /pls/htmldb/f HTTP-503 ORA-12528
[Mon Nov 02 20:11:48 2009] [error] [client 192.168.168.90] [ecid: 1257217908:192.168.168.201:3824:3992:8,0] mod_plsql
(seeing these starting about 2 days ago - coincidentally the same time I rebooted the server to try and clear up the GEQ messages...
Now I'm seeing these (also in error log):
[Thu Nov 05 07:30:22 2009] [error] [client 192.168.120.53] [ecid: 1257431422:192.168.168.201:3824:4052:2078,0] mod_plsql: /pls/htmldb/wwv_flow.accept HTTP-404 ORA-06550: line 22, column 3:\nPLS-00306: wrong number or types of arguments in call to 'ACCEPT'\nORA-06550: line 22, column 3:\nPL/SQL: Statement ignored\n
Access log just looks like a ton of request/answer information regarding session traffic. Didn't see anything out of ordinary on cursory inspection.

Similar Messages

  • J_security_check  causing 404 Error

    <b>Hello All<BR>
    I am using Weblogic 8.1 SP3, I am trying to use the Active Directory as a means for Authentication via a FORM based login-module. <BR>
    I have followed the directions in the Weblogic Security documentation but I am getting a 404 Error when I submit the login form. It looks like that my configuration does not recognize the j_security_check. I don't know what is missing in my configuration. It is just a plain simple Weblogic Server domain. <BR>
    I have pasted my web.xml, weblogic.xml, config.xml and login.html file. I would appreciate any help in this regards.<BR>
    Thanks in advance<BR>
    Rajeev Bhogal <BR></b>------------------------------------------------<BR>
    <b>Web.xml</b><BR>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
         <welcome-file-list>
              <welcome-file>welcome.jsp</welcome-file>
         </welcome-file-list>
         <security-constraint>
              <web-resource-collection>
                   <web-resource-name>welcomePage</web-resource-name>
                   <description>
                        The Welcome Page and all other resources
                   </description>
                   <url-pattern>/*</url-pattern>
                   <http-method>GET</http-method>
    <http-method>POST</http-method>
              </web-resource-collection>
              <auth-constraint>
                   <role-name>COSTWebAppUser</role-name>
              </auth-constraint>
         </security-constraint>
         <login-config>
              <auth-method>FORM</auth-method>
              <realm-name>default</realm-name>
              <form-login-config>
                   <form-login-page>login.html</form-login-page>
                   <form-error-page>login-invalid.jsp</form-error-page>
              </form-login-config>
         </login-config>
         <security-role>
              <description>The Cost Web App users</description>
              <role-name>COSTWebAppUser</role-name>
         </security-role>
    </web-app>
    ---------------------------------------------------<BR>
    <b>Weblogic.xml</b><BR>
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE weblogic-web-app
    PUBLIC "-//BEA Systems, Inc.//DTD Web Application 8.1//EN"
    "http://www.bea.com/servers/wls810/dtd/weblogic810-web-jar.dtd" >
    <weblogic-web-app>
         <security-role-assignment>
              <role-name>COSTWebAppUser</role-name>
              <principal-name>WebAppUser_group</principal-name>
         </security-role-assignment>
         <container-descriptor>
              <check-auth-on-forward/>
         </container-descriptor>
         <context-root>cost</context-root>
    </weblogic-web-app>
    -------------------------------------------------<BR>
    <b>Config.xml</b><BR>
    <?xml version="1.0" encoding="UTF-8"?>
    <Domain ConfigurationVersion="8.1.3.0" Name="cost">
    <Server ExpectedToRun="false" ListenAddress="" ListenPort="7002"
    Name="costserver" NativeIOEnabled="true"
    ReliableDeliveryPolicy="RMDefaultPolicy" ServerVersion="8.1.3.0">
    <SSL Enabled="false" HostnameVerificationIgnored="false"
    IdentityAndTrustLocations="KeyStores" Name="costserver"/>
    </Server>
    <JMSFileStore Directory="rmfilestore" Name="FileStore"/>
    <WSReliableDeliveryPolicy DefaultRetryCount="10"
    DefaultTimeToLive="60000" Name="RMDefaultPolicy" Store="FileStore"/>
    <Security Name="cost" PasswordPolicy="wl_default_password_policy"
    Realm="wl_default_realm" RealmSetup="true">
    <weblogic.security.providers.authentication.DefaultAuthenticator
    ControlFlag="SUFFICIENT"
    Name="Security:Name=myrealmDefaultAuthenticator" Realm="Security:Name=myrealm"/>
    <weblogic.security.providers.authentication.DefaultIdentityAsserter
    ActiveTypes="AuthenticatedUser"
    Name="Security:Name=myrealmDefaultIdentityAsserter" Realm="Security:Name=myrealm"/>
    <weblogic.security.providers.authorization.DefaultRoleMapper
    Name="Security:Name=myrealmDefaultRoleMapper" Realm="Security:Name=myrealm"/>
    <weblogic.security.providers.authorization.DefaultAuthorizer
    Name="Security:Name=myrealmDefaultAuthorizer" Realm="Security:Name=myrealm"/>
    <weblogic.security.providers.authorization.DefaultAdjudicator
    Name="Security:Name=myrealmDefaultAdjudicator" Realm="Security:Name=myrealm"/>
    <weblogic.security.providers.credentials.DefaultCredentialMapper
    Name="Security:Name=myrealmDefaultCredentialMapper" Realm="Security:Name=myrealm"/>
    <weblogic.management.security.authentication.UserLockoutManager
    Name="Security:Name=myrealmUserLockoutManager" Realm="Security:Name=myrealm"/>
    <weblogic.management.security.Realm
    Adjudicator="Security:Name=myrealmDefaultAdjudicator"
    AuthenticationProviders="Security:Name=myrealmActiveDirectoryAuthenticator|Security:Name=myrealmDefaultAuthenticator|Security:Name=myrealmDefaultIdentityAsserter"
    Authorizers="Security:Name=myrealmDefaultAuthorizer"
    CredentialMappers="Security:Name=myrealmDefaultCredentialMapper"
    DefaultRealm="true" DisplayName="myrealm"
    Name="Security:Name=myrealm"
    RoleMappers="Security:Name=myrealmDefaultRoleMapper" UserLockoutManager="Security:Name=myrealmUserLockoutManager"/>
    <weblogic.security.providers.authentication.ActiveDirectoryAuthenticator
    ControlFlag="SUFFICIENT"
    Credential="{3DES}wC2qC6JGP2Ejslt9YBUQXA=="
    GroupBaseDN="OU=WebApp Testing,DC=dna,DC=tcorp,DC=cibcwm,DC=com"
    Host="10.127.30.77"
    Name="Security:Name=myrealmActiveDirectoryAuthenticator"
    Principal="CN=costadmin,CN=Users,DC=dna,DC=tcorp,DC=cibcwm,DC=com"
    Realm="Security:Name=myrealm" UserBaseDN="CN=Users,DC=dna,DC=tcorp,DC=cibcwm,DC=com"/>
    </Security>
    <EmbeddedLDAP
    Credential="{3DES}itnOzBVUKKxXTwrsE0931yGJo8kr/c/yoacbH+aqD78=" Name="cost"/>
    <SecurityConfiguration
    Credential="{3DES}UAu57FhReq0paDOgNlRBxIhitxG70lwKu8FLhEvrneZRBFWCPi0gViZCPB3Qx5h09H7cef7V6Y9MXlPAv9Zgx9lz/j2w8BXL"
    Name="cost" RealmBootStrapVersion="1"/>
    <Realm FileRealm="wl_default_file_realm" Name="wl_default_realm"/>
    <FileRealm Name="wl_default_file_realm"/>
    <PasswordPolicy Name="wl_default_password_policy"/>
    <JMSServer Name="WSStoreForwardInternalJMSServercostserver"
    Store="FileStore" Targets="costserver">
    <JMSQueue CreationTime="1153845019403"
    JNDIName="jms.internal.queue.WSStoreForwardQueue"
    JNDINameReplicated="false" Name="WSInternaljms.internal.queue.WSStoreForwardQueuecostserver"/>
    <JMSQueue CreationTime="1153845019840"
    JNDIName="jms.internal.queue.WSDupsEliminationHistoryQueue"
    JNDINameReplicated="false" Name="WSInternaljms.internal.queue.WSDupsEliminationHistoryQueuecostserver"/>
    </JMSServer>
    <Application Name="cost" Path="H:\eclipse\workspace\cost"
    StagingMode="nostage" TwoPhase="true">
    <WebAppComponent Name="WebRoot" Targets="costserver" URI="WebRoot"/>
    </Application>
    </Domain>

    Hi Brian;
    From the error we see " http://server:7001/coolapp/messagebroker/amf'". It seems you are trying to access the flex app over https but access the backend remote servce via http.
    If that is the case, I have an old blog post that may help in that situation. http://blogs.adobe.com/lin/archives/2008/04/how_to_access_f.html
    If  that is not what you are trying to do, or your issue is more compilcated, please open a support case if you have a support contract.

  • Non-alphanumeric characters in textarea causing 404 errors

    I'm only just becoming acquainted with Coldfusion, as I've been asked to fix a problem in an existing system. The system consists of a simple html form containing a text area, among other input fields. The form is submitted to a cfm script, which displays a confirmation page and sends a couple of emails. The problem is that whenever the user enters any (as far as I can tell) non-alphanumeric characters, e.g. quotes, commas or brackets, in the textarea field, they get a 404 response from the server.
    I tried a number of things to identify the problem, including escaping the text in javascript before submission, but didn't get anywhere. The last thing I tried was installing a local version of the CF on my workstation, hoping to reproduce the problem and thus debug it more easily. However, on my local CF setup the problem does not occur.
    Can anyone help me debug this please? Thanks,
    Marcin

    Thanks for your response. The form method is "post". The only thing that the CFM handler does with this field (gametestexperience) is include it at the bottom of an email message:
    <CFMAIL TO="[email protected]"
    FROM="#email#"
    SUBJECT="Tester Application"
    type="html"
    server = "Cluster9.us.messagelabs.com">
      Automatically logged from the internet form:<p><p>
    <table>
    <tr><td>EmailFrom</td><td>#email#</td>
    <tr><td>From</td><td>#firstName# #lastName#</td></tr>
    <tr><td>Sent</td><td>#DateFormat(Now())#</td></tr>
    <tr><td>Referrer</td><td>#referer#</td></tr>
    <tr><td>Confirmation</td><td>#agree1#, #agree2#, #agree3#, #agree4#, #agree5#</td></tr>
    <tr><td>FamilyCompetitor</td><td>#familycompetitor#</td></tr>
    <tr><td>FamilyWork</td><td>#familywork#</td></tr>
    <tr><td>ReferredBy</td><td>#referredBy#</td></tr>
    <tr><td>RefererDetails</td><td>#refererdetails#</td></tr>
    <tr><td>FirstName</td><td>#firstName#</td></tr>
    <tr><td>LastName</td><td>#lastName#</td></tr>
    <tr><td>Email</td><td>#email#</td></tr>
    <tr><td>TelephoneHome</td><td>#telephoneHome#</td></tr>
    <tr><td>TelephoneCell</td><td>#telephoneCell#</td></tr>
    <tr><td>TelephoneDay</td><td>#telephoneDay#</td></tr>
    <tr><td>City</td><td>#homeTown#</td></tr>
    <tr><td>Employment</td><td>#employment#</td></tr>
    <tr><td>GamerType</td><td>#gamerType#</td></tr>
    <tr><td>GamerStyle</td><td>#gamerStyle#</td></tr>
    <tr><td>HoursPerWeek</td><td>#hoursPerWeek#</td></tr>
    <tr><td>PreferredGenres</td><td>#preferredGenres#</td></tr>
    <tr><td>Consoles</td><td>#console#</td></tr>
    <tr><td>GamesPlayed</td><td>#gameplayed#</td></tr>
    <tr><td>Available</td><td>#available#</td></tr>
    <tr><td>TestedBefore</td><td>#testedBefore#</td></tr>
    <tr><td>TestingExperience</td><td>#gametestexperience#</td></tr>
    </table>
      Thanks,<P>
      Focus Test Team!<P>
    </CFMAIL>

  • Impossible to translate an application to German (404 error)

    I download XLIFF file for translated application and, without translating, upload it back. To test, I set appplication language by browser.
    Once I change the language to German an refresh the page, I get 404 error.
    I have uploader the application to the Oracle site (http://apex.oracle.com/pls/otn/f?p=2721). If you show this page in german, he gets 404 error.
    Maybe someone having access to APEX workspace on Oracle's AS can look at logs and tell me what's happening?
    When I try to run this application in german on our development AS (10g with OAS), I see nothing in Logs.
    Thank you.
    Igor

    kortchnoi wrote:
    I download XLIFF file for translated application and, without translating, upload it back. To test, I set appplication language by browser.
    Once I change the language to German an refresh the page, I get 404 error.
    I have uploader the application to the Oracle site (http://apex.oracle.com/pls/otn/f?p=2721). If you show this page in german, he gets 404 error.
    Maybe someone having access to APEX workspace on Oracle's AS can look at logs and tell me what's happening?
    When I try to run this application in german on our development AS (10g with OAS), I see nothing in Logs.
    Thank you.
    IgorI hate problems like the one you described :(
    You'll need to isolate where the 404 error is happening. Can you still run it in whatever language it worked in before without the error?
    Here's what I've seen can cause 404 errors. Sorry this is vague, but its all I have to go on.
    1. Typos in .conf files: httpd.conf, marvel.conf, dads.conf
    2. tnsnames listener is not up
    3. http server is not up
    4. typos in URL
    5. PL/SQL has proper version; Apex 3.2 needs PL/SQL version 10.1.2.0.0
    I hope someone can provide a more direct answer

  • Global Enqueue Services Deadlock detected while executing job

    Hi Gurus,
    Need your help in analying below situation.
    I got a Global Enqueue Services Deadlock in our 2-node RAC stating deadlock detected due to auto execute of job. But when I checked job status its was executed successfully. Also, the trace files gives some session id , client id which I am not able to mapped to any particular instance. trace files output as below. What would be the approach for such situtation and how to find the relevant sql which caused such deadlocks.
    ENV - 11gR2 RAC 2-node with ASM
    Linux RHEL 6.2
    Trace File output
    Trace file /diag/app/ora11g/diag/rdbms/remcorp/REMCORP1/trace/REMCORP1_j001_25571.trc
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Real Application Clusters and Automatic Storage Management options
    ORACLE_HOME = /u01/app/ora11g/product/11.2.0/db_1
    System name: Linux
    Node name: remedy-ebu-db1
    Release: 2.6.32-220.el6.x86_64
    Version: #1 SMP Wed Nov 9 08:03:13 EST 2011
    Machine: x86_64
    Instance name: REMCORP1
    Redo thread mounted by this instance: 1
    Oracle process number: 38
    Unix process pid: 25571, image: oracle@remedy-ebu-db1 (J001)
    *** 2013-05-17 02:00:34.174
    *** SESSION ID:(1785.23421) 2013-05-17 02:00:34.174
    *** CLIENT ID:() 2013-05-17 02:00:34.174
    *** SERVICE NAME:(SYS$USERS) 2013-05-17 02:00:34.174
    *** MODULE NAME:() 2013-05-17 02:00:34.174
    *** ACTION NAME:() 2013-05-17 02:00:34.174
    ORA-12012: error on auto execute of job 83
    ORA-00060: deadlock detected while waiting for resource
    ORA-06512: at "ARADMIN.CMS_CUSTOMER_DETAILS", line 3
    ORA-06512: at line 1
    Regards,
    Nikhil Mehta.

    Look at your alert.log, search for messages such as this:
    Wed Jun 16 15:05:58 2010
    Global Enqueue Services Deadlock detected. More info in fileSearch for the .trc file mentioned and opened it, it should have all the info you need.
    Even on the error you posted, you already have some very important information:
    ORA-06512: at "ARADMIN.CMS_CUSTOMER_DETAILS", line 3In short, you have another job, or a query that runs at the same time as your job which wants to do some DML on rows of that table and at the same time your Job wants to do some DML on another set of rows tha table the query has locked first.
    As in:
    a) Query/Job X Locks some rows of ARADMIN.CMS_CUSTOMER_DETAILS.
    b) Your job locks some rows of ARADMIN.CMS_CUSTOMER_DETAILS.
    c) Your job wants the lock on the rows that X has locked first.
    d) X wants the lock on the rows your job has locked first.
    e) Deadlock.
    So if I have something you want, and you have something I want, we are both "deadlocked" thus LMD comes in and kill one of us to resolve the impass. It's probably killing the X job/query and so that's why your job is still executing successfully.
    So you have two options:
    1) Identify the X Job/Query -- either stop it or change it's execution time
    2) Your job - either stop it or change it's execution time

  • Global enqueue services deadlock

    Hi,
    In two nodes RAC in Solaris, large 8 gig diag process trace file was generated in database bdump folder due to Global enqueue services deadlock.
    - It filled up the ORACLE_BASE/ORACLE_HOME file system
    - ONS died in node1
    - database brought one data file to offline as it was unable to write audit information about it
    When I am checking with Oracle support, they say, Global enqueue services dead lock was result of application dead lock per analyzing the trace.
    My questions are
    - why diag process generating such a large trace file?
    - why ONS died?
    - why file went to offiline?
    I like to know anyone had such issue and how it is fixed. Is there known bug/patch?
    Thanks,
    Ashok

    They concluded from analyzing the trace files.
    Also there is patch to reduce the trace file size Patch 5470095
    Ashok

  • Global Enqueue Services Deadlock detected

    Hello All,
    I am using Oracle RAC 11.2.0.3 on AIX 7.1.
    In my later logs of node 1:
    I am seeing the below message :
    Global Enqueue Services Deadlock detected1. Why there is no ORA-00600?
    2. is this the same as ORA-0600?

    Global Enqueue Services Deadlock detected1. Why there is no ORA-00600?
    2. is this the same as ORA-0600?it is just deadlock, but global, between sessions of different nodes

  • Use global temp table for DML error logging

    our database is 11.2.0.4 enterprise edition on solaris 10
    we are wondering if anyone has an opinion of or has done this before, to use a global temp table for DML error logging. We have a fairly busy transactional database with 2 hot tables for inserts. The regular error table created with dbms_errlog has caused many deadlocks which we don't quite understand yet. we have thought using global temp table for the purpose, and that seemed to work, but we can't read error from the GTT, the table is empty even reading from the same session as inserts. Does anyone have an idea why?
    Thanks

    The insert into the error logging table is done with a recursive transaction therefore it's private from your session which is doing the actual insert.
    Adapted from http://oracle-base.com/articles/10g/dml-error-logging-10gr2.php
    INSERT INTO dest
    SELECT *
    FROM  source
    LOG ERRORS INTO err$_dest ('INSERT') REJECT LIMIT UNLIMITED;
    99,998 rows inserted.
    select count(*) from dest;
      COUNT(*)
        99998
    SELECT *
    FROM  err$_dest
    WHERE  ora_err_tag$ = 'INSERT';
    1400    "ORA-01400: cannot insert NULL into ("E668983_DBA"."DEST"."CODE")"        I    INSERT    1000        Description for 1000
    1400    "ORA-01400: cannot insert NULL into ("E668983_DBA"."DEST"."CODE")"        I    INSERT    10000        Description for 10000
    1400    "ORA-01400: cannot insert NULL into ("E668983_DBA"."DEST"."CODE")"        I    INSERT    1000        Description for 1000
    1400    "ORA-01400: cannot insert NULL into ("E668983_DBA"."DEST"."CODE")"        I    INSERT    10000        Description for 10000
    rollback;
    select count(*) from dest;
      COUNT(*)
            0
    SELECT *
    FROM  err$_dest
    WHERE  ora_err_tag$ = 'INSERT';
    1400    "ORA-01400: cannot insert NULL into ("E668983_DBA"."DEST"."CODE")"        I    INSERT    1000        Description for 1000
    1400    "ORA-01400: cannot insert NULL into ("E668983_DBA"."DEST"."CODE")"        I    INSERT    10000        Description for 10000
    1400    "ORA-01400: cannot insert NULL into ("E668983_DBA"."DEST"."CODE")"        I    INSERT    1000        Description for 1000
    1400    "ORA-01400: cannot insert NULL into ("E668983_DBA"."DEST"."CODE")"        I    INSERT    10000        Description for 10000

  • Getting 404 error when trying to login to Oracle EBS page

    Hi,
    I had installed Oracle EBS 12.0.4 last year and everything was running fine until last week. Last week, we suddenly started seeing this issue - when trying to login to the Oracle EBS page, we are getting the 404 page not found error.
    I have EBS installed on 2 VMs (virtual machines) - one VM has the application server and other VM has the database server. I logged on to the aplpication server to do some debugging and noticed 2 things ->
    1.The Oracle Fullfillment service was not running. I started it, it was up for some time but then it stopped on its own. This happens everytime - after successfully starting the service, it shuts down after sometime. There is nothing in the event viewer except this message "The service may have terminated abnormally, please see the log file generated by the service for more details." I checked the log file, but there is nothing significant inside the log file. Maybe I need to increase the log level. Can any one tell me how can I do that?
    2. Reviver.exe was crashing intermitently on the application server. I belive reviver tries to establish the connection between the application and database server after its broken.
    So I am thinking now that maybe the connection between the app server and the database server is getting broken intermittenlty and this is the root cause of all the problems.
    I dont know how to verify whethe my analysis is correct or not? And it it is, how to resolved it? Is there a setting or a configuration file in which you have to specify the database server details (ip address / host name etc). Can you tell me where can I find this setting?
    Or culd there be something altogether different that is causing the page not found error?
    Thanks in advance,
    Megha

    Hussein,
    The problem is partially solved - I am not getting the 404 error now. The issue was not with the netsvc file. Please see the resolution in NOTE:412980.1 (oafm,forms and oacore not starting up after IP adress change).
    The OC4J services are imperative for any URL for java code. With just the Apache listener running, examples of URLS that will work are ->
    http://HOST.DOMAIN:PORT/OA_MEDIA/FNDLOGOL.gif
    http://HOST.DOMAIN:PORT/
    Any URL for Java code will fail at this stage when OC4J services are down. For example this URL will fail: http://myHost.oracle.com:8000/OA_HTML/ServletPing.
    But now, I am getting 500 Internal server error. Let me know if you kno anything about this error ->
    oracle.apps.fnd.cache.CacheException     at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:228)     at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1485)     at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:354)     at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:211)     at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:171)     at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)     at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1259)     at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1114)     at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:1083)     at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1050)     at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1037)     at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:595)     at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:941)     at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:926)     at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:891)     at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:751)     at oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:1014)     at oracle.apps.fnd.sso.Utils.getAppsContext(Utils.java:525)     at oracle.apps.fnd.sso.AppsLoginRedirect.AppsSetting(AppsLoginRedirect.java:120)     at oracle.apps.fnd.sso.AppsLoginRedirect.init(AppsLoginRedirect.java:170)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.loadServlet(HttpApplication.java:2231)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.findServlet(HttpApplication.java:4617)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.findServlet(HttpApplication.java:4541)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2821)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:740)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)     at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)     at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)     at java.lang.Thread.run(Thread.java:595)Caused by: oracle.apps.jtf.base.resources.FrameworkException: Error in IAS Cache: java.lang.NullPointerException: null Connection     at oracle.apps.jtf.cache.IASCacheProvider.get(IASCacheProvider.java:712)     at oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:4802)     at oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:4624)     at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:216)     ... 33 moreCaused by: oracle.apps.jtf.base.resources.FrameworkException:
    An exception occurred in the method CacheAccess.get
    null
    The base exception is:
    null Connection     at oracle.apps.jtf.base.resources.FrameworkException.convertException(FrameworkException.java:607)     at oracle.apps.jtf.base.resources.FrameworkException.addException(FrameworkException.java:585)     at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:66)     at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:88)     at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:202)     at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:218)     at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:249)     ... 37 more

  • 404 Error when opening Web Analysis

    I have just finished setting up a System 9 test environment (my first environment), which includes Reporting and Analysis System 9 release 9.3.1.2.00. Unfortunately, I'm having trouble getting Web Analysis to open. When I go to the URL (http://localhost:16000/WebAnalysis/WebAnalysis.jsp), I get the following 404 Error:
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    +10.4.5 404 Not Found+
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    The strange thing is, if I open up Workspace on the same server (http://localhost:19000/workspace/), it comes up just fine. I'm very new to Hyperion System 9, so I'm not even sure where to begin. I've already stopped/restarted all of the services and rebooted the servers. I've also tried re-running the Configuration Utility to re-deploy the application server and re-configure the web server, but that didn't fix it either. And for what it's worth, I've tried using the actual server name in the URL instead of 'localhost' and I get the same error. I also tried launching Web Analysis from Workspace -- same error.
    Can you provide any suggestions on where I can start to look?

    I don't know what the cause of the problem was, but a reinstall of Reporting and Analysis - System 9 UI Services (Web Analysis) fixed it.
    Edited by: user10770144 on Apr 21, 2009 1:49 PM

  • Cannot load individual websites; Googling is fine, but URL comes up with a 404 error.

    Since I updated Firefox, it seems my internet connectivity in that browser has dropped. I can Google things (not in the URL box, but in the Google box) perfectly, with the exception that sometimes the link clicked from Google doesn't load. However, I cannot actually visit an individual site by entering the URL. If I directly enter the URL, it comes up with a 404 error, site not found. If I try to navigate to some pages from a Google, it comes up with a connectivity problem page. I would really like to be able to use my Firefox again. In the meantime, I'll have to use Google Chrome.

    Try clearing Firefox's cookies and cache
    Do these steps and then reload the website you're having trouble with.
    * Click the menu button [[Image:New Fx Menu]] , choose History and select Clear Recent History....
    * In the Time Range to clear: drop-down, select Everything.
    * Click the arrow next to Details to display the list of items that can be cleared.
    * Select both Cookies and Cache.
    * Click Clear Now.
    Moreover, normally such issues are caused by a firewall/security software which doesn't recognize & therefore blocks new firefox versions:[[Fix problems connecting to websites after updating Firefox]]
    Also see:
    [[Firefox can't load websites but other browsers can]]
    [[Websites don't load - troubleshoot and fix error messages]]

  • I cannot use Firefox for over a year now as I get a 404 error message. I have cleaned caches etc, deleted & reinstalled twice & it freezes on the Hulu site.

    I cannot use Firefox for over a year now as I get a 404 error message; it is frozen on the Hulu site.

    Are you using a bookmark or does this also happen if you type the address of the main (home) page of the website?
    Bookmarked pages can become invalid, so you may have to enter the main page and then navigate to the wanted page.
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox > Preferences > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox > Preferences > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"

  • Getting 404 error when try to access website

    Hello...I have an iweb created website hosted at GoDaddy. Yesterday I did major changes on the site and uploaded it. If I use the bookmark I have established I can access the site just fine, and it is the current site. if i type in the url I get a 404 error.
    The bookmark is for http://www.galleryt.org/ and it comes up as http://www.galleryt.org/Home.html and everything looks good
    if i type the url www.galleryt.org I am directed to http://galleryt.org/GalleryT/home.html and I get the 404, site can't be found error.....it is that GalleryT after the /org that is causing the problem.
    When I talked to my hosting company they told me they couldn't help me troubleshoot my site but I had a redirect in my index file I needed to fix...unfortunately I really don't know what that means and I don't know how to fix it....I suspect the tech at the hosting service knows what that means but he wouldn't explain it to me...
    So can someone explain to me what I need to do to fix this.
    Thanks

    I reloaded the site and now it is correct. I don't know what was wrong, what I did wrong, but it is fixed now

  • What is 404 error?

    Ive tried to link my podcast page in various place like feedburner, when I put my rss they all tell me there is a 404 error, but my link is working! what does it means?
    http://web.mac.com/preacherallanrich/iWeb/Preacher%20Allan%20Rich/Radio%20%28pod cast%29/Radio%20%28podcast%29.html
    http://rss.mac.com/preacherallanrich/iWeb/Preacher%20Allan%20Rich/Radio%20%28pod cast%29/rss.xml
    G4   Mac OS X (10.4.7)  

    A 404 error means that the server wasn't able to find the requested page.
    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"

  • SharePoint Workflow HTTP 404 Error

    Hey guys,
    I'm testing the functionality of workflow manager 1.0 on my SP 2013 SP1 environment. Both installed at the same Windows Server 2012 Standard.
    I'm able to create and publish a WF using SP designer but when I tested it I got the following error message and status 'Suspended':
    RequestorId: e3e4be0c-8745-2ea6-0000-000000000000. Details: An unhandled exception occurred during the execution of the workflow instance. Exception details: System.ApplicationException: HTTP 404 {"Transfer-Encoding":["chunked"],"X-SharePointHealthScore":["0"],"SPClientServiceRequestDuration":["21"],"SPRequestGuid":["e3e4be0c-8745-2ea6-92a6-b85c9ebf4f31"],"request-id":["e3e4be0c-8745-2ea6-92a6-b85c9ebf4f31"],"X-FRAME-OPTIONS":["SAMEORIGIN"],"MicrosoftSharePointTeamServices":["15.0.0.4617"],"X-Content-Type-Options":["nosniff"],"X-MS-InvokeApp":["1;
    RequireReadOnly"],"Cache-Control":["max-age=0, private"],"Date":["Tue, 18 Nov 2014 13:25:49 GMT"],"Server":["Microsoft-IIS\/8.0"],"X-AspNet-Version":["4.0.30319"],"X-Powered-By":["ASP.NET"]}
    at Microsoft.Activities.Hosting.Runtime.Subroutine.SubroutineChild.Execute(CodeActivityContext context) at System.Activities.CodeActivity.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor
    executor, BookmarkManager bookmarkManager, Location resultLocation)
    Although that message makes no sense to me I can see a HTTP 404 error code but I can't identify what cause that problem!
    In SP log file I can't find any information related to my problem mainly because the file also has events from other services of SP as it is a production environment...it's just too complicated. Also I'm not sure of what to look for in there
    Has anyone ever went through this issue and solved it? Or could anyone help me to find a way to solve it?

    try this:
    1- Create normal user account grant it permission to the site where you will create workflow.
    2- Make sure that you have User Profile Synchronization run and all user profiles are imported
    3-when you create workflow, log with different account than the farm account, normal user that you grant access to the site, then recreate the workflow by this account.
    4- log to the site with the user that you created and create the workflow by using this account.
    Kind Regards,
    John Naguib
    Technical Consultant/Architect
    MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation
    Please remember to mark your question as answered if this solves your problem

Maybe you are looking for

  • Flash video crashes on multiple browsers

    Hi all, My specs: eMachines notebook Intel Core i3 CPU 2GB RAM Windows 7 64 bit Browsers Installed IE8, Firefox 4 and Chrome AVG Free Edition installed Shockwave Flash 10.3.181.4 installed for FF Graphics Driver Intel HD Graphics Driver version 8.15.

  • TimeMachine 'Preparing Backup' forever

    It is showing 'Preparing Backup' for about two hours before I lost patience and cancelled it. And during that two hours, there's even no disk activities or CPU usage so I guess something's broken. Has anyone had the same problem? PS: I'm running Mave

  • Games - shifting to new or reformatted PCs

    Hi all, It seems there are plenty of people here with this problem. Perhaps this should be assessed more seriously by apple. I recently upgraded my PC, and I copied my iTunes library folder to back it up. Now, while iTunes recognises the remaining co

  • Having trouble conecting to Wi-Fi!  Here's the answer...

    THIS WORKS (for most) First, Click/Open your Settings icon, then Click/Open on the Wi-Fi icon, then Click/Open the blue icon dot for the network you want to enter the WEP key for, then Click on the "WEP Password" in the security window, then switch i

  • Can't set desktop image from iPhoto

    my just purchased 17' macbook pro will not set the desktop image from my iphoto pictures I imported from my time machine