-
Recent Posts
Recent Comments
Archives
- April 2010 (1)
- December 2009 (1)
- November 2009 (1)
- March 2009 (2)
- July 2008 (2)
- June 2008 (2)
- May 2008 (2)
- April 2008 (2)
- November 2007 (2)
- October 2007 (1)
- September 2007 (4)
- August 2007 (5)
- July 2007 (4)
- June 2007 (10)
- May 2007 (12)
Categories
- AJAX (5)
- Blog Tips (2)
- Bug Fix (4)
- C++ (3)
- Challenge (1)
- Comet (2)
- Debug (2)
- Eclipse (8)
- Google Talk (4)
- httpd (3)
- Jambi (1)
- Java (10)
- Java2Script (6)
- JavaScript (3)
- MySQL (1)
- Project Management (4)
- QT (1)
- Server (1)
- Snippet (2)
- Software Requirement (2)
- Subversive (1)
- Tomcat (4)
- Tricks (11)
- Uncategorized (8)
- Vim (1)
- Vista Hacks (1)
- Wordpress (1)
Blogroll
Meta
Monthly Archives: September 2007
Maximum Connections for Tomcat, Apache and Comet
I struggled to find out why my server broke down frequently these days. And I think I found it. My Apache HTTP server was configured with MaxClients at 50, the default AJP connector’s connections number was about 15, and the … Continue reading
Posted in Comet, Tomcat, httpd
Leave a comment
How To Replace “/” With “” in .bat File
Here is an example to replace string with a different delimiter in Windows’ *.bat file. for /f "tokens=1-15 delims=/" %%i in ("%1") do ( set _X1_=%%i set _X2_=%%j set _X3_=%%k set _X4_=%%l set _X5_=%%m set _X6_=%%n set _X7_=%%o set _X8_=%%p … Continue reading
Eclipse Plugin Central Website, Aweful Design!
If you ever visit Eclipse homepage http://www.eclipse.org/, you may notice that Eclipse homepage embeds plugin updates news from Eclipse Plugin Central (http://www.eclipseplugincentral.org/). If you try to visit the news by the given link, you may find that the page loads … Continue reading
Posted in Uncategorized
Leave a comment
AJP Connector Breaks Down Apache HTTP Server
Recently, my Apache HTTP server was broken down twice. The scenario was when visiting a page, it was just waiting there, blank. And I checked the server through SSH and saw that there was a lot (about 50) of inner … Continue reading
Posted in Comet, Google Talk, Tomcat, httpd
1 Comment