Consume Apache CXF, Spring based SOAP Webservice

This tutorial will show you how you can consume SOAP based webservice which is built using Apache cxf, Spring. This is client side application and it consumes the service which I build earlier. The server side application is here at https://roytuts.com/create-soap-webservice-using-apache-cxf-spring/ I am using gradle and maven as build tools for this application.

Create SOAP Webservice using Apache CXF, Spring

In this tutorial I will show you how you can publish SOAP based web service using Apache cxf, Spring. I am going to use Spring Boot framework to create this SOAP service application. I am using both gradle and maven as build tools. SOAP stands for Simple Object Access Protocol that works on various protocol and supports only XML structure…

Immediate attribute example in JSF

Introduction This tutorial will show you what is the purpose of using immeditae attribute in JSF. Although the request processing lifecycle processes the different phases in a consistent manner, the execution order of the phases can be altered for special cases. For example, you may want to add a Cancel button to a form. When clicked, it will skip all…

JSF 2, Maven and Tomcat 7 Configuration

This tutorial will show you how we can configure JSF 2.x, maven and Tomcat 7. For this tutorial we will create maven based web project in Eclipse. If you already have an idea on how to create a maven project in Eclipse will be great otherwise I will tell you here how to create a maven project in Eclipse.

How to create Executable jar using Maven

Introduction Here I am going to show you how to create executable jar using maven build tool. Sometimes you need to create executable jar file from a standalone application using maven because you want to put the executable jar file anywhere and just want to run the file to do some operations from command line.

Deploy both war and jar files into Nexus using maven in Jenkins

Introduction This tutorial will show you how to deploy both war and jar file from an web application using maven in Jenkins. By default when we build the web project in Jenkins then the war file gets uploaded into nexus repository but not the jar file. Sometimes we need to upload both war and jar files for an web application…

Create Both War And Jar Files Using Maven

JAR/WAR This tutorial will show you how to create both war and jar files in a web application using maven build tool. Sometimes you may need to create both war and jar files for a web application using maven build tool because some other standalone project needs to include the jar file for this web application. For example you can…