Looking at the solutions given in $http doesn't send cookie in Requests
I've added below line inside my App.Config,
$httpProvider.defaults.withCredentials = true;
Also updated updated $http call with {withCredentials: true} as:
return $http.get(url, {withCredentials: true});
Additionally, tried setting below header in my server side code (servlet):
response.setHeader("Access-Control-Allow-Credentials", "true");
However, still not able to read cookie from request object in my Filter Class. Can someone please help me and tell, what am I missing?