Creating a Spring Web Service using Plain Old XML (POX)
问题 So, I'm writing a Spring Web Service for an already-existing application to talk to. I have the service working to where it will receive a request and respond to it but the thing is, the application expects the response to be in Plain Old XML (POX). My response currently has SOAP headers attached to it like so: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP-ENV:Header/> <SOAP-ENV:Body> <Person> <FirstName>John</FirstName> <LastName>Smith</LastName> <