public void testsRoutingWithoutProcessingSecurityHeaders() {
String url = "http://localhost:8280/services/StockQuoteProxy";
String policy = "./repository/conf/sample/resources/policy/client_policy_3.xml";
log.info("Running test: Routing the messages arrived to a proxy service without " +
"processing the security headers");
SampleClientResult result = client.requestStandardQuote(null, url, null, "IBM", policy);
assertTrue("Client did not a response with https ", result.responseReceived());
}