--
You received this message because you are subscribed to the Google Groups "REST assured" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rest-assured...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Hi kiruthika,
Can you share the code on how you import the certificates to cacerts. Is it using keytool?
Also, can you share the piece of code on how you you are referring to the certificates and calling your webservice,
I am new to Rest Assured and trying to test a https url.
Thanks
Rekha
RestAssured.baseURI=https://otwsqa.tivo.com/itmind/mind9?;
RestAssured.keystore("C:/keys/truststore.jks","PF8gRcz4UH2p");
RestAssured.given().keystore("C:/keys/truststore.jks", "PF8gRcz4UH2p");
RestAssured.port=443;
RestAssured.urlEncodingEnabled = false;
RestAssured.post("type=customerInfoSearch&tivoSerialNumber=CF0010E335FCF08");
This does not work. Please help.
Thanks