Unable to export services started after Topology manager
--------------------------------------------------------

                 Key: DOSGI-85
                 URL: https://issues.apache.org/jira/browse/DOSGI-85
             Project: CXF Distributed OSGi
          Issue Type: Bug
          Components: DSW
    Affects Versions: 1.2
            Reporter: Zhou


The patch below should resolve this issue.


Index: 
cxf-topology-manager/src/main/java/org/apache/cxf/dosgi/topologymanager/ServiceListenerImpl.java
===================================================================
--- 
cxf-topology-manager/src/main/java/org/apache/cxf/dosgi/topologymanager/ServiceListenerImpl.java
    (revision 1029946)
+++ 
cxf-topology-manager/src/main/java/org/apache/cxf/dosgi/topologymanager/ServiceListenerImpl.java
    (working copy)
@@ -75,7 +75,7 @@
      */
     private boolean analyzeService(ServiceReference sref) {
 
-        if 
("*".equals(sref.getProperty(RemoteConstants.SERVICE_EXPORTED_INTERFACES))) {
+        if 
(sref.getProperty(RemoteConstants.SERVICE_EXPORTED_INTERFACES)!=null) {
             return true;
         }
         return false;

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to