You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by "Ramesh B (JIRA)" <ji...@apache.org> on 2007/08/30 07:58:31 UTC

[jira] Created: (GERONIMO-3450) Unable to Run Pluto 1.1 on Geronimo 2.0

Unable to Run Pluto 1.1 on Geronimo 2.0
---------------------------------------

                 Key: GERONIMO-3450
                 URL: https://issues.apache.org/jira/browse/GERONIMO-3450
             Project: Geronimo
          Issue Type: Bug
      Security Level: public (Regular issues)
          Components: deployment
    Affects Versions: 2.0-M2
         Environment: Operating System : Windows 2k3
Pluto Version: 1.1.0
Geronimo with Jetty Version  	2.0.1 

            Reporter: Ramesh B
             Fix For: 1.1.2, 1.1.x


Hi,
I'm new to geronimo webserver. I've been trying to deploy pluto 1.1 on geronimo with jetty 2.0.1.
For this I have done the following steps:
1) I've added the following additional jars to common libs before deployment:
    *  pluto-container-1.1.0.jar
    * pluto-descriptor-api-1.1.0.jar
    * pluto-descriptor-impl-1.1.0.jar
    * pluto-taglib-1.1.0.jar
    * xalan 2.6.0
2) I've modified the castor.properties for pluto/web-inf/classes and set all parameters to false.
3) i've added a geronimo-web.xml to the /web-inf folder.

I created a war of the pluto folder. however while deploying it it gives the following error:

3582: 11:02:34,501 ERROR [log] Nested in org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from ServletContext resource [/WEB-INF/pluto-portal-driver-services-config.xml]; nested exception is java.lang.IllegalArgumentException: Class [org.apache.cxf.clustering.spring.NamespaceHandler] does not implement the NamespaceHandler interface:

After throwing this error on the console it shows as successfully deployed and successfully running.

However when i'm trying to access the pluto portal, it says service unavailable.
Please help me with this problem.

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


[jira] Updated: (GERONIMO-3450) Unable to Run Pluto 1.1 on Geronimo 2.0

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

Joe Bohn updated GERONIMO-3450:
-------------------------------

    Fix Version/s:     (was: 2.0.x)
                   2.0.1

> Unable to Run Pluto 1.1 on Geronimo 2.0
> ---------------------------------------
>
>                 Key: GERONIMO-3450
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3450
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: deployment
>    Affects Versions: 2.0-M2
>         Environment: Operating System : Windows 2k3
> Pluto Version: 1.1.0
> Geronimo with Jetty Version  	2.0.1 
>            Reporter: Ramesh B
>             Fix For: 2.0.1, 2.1
>
>         Attachments: geronimo-web.xml, geronimo.log
>
>
> Hi,
> I'm new to geronimo webserver. I've been trying to deploy pluto 1.1 on geronimo with jetty 2.0.1.
> For this I have done the following steps:
> 1) I've added the following additional jars to common libs before deployment:
>     *  pluto-container-1.1.0.jar
>     * pluto-descriptor-api-1.1.0.jar
>     * pluto-descriptor-impl-1.1.0.jar
>     * pluto-taglib-1.1.0.jar
>     * xalan 2.6.0
> 2) I've modified the castor.properties for pluto/web-inf/classes and set all parameters to false.
> 3) i've added a geronimo-web.xml to the /web-inf folder.
> I created a war of the pluto folder. however while deploying it it gives the following error:
> 3582: 11:02:34,501 ERROR [log] Nested in org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from ServletContext resource [/WEB-INF/pluto-portal-driver-services-config.xml]; nested exception is java.lang.IllegalArgumentException: Class [org.apache.cxf.clustering.spring.NamespaceHandler] does not implement the NamespaceHandler interface:
> After throwing this error on the console it shows as successfully deployed and successfully running.
> However when i'm trying to access the pluto portal, it says service unavailable.
> Please help me with this problem.

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


[jira] Commented: (GERONIMO-3450) Unable to Run Pluto 1.1 on Geronimo 2.0

Posted by "Kevan Miller (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMO-3450?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12523901 ] 

Kevan Miller commented on GERONIMO-3450:
----------------------------------------

Ramesh
I'm not sure I understand what you mean by 1). Where are your adding the jars? You're declaring pluto dependencies, but then you're filtering pluto from your parent ClassLoaders:

        <hidden-classes>
            <filter>org.apache.pluto</filter>
            <filter>org.springframework</filter>
        </hidden-classes>

So, I'm a little confused...

Anyway, to the heart of the matter... You need to filter spring resources as well as spring classes:

        <hidden-classes>
            <filter>org.apache.pluto</filter>
            <filter>org.springframework</filter>
            <filter>META-INF/spring</filter>
        </hidden-classes>


