diff options
Diffstat (limited to 'src/main/java/derms/replica1/DERMSServerPublisher.java')
| -rw-r--r-- | src/main/java/derms/replica1/DERMSServerPublisher.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/derms/replica1/DERMSServerPublisher.java b/src/main/java/derms/replica1/DERMSServerPublisher.java index df175b6..3edf16c 100644 --- a/src/main/java/derms/replica1/DERMSServerPublisher.java +++ b/src/main/java/derms/replica1/DERMSServerPublisher.java @@ -6,8 +6,8 @@ public class DERMSServerPublisher { public static void main(String[] args) {
try {
Endpoint.publish("http://localhost:8387/ws/derms", new DERMSServer("MTL"));
-// Endpoint.publish("http://localhost:8081/ws/derms", new DERMSServer("QUE"));
-// Endpoint.publish("http://localhost:8082/ws/derms", new DERMSServer("SHE"));
+ Endpoint.publish("http://localhost:8081/ws/derms", new DERMSServer("QUE"));
+ Endpoint.publish("http://localhost:8082/ws/derms", new DERMSServer("SHE"));
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
|