What is the doDelet() method?

The doDelete() method allows a servlet to handle a DELETE request. It is called by the server via the service method. This method belongs to the HttpServlet class. The DELETE operation allows a client to remove a document or Web page from the server. This method does not need to be either safe or idempotent. Those operations that are required by DELETE can have side effects for which the users can be held accountable. It may be useful to save a copy of the affected URL in the temporary storage, while using this method. The doDelete() method returns an HTTP “Bad Request” message, if the HTTP DELETE request is incorrectly formatted. The following is the general format of this method:

  • Share/Bookmark

Now days SUN announces Java performance tunning certifications. By doing these certification you will learn a blend of tuning methodology, performance theory and practical tips on solving difficult performance problems.

It provides an opportunity to hone your skills on a series of labs that are derived from real problems found during our consulting experience. Freely available or open source and will equip you to immediately apply what you have learned in your workplace. It remove the slow suffering and under performing applications. It provides knowledge to learn how to develop code with performance as the goal and the end user in mind.

  • Share/Bookmark

ucertify Early Bird discount

Just Go and Get the uCertify’s discount on certifcation kits on this Early Bird discount. Our kits provide’s a strong information over your competition with our top rated exam preparation kits. We are providing a powerful learning software with 15% discount on this Halloween day, save 15% in addition to existing sale prices. For getting the discount simply use promotion code HUSH. It is for only first 250 customers. http://www.ucertify.com/

  • Share/Bookmark

class box
{
int height;
int weight;

box( int a, int b)
{
height=a;
weight=b;
System.out.println(height);
System.out.println(weight);
}

}

class Box2
{
public static void main(String args[])
{
Box2 b2=new box();
}
}

  • Share/Bookmark