Encode/Decode problem across zookeeper clients
----------------------------------------------

                 Key: ZOOKEEPER-1224
                 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-1224
             Project: ZooKeeper
          Issue Type: Bug
          Components: java client
    Affects Versions: 3.3.0
         Environment: Zookeeper console client (i.e, zkCli.sh )
and ZkClient
with 3 zookeeper quorum
            Reporter: amith
            Priority: Minor
             Fix For: 3.5.0


create a java client 
create a persistent node using that client
write data into the node  
like..
ZkClient zk = new ZkClient ( getZKServers () );
        zk.createPersistent ( "/amith" , true );
        zk.writeData ( "/amith", "amith" );
        Object readData = zk.readData ( "/amith" );
        LOGGER.logInfo (readData);

        zk.delete ( "/amith" );

and try to read the same using ZkCli.sh console client

[zk: XXX.XXX.XXX.XXX:XXXXX(CONNECTED) 2] get /amith
��tamith
cZxid = 0x100000004
ctime = Wed Oct 12 10:13:15 CST 2011
mZxid = 0x100000005
mtime = Wed Oct 12 10:13:15 CST 2011
pZxid = 0x100000004
cversion = 0
dataVersion = 1
aclVersion = 0
ephemeralOwner = 0x0
dataLength = 12
numChildren = 0

data is displayed as ��tamith
this include some unwanted char

 





--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira


Reply via email to