In some error cases including the one above Sitebricks adds a stack trance to the response. This is a security issue with leaking information. We plug the problems we find but is there a way to tell site bricks never to send stack traces?
Can sitebricks be configured to not say "Sitebricks received a null reply from the resource..."?
232 Views Asked by Usman Ismail At
1
There are 1 best solutions below
Related Questions in SITEBRICKS
- How to test Reply<?> in sitebricks
- Sitebricks file download service throws AccessControlException - access denied
- How to handle HTTP response with a 4xx/5xx status code, Java servlet/HttpURLConnection
- Sitebricks and Channel Presence Service (GAE); Also having trouble with normal servlets
- How to sends multiple object over JSON from sitebricks client to sitebricks REST Service?
- Upgrading open source libraries in Web application
- How to exclude a URL when registering filters in ServletModule.configureServlets?
- Build sitebricks with maven
- Howto make a dynamic web module with sitebricks and annotations?
- How to automate retrieval of DTOs from Sitebircks service
- How to send payload data using sitebricks web client using http delete method
- Method interception or validation of request params in Sitebricks controller
- Can sitebricks be configured to not say "Sitebricks received a null reply from the resource..."?
- embed header and footer in all html page using google sitebricks @embed
- How to generate an HTML table in Sitebricks?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The problem is not at the Sitebricks level but at your servlet container or Filter level. If you are using a normal servlet container you should configure error pages in web.xml using the directive:
http://www.tutorialspoint.com/servlets/servlets-exception-handling.htm
Alternatively, you can use a filter to check if the response code is not 2XX and display a custom error page yourself.
Sitebricks shows the error trace as a debugging tool.