> Unable to Run Pluto 1.1 on Geronimo 2.0
> ---------------------------------------
>
>                 Key: GERONIMO-3450
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3450
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: deployment
>    Affects Versions: 2.0-M2
>         Environment: Operating System : Windows 2k3
> Pluto Version: 1.1.0
> Geronimo with Jetty Version  	2.0.1 
>            Reporter: Ramesh B
>             Fix For: 1.1.2, 1.1.x
>
>         Attachments: geronimo-web.xml, geronimo.log
>
>
> Hi,
> I'm new to geronimo webserver. I've been trying to deploy pluto 1.1 on geronimo with jetty 2.0.1.
> For this I have done the following steps:
> 1) I've added the following additional jars to common libs before deployment:
>     *  pluto-container-1.1.0.jar
>     * pluto-descriptor-api-1.1.0.jar
>     * pluto-descriptor-impl-1.1.0.jar
>     * pluto-taglib-1.1.0.jar
>     * xalan 2.6.0
> 2) I've modified the castor.properties for pluto/web-inf/classes and set all parameters to false.
> 3) i've added a geronimo-web.xml to the /web-inf folder.
> I created a war of the pluto folder. however while deploying it it gives the following error:
> 3582: 11:02:34,501 ERROR [log] Nested in org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from ServletContext resource [/WEB-INF/pluto-portal-driver-services-config.xml]; nested exception is java.lang.IllegalArgumentException: Class [org.apache.cxf.clustering.spring.NamespaceHandler] does not implement the NamespaceHandler interface:
> After throwing this error on the console it shows as successfully deployed and successfully running.
> However when i'm trying to access the pluto portal, it says service unavailable.
> Please help me with this problem.

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


[jira] Updated: (GERONIMO-3450) Unable to Run Pluto 1.1 on Geronimo 2.0

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

Ramesh B updated GERONIMO-3450:
-------------------------------

    Attachment: geronimo-web.xml

The Geronimo-web.xml that i'm using for deployment.


> Unable to Run Pluto 1.1 on Geronimo 2.0
> ---------------------------------------
>
>                 Key: GERONIMO-3450
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3450
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: deployment
>    Affects Versions: 2.0-M2
>         Environment: Operating System : Windows 2k3
> Pluto Version: 1.1.0
> Geronimo with Jetty Version  	2.0.1 
>            Reporter: Ramesh B
>             Fix For: 1.1.2, 1.1.x
>
>         Attachments: geronimo-web.xml
>
>
> Hi,
> I'm new to geronimo webserver. I've been trying to deploy pluto 1.1 on geronimo with jetty 2.0.1.
> For this I have done the following steps:
> 1) I've added the following additional jars to common libs before deployment:
>     *  pluto-container-1.1.0.jar
>     * pluto-descriptor-api-1.1.0.jar
>     * pluto-descriptor-impl-1.1.0.jar
>     * pluto-taglib-1.1.0.jar
>     * xalan 2.6.0
> 2) I've modified the castor.properties for pluto/web-inf/classes and set all parameters to false.
> 3) i've added a geronimo-web.xml to the /web-inf folder.
> I created a war of the pluto folder. however while deploying it it gives the following error:
> 3582: 11:02:34,501 ERROR [log] Nested in org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from ServletContext resource [/WEB-INF/pluto-portal-driver-services-config.xml]; nested exception is java.lang.IllegalArgumentException: Class [org.apache.cxf.clustering.spring.NamespaceHandler] does not implement the NamespaceHandler interface:
> After throwing this error on the console it shows as successfully deployed and successfully running.
> However when i'm trying to access the pluto portal, it says service unavailable.
> Please help me with this problem.

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


[jira] Resolved: (GERONIMO-3450) Unable to Run Pluto 1.1 on Geronimo 2.0

Posted by "Jay D. McHugh (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMO-3450?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jay D. McHugh resolved GERONIMO-3450.
-------------------------------------

    Resolution: Invalid

See Ramesh's comment.

> Unable to Run Pluto 1.1 on Geronimo 2.0
> ---------------------------------------
>
>                 Key: GERONIMO-3450
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3450
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: deployment
>    Affects Versions: 2.0-M2
>         Environment: Operating System : Windows 2k3
> Pluto Version: 1.1.0
> Geronimo with Jetty Version  	2.0.1 
>            Reporter: Ramesh B
>             Fix For: 2.0.x, 2.1
>
>         Attachments: geronimo-web.xml, geronimo.log
>
>
> Hi,
> I'm new to geronimo webserver. I've been trying to deploy pluto 1.1 on geronimo with jetty 2.0.1.
> For this I have done the following steps:
> 1) I've added the following additional jars to common libs before deployment:
>     *  pluto-container-1.1.0.jar
>     * pluto-descriptor-api-1.1.0.jar
>     * pluto-descriptor-impl-1.1.0.jar
>     * pluto-taglib-1.1.0.jar
>     * xalan 2.6.0
> 2) I've modified the castor.properties for pluto/web-inf/classes and set all parameters to false.
> 3) i've added a geronimo-web.xml to the /web-inf folder.
> I created a war of the pluto folder. however while deploying it it gives the following error:
> 3582: 11:02:34,501 ERROR [log] Nested in org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from ServletContext resource [/WEB-INF/pluto-portal-driver-services-config.xml]; nested exception is java.lang.IllegalArgumentException: Class [org.apache.cxf.clustering.spring.NamespaceHandler] does not implement the NamespaceHandler interface:
> After throwing this error on the console it shows as successfully deployed and successfully running.
> However when i'm trying to access the pluto portal, it says service unavailable.
> Please help me with this problem.

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


[jira] Updated: (GERONIMO-3450) Unable to Run Pluto 1.1 on Geronimo 2.0

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

Ramesh B updated GERONIMO-3450:
-------------------------------

    Attachment: geronimo.log

The log of error generated

> Unable to Run Pluto 1.1 on Geronimo 2.0
> ---------------------------------------
>
>                 Key: GERONIMO-3450
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3450
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: deployment
>    Affects Versions: 2.0-M2
>         Environment: Operating System : Windows 2k3
> Pluto Version: 1.1.0
> Geronimo with Jetty Version  	2.0.1 
>            Reporter: Ramesh B
>             Fix For: 1.1.2, 1.1.x
>
>         Attachments: geronimo-web.xml, geronimo.log
>
>
> Hi,
> I'm new to geronimo webserver. I've been trying to deploy pluto 1.1 on geronimo with jetty 2.0.1.
> For this I have done the following steps:
> 1) I've added the following additional jars to common libs before deployment:
>     *  pluto-container-1.1.0.jar
>     * pluto-descriptor-api-1.1.0.jar
>     * pluto-descriptor-impl-1.1.0.jar
>     * pluto-taglib-1.1.0.jar
>     * xalan 2.6.0
> 2) I've modified the castor.properties for pluto/web-inf/classes and set all parameters to false.
> 3) i've added a geronimo-web.xml to the /web-inf folder.
> I created a war of the pluto folder. however while deploying it it gives the following error:
> 3582: 11:02:34,501 ERROR [log] Nested in org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from ServletContext resource [/WEB-INF/pluto-portal-driver-services-config.xml]; nested exception is java.lang.IllegalArgumentException: Class [org.apache.cxf.clustering.spring.NamespaceHandler] does not implement the NamespaceHandler interface:
> After throwing this error on the console it shows as successfully deployed and successfully running.
> However when i'm trying to access the pluto portal, it says service unavailable.
> Please help me with this problem.

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


[jira] Closed: (GERONIMO-3450) Unable to Run Pluto 1.1 on Geronimo 2.0

Posted by "Jay D. McHugh (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMO-3450?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jay D. McHugh closed GERONIMO-3450.
-----------------------------------


> Unable to Run Pluto 1.1 on Geronimo 2.0
> ---------------------------------------
>
>                 Key: GERONIMO-3450
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3450
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: deployment
>    Affects Versions: 2.0-M2
>         Environment: Operating System : Windows 2k3
> Pluto Version: 1.1.0
> Geronimo with Jetty Version  	2.0.1 
>            Reporter: Ramesh B
>             Fix For: 2.0.x, 2.1
>
>         Attachments: geronimo-web.xml, geronimo.log
>
>
> Hi,
> I'm new to geronimo webserver. I've been trying to deploy pluto 1.1 on geronimo with jetty 2.0.1.
> For this I have done the following steps:
> 1) I've added the following additional jars to common libs before deployment:
>     *  pluto-container-1.1.0.jar
>     * pluto-descriptor-api-1.1.0.jar
>     * pluto-descriptor-impl-1.1.0.jar
>     * pluto-taglib-1.1.0.jar
>     * xalan 2.6.0
> 2) I've modified the castor.properties for pluto/web-inf/classes and set all parameters to false.
> 3) i've added a geronimo-web.xml to the /web-inf folder.
> I created a war of the pluto folder. however while deploying it it gives the following error:
> 3582: 11:02:34,501 ERROR [log] Nested in org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from ServletContext resource [/WEB-INF/pluto-portal-driver-services-config.xml]; nested exception is java.lang.IllegalArgumentException: Class [org.apache.cxf.clustering.spring.NamespaceHandler] does not implement the NamespaceHandler interface:
> After throwing this error on the console it shows as successfully deployed and successfully running.
> However when i'm trying to access the pluto portal, it says service unavailable.
> Please help me with this problem.

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


