Skip to main content
Known Participant
February 13, 2013
Question

500 null

  • February 13, 2013
  • 2 replies
  • 907 views

I run the page and it takes more than 30 mins to run and finally i got error below.  What it's mean and what can i do?

JRun Servlet Error 500 null

Thanks

This topic has been closed for replies.

2 replies

Participating Frequently
March 14, 2013

The very nature of the 500 null error makes it hard to debug. This occurs (from what I can figure) when an error gets thrown so early in your application that nothing ever gets flushed to the browser. The "null" part of the error probably means that no data was received from the browser.

In order to debug this error put a CFFlush tag right after your application declaration (Application.cfm) or somewhere very early in the code. Once you get the data stream going, you sort of let gravity take over (metaphorically speaking). Now, the 500 null error will be replaced with the CFError that is actually being thrown.

CAUTION: Once done, REMOVE THE CFFLUSH. The CFFlush tag will kill of your CFLocation tags as they work via page headers (which are not settable after data has been sent to the browser).

refer this link

http://www.ehow.com/info_12103190_causes-jrun-servlet-error-500-null.html

BKBK
Community Expert
Community Expert
February 16, 2013

Could you show us the content of your Application.cfc file?