}
public static void sendRemoteEvent(String portId, String destination, RemoteEvent e, Map<String, String> metaData)
throws PortNotAvailableException {
MethodCall methodCall = new MethodCall("processRemoteEvent", new Object[]{ e }, metaData);
OutgoingPortUtilService portUtilService = utilsService.getOsgiServiceProxy(OutgoingPortUtilService.class);
portUtilService.sendMethodCall(portId, destination, methodCall);
}