From f6e52fa296eff18077f3828960e7ed8226f3f917 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Euzenat?= <Jerome.Euzenat@inria.fr> Date: Fri, 25 Aug 2006 11:19:38 +0000 Subject: [PATCH] - made it work under my machine (changed the pport number) --- src/fr/inrialpes/exmo/align/service/AlignmentService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fr/inrialpes/exmo/align/service/AlignmentService.java b/src/fr/inrialpes/exmo/align/service/AlignmentService.java index 383857a6..9315689e 100644 --- a/src/fr/inrialpes/exmo/align/service/AlignmentService.java +++ b/src/fr/inrialpes/exmo/align/service/AlignmentService.java @@ -148,7 +148,7 @@ public class AlignmentService { // Change port if requested // JE: implement as parameter passing to init() - int port = 8090; + int port = 8089; // Put this in the argument of --html=8980 //if ( args.length > 0 && lopt != 0 ) // port = Integer.parseInt( args[0] ); @@ -161,7 +161,7 @@ public class AlignmentService { System.err.println( "Couldn't start server:\n" + ioe ); System.exit( -1 ); } - //try { System.in.read(); } catch( Throwable t ) {}; + try { System.in.read(); } catch( Throwable t ) {}; // I must do something for stoping them } -- GitLab