How to handle a multiple UPD Request in a distributed System?
I am trying to make a distributed system kind of concept.
I need to accept 3 UDP replies from three different sender.
I can handle one at a time.But how can I handle 3 request at a time so that I can show best of 2 which are same out of 3 request and show it to client.
The UPD code for handling 1 request is given below in form of UDPsend() and UDPReply().
//This is the send method which is written in 3 different clients
static String UdpSendData(int serverPort,String sSendOutput)
{
DatagramSocket aSocket = null;
String messageReceived = null;
try {
String keywordSent="";
keywordSent=sSendOutput;
aSocket = new DatagramSocket();
byte mes = (keywordSent).getBytes();
InetAddress aHost = InetAddress.getByName("192.168.137.1");
DatagramPacket request = new DatagramPacket(mes, (keywordSent).length(), aHost, serverPort);
aSocket.send(request);
byte buffer = new byte[1000];
DatagramPacket reply = new DatagramPacket(buffer, buffer.length);
aSocket.receive(reply);
messageReceived=new String(reply.getData());
System.out.println(messageReceived);
} catch (SocketException e) {
System.out.println("Socket: " + e.getMessage());
} catch (IOException e) {
e.printStackTrace();
System.out.println("IO: " + e.getMessage());
} finally {
if (aSocket != null)
aSocket.close();
}
return messageReceived;
}
//This is the receive method in which i wanted to have 3 replies
static void UPDRecieve() {
DatagramSocket aSocket = null;
try {
aSocket = new DatagramSocket(7777);
while (true) {
byte buffer = new byte[1000];
DatagramPacket request=null;
request= new DatagramPacket(buffer, buffer.length);
aSocket.receive(request);
String ReplyFromServer=new String(request.getData()); //Request received from server
DatagramPacket reply=null;
String Finalmessage="";
System.out.println(ReplyFromServer);
byte finalmessage = Finalmessage.getBytes();
reply= new DatagramPacket(finalmessage,Finalmessage.length(), request.getAddress(),request.getPort());
aSocket.send(reply);
}
}
catch (SocketException e) {
System.out.println("Socket: " + e.getMessage());
} catch (IOException e) {
System.out.println("IO: " + e.getMessage());
} finally {
if (aSocket != null)
aSocket.close();
}
}
I need to get those 3 replies but what if the one of them is buggy or takes time to execute how would i deal with the suiation if one doesn't respond to anything and other two has given e different execution. In that case my system will go on halt.How would I wait for all 3 execution if their is delay also or bug also.If i get two replies i need to wait for the 3nd one how would i wait for 3nd reply.
java tcp distributed-system datagram udpclient
add a comment |
I am trying to make a distributed system kind of concept.
I need to accept 3 UDP replies from three different sender.
I can handle one at a time.But how can I handle 3 request at a time so that I can show best of 2 which are same out of 3 request and show it to client.
The UPD code for handling 1 request is given below in form of UDPsend() and UDPReply().
//This is the send method which is written in 3 different clients
static String UdpSendData(int serverPort,String sSendOutput)
{
DatagramSocket aSocket = null;
String messageReceived = null;
try {
String keywordSent="";
keywordSent=sSendOutput;
aSocket = new DatagramSocket();
byte mes = (keywordSent).getBytes();
InetAddress aHost = InetAddress.getByName("192.168.137.1");
DatagramPacket request = new DatagramPacket(mes, (keywordSent).length(), aHost, serverPort);
aSocket.send(request);
byte buffer = new byte[1000];
DatagramPacket reply = new DatagramPacket(buffer, buffer.length);
aSocket.receive(reply);
messageReceived=new String(reply.getData());
System.out.println(messageReceived);
} catch (SocketException e) {
System.out.println("Socket: " + e.getMessage());
} catch (IOException e) {
e.printStackTrace();
System.out.println("IO: " + e.getMessage());
} finally {
if (aSocket != null)
aSocket.close();
}
return messageReceived;
}
//This is the receive method in which i wanted to have 3 replies
static void UPDRecieve() {
DatagramSocket aSocket = null;
try {
aSocket = new DatagramSocket(7777);
while (true) {
byte buffer = new byte[1000];
DatagramPacket request=null;
request= new DatagramPacket(buffer, buffer.length);
aSocket.receive(request);
String ReplyFromServer=new String(request.getData()); //Request received from server
DatagramPacket reply=null;
String Finalmessage="";
System.out.println(ReplyFromServer);
byte finalmessage = Finalmessage.getBytes();
reply= new DatagramPacket(finalmessage,Finalmessage.length(), request.getAddress(),request.getPort());
aSocket.send(reply);
}
}
catch (SocketException e) {
System.out.println("Socket: " + e.getMessage());
} catch (IOException e) {
System.out.println("IO: " + e.getMessage());
} finally {
if (aSocket != null)
aSocket.close();
}
}
I need to get those 3 replies but what if the one of them is buggy or takes time to execute how would i deal with the suiation if one doesn't respond to anything and other two has given e different execution. In that case my system will go on halt.How would I wait for all 3 execution if their is delay also or bug also.If i get two replies i need to wait for the 3nd one how would i wait for 3nd reply.
java tcp distributed-system datagram udpclient
add a comment |
I am trying to make a distributed system kind of concept.
I need to accept 3 UDP replies from three different sender.
I can handle one at a time.But how can I handle 3 request at a time so that I can show best of 2 which are same out of 3 request and show it to client.
The UPD code for handling 1 request is given below in form of UDPsend() and UDPReply().
//This is the send method which is written in 3 different clients
static String UdpSendData(int serverPort,String sSendOutput)
{
DatagramSocket aSocket = null;
String messageReceived = null;
try {
String keywordSent="";
keywordSent=sSendOutput;
aSocket = new DatagramSocket();
byte mes = (keywordSent).getBytes();
InetAddress aHost = InetAddress.getByName("192.168.137.1");
DatagramPacket request = new DatagramPacket(mes, (keywordSent).length(), aHost, serverPort);
aSocket.send(request);
byte buffer = new byte[1000];
DatagramPacket reply = new DatagramPacket(buffer, buffer.length);
aSocket.receive(reply);
messageReceived=new String(reply.getData());
System.out.println(messageReceived);
} catch (SocketException e) {
System.out.println("Socket: " + e.getMessage());
} catch (IOException e) {
e.printStackTrace();
System.out.println("IO: " + e.getMessage());
} finally {
if (aSocket != null)
aSocket.close();
}
return messageReceived;
}
//This is the receive method in which i wanted to have 3 replies
static void UPDRecieve() {
DatagramSocket aSocket = null;
try {
aSocket = new DatagramSocket(7777);
while (true) {
byte buffer = new byte[1000];
DatagramPacket request=null;
request= new DatagramPacket(buffer, buffer.length);
aSocket.receive(request);
String ReplyFromServer=new String(request.getData()); //Request received from server
DatagramPacket reply=null;
String Finalmessage="";
System.out.println(ReplyFromServer);
byte finalmessage = Finalmessage.getBytes();
reply= new DatagramPacket(finalmessage,Finalmessage.length(), request.getAddress(),request.getPort());
aSocket.send(reply);
}
}
catch (SocketException e) {
System.out.println("Socket: " + e.getMessage());
} catch (IOException e) {
System.out.println("IO: " + e.getMessage());
} finally {
if (aSocket != null)
aSocket.close();
}
}
I need to get those 3 replies but what if the one of them is buggy or takes time to execute how would i deal with the suiation if one doesn't respond to anything and other two has given e different execution. In that case my system will go on halt.How would I wait for all 3 execution if their is delay also or bug also.If i get two replies i need to wait for the 3nd one how would i wait for 3nd reply.
java tcp distributed-system datagram udpclient
I am trying to make a distributed system kind of concept.
I need to accept 3 UDP replies from three different sender.
I can handle one at a time.But how can I handle 3 request at a time so that I can show best of 2 which are same out of 3 request and show it to client.
The UPD code for handling 1 request is given below in form of UDPsend() and UDPReply().
//This is the send method which is written in 3 different clients
static String UdpSendData(int serverPort,String sSendOutput)
{
DatagramSocket aSocket = null;
String messageReceived = null;
try {
String keywordSent="";
keywordSent=sSendOutput;
aSocket = new DatagramSocket();
byte mes = (keywordSent).getBytes();
InetAddress aHost = InetAddress.getByName("192.168.137.1");
DatagramPacket request = new DatagramPacket(mes, (keywordSent).length(), aHost, serverPort);
aSocket.send(request);
byte buffer = new byte[1000];
DatagramPacket reply = new DatagramPacket(buffer, buffer.length);
aSocket.receive(reply);
messageReceived=new String(reply.getData());
System.out.println(messageReceived);
} catch (SocketException e) {
System.out.println("Socket: " + e.getMessage());
} catch (IOException e) {
e.printStackTrace();
System.out.println("IO: " + e.getMessage());
} finally {
if (aSocket != null)
aSocket.close();
}
return messageReceived;
}
//This is the receive method in which i wanted to have 3 replies
static void UPDRecieve() {
DatagramSocket aSocket = null;
try {
aSocket = new DatagramSocket(7777);
while (true) {
byte buffer = new byte[1000];
DatagramPacket request=null;
request= new DatagramPacket(buffer, buffer.length);
aSocket.receive(request);
String ReplyFromServer=new String(request.getData()); //Request received from server
DatagramPacket reply=null;
String Finalmessage="";
System.out.println(ReplyFromServer);
byte finalmessage = Finalmessage.getBytes();
reply= new DatagramPacket(finalmessage,Finalmessage.length(), request.getAddress(),request.getPort());
aSocket.send(reply);
}
}
catch (SocketException e) {
System.out.println("Socket: " + e.getMessage());
} catch (IOException e) {
System.out.println("IO: " + e.getMessage());
} finally {
if (aSocket != null)
aSocket.close();
}
}
I need to get those 3 replies but what if the one of them is buggy or takes time to execute how would i deal with the suiation if one doesn't respond to anything and other two has given e different execution. In that case my system will go on halt.How would I wait for all 3 execution if their is delay also or bug also.If i get two replies i need to wait for the 3nd one how would i wait for 3nd reply.
java tcp distributed-system datagram udpclient
java tcp distributed-system datagram udpclient
asked Nov 19 '18 at 21:35


Mark VimercaMark Vimerca
11
11
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53382969%2fhow-to-handle-a-multiple-upd-request-in-a-distributed-system%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53382969%2fhow-to-handle-a-multiple-upd-request-in-a-distributed-system%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown