use of org.eclipse.ecf.remoteservice.client.IRemoteCallable in project ecf by eclipse.
the class RestContainerTest method testRegisterRestService.
public void testRegisterRestService() throws Exception {
IContainer container = createRestContainer(RestConstants.TEST_DE_TARGET);
Dictionary properties = new Hashtable();
properties.put("user", "null");
IRemoteCallable callable = RestCallableFactory.createCallable("methodName", "resourcePath", null, new HttpGetRequestType());
IRemoteServiceRegistration registration = registerCallable(container, callable, properties);
assertNotNull(registration);
}
use of org.eclipse.ecf.remoteservice.client.IRemoteCallable in project ecf by eclipse.
the class RestPutServiceTest method setUp.
@Override
protected void setUp() throws Exception {
super.setUp();
// Create container for service URI
container = createRestContainer(uri);
// Get adapter and set authentication info
IRemoteServiceClientContainerAdapter adapter = (IRemoteServiceClientContainerAdapter) getRemoteServiceClientContainerAdapter(container);
// Setup authentication
adapter.setConnectContextForAuthentication(ConnectContextFactory.createUsernamePasswordConnectContext(username, password));
// Setup response deserializer to do absolutely nothing (return null). Note this is specific to this service.
adapter.setResponseDeserializer(new IRemoteResponseDeserializer() {
public Object deserializeResponse(String endpoint, IRemoteCall call, IRemoteCallable callable, Map responseHeaders, byte[] responseBody) throws NotSerializableException {
return null;
}
});
// Create callable and register
IRemoteCallable callable = RestCallableFactory.createCallable(method, resourcePath, new IRemoteCallParameter[] { new RemoteCallParameter("body") }, new HttpPutRequestType(HttpPutRequestType.STRING_REQUEST_ENTITY, "application/xml", -1, "UTF-8"));
// register callable
registration = adapter.registerCallables(new IRemoteCallable[] { callable }, null);
}
use of org.eclipse.ecf.remoteservice.client.IRemoteCallable in project ecf by eclipse.
the class TwitterRemoteServiceTest method createRestResource.
private IRemoteResponseDeserializer createRestResource() {
return new IRemoteResponseDeserializer() {
public Object deserializeResponse(String uri, IRemoteCall call, IRemoteCallable callable, Map responseHeaders, byte[] responseBody) throws NotSerializableException {
try {
JSONArray timeline = new JSONArray(new String(responseBody));
List statuses = new ArrayList();
for (int i = 0; i < timeline.length(); i++) {
try {
JSONObject jsonObject = timeline.getJSONObject(i);
String source = jsonObject.getString("source");
String text = jsonObject.getString("text");
String createdString = jsonObject.getString("created_at");
IUserStatus status = new UserStatus(createdString, source, text);
statuses.add(status);
} catch (JSONException e) {
throw new NotSerializableException("Cannot process response json representation:" + e.getMessage());
}
}
return (IUserStatus[]) statuses.toArray(new IUserStatus[statuses.size()]);
} catch (JSONException e) {
throw new NotSerializableException("JSON array parse exception: " + e.getMessage());
}
}
};
}
use of org.eclipse.ecf.remoteservice.client.IRemoteCallable in project ecf by eclipse.
the class TimeServiceRestClientContainer method connect.
@Override
public void connect(ID targetID, IConnectContext connectContext1) throws ContainerConnectException {
super.connect(targetID, connectContext1);
// Create the IRemoteCallable to represent
// access to the ITimeService method.
IRemoteCallable callable = RestCallableFactory.createCallable("getCurrentTime", ITimeService.class.getName(), null, new HttpGetRequestType(), 30000);
// Register the callable and associate it with the ITimeService class
// name
reg = registerCallables(new String[] { ITimeService.class.getName() }, new IRemoteCallable[][] { { callable } }, null);
}
use of org.eclipse.ecf.remoteservice.client.IRemoteCallable in project ecf by eclipse.
the class Activator method registerCall.
private IRemoteServiceRegistration registerCall() {
IRemoteCallable callable = RestCallableFactory.createCallable(RSS_PATH, RSS_PATH, null, new HttpGetRequestType());
registration = registerCallable(callable, null);
return registration;
}
Aggregations