Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[ecf-dev] [Fwd: [Eclipse Communication Framework] New comment on Remote OSGI over XMPP.]

Hi Jan and Markus and all,

I've had a comment on my blog posting that essentially boils down to asking to set/reset the r-OSGi request timeout. See below.

Can this be accomplished now or with enhancement?  Thanks,

Scott


-------- Original Message --------
Return-Path: <3nIWKSg8LBvYlmpcnjw-amkkclrZjmeecp.amkqjcugqamknmqclr.amk@xxxxxxxxxxxxxxxxxxxxxxxxxx>
X-Original-To: 	slewis@xxxxxxxxxxxxx
Delivered-To: 	slewis@xxxxxxxxxxxxx
Received: from mail-yx0-f218.google.com (mail-yx0-f218.google.com [209.85.210.218]) by composent.com (Postfix) with ESMTP id 16EAEF878A for <slewis@xxxxxxxxxxxxx>; Mon, 17 Aug 2009 16:51:24 -0700 (PDT) Received: by yxe23 with SMTP id 23so230521yxe.1 for <slewis@xxxxxxxxxxxxx>; Tue, 18 Aug 2009 03:42:36 -0700 (PDT) Received: by 10.101.7.30 with SMTP id k30mr1873391ani.10.1250592156591; Tue, 18 Aug 2009 03:42:36 -0700 (PDT) Message-ID: <1250592156571.906c3fe8-db27-4312-be78-771a56c4091c@xxxxxxxxxx>
Date: 	Tue, 18 Aug 2009 03:42:36 -0700 (PDT)
From: 	Anonymous <noreply-comment@xxxxxxxxxxx>
To: 	slewis@xxxxxxxxxxxxx
Subject: [Eclipse Communication Framework] New comment on Remote OSGI over XMPP.
MIME-Version: 	1.0
Content-Type: multipart/alternative; boundary="----=_Part_11019_731085160.1250592156573"



Anonymous has left a new comment on your post "Remote OSGI over XMPP <http://eclipseecf.blogspot.com/2007/07/remote-osgi-over-xmpp.html>":

Hello Scott,

I would like to know if is possible to change the timeout value of the server for asynchronous communication, I am using the Eclipse ECF with R-OSGi and Equinox. When I modify the IRemoteCall timeout value with 3000 ms ...

remoteService.callAsync(createRemoteCall(), createRemoteCallListener());
System.out.println("callAsync invoked");

IRemoteCall createRemoteCall() {
return new IRemoteCall() {

public String getMethod() {
return "hello";
}
public Object[] getParameters() {
return new Object[] { "Asynch RemoteService Consumer" };
}
public long getTimeout() {
return 3000;
}
};
}

not work!!, only "timeout exceeded" after 120000 ms (2 min), this value is set in ch.ethz.iks.r_osgi.impl.ChannelEndpointImpl.

Thanks.


Posted by Anonymous to Eclipse Communication Framework <http://eclipseecf.blogspot.com/> at 3:42 AM, August 18, 2009


Back to the top