[...]
 sp<IServiceManager> sm = defaultServiceManager();
 // Get Service
 sp<IBinder> binder = sm->getService(String16("helloWorld"));
 sp<IHelloWorld> hw = interface_cast<IHelloWorld> (binder);
 // Call remote method (initiate transaction)
 hw->helloWorld();
 [...]