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

Similar Messages

  • JSP loading issue: HTTP 404 error

    I have a JSP page that stopped loading up.
    It gives me the Apache HTTP 404 error that it can not find the JSP page.
    There are no servlet classes associated with the JSP page.
    Simply, it is an HTML page calling a JSP page.
    This issue appeared after we(IT team) incorporated servlets on the machine.
    Directory structure changed, but it shouldn't have effected our JSP pages.
    Directory structure
    ../wwwroot/Finance/Labor.html goes to ../wwwroot/Finance/Labor.jsp

    And how does the HTML page invoke the JSP page?
    Are you doing it via a <form> or are you linking to it through an <a href>?
    You really didn't provide very much information. There are a lot of things that could go wrong. For example, Tomcat generally likes its JSPs to be in a specific place which is NOT the default Apache document root. You'd explicitly have to configure Tomcat to use the same Apache document root though.
    Similarly, application specific Servlets are usually in a sub-directory of the one containing JSP files for that application. In other words, you don't really put JSPs in c:/JSPs on one machine, HTML in /home/rycherX/www on another machine and Servlets in \\rycherX\workspace\Servlets on a third.
    The first place to start is to tell us what Servlet Engine you just installed. Tomcat? JBoss? WebSphere?

  • LMS 4.2.1 upgrade from 4.0.1: can't display job information : http 404 error

    HI,
    Since customer has upgraded from 4.0.1 to 4.2.1, he can't display job information when he select job number.
    He has http 404 error.
    He has same error when he want to see threshold configuration:
    Menu Monitor>Fault Monitor > threshold setting
    We noticed that there is many files on C:\Program Files (x86)\CSCOpx\files\rme\dcma\devfiles.
    We can see that CollectionSummary has 4 collector name which are loading status:
    Configuration-> Dashboard -> Configuration
    - Inventory collection
    - Config archive
    - EnergyWise
    - Fault Discovery
    Many thanks for your help,
    Elisabeth

    Doesn't look like it was tested.  Checking why ...
    Zach

  • Trying to add four columns and getting HTTP-404 error

    Hi,
    I am trying to add 4 dropdowns in an form, but I am getting HTTP-404 error if i insert values in to those 4 dropdowns. Please guide me how to proceed with this.
    Regards,
    Pallavi

    I got it to work this way I was putting in a wrong field that was not returning data now it works. Yay!!!!!
    SELECT
    A1.auth_number,
    A1.AUTH_TYPE,
    A1.seq_memb_id,
         A1.AUTH_TYPE,
    a1.review_type,
    A1.plan_code,
    A1.OVERALL_STATUS,
              A1.CLOSED_REASON,
    A1.DENIED_REASON,
    Case
    when A1.DENIED_REASON in ('HS001','HS002','HS003') then 'MED NECESS'
    when A1.DENIED_REASON in ('HS004','HS005','HS006','HS007','HS008','HS013','HS014','HS016','HS017','HS019','HS020') then 'Admin Denial'
    when A1.DENIED_REASON is NUll and ap.advisor_decision = 'AAPPR' then 'Approved'
    else 'Unknown'
    end DENIED,
    To_Char(a1.admit_primary_date,'mm/dd/yy') As "Prim_Admit_Date",
    A1.service_admit_type AS "IP ADMIT TYPE",
    A1.service_user_defined_1 AS "OP Serv Type",
    UVD.user_valid_code_long_desc as "OP_Type_Desc",
    To_Char (AP.contact_date,'mm/dd/yy') As "Contact_Date",
         To_Char (AP.decision_date,'mm/dd/yy') As "Decision_Date",
    ap.recommendation_code,
    A1.PLACE_OF_SERVICE,      
         AP.ADVISOR_DECISION,
    PM.LAST_NAME,
    TO_CHAR (A1.insert_datetime,'MONTH-YY')AS "Month",
         MV.LINE_OF_BUSINESS
    FROM Windsoradm.auth_master a1
    INNER JOIN Windsoradm.auth_phys_advisor ap
    ON a1.auth_number=ap.auth_number
    INNER JOIN windsoradm.prov_master pm
    ON ap.seq_prov_id=pm.seq_prov_id
    LEFT JOIN windsoradm.note_master nm
    ON nm.seq_memb_id=a1.seq_memb_id
    AND NM.NOTE_TYPE='PHA'
    INNER JOIN windsoradm.member_mv mv
    ON mv.seq_memb_id=a1.seq_memb_id
    INNER JOIN windsoradm.user_defined_valdt_codes UVD
    ON A1.service_user_defined_1=UVD.user_valid_code
    AND UVD.VALIDATED_TABLE_NAME = 'auth_master'
    AND UVD.VALIDATED_COLUMN_NAME = 'service_user_defined_1'
    Where mv.Line_of_Business <>'SFS'
    /*AND A1.PLACE_OF_SERVICE IN ('11','21','22','24')*/
    /*AND a1.active_physician_advisor = 'Y'*/
    /*AND (a1.closed_reason ='A06' OR a1.closed_reason is Null)*/
    /*AND A1.AUTH_NUMBER='415712'*/
    AND a1.insert_datetime Between To_Date ('04/01/2012', 'MM/DD/YYYY') and To_Date ('04/30/2012','MM/DD/YYYY')
    ORDER BY 1

  • Missing 1x1.gif - HTTP 404 Error

    Hi all,
    I´m in version 7.0 package 08.
    I have a problem with the service BBPGLOBAL, where the 1x1.gif is not displayed.
    I saw this note: Note 961775 - Missing 1x1.gif - HTTP 404 Error - File Not Found
    But not works wit the version 7.0.
    Any help?
    Thanks,
    Pedro Marques

    Hi Pedro
    Unfortunately SAP left these transactions by mistake or for some other purpose.
    you need to connect Enterise Portal with SRM .
    You need install business packages for SRM 7.0
    Note 1232945 - BP for SRM 7.0: Installing the Business Packages
    Note 1178469 - BP for SRM 7.0: Additional installation information
    The SAP Supplier Relationship Management (SAP SRM) system uses a user interface (UI) concept
    based on the SAP NetWeaver Portal and Web Dynpro technologies. Organizing, planning, and
    monitoring take place in the SAP NetWeaver Portal while tasks are executed in separate Web Dynpro
    application windows. To integrate SAP SRM with the SAP NetWeaver Portal, you must configure
    both the SAP SRM and SAP NetWeaver Portal systems. This document describes how to automate the
    mandatory configuration you need for this integration.
    then you can see DYNPRO screens.
    http://wiki.sdn.sap.com/wiki/display/SRM/EnterprisePortaland+SRM
    Muthu

  • HTTP 404 Error After applying ATG RUP5

    Hi,
    After applying ATG RUP 5 url is not opening it display
    "HTTP 404 Error" page canonot be found.
    The Error log of mod_jserv.log:
    [14/08/2008 08:06:57:307] (ERROR) ajp12: Servlet Error: ClassNotFoundException: ri
    [14/08/2008 08:12:56:574] (ERROR) ajp12: Servlet Error: ClassNotFoundException: ri
    [14/08/2008 08:23:07:268] (ERROR) ajp12: Servlet Error: ClassNotFoundException: ri
    [14/08/2008 08:48:05:127] (ERROR) ajp12: Servlet Error: ClassNotFoundException: ri
    [14/08/2008 08:59:05:348] (ERROR) ajp12: Servlet Error: ClassNotFoundException: ri

    Have a look at the following notes:
    Note: 397839.1 - Blank Page after applying ATG RUP4 OR ATG RUP5 and can not login to Oracle Applications 11i
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=397839.1
    Note: 345106.1 - Login Links On New Rapid Install Homepage Do Not Function Correctly
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=345106.1

  • Content server Instalation problem.---HTTP 404- ERROR FORBIDDEN

    Hello Guys,
    This issue is pertaining to Content server instalation with SAP 6 ECC.
    Status till date:
    1) content server is installed to windows 2003 server.
    2) we are currently working in quality server.I have opted a 80 GB harddisk and installed windows 2003 server and also installed Content server to that.
    3) i defined New content repository ZDMS_C1in OAC0
    Gave appropriate description,
    Doc area : Doc magt system
    Storage type: HTTP content server
    Version no: 0046
    Http server 132.147.167.110( this is 80 gb system Ip address)
    port number:1090
    Http script: Contentserver/contentserver.dll
    Physical path: H:usr\sap\ELD\SYS\Global\ (default selection )
    i saved and i get every information of created by and last changed by....
    Ok but when i <u><b>test connection</b></u> it says " HTTP 404:ERROR FORBIDEN".
    I get another error when i "<u><u><b>SEND CERTIFICATE</b></u></u>"
    " ERROR IN HTTP ACCESS IFHTTPCLIENT--RECEIVE 1
    ICM-HTTP-CONNECTION-FAILED.
    Some problem in IIS server but litraly basis team is unable to solve the status.
    How to solve this issue.....Help me out in detail.
    Regards,
    Murali.S

    Hi Murali,
    Follow two NOTES 212394 & 661852
    or
    Ensure that PSE (Personal Security Environment) is created directly on SAP system after the system is installed, this is one time activity.
    To do this you use T Code "STRUST". You can check with your Senior Basis guy for more.
    By default the system's PSE is used to sign URLs. from SAP WAS you can also create your own PSE to sign Kpro URLs
    Regards
    Rehman

  • EBS Integration HTTP 404 error

    I have a function defined in EBS to call Apex. When I click on function in Menu in Oracle it gives me error The webpage cannot be found HTTP 404 error. I close down this window and after couple of clicks the Apex form opens up. It is very frustrating for users to click atlest 2-3 times before they get into Apex.
    Here is the function that I have in Oracle to call Apex.
    CREATE OR REPLACE PROCEDURE APPS.apex_launch (application IN NUMBER default 112
    , page IN NUMBER DEFAULT 1
    , request IN VARCHAR2 DEFAULT NULL
    , item_names IN VARCHAR2 DEFAULT NULL
    , item_values IN VARCHAR2 DEFAULT NULL)
    AS
    name_arr OWA.VC_ARR;
    value_arr OWA.VC_ARR;
    BEGIN
    dbms_output.put_line('Inputs '||application||' Page '||page);
    OWA_UTIL.mime_header('text/html', FALSE);
    OWA_COOKIE.send(name => 'APEX_APPS_'||application,
    value=>fnd_global.user_name||':'||
    apex_generate_hash(fnd_global.user_name),
    domain=>'.silganplastics.com',
    path=>'/',
    expires=>sysdate+1);
    OWA_UTIL.redirect_url('http://cfdsun111.silganplastics.com:8091/apex/f?p='||application||':'||page||'::YES');
    END apex_launch;
    Any help is appreciated.
    Thanks,
    Suman

    Integration with EBS has been discussed many times - pl use the search feature to find threads
    http://forums.oracle.com/forums/search.jspa?threadID=&q=EBS&objID=f137&dateRange=thisyear&userID=&numResults=15
    HTH
    Srini

  • 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'?

  • HTTP 404 Error : Page Not Found

    I recieved a *"HTTP 404 Error: Page Not Found"* when I branch via Branch To Page Identified By Item using the application_item F103_NEXT_PAGE as the item. I looked at the apache error log and found the following error message:
    [Tue May 26 16:47:13 2009] [error] mod_plsql: /pls/apexcfp8/wwv_flow.accept HTTP-404 \nwwv_flow.accept: SIGNATURE (parameter names) MISMATCH\nVARIABLES IN FORM NOT IN PROCEDURE: CURRENTELEM\nNON-DEFAULT VARIABLES IN PROCEDURE NOT IN FORM: \n
    I still recieved the same *"HTTP 404 Error: Page Not Found"* when I branch via Go to Page using the application_item *&F103_NEXT_PAGE.* as the page.
    Can someone please help me. I am under a tight deadline and I cannot test the application further until this is resolved.
    Thank you in advance.
    Robert

    ops, sorry, you already made that test, didn't you?
    The fact is i am testing on XE so there is no Apache in between.
    I guess that you are getting HTTP 404 whereas i get a different message.
    My best guess is that the item doesn't contain the value you say at the time of branching.
    Another possibility is that you think it is using that branch, but it is conditional and the condition is not met, but there are no further branches to process and apex doesn't know where to branch to.
    Does any of the above make sense?

  • HTTP 404 error occurs randomly when navigating to HTMLDB pages

    Oracle support have asked me to raise this issue here (ref TAR 4248522.999).
    Environment:
    Windows 2003 server
    Oracle DB version 10.1.0.2.0
    Oracle HTMLDB v 1.6.0.00.87
    Problem:
    When navigating to an HTMLDB page using a list item, an HTTP 404 error occurs randomly. There is no error in the database alert log BUT the following error is reported in the Apache log file which is recorded whenever the HTTP 404 error occurs:
    [Thu Jan 20 09:58:48 2005] [error] [client 10.25.22.163] [ecid: 1106215128:10.25.22.53:3576:3352:23759,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-00001: unique constraint (FLOWS_010600.WWV_FLOW_DATA_IDX1) violated
    ORA-06512: at "FLOWS_010600.WWV_FLOW_DISP_PAGE_PLUGS", line 180
    ORA-06512: at "FLOWS_010600.WWV_FLOW_DISP_PAGE_PLUGS", line 1298
    ORA-06512: at "FLOWS_010600.WWV_FLOW_DISP_PAGE_PLUGS", line 345
    ORA-06512: at "FLOWS_010600.WWV_FLOW", line 8779
    ORA-06512: at "FLOWS_010600.F", line 218
    ORA-06512: at line 10
    A list item is being used for navigation. It has been setup with a target type of 'Page in this Application' and a Page number of a page in the application. The checkbox 'reset pagination for this page' has been
    checked. The problem occurs when launching the application directly in a new browser or
    when running the application using the Application Builder's run application.
    The error occurs intermittently.

    I'm from support , The customer has open an SR
    TAR:4248522.999 to this issue.
    He updated the SR with following.
    I have not been able to re-produce this problem with the sample application.

  • Redirect HTTP 404 Error

    Hi,
    Is there anyone knows how to redirect HTTP 404 Error on OAS 4? For example, if the requested file doesnt exist, I have to redirect the request to a default page. Thanks for any help.

    <i>So the user actually sees a 404 - page not found error?</i><p>
    Yes, using a static session id in the apache rewrite rule causes the user to get a HTTP 404 - Page cannot be found error.
    Since owa_util.redirect_url is called directly after owa_cookie.send, the owa_util.redirect_url is using just the apex relative url, f?p=blahblahblah, which causes all the Host and DAD information (in our case, infotrek.er.usgs.gov/pls/apex/ to be dropped from the Location: header and sends the user to HOST/f?p=blah instead of HOST/DAD/f?p=blah, which causes the http 404 error.
    I did the test you asked:
    Header when relative URL is used:
    HTTP/1.1 302 Found
    Date: Thu, 23 Aug 2007 13:09:21 GMT
    Server: Oracle-Application-Server-10g/10.1.3.0.0 Oracle-HTTP-Server
    Location: f?p=190:1:2088586269224413
    X-DB-Content-length: 0
    Set-Cookie: WWV_PUBLIC_SESSION_TEST=99999999
    Connection: close
    Content-Type: text/html; charset=UTF-8Header when absolute URL is used:
    HTTP/1.1 302 Found
    Date: Thu, 23 Aug 2007 13:09:49 GMT
    Server: Oracle-Application-Server-10g/10.1.3.0.0 Oracle-HTTP-Server
    Location: http://infotrek.er.usgs.gov/pls/apex/f?p=190:1:2088586269224413
    X-DB-Content-length: 0
    Set-Cookie: WWV_PUBLIC_SESSION_TEST=99999999
    Connection: close
    Content-Type: text/html; charset=UTF-8The second condition is what we need to have happen, and we don't know if we can tinker with anything in apache, Apex, or the owa_util.redirect_url to make it happen. I can't use this fix within any application because <i>the user doesn't get that far</i>. He/she never makes it to the app--they get a Page Cannot be Found error and thinks our site is down.

  • UCCX 7.0(2) Phone Agent HTTP 404 Error

    Hello,
    I'm running UCCX 7.0(2) and get an HTTP 404 Error when trying to login with IPPA.   I also get an error when I copy and paste the IPPA login URL into a browser on the CCX server.   I do not see the IPAgentInitial.class file located on the server anywhere?   Is there something that didn't get installed correctly during the uccx install, is this a bug or is there something dumb I'm overlooking?
    Any help would be appreciated.
    Thanks,
    Glenn

    Hello Glenn,
    On my Lab I see the IPAgentInitial.class located here:
    C:\Program Files\wfavvid\tomcat_appadmin\webapps\ipphone\WEB-INF\classes\sciphonexml\jsp
    And I see the XML when browsing to the URL:
    http://:6293/ipphone/jsp/sciphonexml/IPAgentInitial.jsp
    You could try this:
    - Stop the Node Manager service
    - Delete (or rename) the folder “C:\Program Files\wfavvid\tomcat_appadmin\webapps\ipphone”
    - Start the Node Manager service
    After a few minutes check that the folder has been recreated and try again.
    HTH
    Pablo

  • IP Phone SDK7.1.2 - Push2Phone HTTP 404 error

    Hi,
    I'm testing IP Phone SDK7.1.2 Push2Phone with CUCM8.6 but get HTTP 404 error.
    -update the push2phone.asp initial variable such as CUCM IP address and credentials but nothing change other asp files
    -the wireshark steps captured on IIS server side
    1) HTTP client requests HTTP POST to IIS server
    2) IIS server response 200 OK
    3) HTTP client requests HTTP GET to IIS server
    4) IIS server requests HTTP POST to CUCM
    5) CUCM response HTTP 404 not found
    Not sure but suspect devicelistx.asp issue which is not support on CUCM8.6,,,, Advise please how to change the script to run the apps,,,,
    Thanks in advance,

    Hi
    If it is using devicelistx (this should be obvious from the wireshark capture or by reviewing the code) then it will require some significant modification. As you said, devicelistx is not supported, so you would now need to use the RIS API to get the IP addresses of the phones so that the script can send the execute items directly to the phones.
    Regards
    Aaron

  • Bam portal showing http 404 error

    Hi,
    When i open BAM portal in our QA server it works fine, i can see all views and activities,
    But, when i open in my local system it gives "HTTP 404 error" - "The resource you are looking for has been removed, had its name changed, or is temporarily unavailable."
    There is no error in event log, 
    Anonymous Authentication , ASP.Net Imersonation and Windows Authentication are enabled
    Here is screenshot of .net authorization rules specified.
    The same is working fine in Development server.
    I think it is some IIS issue.
    Thanks,
    Sarvasetty.

    "HTTP 404 error" as the error says is resource issue not an authorization issue. I think you're missing some files required for BAM portal. Rerun the BizTalk configuration tool, remove the BAM portal and rerun it again to install the BAM portal
    from scratch again.
    Also ensure you have the relevant .NET framework version is set in Application Pool which is used by your BAM portal
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

Maybe you are looking for