Return-Path: Delivered-To: apmail-hbase-user-archive@www.apache.org Received: (qmail 64867 invoked from network); 23 Feb 2011 18:25:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 23 Feb 2011 18:25:37 -0000 Received: (qmail 46112 invoked by uid 500); 23 Feb 2011 18:25:36 -0000 Delivered-To: apmail-hbase-user-archive@hbase.apache.org Received: (qmail 45870 invoked by uid 500); 23 Feb 2011 18:25:35 -0000 Mailing-List: contact user-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@hbase.apache.org Delivered-To: mailing list user@hbase.apache.org Received: (qmail 45862 invoked by uid 99); 23 Feb 2011 18:25:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Feb 2011 18:25:34 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of gcjhhu-hbase-user@m.gmane.org designates 80.91.229.12 as permitted sender) Received: from [80.91.229.12] (HELO lo.gmane.org) (80.91.229.12) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Feb 2011 18:25:26 +0000 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PsJOa-0001wR-A7 for user@hbase.apache.org; Wed, 23 Feb 2011 19:25:04 +0100 Received: from users-clc.infogroup.com ([199.125.14.2]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 23 Feb 2011 19:25:04 +0100 Received: from mikew by users-clc.infogroup.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 23 Feb 2011 19:25:04 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: user@hbase.apache.org From: Mike Subject: Stargate Date: Wed, 23 Feb 2011 18:22:27 +0000 (UTC) Lines: 23 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: sea.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 199.125.14.2 (Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.13) Gecko/20101203 AskTbTRL2/3.9.1.14019 Firefox/3.6.13 ( .NET CLR 3.5.30729)) I'm having some issues converting the results of a restful call through stargate. I'm returning the data as a json representation which appears to work fine as it returns the desired fields: JsonRepresentation jr = new JsonRepresentation(resource.get(MediaType.APPLICATION_JSON)); When I parse through the Json I can break down the values and print them out: time: 1298398387275, Value: MTEzMzQz, Column: ZGF0YTpjaWQ= time: 1298398387275, Value: NTUwIGFubmRhdmlzQGVhcnRobGluay5uZXQuLi5Vc2VyIGFjY291bnQgaXMgdW5hdmFpbGFibGU=, Column: ZGF0YTpkZXRhaWxz time: 1298398387275, Value: ZWFydGhsaW5rLm5ldA==, Column: ZGF0YTpkb21haW4= time: 1298398387275, Value: MTMwNjA2Mg==, Column: ZGF0YTptaWQ= But I cannot seem to convert the values to a string. I've tried using the Bytes.toString and recieve the following Error: xception in thread "main" java.lang.NoClassDefFoundError: org/apache/hadoop/io/RawComparator Any help is appreciated.