Creating JAX-WS Webservice using Maven

JAX WS Web Service This tutorial will show you how you can publish and consume SOAP (Simple Object Access Protocol) based JAX-WS webservice using maven wsgen and wsimport plugin. For this tutorial I will create two maven projects – first will be an web project for the service part and second one will be a standalone project for the client…

Send Any File using SOAP Webservice

Introduction This tutorial shows how we can send file using SOAP based webservice. The type of the file can be anything, i.e., text, image, pdf, MS doc etc. For this type of application we need to create two applications – one will work as a client application(which sends a file) and other one will work as a server application(which receives…

Consume jax-ws webservice using wsdl in Mule Project

This tutorial shows how we can consume service when we are given a wsdl file. We have seen how to create webservice and consume webservice in Mule Project but earlier we have not consume webservice from wsdl file rather we had created new mule flow for consuming webservice. Please go through the tutorial create jax-ws webservice before reading below.