Reputation: 35
I am using JaxWS-Spring jar and Jaxb for generating my SOAP Webservice API. Now I want to handle XXE prevention, please help how I can do that.
applicationContext.xml
<bean id="customerEndpoint" class="org.webservicespring.ws.CustomerEndpointService">
</bean>
<wss:binding url="/customer">
<wss:service>
<ws:service bean="#customerEndpoint" />
</wss:service>
</wss:binding>
Upvotes: 1
Views: 62