You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Sergey Beryozkin (Resolved) (JIRA)" <ji...@apache.org> on 2011/12/22 00:15:30 UTC

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

     [ 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