*/
private ArrayList getNewServiceList(String aServiceUri,
CasProcessorConfiguration aCasProcessorConfig) throws Exception {
String vnsHost = getVNSSettingFor("VNS_HOST", aCasProcessorConfig, "localhost");
String vnsPort = getVNSSettingFor("VNS_PORT", aCasProcessorConfig, "9000");
VNSQuery vnsQuery = new VNSQuery(vnsHost, Integer.parseInt(vnsPort));
return vnsQuery.getServices(aServiceUri);
}