You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@karaf.apache.org by "Jean-Baptiste Onofré (JIRA)" <ji...@apache.org> on 2013/07/31 16:51:49 UTC

[jira] [Updated] (KARAF-2421) FeatureFinder should prevent ArrayIndexOutOfBoundException

     [ https://issues.apache.org/jira/browse/KARAF-2421?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jean-Baptiste Onofré updated KARAF-2421:
----------------------------------------

    Description: 
FeatureFinder is used in feature:repo-add command to register a feature URL.

If the feature URL is malformed, we have an ArrayIndexOutOfBoundException:

2013-07-31 05:51:25,310 | ERROR | Local user karaf | ShellUtil                        | 39 - org.apache.karaf.shell.console - 3.0.0.SNAPSHOT | Exception caught while executing command
java.lang.ArrayIndexOutOfBoundsException: 4
        at org.apache.karaf.features.command.Artifact.<init>(Artifact.java:35)
        at org.apache.karaf.features.command.FeatureFinder.getUriFor(FeatureFinder.java:41)
        at org.apache.karaf.features.command.RepoAddCommand.doExecute(RepoAddCommand.java:52)
        at org.apache.karaf.shell.console.AbstractAction.execute(AbstractAction.java:33)
        at org.apache.karaf.shell.commands.basic.AbstractCommand.execute(AbstractCommand.java:33)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)[:1.7.0_21]
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)[:1.7.0_21]
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)[:1.7.0_21]
        at java.lang.reflect.Method.invoke(Method.java:601)[:1.7.0_21]
        at org.apache.aries.proxy.impl.ProxyHandler$1.invoke(ProxyHandler.java:54)
        at org.apache.aries.proxy.impl.ProxyHandler.invoke(ProxyHandler.java:119)
        at org.apache.karaf.shell.console.commands.$BlueprintCommand541769319.execute(Unknown Source)
        at org.apache.felix.gogo.runtime.CommandProxy.execute(CommandProxy.java:78)
        at org.apache.felix.gogo.runtime.Closure.executeCmd(Closure.java:477)
        at org.apache.felix.gogo.runtime.Closure.executeStatement(Closure.java:403)
        at org.apache.felix.gogo.runtime.Pipe.run(Pipe.java:108)
        at org.apache.felix.gogo.runtime.Closure.execute(Closure.java:183)


  was:
FeatureFinder is used in feature:repo-add command to register a feature URL.

If the feature is not found (or a version is not found), we have an ArrayIndexOutOfBoundException:

2013-07-31 05:51:25,310 | ERROR | Local user karaf | ShellUtil                        | 39 - org.apache.karaf.shell.console - 3.0.0.SNAPSHOT | Exception caught while executing command
java.lang.ArrayIndexOutOfBoundsException: 4
        at org.apache.karaf.features.command.Artifact.<init>(Artifact.java:35)
        at org.apache.karaf.features.command.FeatureFinder.getUriFor(FeatureFinder.java:41)
        at org.apache.karaf.features.command.RepoAddCommand.doExecute(RepoAddCommand.java:52)
        at org.apache.karaf.shell.console.AbstractAction.execute(AbstractAction.java:33)
        at org.apache.karaf.shell.commands.basic.AbstractCommand.execute(AbstractCommand.java:33)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)[:1.7.0_21]
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)[:1.7.0_21]
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)[:1.7.0_21]
        at java.lang.reflect.Method.invoke(Method.java:601)[:1.7.0_21]
        at org.apache.aries.proxy.impl.ProxyHandler$1.invoke(ProxyHandler.java:54)
        at org.apache.aries.proxy.impl.ProxyHandler.invoke(ProxyHandler.java:119)
        at org.apache.karaf.shell.console.commands.$BlueprintCommand541769319.execute(Unknown Source)
        at org.apache.felix.gogo.runtime.CommandProxy.execute(CommandProxy.java:78)
        at org.apache.felix.gogo.runtime.Closure.executeCmd(Closure.java:477)
        at org.apache.felix.gogo.runtime.Closure.executeStatement(Closure.java:403)
        at org.apache.felix.gogo.runtime.Pipe.run(Pipe.java:108)
        at org.apache.felix.gogo.runtime.Closure.execute(Closure.java:183)


    
> FeatureFinder should prevent ArrayIndexOutOfBoundException
> ----------------------------------------------------------
>
>                 Key: KARAF-2421
>                 URL: https://issues.apache.org/jira/browse/KARAF-2421
>             Project: Karaf
>          Issue Type: Bug
>            Reporter: Jean-Baptiste Onofré
>            Assignee: Jean-Baptiste Onofré
>             Fix For: 2.3.3, 2.4.0, 3.0.0
>
>
> FeatureFinder is used in feature:repo-add command to register a feature URL.
> If the feature URL is malformed, we have an ArrayIndexOutOfBoundException:
> 2013-07-31 05:51:25,310 | ERROR | Local user karaf | ShellUtil                        | 39 - org.apache.karaf.shell.console - 3.0.0.SNAPSHOT | Exception caught while executing command
> java.lang.ArrayIndexOutOfBoundsException: 4
>         at org.apache.karaf.features.command.Artifact.<init>(Artifact.java:35)
>         at org.apache.karaf.features.command.FeatureFinder.getUriFor(FeatureFinder.java:41)
>         at org.apache.karaf.features.command.RepoAddCommand.doExecute(RepoAddCommand.java:52)
>         at org.apache.karaf.shell.console.AbstractAction.execute(AbstractAction.java:33)
>         at org.apache.karaf.shell.commands.basic.AbstractCommand.execute(AbstractCommand.java:33)
>         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)[:1.7.0_21]
>         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)[:1.7.0_21]
>         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)[:1.7.0_21]
>         at java.lang.reflect.Method.invoke(Method.java:601)[:1.7.0_21]
>         at org.apache.aries.proxy.impl.ProxyHandler$1.invoke(ProxyHandler.java:54)
>         at org.apache.aries.proxy.impl.ProxyHandler.invoke(ProxyHandler.java:119)
>         at org.apache.karaf.shell.console.commands.$BlueprintCommand541769319.execute(Unknown Source)
>         at org.apache.felix.gogo.runtime.CommandProxy.execute(CommandProxy.java:78)
>         at org.apache.felix.gogo.runtime.Closure.executeCmd(Closure.java:477)
>         at org.apache.felix.gogo.runtime.Closure.executeStatement(Closure.java:403)
>         at org.apache.felix.gogo.runtime.Pipe.run(Pipe.java:108)
>         at org.apache.felix.gogo.runtime.Closure.execute(Closure.java:183)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira