Converting Java App to a Web Service

salamz all,

I have a java program that i want to use as a web service so that i can call the functions from web request.. i am not sure how to approach this.. would converting it to jsp help or should i convert my java code to .net and use .net web services?

any suggestions from the gurus :slight_smile:

thanks

Re: Converting Java App to a Web Service

digitalsurgeon.. yaar any good tutorials for that?

thanks

Re: Converting Java App to a Web Service

  1. Try

http://java.sun.com - there is a barrage of tutorials there.

  1. If you want to do it right by using a proper web architecture, buy the book

“More Servlets and Java ServerPages”, by Marty Hall.

Check for the latest edition before you buy.

  1. Read and learn a framework, either

Spring Framework (www.springframwork.org) OR

Struts (available at the Jakarta website).

Using a framework will allow you to use readily available tools to do the application using MVC2 architecture.

Hope that helps.