Return-Path: Delivered-To: apmail-cassandra-user-archive@www.apache.org Received: (qmail 34997 invoked from network); 7 Apr 2010 20:16:24 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 7 Apr 2010 20:16:24 -0000 Received: (qmail 16587 invoked by uid 500); 7 Apr 2010 20:16:24 -0000 Delivered-To: apmail-cassandra-user-archive@cassandra.apache.org Received: (qmail 16540 invoked by uid 500); 7 Apr 2010 20:16:24 -0000 Mailing-List: contact user-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@cassandra.apache.org Delivered-To: mailing list user@cassandra.apache.org Received: (qmail 16532 invoked by uid 99); 7 Apr 2010 20:16:24 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Apr 2010 20:16:24 +0000 X-ASF-Spam-Status: No, hits=-8.0 required=10.0 tests=ENV_AND_HDR_SPF_MATCH,SPF_PASS,USER_IN_DEF_SPF_WL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of Jason.Alexander@match.com designates 208.185.193.221 as permitted sender) Received: from [208.185.193.221] (HELO mxdr.match.com) (208.185.193.221) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Apr 2010 20:16:16 +0000 Received: from da0itme021.match.corp (unverified [10.223.206.24]) by DA0ITMA005.match.corp (Vircom SMTPRS 4.6.741.13) with ESMTP id for ; Wed, 7 Apr 2010 15:15:50 -0500 X-Modus-BlackList: 10.223.206.24=OK;Jason.Alexander@match.com=OK X-Modus-Trusted: 10.223.206.24=YES X-Modus-Audit: TRUE;30;-1;129177189508100000 Received: from da0itmc101.match.corp ([fe80::4d43:6ff3:691e:3b0e]) by da0itme021.match.corp ([::1]) with mapi; Wed, 7 Apr 2010 15:15:53 -0500 From: Jason Alexander To: "user@cassandra.apache.org" Date: Wed, 7 Apr 2010 15:15:50 -0500 Subject: Handshake failed Thread-Topic: Handshake failed Thread-Index: AcrWjx29AWoQEvFnT1+07V5drEr8iw== Message-ID: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-cr-hashedpuzzle: BnHD Ddmc DnBc ECTW Enpr FhKU FhLa GR+n G0r0 HLl7 IdVG I0FS I2nt I6oc LFPP Me8L;1;dQBzAGUAcgBAAGMAYQBzAHMAYQBuAGQAcgBhAC4AYQBwAGEAYwBoAGUALgBvAHIAZwA=;Sosha1_v1;7;{9FA80C8D-781A-4592-AA80-43203F537E92};agBhAHMAbwBuAC4AYQBsAGUAeABhAG4AZABlAHIAQABtAGEAdABjAGgALgBjAG8AbQA=;Wed, 07 Apr 2010 20:15:50 GMT;SABhAG4AZABzAGgAYQBrAGUAIABmAGEAaQBsAGUAZAA= x-cr-puzzleid: {9FA80C8D-781A-4592-AA80-43203F537E92} acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Virus-Checked: Checked by ClamAV on apache.org Hey guys, Excuse my noobishness here, we're working through the initial PoC phases of= implementing Cassandra here on one of our major systems we're building, an= d I'm having a few problems. I'm running Cassandra 0.5.1 on Fedora 12 in a VM on OS X, with the network = interface running in bridged mode. I'm attempting to connect to it remotely= from a separate Windows 7 workstation via C#, and getting this in the Cass= andra logs: Debugger failed to attach: handshake failed - received >[two binary bits< -= excepted >JDWP-Handshake< >From a code perspective, it's dying on the insert call: TTransport transport =3D new TSocket("10.223.131.19", 8888); TProtocol protocol =3D new TBinaryProtocol(transport); Cassandra.Client client =3D new Cassandra.Client(protocol); Console.WriteLine("Opening connection..."); transport.Open(); System.Text.Encoding utf8Encoding =3D System.Text.Encoding.UTF8= ; long timeStamp =3D DateTime.Now.Millisecond; ColumnPath nameColumnPath =3D new ColumnPath() { Column_family =3D "Standard1", Column =3D utf8Encoding.GetBytes("name") }; Console.WriteLine("Inserting name columns..."); //Insert the data into the column 'name'=20 client.insert("Keyspace1", "1", nameColumnPath, utf8Encoding.GetBytes("Joe Bloggs"), timeStamp, ConsistencyLevel.ONE); Am I doing something wrong here? ;) TIA, -Jason