You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@sling.apache.org by "Mike Moulton (JIRA)" <ji...@apache.org> on 2010/04/24 01:14:49 UTC

[jira] Created: (SLING-1499) Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2

Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2
------------------------------------------------------------------------

                 Key: SLING-1499
                 URL: https://issues.apache.org/jira/browse/SLING-1499
             Project: Sling
          Issue Type: Bug
          Components: Launchpad
            Reporter: Mike Moulton


I'm trying to install the trunk of Sling (r937546) in ServiceMix 4.2 using:

features:addUrl mvn:org.apache.sling/org.apache.sling.launchpad/6-SNAPSHOT/xml/features 
features:install sling

Note: I already have http and webconsole installed.

When I install the sling feature I get quite a few exceptions. I have attached the complete servicemix.log from the time the feature was installed to when it completed. This task is to track the cleanup of these exceptions.

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


[jira] Commented: (SLING-1499) Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2

Posted by "Mike Moulton (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SLING-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12860423#action_12860423 ] 

Mike Moulton commented on SLING-1499:
-------------------------------------

I have installed: camel-jms, camel-nmr, camel-jaxb

Other than that, it's stock.

> Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2
> ------------------------------------------------------------------------
>
>                 Key: SLING-1499
>                 URL: https://issues.apache.org/jira/browse/SLING-1499
>             Project: Sling
>          Issue Type: Bug
>          Components: Launchpad
>            Reporter: Mike Moulton
>         Attachments: smx-4.2-sling-feature-install.log.zip
>
>
> I'm trying to install the trunk of Sling (r937546) in ServiceMix 4.2 using:
> features:addUrl mvn:org.apache.sling/org.apache.sling.launchpad/6-SNAPSHOT/xml/features 
> features:install sling
> Note: I already have http and webconsole installed.
> When I install the sling feature I get quite a few exceptions. I have attached the complete servicemix.log from the time the feature was installed to when it completed. This task is to track the cleanup of these exceptions.

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


[jira] Commented: (SLING-1499) Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2

Posted by "Justin Edelson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SLING-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12861432#action_12861432 ] 

Justin Edelson commented on SLING-1499:
---------------------------------------

I created a new project in contrib to produce a service mix-specific features.xml file. if you're going to patch for removal/addition of bundles, please do so there. thanks

> Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2
> ------------------------------------------------------------------------
>
>                 Key: SLING-1499
>                 URL: https://issues.apache.org/jira/browse/SLING-1499
>             Project: Sling
>          Issue Type: Bug
>          Components: Launchpad
>            Reporter: Mike Moulton
>         Attachments: smx-4.2-sling-feature-install.log.zip
>
>
> I'm trying to install the trunk of Sling (r937546) in ServiceMix 4.2 using:
> features:addUrl mvn:org.apache.sling/org.apache.sling.launchpad/6-SNAPSHOT/xml/features 
> features:install sling
> Note: I already have http and webconsole installed.
> When I install the sling feature I get quite a few exceptions. I have attached the complete servicemix.log from the time the feature was installed to when it completed. This task is to track the cleanup of these exceptions.

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


[jira] Commented: (SLING-1499) Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2

Posted by "Mike Moulton (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SLING-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12868792#action_12868792 ] 

Mike Moulton commented on SLING-1499:
-------------------------------------

In looking into the JRuby exception (java.lang.NoClassDefFoundError: org/jruby/internal/runtime/methods/JavaMethod$JavaMethodZero) I found that servicemix has a default feature called 'servicemix-scripting' that installs the following bundles providing javax.script.ScriptEngineFactory's:

<bundle>mvn:com.google.code.scriptengines/scriptengines-groovy/1.1</bundle>
<bundle>mvn:com.google.code.scriptengines/scriptengines-javascript/1.1</bundle>
<bundle>mvn:com.google.code.scriptengines/scriptengines-jruby/1.1</bundle>

When sling installs the ScriptEngineManagerFactory in scripting.core is finding these and having a classloading problem with the jruby implementation. The same feature installs a servicemix packaged JRuby 1.1.2 impl that does contain the org/jruby/internal/runtime/methods/JavaMethod$JavaMethodZero class that is being complained about. Given this there appears to be a classloader scope issue.

Removing the servicemix-scripting feature from the install list resolves the exception and allows the scripting core to startup properly. This does however remove the ability to use jruby, groovy or javascript within servicemix itself.

I'm going to dig further to see if I can find the root of the problem, although I'm not very familiar with sling's scripting code so it may take some time. Any direction is appreciated.



> Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2
> ------------------------------------------------------------------------
>
>                 Key: SLING-1499
>                 URL: https://issues.apache.org/jira/browse/SLING-1499
>             Project: Sling
>          Issue Type: Bug
>          Components: Launchpad
>            Reporter: Mike Moulton
>         Attachments: smx-4.2-sling-feature-install.log.zip
>
>
> I'm trying to install the trunk of Sling (r937546) in ServiceMix 4.2 using:
> features:addUrl mvn:org.apache.sling/org.apache.sling.launchpad/6-SNAPSHOT/xml/features 
> features:install sling
> Note: I already have http and webconsole installed.
> When I install the sling feature I get quite a few exceptions. I have attached the complete servicemix.log from the time the feature was installed to when it completed. This task is to track the cleanup of these exceptions.

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


[jira] Commented: (SLING-1499) Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2

Posted by "Justin Edelson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SLING-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12864112#action_12864112 ] 

Justin Edelson commented on SLING-1499:
---------------------------------------

With the latest trunk, I'm down about 20 integration test failures. Of which 3 are expected because they depend upon Felix Whiteboard.

This is with these features:
Fuse 1.4.0
camel-jms
camel-nmr
camel-jaxb
sling

> Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2
> ------------------------------------------------------------------------
>
>                 Key: SLING-1499
>                 URL: https://issues.apache.org/jira/browse/SLING-1499
>             Project: Sling
>          Issue Type: Bug
>          Components: Launchpad
>            Reporter: Mike Moulton
>         Attachments: smx-4.2-sling-feature-install.log.zip
>
>
> I'm trying to install the trunk of Sling (r937546) in ServiceMix 4.2 using:
> features:addUrl mvn:org.apache.sling/org.apache.sling.launchpad/6-SNAPSHOT/xml/features 
> features:install sling
> Note: I already have http and webconsole installed.
> When I install the sling feature I get quite a few exceptions. I have attached the complete servicemix.log from the time the feature was installed to when it completed. This task is to track the cleanup of these exceptions.

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


[jira] Resolved: (SLING-1499) Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2

Posted by "Mike Moulton (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SLING-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mike Moulton resolved SLING-1499.
---------------------------------

    Resolution: Fixed

All of the issues outlined here have been fixed either in Sling itself or in third-party libraries.

> Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2
> ------------------------------------------------------------------------
>
>                 Key: SLING-1499
>                 URL: https://issues.apache.org/jira/browse/SLING-1499
>             Project: Sling
>          Issue Type: Bug
>          Components: Launchpad
>            Reporter: Mike Moulton
>         Attachments: smx-4.2-sling-feature-install.log.zip
>
>
> I'm trying to install the trunk of Sling (r937546) in ServiceMix 4.2 using:
> features:addUrl mvn:org.apache.sling/org.apache.sling.launchpad/6-SNAPSHOT/xml/features 
> features:install sling
> Note: I already have http and webconsole installed.
> When I install the sling feature I get quite a few exceptions. I have attached the complete servicemix.log from the time the feature was installed to when it completed. This task is to track the cleanup of these exceptions.

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


[jira] Commented: (SLING-1499) Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2

Posted by "Mike Moulton (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SLING-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12861157#action_12861157 ] 

Mike Moulton commented on SLING-1499:
-------------------------------------

When I remove <bundle>mvn:org.apache.sling/org.apache.sling.launchpad.content/2.0.5-SNAPSHOT</bundle> from the feature, the jruby exception goes away. I haven't dug into what is requiring this in the initial content bundle yet.

> Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2
> ------------------------------------------------------------------------
>
>                 Key: SLING-1499
>                 URL: https://issues.apache.org/jira/browse/SLING-1499
>             Project: Sling
>          Issue Type: Bug
>          Components: Launchpad
>            Reporter: Mike Moulton
>         Attachments: smx-4.2-sling-feature-install.log.zip
>
>
> I'm trying to install the trunk of Sling (r937546) in ServiceMix 4.2 using:
> features:addUrl mvn:org.apache.sling/org.apache.sling.launchpad/6-SNAPSHOT/xml/features 
> features:install sling
> Note: I already have http and webconsole installed.
> When I install the sling feature I get quite a few exceptions. I have attached the complete servicemix.log from the time the feature was installed to when it completed. This task is to track the cleanup of these exceptions.

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


[jira] Commented: (SLING-1499) Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2

Posted by "Justin Edelson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SLING-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12868802#action_12868802 ] 

Justin Edelson commented on SLING-1499:
---------------------------------------

