user2099521
user2099521

Reputation: 11

How can I convert a .NET web service to Spring WS based web service?

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

Answers (1)

psms
psms

Reputation: 883

Use Spring REST webservice.It supports HTTP post/get requests. Visit https://spring.io/understanding/REST

Upvotes: 1

Related Questions