diff --git a/examples/src/UdpMulticastExamples/UdpSender.java b/examples/src/UdpMulticastExamples/UdpSender.java
index 00fd1fb11e18eaf82b4144d9adfd3102fb1d072c..499122c2a805313d605afa44e0ff87ce69ff0629 100644
--- a/examples/src/UdpMulticastExamples/UdpSender.java
+++ b/examples/src/UdpMulticastExamples/UdpSender.java
@@ -23,7 +23,7 @@ public class UdpSender
     public static final int          SENDING_PORT = 1414;
     public static final int        RECEIVING_PORT = 1415;
     public static final int TOTAL_PACKETS_TO_SEND = 100;
-    public static final String   DESTINATION_HOST = "localhost"; // localhost 127.0.0.1 or argon 10.1.105.1
+    public static final String   DESTINATION_HOST = "10.1.105.8";
     
     @SuppressWarnings("SleepWhileInLoop")
     public static void main(String[] args) throws IOException 
@@ -32,7 +32,7 @@ public class UdpSender
         DataOutputStream  dos = null;
         int   packetID = 0;     // counter variable to send in packet
         float    value = -1.0f; // unreachable value is good sentinel to ensure expected changes occur
-        String message = "Hello MV3500"; // no really
+        String message = "We got London on da Track"; // no really
         String padding = new String();
         
         try