May 19, 2007

Introducing Internet Information Services (IIS) 7.0

icrosoft recently rolled out its next-generation operating system (OS), Windows Vista. One of the core Vista components is a new version of Microsoft’s web server?Internet Information Services version 7.0 (IIS 7.0). IIS 7.0 will also be part of Windows Server “Longhorn”, which is expected to ship in mid 2007. This

Quickly Stop the Build in Your .NET IDE

Suppose you accidentally start building a big project and now you have to wait until the debugger (IDE) shows the stop icon. Use CTRL+Break and cancel the build.

What Image Formats Does Your Java Application Support?

Use this application to determine what image formats you can load and save in J2SE. import javax.imageio.*;class picture{ public picture(){} void RWF() { //read image formats System.out.println(“R-IF:”); String[] readFormats=ImageIO.getReaderFormatNames(); for(int i=0;i&ltreadFormats.length;i++) System.out.println(readFormats[i]); //write image formats System.out.println(“W-IF:”); String[] writeFormats=ImageIO.getWriterFormatNames(); for(int i=0;i

Creating Oracle Table and Column Names that Start with an Underscore

Typically, as part of the product installation, applications/products are required to create some database tables. It’s a good practice to isolate product installation tables from the application/solution specific tables. One of the best ways to achieve this isolation is to have table and column names start with an underscore “_”.