I created serversocket in java and i am unable to send binary packet response to Teltonica fmxxxx device. can any one help me...
and this is my code
DataOutputStream outToClient = new DataOutputStream(socket.getOutputStream());
byte[] b={0x01};
outToClient.write(b,0,len);
outToClient.write('\n');
outToClient.flush();