List<RequestCtx> requestCtxs = createRequestCtxList();
for (RequestCtx requestCtx : requestCtxs) {
ByteArrayOutputStream out = new ByteArrayOutputStream();
requestCtx.encode(out, new Indenter(0), true);
InputStream resp = post("security/geoxacml", out.toString());
checkXACMLRepsonse(resp, "Permit");
}
}