Create a Servlet

Select new from the file menu. and then select servlet from the new panel. Fill in the project information as you did in the past.
When you create a servlet application, you will not be asked to fill in frame information. You will instead be asked to check off which servlet functions you want to implement and asked if you want to have an html document created (check this one since it will give you a base to work from). You should delete the package name in most cases.
The doPut request process information the user has entered into a form on the Client (web page) end and then do an action in response to this request. For each data item submitted by the user you need one parameter. The Name property is the name of the name attribute of the html tag. It is used as the name parameter in the getParameter call in the servlet. The Variable is the name of the local variable (in the doPut function) that receives the value from the form. The Type specifies the type of the data. The Desc allows you to create a comment for your parameter and the Default field will set a default value for the variable.