Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

any one here have idea about creating SOAP Web service by following steps.

1.Creating Web service Class 2.Creating arr file using ant build file and 3.publish and access web service using web service client.

I'm new to SOAP Web service.

share|improve this question
add comment

1 Answer

up vote 0 down vote accepted

You can create a Web Service with from a class using Axis2 (Code-first approach).

You can download the Axis2 distribution and refer samples

Refer following guide on creating a Web Service from a POJO (Plain Old Java Object).

http://axis.apache.org/axis2/java/core/docs/pojoguide.html

You can create clients using the WSDL.

Refer: http://axis.apache.org/axis2/java/core/docs/userguide-creatingclients.html

share|improve this answer
add comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.