// Get IRemoteService from proxy
final IRemoteService remoteService = getRemoteServiceFromProxy(proxy);
// Call remote service synchronously
final Object result = remoteService.callSync(createRemoteCall());
Trace.trace(Activator.PLUGIN_ID, "proxy.doStuff1 result=" + result);
assertStringResultValid(result, TestServiceInterface1.TEST_SERVICE_STRING1);
}
public void testCallSync() throws Exception {