Java Servlets – Http Status Codes
In this guide we will discuss about http status codes of java servlets. The format of the HTTP request and HTTP response messages are similar and will have following structure…
In this guide we will discuss about http status codes of java servlets. The format of the HTTP request and HTTP response messages are similar and will have following structure…
In this guide we will discuss about server http response of Java servlets. As discussed in the previous chapter, when a Web server responds to an HTTP request, the response…
In this guide we will discuss about client http request of java servlets. When a browser requests for a web page, it sends lot of information to the web server…
In this guide we will discuss about form data of Java Servlets. You must have come across many situations when you need to pass some information from your browser to…
In this guide we will discuss example of serevlets. Servlets are Java classes which service HTTP requests and implement the javax.servlet.Servlet interface. Web application developers typically write servlets that extend javax.servlet.http.HttpServlet, an…
In this guide we will discuss about life cycle of java servlets. A servlet life cycle can be defined as the entire process from its creation till the destruction. The…
A development environment is where you would develop your Servlet, test them and finally run them. Like any other Java program, you need to compile a servlet by using the…
Servlets provide a component-based, platform-independent method for building Webbased applications, without the performance limitations of CGI programs. Servlets have access to the entire family of Java APIs, including the JDBC…
JSON stands for JavaScript Object Notation.It is an independent data exchange format and is the best alternative for XML. This chapter explains how to parse the JSON file and extract…
The Android platform includes a JET engine that lets you add interactive playback of JET audio content in your applications. Android provides JetPlayer class to handle this stuff. In order…