views:

78

answers:

3

I'm actually working on a website project. I'm new with web services. I have 4 years experience in object oriented programming (java, c#, ...). I have read a lot on web services but none of my documentations are telling how to use all the technologies to make a real web service project.

What I want to do is: 1. Use a MySQL backend mapped with JPA in Java; 2. Use web services to present some functionalities with ... (JBoss, ... there is to much possibilities, I do not know which I should choose) 3. Create a dynamic web project (maybe in Jsp to keep the Java perspective) to present web service data to the end-user with HTML, Javascript, jQuery, ...

If you can help me with documentations, links or real project implementation samples, it will be greatly appriciated.

Thanks

+1  A: 

Check this. for beginner

I would suggest go for Spring Web Services from your env. It would be better

org.life.java
Thanks for your answer.
dutertimes
The question was more around which technologies to use creating webservices in Java. I already know how to create/manage webservices in Java... do you have any clues ? JBoss with CXF, Axis, ...?
dutertimes
editted............
org.life.java
@dutertimes: Java has two standards for web services: JAX-WS for SOAP web services and JAX-RS for REST web services. Each of these have several implementations... Spring Web Services and Apache CXF support both standards.
R. Bemrose
@R.Bemrose Spring WS doesn't implement neither JAX-WS nor JAX-RS. Spring WS is a very minimalistic WS stack.
Pascal Thivent
@Pascal: So... should I use Spring WS for my described project or is it too "Simple" for it? I don't know anything about Spring
dutertimes
@dutertimes It might do the job but I'm not fan personally and, as I wrote in my initial comment to your question, *I would personally go for Apache CXF or JAX-WS RI*.
Pascal Thivent
A: 

I have found something interesting using spring web services with eclipse that I will use with my project at this link: Sprint Web service tutorial with Eclipse

dutertimes
A: 

Likewise, here's a NetBeans tutorial: Getting Started with JAX-WS Web Services

Devon_C_Miller