private void remoteSetLogFile(AID helper, String name, String file) throws FIPAException {
ACLMessage request = createHelperRequest(helper);
SetFile sf = new SetFile(name, file);
Action act = new Action();
act.setActor(helper);
act.setAction(sf);
try {
myAgent.getContentManager().fillContent(request, act);
ACLMessage inform = FIPAService.doFipaRequestClient(myAgent, request, 10000);
if (inform == null) {