A session as you probably mean it is a server-side object which stores state. You use it in servlets to store and retrieve data.
A cookie is a small piece of information a browser sends to a server with every request.
A cookie can keep information in the user’s browser [...]
Read Full Post »
What is JavaScript?
JavaScript was designed to add interactivity to HTML pages
JavaScript is a scripting language
A scripting language is a lightweight programming language
JavaScript is usually embedded directly into HTML pages
JavaScript is an interpreted [...]
Read Full Post »
Web Service: Web services work on top of HTTP: they generally involve sending an HTTP request to a certain URL (possibly including an XML document), and getting a response in the form of another XML document. Web service implementations can be broken down into two categories: servers and clients.
Most web services are based on one [...]
Read Full Post »
. Matches any single character
[ ] A bracket expression. Matches a single character that is contained within the brackets.
[^ ] Matches a single character that is not contained within the brackets.
^ Matches the starting position within the string. In line-based tools, it matches the starting position of any line.
$ Matches the ending [...]
Read Full Post »
The term Web services describes a standardized way of integrating Web-based applications using the XML, SOAP, WSDL and UDDI open standards over an Internet protocol backbone. XML is used to tag the data, SOAP is used to transfer the data, WSDL is used for describing the services available and UDDI is used for listing what [...]
Read Full Post »