advertisement
javaboutique
Search Tips
Articles  |   Tutorials  |   Reviews  |   Tools  |   by Category  |   by Date  |   by Name  |   Submit  |   Source  |   Forums  |  
javaboutique
Browse DevX


Partners & Affiliates











advertisement

Articles : Java Networking :

Writing Servlets

Contents
Overview
JSWDK 1.0.1 Note
Setting Up A Servlet Development Environment
Setting The CLASSPATH
Hello, Browser!
GET vs POST
Compiling Hello, Browser!
Hello, [Your Name Here]!
Hello, Again!
Next Steps

GET vs POST

When HTML form data is passed to a servlet, there are two methods which can be used: GET and POST.

GET is the default mechanism. When a browser uses a GET request, it passes the parameters by adding a string of name/value pairs to the URL itself.

For example, the URL http://localhost:8080/tutorials/servlet/HelloUser ?firstname=Gunther&lastname=Birznieks is providing two parameters to the HelloUser servlet: firstname and lastname. A "?" mark chararacter separates the servlet name and the parameters. "=" separates an individual name and value from each other while "&" separates multiple name/value pairs.

The advantage of GET is that you do not require an HTML form to call a URL with the GET method. You can also manually type the parameters in a URL. This allows you to reference a servlet with parameters called from a hyperlink on a page. This also allows your users to bookmark the URL along with the data being passed to it.

The major disadvantage is that URLs are limited in length. In addition, with enough data, they are fairly ugly to behold. Also, although bookmarking is a nice capability, sometimes your users may not want to bookmark the data itself. They may be interested in bookmarking just the application entrance. If the data is on the URL, they have to manually trim it off in the bookmark if they want to enter the application rather than the state that they had bookmarked it at.

To solve the problem of the GET method, the CGI protocol standard evolved the POST method of sending data to a Servlet. Instead of transferring data via the URL, the browser uses passes the content length of the data that it intends to send in the HTTP header. Then, the body of the HTTP request itself rather than the URL will contain a stream of name/value pairs that lasts until the content-length is reached. If content-length is not provided, then the POST data can pass an arbitrary amount of data to the servlet.

In this tutorial we start using the GET method because it is easier to see what is going on visually in the URL of the browser. However, the POST method is usually used for most production applications because of the disadvantages involving the length of passed data and bookmarking issues.

If you wish to try the POST method in this tutorial, replace the plain <FORM> tag with <FORM METHOD="POST"> tag. Then, in place of overriding doGet, you must override doPost method instead.

Overriding doPost instead of doGet is easy. Just replace the word doGet with doPost! The method signature is the same for both methods.

NEXT


Gunther Birznieks contributes to JavaBoutique's Web/Networking column. Gunther currently works for Barclays Capital in London, one of the leading global investment banks in Europe and has previously worked as a senior computer scientist in the Human Genome Project. Gunther is also known for writing several books on Web Programming (Perl, CGI, Java) as well as for co-creating Extropia with Selena Sol. Extropia is one of the best known public domain web programming archives Email: gunther@extropia.com.

How to Add Java Applets to Your Site

New on the Java Boutique:

New Review:

Time Management Made Easy with the Quartz Enterprise Job Scheduler
Why not just use the Java timer API? This open source scheduling API boasts simplicity, ease-of-integration, a well-rounded feature set, and it's free!

New Applet:

Reverse Complement
Reverse Complement is a simple applet that converts DNA or RNA sequences into three useful formats.

Elsewhere on internet.com:

WebDeveloper Java
Lots of Java information on webdeveloper.com

WDVL Java
Thorough Java resource at the Web Developer's Virtual Library.

ScriptSearch Java
Hundreds of free Java code files to download.

jGuru: Your View of the Java Universe
Customizable portal with online training, FAQs, regular news updates, and tutorials.

 Microsoft Visual Studio 2010 Showcase
 Avaya Developer Showcase
 MSDN Spotlight
 PHP for Windows Showcase
XML error: undefined entity at line 39
advertisement
Receive Articles via our XML/RSS feed
Receive Articles via our XML/RSS feed

JavaBytes
Internet Cyclone
This powerful, easy-to-use, internet optimizer is for Windows 95, 98, ME, NT, 2000 and XP. It's designed to automatically optimize your Windows settings, boosting your Internet connection up to 200%.

Windows 7: From Beta to Final Code in One Year
Google Shows Off Chrome OS, Releases Source
Microsoft Shows Off Silverlight 4, IE9 Plans
Metasploit Expands Vulnerability Test Framework
HyperCard Reborn?
Fedora 12 Takes Aim at Linux Networking
Top Supercomputer Nearly Doubles in Speed
Fedora 12 Linux Tackles Virtualization
Apple Gives iPhone Developers App Status Tracker
Novell Sets OpenSUSE 11.2 Free

Creating Custom Export Filters for StarOffice with XSLT
WPF Wonders: Using DataTemplates
Crystal Reports Family Offers Options for Developers
Avaya Aura Session Manager video
Avaya Aura Overview video
Exploring HTML 5's Audio/Video Multimedia Support
Overriding Virtual Functions? Use C++0x Attributes to Avoid Bugs.
Understanding the Cloud Computing Security Vulnerabilities
Cisco and IBM Target a Greener World
Upgrade to Visual Studio 2010 with the Ultimate Offer

Advertising Info  |   Member Services  |   Contact Us  |   Help  |   Feedback  |   Site Map  |   Network Map  |   About

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs