added a comment -
30/Jul/08 1:47 PM additional info:
I need this to use Eclipse Riena remote OSGI Services.
if I would register a service fornEclipsen Riena to use,
I have to do something like
.......
private ServiceRegistration beanReg;
.......
Hashtable<String, String> properties = new Hashtable<String, String>(3);
properties.put(RSDPublisherProperties.PROP_IS_REMOTE, Boolean.TRUE.toString());
properties.put(RSDPublisherProperties.PROP_REMOTE_PROTOCOL, "hessian");
properties.put(RSDPublisherProperties.PROP_REMOTE_PATH, "/slbWS");
beanReg = context.registerService(StatelessRemote.class.getName(), slb, properties);
.............
its not such a good idea to have two services for each EJB Interface -
on the other side its good that all these services were already registered by EZB.
so I need a way to set properties - easioest would be using a managed service
ekke
I need this to use Eclipse Riena remote OSGI Services.
if I would register a service fornEclipsen Riena to use,
I have to do something like
.......
private ServiceRegistration beanReg;
.......
Hashtable<String, String> properties = new Hashtable<String, String>(3);
properties.put(RSDPublisherProperties.PROP_IS_REMOTE, Boolean.TRUE.toString());
properties.put(RSDPublisherProperties.PROP_REMOTE_PROTOCOL, "hessian");
properties.put(RSDPublisherProperties.PROP_REMOTE_PATH, "/slbWS");
beanReg = context.registerService(StatelessRemote.class.getName(), slb, properties);
.............
its not such a good idea to have two services for each EJB Interface -
on the other side its good that all these services were already registered by EZB.
so I need a way to set properties - easioest would be using a managed service
ekke