--- a/src/main/java/net/timbusproject/extractors/modules/tavernaextractor/TavernaExtractorOSGi.java
+++ b/src/main/java/net/timbusproject/extractors/modules/tavernaextractor/TavernaExtractorOSGi.java
@@ -6,6 +6,7 @@
 import org.osgi.framework.Version;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
+
 import org.springframework.beans.factory.annotation.Autowired;
 
 import java.nio.file.Paths;
@@ -18,7 +19,6 @@
 public class TavernaExtractorOSGi implements IExtractor{
 
     private Logger LOGGER = LoggerFactory.getLogger(TavernaExtractorOSGi.class);
-
     public TavernaExtractorOSGi() {}
 
     @Autowired
@@ -77,7 +77,7 @@
         TavernaExtractor.setInputFileName(Paths.get(inputFileName));
 
         // starts the execution
-        extractor.process();
+        extractor.process(true); //true = remote execution
 
         return "Result is available at "+archimateOutputPath;
     }