Reputation: 11
I need to convert my ASP.NET web service (.asmx) to Java using Spring framework with multiple bindings, in other words, I should be able to access my web service using SOAP and simple HTTP GET/POST also. I have created a simple web service using Spring however it does not support simple POST/GET request. Any pointers in this direction ? Thanks.
Upvotes: 1
Views: 1174
Reputation: 883
Use Spring REST webservice.It supports HTTP post/get requests. Visit https://spring.io/understanding/REST
Upvotes: 1