Just a wild guess... somewhere some character type checkbox is checked or not checked? Maybe a wrong driver type (ASCII/Unicode)?
// For example, IRIS sends a username "paul" as a two byte sequence0x70 0x00 0x61 0x00 0x75 0x00 0x6C 0x00
// the other end sees0x70 - this is a 'p'
0x00 - C-type end of string (hence, the name is just 'p')
But as I said, it's just a guess...
- Log in to post comments