Skip to main content

Creating Bottom-up Web Service (WSDL)

This post will primarily show you how to create a simple Web Service application through Apache Axis in Eclipse, and will not dwell on explaining the background or functionality of a Web Service.

Yet, it’s a de facto to at least give a little definition.

WSDL or the Web Services Definition Language is just another specification to describe network XML-based services.
It supports message-oriented and procedural approach XML technologies. (for further reading click here)

1. Preparing the web application
a. Create a new web application and name it as “SimpleWebService”.

New Dynamic Project

b. Download and add “axis.jar” (download here) to the application libraries.
c. Edit and add this following configurations to the web.xml file.



< servlet >
< servlet-name >AxisServlet< / servlet-name >
< servlet-class >org.apache.axis.transport.http.AxisServlet
< / servlet-class >
< / servlet >
< servlet >
< servlet-name >AdminServlet< / servlet-name >
< servlet-class >org.apache.axis.transport.http.AdminServlet
< / servlet-class >
< load-on-startup >100< / load-on-startup >
< / servlet >
< servlet-mapping >
< servlet-name >AxisServlet< / servlet-name >
/servlet/AxisServlet< / url-pattern >
< / servlet-mapping >
< servlet-mapping >
< servlet-name >AxisServlet< / servlet-name >
< url-pattern >*.jws< / url-pattern >
< / servlet-mapping >
< servlet-mapping >
< servlet-name >AxisServlet< / servlet-name >
< url-pattern >/services/*< / url-pattern >
< / servlet-mapping >

*Note: spaces were created for display purposes only, adjust accordingly.


c. Create a public class and add any transactional method. In this sample i created “SimpleMessageTransport” method that accepts a string parameter and returns it to the server.

2. Creating Web Service


After successfully creating the artifacts of the Web application, it’s now time to create the Web Service.


a. From the file menu choose “New->Web Service”.
b. Configure exactly as shown in the picture below.

wsdl-conf


c. Then click Finish, it will then open a Web Service Client where you can verify and test.

wsdl-generated


Your project structure should look like this

project-struc


Voila! you can now access your Web Service through the net!.

local-access

Comments

Popular posts from this blog

Cross-Site Scripting - (HACK) a way out

I came across to this discovery when i was affronted with the problem of trying to communicate TWO sites on different domain/server and some parameters need to be passed. As you may have “Googled” it, you can’t do outright javaScript function call from your site to a partner site since it resides on different domains. It’s a violation of the Cross-Site Scripting W3C standards for it is highly probable for site security breach. To make the picture clearer, here’s the scenario. Take for an example your site caters a hotel reservation and you have a partner seller that also maintains a site for marketing. If you want to maximize you potential sales, you’ll opt to let your partner embed/include your reservation site somewhere in their site. See the diagram now? Partner site e.g resides in www.marketing.com and your site in www.hotelreservation.com , without directly accessing your site, a customer must be able to get a hotel reservation on you part...

Search Engine Optimization (SEO)

Often we focus our site development mainly on its GUI (Graphical User Interface) and content, although this is very critical and needed, yet we tend to neglect adding some essentials that also need to be considered and included in order to optimize the site search ability. We want surfers to find and read our sites especially if we want to market something, thus it is important to make sure that our site link will be included in the list of search results on any search engines. The question is how will you do it? How will Google, Yahoo, msn etc, will find your site be indexed and included in their search results? There are a lot of things to learn and take into consideration if you want to optimize your site. Before proceeding, I’ll provide primary reference for you to get started before jumping into SEO. Read through this and decide if you need to reconstruct your site or not. Google Webmaster Site – This will acquaint you to search engines basic concepts. Webmaster Guidel...

Prototype, Dojo, Script.aculo.us (JavaScript Framework)

These three famous Javascript frameworks are certainly in the top list of every web developer. They are a proven help in developing dynamic and creative web portals. Without their birth, how in the earth “google” could produce a fanstatic portal such as “igoogle” ( hhmmmm have you thought of it? ). Now, if you are just starting to explore the usage and advantages of either of these frameworks, let me give you a little hint of the best tool to use in your application (*wink). Advantages … 1. AJAX Function All of these frameworks enable you to deal with AJAX with ease and they are also cross-browser compliant. Besides simple requests, they also provide various ways to handle the response from the server, either through XML, JSON or plain text. My advise here, if you only need a way to use AJAX functions and customized UIs is not a concern, use the primitive framework – prototype. Prototype is the best tool to use as it is just a one file function compared to the other two custo...