Why does not this program code work in the third TCP communication?
1 view (last 30 days)
Show older comments
I create TCP server that can communicate many times. But, following code cannot work my target.Best Regars. I make SERVER.m and CLIENT.m. Further, I run each file by two matlab on same PC.
% SERVER
clear all
clc
disp('Server Stated');
server = tcpip('0.0.0.0', 30000, 'NetworkRole', 'server');
while true
disp('waiting for connection');
fopen(server);
disp('Connection OK');
data = fread(server, server.BytesAvailable);
disp('read data');
disp(char(data));
fclose(server);
disp('end connection');
end
% Client
clear all
clc
data = 'H';
disp('client Stated');
client = tcpip('localhost', 30000, 'NetworkRole', 'client');
disp('waiting for connection');
fopen(client);
disp('Connection OK');
fwrite(client, data);
disp('write data');
fclose(client);
1 Comment
Greg
on 5 Sep 2018
Are you seeing any of the disp output from the Client after the Server is started?
Answers (1)
Greg
on 5 Sep 2018
Take the fopen and fclose out of the while loop. Repeatedly opening and closing the tcpip obj is unnecessary, and usually extremely costly (performance). Further, since there is no wait time for the client to send a message between the open and close, you have practically 0 chance of catching the message.
2 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!