Re: [protobuf] RpcChannel and RpcController Implementation

2011-02-22 Thread Amit Pandey
Completely make sense. Thanks Kenton. On Tue, Feb 22, 2011 at 11:15 PM, Kenton Varda wrote: > For AppEngine you'll need to accept all incoming requests over HTTP. You > probably don't want to use the RPC interfaces -- just use the regular > servlet interface and use encoded protobufs in the req

Re: [protobuf] RpcChannel and RpcController Implementation

2011-02-22 Thread Kenton Varda
For AppEngine you'll need to accept all incoming requests over HTTP. You probably don't want to use the RPC interfaces -- just use the regular servlet interface and use encoded protobufs in the request and response bodies. On Wed, Feb 16, 2011 at 10:39 PM, Amit wrote: > > Hi All, > > I am very

[protobuf] RpcChannel and RpcController Implementation

2011-02-16 Thread Amit
Hi All, I am very new to Protocol Buffer. I went through the documentation and found that we have to provide our own implementation of RpcChannel and RpcController interface. I'm not sure that what would I write in the implemented methods. I'm using JAVA in my application. Basically my requireme