Mike-
I found a similar problem with the Groovy implementation within ServiceMix. It seems to be causing some of the test failures.

We may need a way of somehow marking specific ScriptEngineFactory implementations as "Sling-friendly" although until someone figures out why these other ScriptEngineFactory implementations *aren't* Sling-friendly, this will be hard to do.

What's strange is that I've yet to see the JRuby exception. 

> Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2
> ------------------------------------------------------------------------
>
>                 Key: SLING-1499
>                 URL: https://issues.apache.org/jira/browse/SLING-1499
>             Project: Sling
>          Issue Type: Bug
>          Components: Launchpad
>            Reporter: Mike Moulton
>         Attachments: smx-4.2-sling-feature-install.log.zip
>
>
> I'm trying to install the trunk of Sling (r937546) in ServiceMix 4.2 using:
> features:addUrl mvn:org.apache.sling/org.apache.sling.launchpad/6-SNAPSHOT/xml/features 
> features:install sling
> Note: I already have http and webconsole installed.
> When I install the sling feature I get quite a few exceptions. I have attached the complete servicemix.log from the time the feature was installed to when it completed. This task is to track the cleanup of these exceptions.

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


[jira] Commented: (SLING-1499) Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2

Posted by "Justin Edelson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SLING-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12860996#action_12860996 ] 

Justin Edelson commented on SLING-1499:
---------------------------------------

Hmm. me too. I can't reproduce the jruby exception from your log file. 

> Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2
> ------------------------------------------------------------------------
>
>                 Key: SLING-1499
>                 URL: https://issues.apache.org/jira/browse/SLING-1499
>             Project: Sling
>          Issue Type: Bug
>          Components: Launchpad
>            Reporter: Mike Moulton
>         Attachments: smx-4.2-sling-feature-install.log.zip
>
>
> I'm trying to install the trunk of Sling (r937546) in ServiceMix 4.2 using:
> features:addUrl mvn:org.apache.sling/org.apache.sling.launchpad/6-SNAPSHOT/xml/features 
> features:install sling
> Note: I already have http and webconsole installed.
> When I install the sling feature I get quite a few exceptions. I have attached the complete servicemix.log from the time the feature was installed to when it completed. This task is to track the cleanup of these exceptions.

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


[jira] Commented: (SLING-1499) Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2

Posted by "Mike Moulton (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SLING-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12864373#action_12864373 ] 

Mike Moulton commented on SLING-1499:
-------------------------------------

The java.lang.IllegalArgumentException: Registered filter must have at least one url pattern or servlet name mapping: exception is fixes by a patch to PAX Web's Whiteboard impl. See PAXWEB-203 [1]

[1] http://issues.ops4j.org/browse/PAXWEB-203

> Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2
> ------------------------------------------------------------------------
>
>                 Key: SLING-1499
>                 URL: https://issues.apache.org/jira/browse/SLING-1499
>             Project: Sling
>          Issue Type: Bug
>          Components: Launchpad
>            Reporter: Mike Moulton
>         Attachments: smx-4.2-sling-feature-install.log.zip
>
>
> I'm trying to install the trunk of Sling (r937546) in ServiceMix 4.2 using:
> features:addUrl mvn:org.apache.sling/org.apache.sling.launchpad/6-SNAPSHOT/xml/features 
> features:install sling
> Note: I already have http and webconsole installed.
> When I install the sling feature I get quite a few exceptions. I have attached the complete servicemix.log from the time the feature was installed to when it completed. This task is to track the cleanup of these exceptions.

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


[jira] Updated: (SLING-1499) Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2

Posted by "Mike Moulton (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SLING-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mike Moulton updated SLING-1499:
--------------------------------

    Attachment: smx-4.2-sling-feature-install.log.zip

> Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2
> ------------------------------------------------------------------------
>
>                 Key: SLING-1499
>                 URL: https://issues.apache.org/jira/browse/SLING-1499
>             Project: Sling
>          Issue Type: Bug
>          Components: Launchpad
>            Reporter: Mike Moulton
>         Attachments: smx-4.2-sling-feature-install.log.zip
>
>
> I'm trying to install the trunk of Sling (r937546) in ServiceMix 4.2 using:
> features:addUrl mvn:org.apache.sling/org.apache.sling.launchpad/6-SNAPSHOT/xml/features 
> features:install sling
> Note: I already have http and webconsole installed.
> When I install the sling feature I get quite a few exceptions. I have attached the complete servicemix.log from the time the feature was installed to when it completed. This task is to track the cleanup of these exceptions.

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


[jira] Commented: (SLING-1499) Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2

