So I have a functioning eclipse/hibernate/spring webservice with some SOAP services, one of which is sayHello()
wich returns a string
Calling sayHello with http://localhost:8080/myWebService/soapServices/sayHello
yields:
<soap:Envelope>
<soap:Body>
<ns2:sayHelloResponse>
<return>greetings from the web service! time is 2015-09-06T14:39:23.375
</return>
</ns2:sayHelloResponse>
</soap:Body>
</soap:Envelope>
I've also created a companion webappp (the client) to access the web service.
It needs an XSLT stylesheet to format this response, but where should I put myStylesheet.xsl
within the project structure of my client webapp? Under new directory WEB-INF/stylesheets
?