Java EE

ServletContextListener Servlet Listener Example — step-by-step Programming tutorial on Progressive Robot

ServletContextListener Servlet Listener Example

URL: https://www.progressiverobot.com/servletcontextlistener-servlet-listener-example/ ServletContextListener is one of the many Servlet Listener we have. This is the fifth article in the series of Java Web Application, you might want to check out earlier four articles too. [Java Web Application](/community/tutorials/java-web-application-tutorial-for-beginners "Java Web Application Tutorial for Beginners") [Servlets in Java](/community/tutorials/servlet-jsp-tutorial "Java Servlet Tutorial with Examples for Beginners") [Servlet Session […]

Read more
Java Web Application Tutorial for Beginners — step-by-step Programming tutorial on Progressive Robot

Java Web Application Tutorial for Beginners

URL: https://www.progressiverobot.com/java-web-application-tutorial-for-beginners/ Java Web Application is used to create dynamic websites. Java provides support for web application through Servlets and JSPs. We can create a website with static HTML pages but when we want information to be dynamic, we need web application. Java Web Application The aim of this article is to provide basic details […]

Read more
SOAP Webservices in Java Example using Eclipse — step-by-step Programming tutorial on Progressive Robot

SOAP Webservices in Java Example using Eclipse

URL: https://www.progressiverobot.com/soap-webservices-in-java-example-eclipse/ Soap Webservices in java can be developed in may ways. We learned about [JAX-WS SOAP Web Services](/community/tutorials/jax-ws-tutorial) in our last tutorial, today we will learn how we can create SOAP web service and it's client program using Eclipse. Here we will not use JAX-WS, we will be using Apache Axis that is integrated […]

Read more
Java Web Services Tutorial — step-by-step Programming tutorial on Progressive Robot

Java Web Services Tutorial

URL: https://www.progressiverobot.com/java-web-services-tutorial/ Welcome to the Java Web Services Tutorial. Here we will learn about web services, useful concepts in web services and then different types of API we have in Java to create web services. What is a Web Service In simple words, services that can be accessed over network are called web services. So […]

Read more
Steps to Configure SSL on Tomcat and Setup Auto Redirect from HTTP to HTTPS — step-by-step Security tutorial on Progressive Robot

Steps to Configure SSL on Tomcat and Setup Auto Redirect from HTTP to HTTPS

Secured Socket Layer (SSL) is the cryptography protocol to provide message security over the internet. It works on the notion of Private and Public keys and messages are encrypted before sending it over the network. To configure SSL on Tomcat, we need a digital certificate that can be created using Java keytool for development environment. For production environment, you should get the digital certificate from SSL certificate providers, for example, Verisign or Entrust.

Read more
Jersey Java Tutorial — step-by-step Programming tutorial on Progressive Robot

Jersey Java Tutorial

URL: https://www.progressiverobot.com/jersey-java-tutorial/ Welcome to Java Jersey Tutorial. Recently I started working on a Restful web service project using the JAX-RS Jersey framework. What is Java Jersey Framework? Java Jersey project tracks the JAX-RS API, which is used to create Restful web services in Java. ![jersey java, jersey tutorial, JAX-RS tutorial](images/jersey-java-tutorial-section-1.png) 1. Who should use this […]

Read more
Tomcat DataSource JNDI Example in Java — step-by-step Programming tutorial on Progressive Robot

Tomcat DataSource JNDI Example in Java

URL: https://www.progressiverobot.com/tomcat-datasource-jndi-example-java/ Welcome to Tomcat DataSource JNDI Example Tutorial. We looked at the [JDBC DataSource](/community/tutorials/java-datasource-jdbc-datasource-example "JDBC DataSource Example – Oracle, MySQL and Apache DBCP Tutorial") in the last tutorial and learned how to use that in standalone java application. Tomcat DataSource JNDI ![tomcat datasource, jndi example, tomcat jndi, jndi tutorial](images/tomcat-datasource-jndi-example-java-section-1.png) Actual benefit of DataSource comes […]

Read more
jQuery AJAX JSP Servlet Java Example — step-by-step Programming tutorial on Progressive Robot

jQuery AJAX JSP Servlet Java Example

URL: https://www.progressiverobot.com/jquery-ajax-jsp-servlet-java-example/ Ajax in Java JSP Servlet based web applications are very common. Recently I have written a lot about jQuery methods and how we can use them. Today we will look into one of the important jQuery functionality where we can easily execute AJAX calls and process the response in a [Java Servlet JSP](/community/tutorials/servlet-jsp-tutorial […]

Read more
Web Services Interview Questions - SOAP, RESTful — step-by-step Programming tutorial on Progressive Robot

Web Services Interview Questions – SOAP, RESTful

URL: https://www.progressiverobot.com/web-services-interview-questions-soap-restful/ Welcome to the Web Services Interview Questions with detailed answers. Recently I have written a lot about web services. How we can create SOAP and RESTful web services in Java. Web Services Interview Questions ![web services interview questions, restful web services interview questions, rest interview questions, soap interview questions](images/web-services-interview-questions-soap-restful-section-1.png) Here I am providing […]

Read more
JSF Authentication Login Logout Database Example — step-by-step Programming tutorial on Progressive Robot

JSF Authentication Login Logout Database Example

URL: https://www.progressiverobot.com/jsf-authentication-login-logout-database-example/ Authentication mechanism allows users to have secure access to the application by validating the username and password. We will be using JSF view for login, DAO object ,HttpSession for session management, JSF managed bean and mysql database. Lets now look in detail as how to create a JSF login logout authentication mechanism in […]

Read more
CHAT