ClientAbortError on 404 error page

Hi
I have a custom 404 JSP page that gets loaded every time resource is not found.
I tested this on our development server and it was working great. After redeploying to production server
I am getting the following error
[#|2004-06-24T09:13:33.186-0400|SEVERE|sun-appserver-pe8.0|javax.enterprise.system.container.web|_ThreadID=16;|org.apache.catalina.core.StandardHostValve@128ed5f: Exception Processing ErrorPage[errorCode=404, location=/error404.jsp]
ClientAbortException: java.net.SocketException: Connection reset by peer: socket write error
The dev and production servers are the same hardware and software configuration and the web.xml has the following entry in it.
     <error-page>
     <error-code>404</error-code>
     <location>/error404.jsp</location>
     </error-page>
The exception now gets thrown on any and every page request regardless if it is found or not.
The weird thing about it that it does not affect anything else.
I am stopmed on this one .... Please help

What server and version are you using? Have you tried rebooting the appserver to see if that clears your problem?

Similar Messages

  • Custom 404 Error page in Sharepoint Foundation 2013

    Hi all,
    How to point to the custom 404 error page in Share Point Foundation 2013. I have seen some links but not working for me. Please me let me know if you have any suggestion.
    Thanks.

    Can i create any page and pass the page url in it,like if i have created a page as custom404.aspx under pages library so do i need to do like this?
    $spsite = Get-SPSite "<http://sharepoint:1000/>"
    $spsite.FileNotFoundUrl = "<pages/custom404.aspx>"
    is this the correct way or i am doing incorrectly??
    please suggest

  • How can I set up a custom 404 error page on OSX Server?

    I moved my web site to a local server and changed the structure drastically.  Unfortunately I am getting hits for information that was on the old server which I haven't put back yet.  I'd like to set up a custom 404 Error Page to let people know what's up.  In server.app I can set up a 500 error page but not a 404 and when I tried hand coding it into the sites .conf file I really messed things up.  It took me a while to get that all corrected!
    Thanks for any advice,
    Bill W

    Found it!
    Under the web server Advanced Setting set "Allow overrides using .htaccess" then create an .htaccess file in the root directory with the line:
    ErrorDocument 404 notfounderror.html
    Use whatever HTML/PHP/etc. document you have created.

  • I updated an iPod touch, an iPad 2, and an iPhone 4 to iOS 6, and all of them now will not connect to WiFi. They all give this wierd 404 error page from Apple and insist that I need to login to the network. Bad job testing the software Apple.

    I updated an iPod touch, an iPad 2, and an iPhone 4 to iOS 6, and all of them now will not connect to WiFi. They all give this wierd 404 error page from Apple and insist that I need to login to the network. What's the fix? None of the recommended fixes work in any of these devices. Reset device, reset network, renew lease, etc. None of them work.

    Does the iPod work OK?
    Does it charge when connect to the computer?
    Does it appear in My Computer?
    Look at the dock connector on the iPod. Compare with the iPod that does work/connect.
    I suspect you have a 2G iPod. Those can only go to iOS 4.2.1
    http://support.apple.com/kb/HT1353#iPod_touch_late2009
    iPod touch (3rd generation)
    iPod touch (3rd generation) features a 3.5-inch (diagonal) widescreen multi-touch display and 32 GB or 64 GB flash drive. You can browse the web with Safari and watch YouTube videos with Wi-Fi. You can also search, preview, and buy songs from the iTunes Wi-Fi Music Store on iPod touch.
    The iPod touch (3rd generation) can be distinguished from iPod touch (2nd generation) by looking at the back of the device. In the text below the engraving, look for the model number. iPod touch (2nd generation) is model A1288, and iPod touch (3rd generation) is model A1318.

  • Custom 404 error page only works 75% of the time

    I have made custom HTTP error pages for my app and they work for Mozilla, Opera and Firefox but IE seems to have its own personal 404 error page.
    Anyone know how to make IE work and play well with others and display the custom 404 page like the other 3 browsers do? I did clear the IE cache, twice.
    The environment is Tomcat 5.0.19 (stand-alone, no IIS) running on Window Server 2003 Enterprise
    Thanks for your help!
    Will

    You got to love microsoft products huh. Microsoft has turned on its friendly error pages. Unfortunately, to fix this, you have to have your clients modified their browser settings. Inside the IE browser, do the following:
    1. From menu choose tools->internet options
    2. Choose the advanced tab
    3. Uncheck the checkbox that says "Show friendly HTTP error messages"
    That will do it for ya.

  • Yahoo loads log in click mail 404 error page not found why?

    I upload yahoo site, log in, click 'mail' and am given a '404' error; page not found... This does NOT happen on Chrome or IE, but the pages of yahoo on IE suck and Chrome won't let me have a single toolbar even though there are all sorts of claim you can have one... (sorry) WHY doesn't FIREFOX let yahoo mail load? I LOVE FIREFOX and ALL THINGS MOZILLA, but after I ran into crappy-sappy babylon... it put a toolbar on IE, CHROME and MOZILLA... I had to delete everything associated with them all, get toolbar sweepers and better uninstall programs to weed their junk out and now MOZILLA, FIREFOX, rather warns no one and makes me submit this rather than help

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"

  • 404 Error pages

    Right now I have my .htaccess setup so that if I go to www.website.com/nonexistantpage.htm it takes me to the proper 404 error page. But my website is built around php variables for the pages so to visit the home page it's not website.com/home.htm it's website.com/index.php?page=home
    So if I do
    website.com/index.php?page=nonexistant page
    I jsut get a php error that the file does not exist. Instead of this happening I want it to also point to my error page. How do I set this up?

    You could do it like below:
    <?php
    $page = $_GET['page'];
    ?>
    <?php
    if ($page == "nopage" OR $page == "notfound") {
    header ("Location: error.php");
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Untitled Document</title>
    </head>
    <body>
    <a href="pass_variables.php?page=home">Home</a>
    <a href="pass_variables.php?page=sewage">Sewage</a>
    <a href="pass_variables.php?page=nopage">No Page</a>
    <p>
    <?php
    if($page == 'home') {
    include ('index.php');
    elseif($page == 'sewage') {
    include ('sewage.php');
    ?>
    </p>
    </body>
    </html>
    Only problem with that is you would have to append the missing page to the $page variable everytime. Small site easy but a bigger site not very economical

  • I keep trying to download Photoshop CS3 and a get a 404 error page, does Photoshop CS3 not working with a new Mac operating system?

    I keep trying to download Photoshop CS3 and a get a 404 error page, does Photoshop CS3 not working with a new Mac operating system?

    you must also use a browser that allows cookies.  try a different browser or download from adobe.com
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.5 (win), 5.5 (mac) | 5.4 (win), 5.4 (mac) | 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

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

  • CQ5 Multiple custom 404 error pages for multiple sites

    HI,
    I have multiple sites, and I would like to set up a different 404 page for each of my sites
    Someone already faced this problem? How I can accomplish this?
    Or there is a way to do via the dispatcher and create a static 404 error HTML page each time I publish a site?
    Thank You
    Adolfo

    Currently the most effective way to do what you're asking is to set up your 404.jsp to include the content of a site specific 404.
    There was a conversation about this here;
    http://dev.day.com/discussion-groups/content/lists/cq-google/2010-02/2010-02-11__day_commu nique_Sling_error_pages_zambak.html
    -jason

  • Umbraco CMS - startindex cannot be less than zero error is showing instead of 404 error page

    I am running into an issue with an Umbraco website.
    If I miskey the URL on a top level page, e.g. mysite.com/wrongpage I get an asp error.
    If I miskey it on a subpage, even if the top level page is incorrect too, I get my correct 404 error e.g. mysite.com/wrongpage/wrongpage2
    At this point I'm trying to find out whether it's a bug in Umbraco 4.11.10 or if this error is caused by something obvious. I'm completely stuck and not particularly technical (I'm not a developer).
    If anyone could help explain what this error means, and/or if there's any way to correct or bypass it I would really appreciate the help.
    The full contents of the error are: 
    Server Error in '/' Application.
    StartIndex cannot be less than zero.
    Parameter name: startIndex
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
    Exception Details: System.ArgumentOutOfRangeException: StartIndex cannot be less than zero.
    Parameter name: startIndex
    Source Error: 
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace: 
    [ArgumentOutOfRangeException: StartIndex cannot be less than zero.
    Parameter name: startIndex]
    System.String.InternalSubStringWithChecks(Int32 startIndex, Int32 length, Boolean fAlwaysCopy) +10698829
    System.String.Substring(Int32 startIndex) +12
    AutoFolders.NotFoundHandler.Execute(String url) +538
    Umbraco.Web.Routing.LookupByNotFoundHandlers.HandlePageNotFound(PublishedContentRequest docRequest) +1148
    Umbraco.Web.Routing.LookupByNotFoundHandlers.TrySetDocument(PublishedContentRequest docRequest) +10
    Umbraco.Web.Routing.PublishedContentRequestBuilder.<LookupDocument1>b__1e(IPublishedContentLookup lookup) +15
    System.Linq.Enumerable.Any(IEnumerable`1 source, Func`2 predicate) +146
    Umbraco.Web.Routing.PublishedContentRequestBuilder.LookupDocument1() +198
    Umbraco.Web.Routing.PublishedContentRequestBuilder.LookupDocument() +195
    Umbraco.Web.Routing.PublishedContentRequest.ProcessRequest(HttpContextBase httpContext, UmbracoContext umbracoContext, Action`1 onSuccess) +139
    Umbraco.Web.UmbracoModule.ProcessRequest(HttpContextBase httpContext) +339
    Umbraco.Web.UmbracoModule.<Init>b__7(Object sender, EventArgs e) +80
    System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +136
    System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +69

    Hi Aaronb9,
    Since the issue regards ASP.NET and website deployment. I suggestion you post the question in the ASP.NET forums at
    http://forums.asp.net/. It is appropriate and more experts will assist you.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Exchange 2013 SP1 RPC 404 Error Page Not Found

    Anyone got any ideas why on my Exchange 2013 SP1 server I am getting a 404 error when trying to access the RPC URL?
    I had a look in the CAS RPC logs and see the following HTTP POST events:
    <snip>
    2014-06-19T15:33:00.558Z,EX-CAS1,RpcHttp,"S:Stage=BeginRequest;S:OutlookSessionId=""{17FD197A-098A-4339-82E9-A480F6DD70F7}"";S:AuthType=Basic;S:HttpVerb=RPC_IN_DATA;S:UriQueryString=?pdc.internal.local:6004;S:RequestId=0acc9487-bf8f-4600-ae04-edf2ef00a90b;S:ClientIp=192.168.0.17"
    2014-06-19T15:33:00.558Z,EX-CAS1,RpcHttp,"S:Stage=PostAuthorizeRequest;S:UserName=INTERNAL\SVC_BMA;S:OutlookSessionId=""{17FD197A-098A-4339-82E9-A480F6DD70F7}"";S:AuthType=Basic;S:HttpVerb=RPC_IN_DATA;S:UriQueryString=?pdc.internal.local:6004;S:RequestId=0acc9487-bf8f-4600-ae04-edf2ef00a90b;S:ClientIp=192.168.0.17"
    2014-06-19T15:33:00.574Z,EX-CAS1,RpcHttp,"S:Stage=EndRequest;S:UserName=INTERNAL\SVC_BMA;S:OutlookSessionId=""{17FD197A-098A-4339-82E9-A480F6DD70F7}"";S:AuthType=Basic;S:Status=404 Not Found;S:HttpVerb=RPC_IN_DATA;S:UriQueryString=?pdc.internal.local:6004;S:RequestId=0acc9487-bf8f-4600-ae04-edf2ef00a90b;S:ClientIp=192.168.0.17"
    </snip>
    This works fine in Exchange 2010 SP3 so I am wondering if maybe Microsoft have removed the /rpc url functionality in Exchange 2013 SP1?

    Hi JRA,
    Is it possible to provide more info for your issue?
    You receive as you said HTTP 404 error, can you provide the specific HTTP 404 error message?
    For example:
    HTTP/1.0 404 File Not Found
    HTTP/1.0 404 Not Found
    HTTP/1.0 404 Object Not Found
    HTTP/1.0 404 Page Cannot Be Found
    The page cannot be found. The page you are looking for might have been removed, had its name changed, or is temporarily unavailable
     Also a screenshot will be very helpful
    Regards,
    CF

  • Yahoo Mail - check inbox - goes directly to a 404 error page in Firefox 4

    HP Laptop - Windows 7 - Firefox 4 - Yahoo Mail.
    Whenever I go to the yahoo inbox, the page is automatically redirected to a 404 error about "ill be honest" -
    here's the URL:
    http://search.yahoo.com/404handler?ei=UTF-8&p=i+ll+be+honest+com+blank&url=http%3A%2F%2Fillbehonest.comblank.html%2F&src=toolbar&nrd=1&fr=slv502-msgr
    it happens if i log in as myself or as the person who owns the laptop. It does happen on a different computer or the iphone.
    i've virused scanned, updated, cleaned, restarted, defraged, screamed at it and more... including uninstalling and reinstalling Firefox.
    Any ideas!? Thanks in advance

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"

  • Can't connect Windows 8.1 Enperprise to Windows Server 2012 Essentials. Get a Digest Login page and then a Blank with HTTP 404 Error page. Need help!

    Hi,
    I have make a new and clean install of Windows Server 2012 R2 Essentials on my office network server and then i made a new and clean install of Windows 8.1 Enterprise version on one of my office desktops.
    After all VPN and Anywhere Access where setup on the server i when to a PC that is inside my office network and browse on Internet Explorer to the URL to connect this PC to the server and make it part of the domain.
    But when i browse to the http://MYSERVERNAME/connect im not getting the Windows Server page with the option to download the windows connector. Instead i get a login pop-up saying "iexplore" and "digest". I try to create a user on the server
    and use that user login details on this login box, but even then, the only thing i get is a blank page saying a HTTP Error 404.
    So can someone please help me on this? Any advice on how to solve this problem in order to show the normal Windows Server connect page? 
    Thanks

    Hi,
    Based on your description, please refer to following operations and troubleshoot this issue. Then check if
    can help us to narrow down the cause of this issue.
    Please type
    http://server-IP-address/connect in IE. Then check if encounter the same issue.
    On the Windows Server 2012 R2 Essentials, please open Internet Information Services (IIS) Manager. Navigate to Sites, then right click Default Web Site and select
    Edit Bindings… In Site Bindings, select Port 80 and click “Edit…” button. Would you please provide a screenshot of the Edit Site Binding (Port 80) that you can see?
    Then please click
    Connect which in the list of Default Web Site. In the mid panel, select
    .NET Authorization Rules and double click it. Then please check if all users were allowed.
    By the way, would you please provide a screenshot of the login page when you browser
    http://servername/connect? It may help me to understand this issue clearly.
    Meanwhile, please logon a problematic client computer and navigate to the path: C:\ProgramData\Microsoft\Windows
    Server\Logs folder. Then check if there is Computerconnector log file. If there is, please check it if can find some clues. (Please note: the log file is a hidden file. Please open Control Panel, select Folder Options, select View tab and check Show hidden
    files, folders and drives. Then you will be able to find the log file.)
    If any update, please feel free to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

  • APEX - HTTP 404 Error - Page not Found

    We periodically receive 404 Page Not Found errors in our APEX applications. The problem is resolved by rebooting the server where APEX is located. We are using Oracle 10.1.0.3.0. I did some searching on the issue and found that this could be related to a bug that was fixed with Patch 5648872. However, we are on a Windows environment. Does a similar patch exist for the Windows environment?

    Hi user10216004,
    I may be wrong but if you are using 10.1 or 10.2 you may have an issue that fills up the shared_pool to the point of failure. Try issuing the following command in SQL*Plus and see if it clears up the issue.
    alter system flush shared_pool;
    The DBA will likely need to issue it but if it works they can set up a scheduled job to run every so often to maintain the workaround. I am also told that there is a database patch that will also fix the issue but I am not aware of the specific ID. Might be that one of the Dev Team knows.
    Jason Aughenbaugh (aka. WileECoyote)
    Precision Guesswork Blog: http://citemreh.spaces.live.com

Maybe you are looking for

  • Power View stuck in loading forever in SharePoint

    Hi, we have just configured a new SharePoint instance. We've installed and configured PowerPivot, SSRS SharePoint mode, Excel Services, Performance Point Services, and Silverlight. We uploaded a workbook to a BI site. The workbook contains both stand

  • How to get ABAP mapping option in Interface Mapping

    Hi experts How to get ABAP mapping option in Interface Mapping . i need to do abap mapping . i didnt find the option plz help me

  • "Invalid signature" downloading iTunes 8.2.1

    I was running iTunes 8.02 on my Toshiba laptop. After copying my iTunes files from my netbook (which is running iTunes 8.1.1 on Windows XP) to my Toshiba (Windows Vista), I could not run the older version because the itl library is a newer version. I

  • Code snippet explanation please

    Hi everyone. just wondering of some of you Java 3D guru's out there could explain a small piece of code for me. public Myprogram( java.net.URL url ) {           this.url = url; Thanking you. Sharon.

  • Trouble loading parallels even with new version

    I am having continual trouble loading windows 7 with my parallels.  Spouse has parallels version 3.0 for mac  (2008) (older) and has no trouble with windowsXP I have reinstalled windows 7 and am wondering if I should try purchasing and installing thi