You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Zhou (JIRA)" <ji...@apache.org> on 2010/11/04 08:23:41 UTC

[jira] Created: (DOSGI-85) Unable to export services started after Topology manager

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.


[jira] [Resolved] (DOSGI-85) Unable to export services started after Topology manager

Posted by "Sergey Beryozkin (Resolved) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/DOSGI-85?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sergey Beryozkin resolved DOSGI-85.
-----------------------------------

       Resolution: Fixed
    Fix Version/s: 1.3
         Assignee: Sergey Beryozkin
    
> 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
>            Assignee: Sergey Beryozkin
>             Fix For: 1.3
>
>
> 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.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira