Axis2 Java2WSDL approach

Опубликовано: 14 Май 2026
на канале: ITCuties
19,551
51

Tutorial link:
http://www.itcuties.com/j2ee/axis2-ja...

In this tutorial we are going to code a WebService based on Axis2 java2wsdl approach -- exposing POJO as a WebService. If you haven't do so yet configure your development environment based on Eclipse IDE. You might find those two tutorials very helpful:
Eclipse Tomcat 7 Setup (http://www.itcuties.com/tools/eclipse...)
Axis2 Tomcat Eclipse setup (http://www.itcuties.com/tools/axis2-t...)
Our example is an implementation of a HighScore Service. It implements addHighScore, getHighScores, getHighScoresForNickname, getHighScoresSize operations. It might be used as a base for your highscore system if you are developing mobile games etc.
In this tutorial we are going to discuss following topics:
Setting up Maven 3 Axis2 project in Eclipse
HighScoreService POJO implementation
Exposing POJO as a WebService
Testing solution