Hi
@Clover_FAQ
@Tim Suh
We are receiving the request from Socket in the following formate: (The request is in multiline)
{
"M_I": "12345678",
"T_P": "heart",
"Con": {"S_Num": "bdhaksdsdbk"}
}
When we read the data from scocket InputStream via following code:
Scanner scanner = new Scanner(inputStream).useDelimiter("\\Z");
String data = scanner.next();
Application is stuck on scanner.next() on Clover Mini 2nd generation device.
While its working fine on Clover Flex and Mobile device.
We have already checked it with BufferedReader same issue is happening.Please suggest.