0

I want to expose project specific services as restful services(for JSON http request/response) that i exposed earlier for SOAP Request/Response type. Earlier we configured the static wsdl entries for SOAP using the

web-services:static-wsdl id="MyWsdl" location="/WEB-INF/xsd/MyWsdl.wsdl"/>

in the spring configuration files.

I need advice to know that Do we have ways to include my wadl contract files as we did for wsdl with the spring integration project or best way to expose my restful JSON service for the client.

Gary Russell
  • 166,535
  • 14
  • 146
  • 179
user3777801
  • 91
  • 1
  • 3
  • 9

1 Answers1

0

You can simply serve it up as a static resource from the WAR. See this question/answer for howto.

Community
  • 1
  • 1
Gary Russell
  • 166,535
  • 14
  • 146
  • 179