How to provide a REST interface for a SOAP web service?

I know very little about web programming, but I need to create a web-based license generation service to provide licenses to users of my desktop software.

I managed to create a working and debugged SOAP service on the Win2003 server, but now I found that the interface that I need to provide for my payment processor should be REST.

How would you recommend I handle this, given that I just don't have time to learn PHP and rewrite my web service, etc. I could completely bypass SOAP and easily create an executable file that receives the license parameters and returns the encrypted license, but this is a bit of the web interface I'm stuck on. I will probably be contracting with someone to write useful information for this, but I don't know what to ask for.

Thanks Manu, Michael

+3
source share
2 answers

You can open the same service as SOAP, as well as RESTful. Axis2 with WSDL 2.0 supports this.

Please check out this RESTful Web Services article with Apache Axis2 for a detailed explanation of the situation.

Thank..

+2
source

SOAP REST. API- SOAP WebServices RESTful . , Ruby on Rails ( 90% RESTful APi ). , , .

:

get '/hi' do
  "Hello World!"
end
+2

All Articles