You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@felix.apache.org by "Karl Pauls (JIRA)" <ji...@apache.org> on 2008/01/24 20:28:34 UTC

[jira] Commented: (FELIX-471) FilterImpl.toString() does not add escape characters

    [ https://issues.apache.org/jira/browse/FELIX-471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12562177#action_12562177 ] 

Karl Pauls commented on FELIX-471:
----------------------------------

Good catch. This will make it into 1.0.2. Thanks.

> FilterImpl.toString() does not add escape characters
> ----------------------------------------------------
>
>                 Key: FELIX-471
>                 URL: https://issues.apache.org/jira/browse/FELIX-471
>             Project: Felix
>          Issue Type: Bug
>          Components: Framework
>            Reporter: Angelo van der Sijpt
>            Assignee: Karl Pauls
>         Attachments: FELIX-471.patch
>
>
> FilterImpl.toString() is not a complete representation of the filter string that was used to create it: four characters ( '(', ')', '/' and '*' ) should be preceded by a '\' if they are to be used in a value.
> For example,
>   new FilterImpl("(b=\(*)").toString();
> should return '(b=\(*)', but it returns '(b=(*)'. So, it can happen that a correct Filter f, when used in
>   new FilterImpl(f.toString());
> causes an InvalidSyntaxException.
> (see http://www2.osgi.org/javadoc/r4/org/osgi/framework/Filter.html#toString() for what toString() should do).
> See the attached patch for a proposed solution.

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