Application Pool Ping Settings in IIS

The maximum unresponsive ping time default to 90 seconds in IIS, which causes following error message during debugging. The web server process that was being debugged has been terminated by Internet Information Services (IIS). This can be avoided by configuring Application Pool ping setting in IIS. See help for further details. This can be changed… Read More Application Pool Ping Settings in IIS

JavaScript Validator error in Eclipse

Are you tired of JavaScript Validator error while building the project in Eclipse (or SpringSource Tool Suite), there is a simple solution to get rid of this error: Errors occurred during the build. Errors running builder ‘JavaScript Validator’ on project ‘Project_name’. 12 Go to menu Project > Properties. A Properties window opens. Go to “Builder”… Read More JavaScript Validator error in Eclipse

“Track Active Item in Solution Explorer” in Eclipse

Ever wonder the useful “Track Active Item in Solution Explorer” we take advantage in our day-to-day life with coding in Visual Studio, missing in Eclipse? No it’s not. Eclipse provide a small toggle icon on “Package Explorer” called “Link with Editor”, which provide exact same functionality as “Track Active Item in Solution Explorer” in Visual… Read More “Track Active Item in Solution Explorer” in Eclipse

Running Node as a Service using NSSM

Before going here, I’ll recommend to read my earlier article on creating a Node.js program at: https://harjinderkamboj.wordpress.com/2012/09/06/node-js-on-windows-and-azure/ So, I assume we have a Node.js program at C:\NodeProject\NodeServer.js NSSM – the Non-Sucking Service Manager is a tool which allows any service to run as a windows service without much hassles. NSSM can be dowloaded from http://nssm.cc/… Read More Running Node as a Service using NSSM

Node.js on Windows and Azure

Node.js is a server-side JavaScript environment that uses an asynchronous event-driven model. This allows Node.js to get excellent performance based on the architectures of many Internet applications Node.js is a software system designed for writing highly-scalable internet applications, notably web servers. Programs are written in JavaScript, using event-driven, asynchronous I/O to minimize overhead and maximize… Read More Node.js on Windows and Azure