Re: Help with creating a thrift call

2010-10-14 Thread Gary Dusbabek
http://wiki.apache.org/cassandra/ThriftExamples is probably the place to start. On Thu, Oct 14, 2010 at 08:57, wrote: > Thank you, I used TFramedTransport as per your suggestion and it works now! > > Maybe I should write this up in the wiki? Could you suggest a suitable page? > > Alexander > >>

Re: Help with creating a thrift call

2010-10-14 Thread altanis
Thank you, I used TFramedTransport as per your suggestion and it works now! Maybe I should write this up in the wiki? Could you suggest a suitable page? Alexander > On Wed, Oct 13, 2010 at 08:21, wrote: >> I want to create a thrift call and would like to know how to go about >> it. >> >> I thi

Re: Help with creating a thrift call

2010-10-13 Thread Gary Dusbabek
On Wed, Oct 13, 2010 at 08:21, wrote: > I want to create a thrift call and would like to know how to go about it. > > I think what I should do is this: > > - add my call to cassandra.thrift (eg. string test(1:required string arg), > within 'service Cassandra') > > - run thrift -gen java cassandra

Help with creating a thrift call

2010-10-13 Thread altanis
I want to create a thrift call and would like to know how to go about it. I think what I should do is this: - add my call to cassandra.thrift (eg. string test(1:required string arg), within 'service Cassandra') - run thrift -gen java cassandra.thrift - write a corresponding function in service/