hi guys. so i have java spring app and i have SOAP webservice. and the client will be sending SOAP request with these headers:
POST http://domainaddress.lt/server.php HTTP/1.1
Accept-Encoding: gzip,deflate
Content-Type: text/xml;charset=UTF-8
SoapAction: urn:#idcheck #WS client will include SoapAction header
Content-Length: 536
Host: domainaddress.lt
Connection: Keep-Alive
User-Agent: Apache-HttpClient/4.1.1 (java 1.5)
but i tried sending SOAP request with Postman without SoapAction header:
Cookie: JSESSIONID=C358AA583723D0D060393F39E7A2B3CD
Postman-Token: <calculated when request is sent>
Content-Type: application/xml
Content-Length: <calculated when request is sent>
Host: <calculated when request is sent>
User-Agent:PostmanRuntime/7.41.2
Accept:*/*
Accept-Encoding: gzip, deflate, br
Connection: keep-alive
Content-Type: text/xml
and it works fine. can smb help me out? thx