I am working on web services POC. I need to develop a Spring-based web services, that use XML/HTTP i.e. HTTP binding (NOT SOAP/HTTP) so that I can invoke a web-service with URL parameters like the one example described in the WSDL specification especially a GET with query parameters.
I am unable to map the URL's query-parameter to the end-point's (@EndPoint) method parameter.
Is it possible to develop such a web-service (XML/HTTP bound) with spring-ws? Is it possible to invoke such a service with GET request + query string?
Let me know for any such examples/tutorials.