• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

java.lang NullpointerException question

I have a few questions out of curiosity :
I was on a website from a firm ordering material.
Then i encounter this error message :

Error 500 : MainServlet: unknown exception :java.lang NullPointerException

What does this error message mean ?
Does it mean there was Pointer with value "NULL" passed ?

Is this error happening at my browser (client ) or on the server side ?
Do i have a virus or some trojan ?
We have a firewall and a virusscanner that functions as a proxy.
Can it have anything to do with the firewall or the virus scanner ?
I never seen this error before...

Thank you in advance...
 
It means several things, including a) their servlet code tried to dereference (access property or method of) a null object reference; and b) their server-side error handling sucks balls.
 
It means several things, including a) their servlet code tried to dereference (access property or method of) a null object reference; and b) their server-side error handling sucks balls.

Primarily that their server-side error handling sucks balls. Unfortunately not an uncommon occurrence. It can be pretty bad as those error sometimes contain useful info that can be used by hackers to exploit the servers.
 
Back
Top