I am trying to call a Restful JSON service using RestTemplate and Jackson json convertor. Now in order to call the service I need to pass in a Security cookie. I can achiev
This is how it has worked for us
requestHeaders.add("Cookie", "JSESSIONID=" + session.getValue());