Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2016-08-23 21:58:54 +0000
committerslewis2016-08-23 21:58:54 +0000
commit7bcdad98afe202b1b7f32b3fe470ddbc201c8be0 (patch)
tree1cdea16e6e37657a43a481f7952b44409460f78a /providers
parent1925721cf16acc6c5d95887bf2874c9a46b7f752 (diff)
downloadorg.eclipse.ecf-7bcdad98afe202b1b7f32b3fe470ddbc201c8be0.tar.gz
org.eclipse.ecf-7bcdad98afe202b1b7f32b3fe470ddbc201c8be0.tar.xz
org.eclipse.ecf-7bcdad98afe202b1b7f32b3fe470ddbc201c8be0.zip
Fix for https://bugs.eclipse.org/bugs/show_bug.cgi?id=499946
Diffstat (limited to 'providers')
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.r_osgi/src/org/eclipse/ecf/internal/provider/r_osgi/R_OSGiRemoteServiceContainer.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/providers/bundles/org.eclipse.ecf.provider.r_osgi/src/org/eclipse/ecf/internal/provider/r_osgi/R_OSGiRemoteServiceContainer.java b/providers/bundles/org.eclipse.ecf.provider.r_osgi/src/org/eclipse/ecf/internal/provider/r_osgi/R_OSGiRemoteServiceContainer.java
index 39e818f94..28c8e6f0d 100644
--- a/providers/bundles/org.eclipse.ecf.provider.r_osgi/src/org/eclipse/ecf/internal/provider/r_osgi/R_OSGiRemoteServiceContainer.java
+++ b/providers/bundles/org.eclipse.ecf.provider.r_osgi/src/org/eclipse/ecf/internal/provider/r_osgi/R_OSGiRemoteServiceContainer.java
@@ -455,9 +455,6 @@ class R_OSGiRemoteServiceContainer implements IOSGiRemoteServiceContainerAdapter
rosgiRegistrationValue = (ns instanceof R_OSGiWSSNamespace) ? "https" : (ns instanceof R_OSGiWSNamespace) ? "http" : "r-osgi"; //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$
props.put(RemoteOSGiService.R_OSGi_REGISTRATION, rosgiRegistrationValue);
- // add the hint property for R-OSGi that this service is intended to be
- // accessed remotely.
- props.put(RemoteOSGiService.R_OSGi_REGISTRATION, Boolean.TRUE);
// remove the RFC 119 hint, if present, to avoid loops
props.remove("osgi.remote.interfaces"); //$NON-NLS-1$
props.remove("service.exported.interfaces"); //$NON-NLS-1$

Back to the top