[jira] Updated: (GERONIMO-3450) Unable to Run Pluto 1.1 on Geronimo 2.0

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

Vamsavardhana Reddy updated GERONIMO-3450:
------------------------------------------

    Fix Version/s:     (was: 1.1.2)
                       (was: 1.1.x)
                   2.1
                   2.0.x

> Unable to Run Pluto 1.1 on Geronimo 2.0
> ---------------------------------------
>
>                 Key: GERONIMO-3450
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3450
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: deployment
>    Affects Versions: 2.0-M2
>         Environment: Operating System : Windows 2k3
> Pluto Version: 1.1.0
> Geronimo with Jetty Version  	2.0.1 
>            Reporter: Ramesh B
>             Fix For: 2.0.x, 2.1
>
>         Attachments: geronimo-web.xml, geronimo.log
>
>
> Hi,
> I'm new to geronimo webserver. I've been trying to deploy pluto 1.1 on geronimo with jetty 2.0.1.
> For this I have done the following steps:
> 1) I've added the following additional jars to common libs before deployment:
>     *  pluto-container-1.1.0.jar
>     * pluto-descriptor-api-1.1.0.jar
>     * pluto-descriptor-impl-1.1.0.jar
>     * pluto-taglib-1.1.0.jar
>     * xalan 2.6.0
> 2) I've modified the castor.properties for pluto/web-inf/classes and set all parameters to false.
> 3) i've added a geronimo-web.xml to the /web-inf folder.
> I created a war of the pluto folder. however while deploying it it gives the following error:
> 3582: 11:02:34,501 ERROR [log] Nested in org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from ServletContext resource [/WEB-INF/pluto-portal-driver-services-config.xml]; nested exception is java.lang.IllegalArgumentException: Class [org.apache.cxf.clustering.spring.NamespaceHandler] does not implement the NamespaceHandler interface:
> After throwing this error on the console it shows as successfully deployed and successfully running.
> However when i'm trying to access the pluto portal, it says service unavailable.
> Please help me with this problem.

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


[jira] Commented: (GERONIMO-3450) Unable to Run Pluto 1.1 on Geronimo 2.0

Posted by "Ramesh B (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMO-3450?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12523995 ] 

Ramesh B commented on GERONIMO-3450:
------------------------------------

Hi Kevan,
Many thanks for the help... i've been struggling with this for days.
The reason why i had filtered org.apache.pluto was this comes by default with geronimo and i didn't want to use these jars. I had added these jars seperately in the web-inf/lib folder of the war.
The pluto portal has successfully deployed after implementing your suggestion. thanks again for the help.

Regards,
Ramesh B.

> Unable to Run Pluto 1.1 on Geronimo 2.0
> ---------------------------------------
>
>                 Key: GERONIMO-3450
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3450
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: deployment
>    Affects Versions: 2.0-M2
>         Environment: Operating System : Windows 2k3
> Pluto Version: 1.1.0
> Geronimo with Jetty Version  	2.0.1 
>            Reporter: Ramesh B
>             Fix For: 1.1.2, 1.1.x
>
>         Attachments: geronimo-web.xml, geronimo.log
>
>
> Hi,
> I'm new to geronimo webserver. I've been trying to deploy pluto 1.1 on geronimo with jetty 2.0.1.
> For this I have done the following steps:
> 1) I've added the following additional jars to common libs before deployment:
>     *  pluto-container-1.1.0.jar
>     * pluto-descriptor-api-1.1.0.jar
>     * pluto-descriptor-impl-1.1.0.jar
>     * pluto-taglib-1.1.0.jar
>     * xalan 2.6.0
> 2) I've modified the castor.properties for pluto/web-inf/classes and set all parameters to false.
> 3) i've added a geronimo-web.xml to the /web-inf folder.
> I created a war of the pluto folder. however while deploying it it gives the following error:
> 3582: 11:02:34,501 ERROR [log] Nested in org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from ServletContext resource [/WEB-INF/pluto-portal-driver-services-config.xml]; nested exception is java.lang.IllegalArgumentException: Class [org.apache.cxf.clustering.spring.NamespaceHandler] does not implement the NamespaceHandler interface:
> After throwing this error on the console it shows as successfully deployed and successfully running.
> However when i'm trying to access the pluto portal, it says service unavailable.
> Please help me with this problem.

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