Developing apps around VMware vSphere made easy using vSphere Java

By | Oct 9, 2011

If you are building any VMware vSphere powered cloud based solutions or any other application around the vSphere virtualization suite, then it’s most likely that you will have a need to access or manage the virtual resources programmatically. One way to accomplish this is by making direct use of the standard VMware vSphere web service [...]

10 new features which I liked the most in Eclipse Helios (3.6)

By | Jul 1, 2010

Last week Eclipse foundation delivered their 2010 installment i.e., the 3.6 version of Eclipse code named Helios. It was the largest release from Eclipse community so far as it involved 39 different project teams & 33 million lines of code (as per the data available in the official Eclipse web page). Helios comes with lots [...]

From ‘*’ to just Java, Virtualization & Cloud Computing

By | Jun 19, 2010

Almost from last one year, I had not been able to post my thoughts on technology consistently at TechSagar. Since, I got bit busy with few other personal projects, I was not able to dedicate much time for blogging. Even when I had some free time, I spent most of it by watching some classic [...]

Five minutes guide for creating your first Java web service using Axis2

By | Apr 15, 2010

This tutorial is intended for Java developers who are looking forward for developing their first SOAP based web service application. Theoretical knowledge of Web Services (including SOAP & WSDL) , practical knowledge of Eclipse IDE & ANT is a prerequisite for understanding this tutorial.

Five minutes guide for creating your first Struts2 project using Maven2

By | May 31, 2009

Struts2 is one of the most popular Java web application frameworks for building modern web 2.0 applications. In spite of facing stiff competitions from other sophisticated web frameworks like Ruby on Rails, Struts2 has been successful in retaining the top position mostly because of the Java factor associated with it.

Switch on Strings in Java

By | Jan 24, 2008

JDK 5.0 and its implementation of enum has eased the process of switching on strings in Java. Following code snippet shows how this functionality can be achieved.. public class prasTest { public enum test { first, second, third, novalue; public static test toValidStr(String str) { try { return valueOf(str); } catch (Exception e) { return [...]

Finding the hard disk space information using Java SE 6

By | Jan 22, 2008

Until Java SE 6 (Mustang) there was no direct Java way to get the hard disk volume information’s like the total disk space & available free space. The only possible way was the use of JNI which could have made our code platform dependent. The JSE 6 makes this task simple by providing few additional [...]

JBOSS Cache for J2EE developers

By | Jun 22, 2007

What is JBOSS Cache ? JBoss Cache is a replicated and transactional cache that can be used to manage Java objects within a local process or across distributed processes. Need For JBoss Cache With today’s large-scale enterprise applications, where scalability and high performance are required in-memory caching has a lead role to play. An in-memory [...]

© 2011 TechSagar, Privacy Policy