Latest updates

Here’s what we did this week: – Sitemap generator updated with bug fixes and published the new sitemap to display stylized with an XSL – Broken Link Checker beta 3 released with bug fixes and…

Java Tomcat Session Example

Source Code for Session Example import java.io.*; import java.util.*; import javax.servlet.*; import javax.servlet.http.*; public class SessionExample extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { response.setContentType(“text/html”); PrintWriter out = response.getWriter(); HttpSession…

Java servlet example for read and create cookies in Tomcat

Source Code for Cookie Example import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class CookieExample extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { response.setContentType(“text/html”); PrintWriter out = response.getWriter(); // print out…

Examples of Ajax requests with jQuery

jQuery simplifies our life a lot, even with Ajax requests, here’s an example of a basic request: $.ajax({ url: ‘myfile.php’, success:function(data){ alert(data); } }); This is the simplest possible Ajax request, if our request is…

Latest updates

Base64 Encoder Decoder online: Improved interface Possibility to upload client-side files MD5, SHA1 and SHA-256 Hash Generator New SHA-512 encoding option Password Generator URL to load your settings on other devices quickly Bug fixes Sitemap…