I am working on developing encrypted hbase storage. The task I am working on currently requires a temporary key from the client to decrypt the value. I cannot pass it during the client to server RPC as it will only be known at the time of processing (on server side) so as to which key is needed. I need to make a RPC to the client to get that key. Can you suggest a way to do it?
On Wed, Jun 27, 2012 at 1:44 PM, Jean-Daniel Cryans <[email protected]>wrote: > You probably don't want to do that. > > What are you trying to achieve exactly? > > J-D > > On Wed, Jun 27, 2012 at 8:46 AM, Dishant A <[email protected]> > wrote: > > Hi Everyone, > > > > I am working on a project that requires some information from the client > at > > runtime. > > > > So I need to make a RPC to the client with some arguments from a server > > side function (SingleColumnValueFIlter.java). Can anyone please tell me > how > > I can do it. > > > > Thanks, > > Dishant >
