Make sure that your actually reading the full packet. Otherwise you'll be incorrectly reading the next packet in the queue.
Client -> Server
buffer.writeShort(value);
buffer.writeByte(value2);
Server
int value = buffer.readShort();
byte value2 = buffer.readByte();