Posted by "Justin Edelson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SLING-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12860986#action_12860986 ] 

Justin Edelson commented on SLING-1499:
---------------------------------------

Mike - what JVM are you using?

> Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2
> ------------------------------------------------------------------------
>
>                 Key: SLING-1499
>                 URL: https://issues.apache.org/jira/browse/SLING-1499
>             Project: Sling
>          Issue Type: Bug
>          Components: Launchpad
>            Reporter: Mike Moulton
>         Attachments: smx-4.2-sling-feature-install.log.zip
>
>
> I'm trying to install the trunk of Sling (r937546) in ServiceMix 4.2 using:
> features:addUrl mvn:org.apache.sling/org.apache.sling.launchpad/6-SNAPSHOT/xml/features 
> features:install sling
> Note: I already have http and webconsole installed.
> When I install the sling feature I get quite a few exceptions. I have attached the complete servicemix.log from the time the feature was installed to when it completed. This task is to track the cleanup of these exceptions.

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


[jira] Commented: (SLING-1499) Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2

Posted by "Justin Edelson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SLING-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12860418#action_12860418 ] 

Justin Edelson commented on SLING-1499:
---------------------------------------

Is this otherwise a stock install of ServiceMix 4.2?

> Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2
> ------------------------------------------------------------------------
>
>                 Key: SLING-1499
>                 URL: https://issues.apache.org/jira/browse/SLING-1499
>             Project: Sling
>          Issue Type: Bug
>          Components: Launchpad
>            Reporter: Mike Moulton
>         Attachments: smx-4.2-sling-feature-install.log.zip
>
>
> I'm trying to install the trunk of Sling (r937546) in ServiceMix 4.2 using:
> features:addUrl mvn:org.apache.sling/org.apache.sling.launchpad/6-SNAPSHOT/xml/features 
> features:install sling
> Note: I already have http and webconsole installed.
> When I install the sling feature I get quite a few exceptions. I have attached the complete servicemix.log from the time the feature was installed to when it completed. This task is to track the cleanup of these exceptions.

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


[jira] Commented: (SLING-1499) Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2

Posted by "Mike Moulton (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SLING-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12861170#action_12861170 ] 

Mike Moulton commented on SLING-1499:
-------------------------------------

I have managed to resolve all of these exceptions either via patches to the sling codebase, removing unneeded bundles or updating dependent bundle versions.

I will be packaging these items up into separate tickets once I have fully validated and have created patches. Some of the changes will require some rework to how the features.xml file is generated. For now, I am just running my own, custom features.xml file.

Here is what I have done so far in-order of exception:

  javax.servlet.ServletException: servlet already registered with a different alias:
  Removing the <bundle>mvn:org.apache.felix/org.apache.felix.http.whiteboard/2.0.4</bundle> from the features.xml fixes this exception.

  java.lang.IllegalArgumentException: Registered filter must have at least one url pattern or servlet name mapping:
  Adding @scr.property name="urlPatterns" value="/*" to RequestProgressTrackerLogFilter resolves this exception. I'm sure there are more elegant solutions. This was my temporary fix to identifying the cause of each of these items.

  java.lang.IllegalArgumentException: provider.roots property must be set:
  Removing the <bundle>mvn:org.apache.sling/org.apache.sling.fsresource/1.0.0</bundle> resolves this. While this meets my needs as I do not use the FSResource it's not a long term solution. It seems the real problem is this bundle should simply warn when it's started and not configured properly.

  java.rmi.ServerException: RemoteException occurred in server thread; nested exception is: :
  This is due to the fact port 1099 is used by Karaf for it's RMI interface by default. Adding the following config block, along with a code change to RmiRegistrationSupport allowed this to register at another port. (patch forthcoming)
    <config name="org.apache.sling.jcr.jackrabbit.server.RmiRegistrationSupport">
      port=9099
    </config>

  java.lang.NoClassDefFoundError: org/jruby/internal/runtime/methods/JavaMethod$JavaMethodZero:
  Removing the <bundle>mvn:org.apache.sling/org.apache.sling.launchpad.content/2.0.5-SNAPSHOT</bundle> and <bundle>mvn:org.apache.sling/org.apache.sling.openidauth/0.9.1-SNAPSHOT</bundle> bundles resolved this issue. Still working on what is wrong and who is assuming JRuby is already loaded.

I have also come across several other configuration bugs when working with a pure SCR environment without the bootstrapping of the servlet or main. For instance, I have to globally define 'sling.home' in the etc/config.properties. Ideally this should be able to be defined via SCR. I will create issues for these cases once I wrap up my testing.


> Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2
> ------------------------------------------------------------------------
>
>                 Key: SLING-1499
>                 URL: https://issues.apache.org/jira/browse/SLING-1499
>             Project: Sling
>          Issue Type: Bug
>          Components: Launchpad
>            Reporter: Mike Moulton
>         Attachments: smx-4.2-sling-feature-install.log.zip
>
>
> I'm trying to install the trunk of Sling (r937546) in ServiceMix 4.2 using:
> features:addUrl mvn:org.apache.sling/org.apache.sling.launchpad/6-SNAPSHOT/xml/features 
> features:install sling
> Note: I already have http and webconsole installed.
> When I install the sling feature I get quite a few exceptions. I have attached the complete servicemix.log from the time the feature was installed to when it completed. This task is to track the cleanup of these exceptions.

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


[jira] Commented: (SLING-1499) Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2

Posted by "Mike Moulton (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SLING-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12860413#action_12860413 ] 

Mike Moulton commented on SLING-1499:
-------------------------------------

See SLING-1491 for notes on the first exception in the list relating to the inclusion of:

<bundle>mvn:org.apache.felix/org.apache.felix.http.whiteboard/2.0.4</bundle>

in the features.xml file being installed.

> Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2
> ------------------------------------------------------------------------
>
>                 Key: SLING-1499
>                 URL: https://issues.apache.org/jira/browse/SLING-1499
>             Project: Sling
>          Issue Type: Bug
>          Components: Launchpad
>            Reporter: Mike Moulton
>         Attachments: smx-4.2-sling-feature-install.log.zip
>
>
> I'm trying to install the trunk of Sling (r937546) in ServiceMix 4.2 using:
> features:addUrl mvn:org.apache.sling/org.apache.sling.launchpad/6-SNAPSHOT/xml/features 
> features:install sling
> Note: I already have http and webconsole installed.
> When I install the sling feature I get quite a few exceptions. I have attached the complete servicemix.log from the time the feature was installed to when it completed. This task is to track the cleanup of these exceptions.

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


[jira] Commented: (SLING-1499) Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2

Posted by "Mike Moulton (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SLING-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12860988#action_12860988 ] 

Mike Moulton commented on SLING-1499:
-------------------------------------

java version "1.6.0_17"
Java(TM) SE Runtime Environment (build 1.6.0_17-b04-248)
Java HotSpot(TM) 64-Bit Server VM (build 14.3-b01-101, mixed mode)

On Mac OSX 10.6.3

> Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2
> ------------------------------------------------------------------------
>
>                 Key: SLING-1499
>                 URL: https://issues.apache.org/jira/browse/SLING-1499
>             Project: Sling
>          Issue Type: Bug
>          Components: Launchpad
>            Reporter: Mike Moulton
>         Attachments: smx-4.2-sling-feature-install.log.zip
>
>
> I'm trying to install the trunk of Sling (r937546) in ServiceMix 4.2 using:
> features:addUrl mvn:org.apache.sling/org.apache.sling.launchpad/6-SNAPSHOT/xml/features 
> features:install sling
> Note: I already have http and webconsole installed.
> When I install the sling feature I get quite a few exceptions. I have attached the complete servicemix.log from the time the feature was installed to when it completed. This task is to track the cleanup of these exceptions.

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


[jira] Commented: (SLING-1499) Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2

Posted by "Justin Edelson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SLING-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12861176#action_12861176 ] 

Justin Edelson commented on SLING-1499:
---------------------------------------

Thanks for tracking these down.

The filter IllegalArgumentException looks like a pax bug. The provider.roots issue isn't ServiceMix-specific.

> Many exceptions thrown when installing sling 'feature' in ServiceMix 4.2
> ------------------------------------------------------------------------
>
>                 Key: SLING-1499
>                 URL: https://issues.apache.org/jira/browse/SLING-1499
>             Project: Sling
>          Issue Type: Bug
>          Components: Launchpad
>            Reporter: Mike Moulton
>         Attachments: smx-4.2-sling-feature-install.log.zip
>
>
> I'm trying to install the trunk of Sling (r937546) in ServiceMix 4.2 using:
> features:addUrl mvn:org.apache.sling/org.apache.sling.launchpad/6-SNAPSHOT/xml/features 
> features:install sling
> Note: I already have http and webconsole installed.
> When I install the sling feature I get quite a few exceptions. I have attached the complete servicemix.log from the time the feature was installed to when it completed. This task is to track the cleanup of these exceptions.

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