A soap service built using spring was organized in one of our data centers. When I test through the SOAP interface, I get a response in 1 second or less. However, when I run the same request through CURL, it takes more than 30 seconds to complete. I execute both commands from the same machine. What could be the reason for this difference?
curl -H "Content-Type: text/xml; charset=utf-8" -H "SOAPAction:" -d @request.xml <endpoint>
source
share