WebServices Wars: Creating a basic webservice using Eclipse, php and apache

137

Here I am,
That’s a lot of time since my last blog, well, I was quite busy with something else (still have my private life ok ?) but now I’m back again with WebServices, PHP, Eclipse, Apache.

A lot of folks are asking me about some sort of short howto/sample/easy doc for dealing with webservices and php, there’s a lot of information spread all around the web so I’ve decided to collect information from my projects and write down some notes for a quickstart howto with webservices and php.

Now if you like to write down everything from scratch you can surely do but if you’re working on a big project you’re surely already using an IDE of some sort.

I’ve tried a lot of different commercial and open source IDEs and after a lot of evaluation I’ve choosen Eclipse because it’s mature, stable (quite), reliable, studied for big enterprise class projects …and I’ve a fast and huge pc with a ton of ram on it.

Eclipse is reliable, well known and supported, one of its major drawbacks are about system resources, it eats a lot of ram but if you’ve a recently updated PC with a good linux distro and a good amount of ram you can surely use it and you’ll never go away from it. PHP folks will surely install PDT (http://www.eclipse.org/pdt/): PHP Development Toos Project for Eclipse, it’s now a mature plugin for eclipse, reliable and suited for php professional development.

I don’t wanna bother you about details on configuring eclipse/pdt/apache/php and so on (maybe another blog argument ?) I’ll assume you’ve this configuration :

  • Eclipse and PDT up and running in your workstation, don’t care about operating system but of course if you’re using linux it’s better 🙂 (gentoo linux like me even better). But I really don’t care, just need Eclipse up and running
  • Web Tools Platform plugin for Eclipse, not really required but useful, it provides: web page editor inside Eclipse, WSDL editor, HTML Validators. WSDL editor is very important if you wish to create webservices with a GUI interface, if you’re mastering xml/soap/rpc files and you want to write them on your own you’re free to do this.
  • A webserver with php extension installed, Apache2 and PHP5 are used in this sample but every webserver suitable for php is good (here again, apache2 and php5 are better than everything else)
  • Common PHP knowledge and some Object Oriented programming skills, here used for these samples
  • Basic SOAP and WebServices knowledge, at least you need to know what they can do and what is this technology for, later you’ll better understand soap after reading samples

This blog is just an intro and a “bill list of materials” before getting started

 

This is an intro, next article will be the first “hands on” with eclipse and WSDL creation
As usual feel free to ask and write down some comments when needed, hope it helps

Next, featuring:
Episode 1: WebServices Wars: “The Phantom Menace”: Creating the WebService WSDL file

Andrea Benini (Ben)