try {
String serviceEndpoint = options.get("ServiceEndpoint");
if (serviceEndpoint == null || "".equals(serviceEndpoint)) {
throw new PEPException("The serviceEnpoint option has not been set in the configuration file.");
}
MelcoePDP service = new MelcoePDP(new URL("wsdl"));//TODO
client = service.getMelcoePDPSOAP11PortHttp();
} catch (Exception e) {
logger.error("Could not initialise the PEP Client.");
throw new PEPException("Could not initialise the PEP Client.", e);
}
}