Getting error - unable to find valid certification path to requested target in Rest assured . I am trying to get response using post method in rest assured. I am getting response in soap UI without any error but in rest assured getting error. This is the statement I am trying to execute in eclipse using java and rest assured
String response = RestAssured.baseUri(base).Body(request).Post().asPrettyString();
I also tried relaxedHTTPSValidation() method but with that method I am getting error "content is not allowed in prolog" , as i dont have admin rights i wont be able to add certificate from cmd,i have downloaded the certificate from browser ,but IDK how can i use this without admin rights. Can you please help. Thanks!