Details
Description
when we are using rest component we need to set the method in uppercase otherwise this will return error 405
bad example : String requestResponse = testProducer.requestBody("rest:get:health?host=$activityHost:$activityPort", null, String.class)
working example
String requestResponse = testProducer.requestBody("rest:GET:health?host=$activityHost:$activityPort", null, String.class)