Hello,

I've a requirement to acces my business tier using soap/http. My business service methods don't have to be exposed to other apps : this is only a security constraint (firewall).

How can I customize spring HttpInvoker to "decorate" the serialized invocation in an soap-compliant message like :
Code:
<SOAP:Envelope
xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"
SOAP:encodingStyle="application/x-java-serialized-object">
  <SOAP:Body>
    <m:RemoteInvocation xmlns:m="http://myapp/"> 
      [[ Serailized object ]]
    </m:RemoteInvocation>
  </SOAP:Body>
</SOAP:Envelope>