Categories
Miscellaneous

Enable CORS IIS Express

While debugging a .NET MVC WebAPI project, I was getting the error, related to cross origin resource sharing: No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘http://localhost:XXXXX’ is therefore not allowed access. Once I added the following custom header to the IIS Express application host configuration, the errors disappeared. <add name=”Access-Control-Allow-Origin” value=”*” /> […]

Categories
Miscellaneous

Tools to analyze Java heap

HeapAnalyzer – A graphical tool for discovering possible Java heap leaks. IBM Pattern Modeling and Analysis Tool for Java Garbage Collector – A tool that parses verbose GC trace, analyzes Java heap usage, and recommends key configurations based on pattern modeling of Java heap usage.

Categories
Miscellaneous

GNU Wget

GNU Wget is a free network utility to retrieve files from the World Wide Web using HTTP, HTTPS and FTP.