Saturday, November 21, 2015

Expose Restful Web Service From Liferay Custom Portlet Plugin

Exposing soap web service for a custom plugin STEPS: Step 1: Create one portlet plugin project, name: RestExposer, after appending suffix of portlet plugin project full name of project will be RestExposer-portlet. Create one portlet name: Restexpose, inside created project. Step 2:Create service.xml,define...

Consume Soap Web Service Using Eclipse Tool In Liferay Custom Portlet Plugin

Consume Soap Web Service Using JAX-WS  In Liferay Custom Portlet Plugin STEPS: Step 1: Create one liferay portlet plugin project, name: SoapClientUsing_ECLIPSE, after appending suffix full project name will be : SoapClientUsing_ECLIPSE-portlet Create one portlet name: Soapconsumer...

Consume Soap Web Service Using JAX-WS In Liferay Custom Portlet Plugin

1. Consume Soap Web Service Using JAX-WS In Liferay Custom Portlet Plugin 2. Consume Soap Web Service Using Eclipse Tool  In Liferay Custom Portlet Plugin 1. Consume Soap Web Service Using JAX-WS In Liferay Custom Portlet Plugin What is JAX-WS? The Java API for XML Web Services (JAX-WS)...

Expose Soap Web Service From Liferay Custom Portlet Plugin

Exposing soap web service for a custom plugin STEPS: Step 1: Create one portlet plugin project, name: SoapExposer, after appending suffix of portlet plugin project full name of project will be SoapExposer-portlet. Create one portlet name: Exposer, inside created project. Step 2:Create service.xml,define...

Sunday, November 15, 2015

How To Use Soap UI For Testing Web Service

SoapUI  Tool: SoapUI is an open-source web service testing application for service-oriented architectures (SOA) and representational state transfers (REST). Its functionality covers web service inspection, invoking, development, simulation and mocking, functional testing, load and compliance...

Soap Based Web Service

Soap Based Web Service Basics: Expose Soap Web Service From Liferay Custom Portlet Plugin Consume Soap Web Service Using JAX-WS In Liferay Custom Portlet Plugin Consume Soap Web Service Using Eclipse Tool In Liferay Custom Portlet Plugin ...

Web Services

Web Service Basics:   A web service is a way of calling a function which is inside a software from some other software. lets say there are two softwares- 1.Company management , 2.Employee management. Software one(Company management) gives a call to function which is inside software two(Employee management).The software which gives a call to a web service is called a client(Here client is software...

Tuesday, November 10, 2015

send log messages to different log file

We often come across to situation where we need to spearate our log based on different scenario. Here i will explain how to create another log file and use it for logging. we can do this in two way either using xml or using properties. xml is better approach. Using log4j.properties cretae a log4j.properties file inside your resources folder of your project and paste below properties # Root...