;0Hello,

I am just learning how to use Spring framework so please be patient with me I have few questions and it would be really nice if You find some time to give me some hints.

I have some problem in understanding some things. I Followed many tutorials including http://static.springsource.org/sprin.../tutorial.html which abstract is:
1. Create WSDL - done
2. Customize web.xml - done
3. creating Endpoint - not sure of this
4. create context - done

What i want to do is to create a simple WS at for example localhost:8080/simple-ws which show Hello world! ( done) and this WS under localhost:8080/simple-ws/request is getting XML from request and send response. Which component is responsible for this? Endpoint ? Or do i have to set request-mapping in @Controller to map /request to Endpoint? I would really appreciate help.

M.