You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Ayondeep Datta (JIRA)" <ji...@apache.org> on 2007/02/22 18:47:05 UTC

[jira] Created: (AXIS2-2241) getAxisConfiguration method of FileSystemConfigurator raising exception

getAxisConfiguration method of FileSystemConfigurator raising exception
-----------------------------------------------------------------------

                 Key: AXIS2-2241
                 URL: https://issues.apache.org/jira/browse/AXIS2-2241
             Project: Axis 2.0 (Axis2)
          Issue Type: Bug
         Environment: Axis2_1.0, Rampart_1.0, JDK1.4.2, Tomcat5.0.28
            Reporter: Ayondeep Datta


I am getting following exception when trying to call the getAxisConfiguration method of FileSystemConfigurator

java.lang.NoSuchMethodError: org.apache.axis2.description.HandlerDescription.<init>(Ljava/lang/String;)V

	at org.apache.rampart.handler.WSDoAllHandler.<clinit>(WSDoAllHandler.java:37)

	at java.lang.Class.forName0(Native Method)

	at java.lang.Class.forName(Class.java:219)

	at org.apache.axis2.deployment.util.Utils.getHandlerClass(Utils.java:182)

	at org.apache.axis2.deployment.util.Utils.addFlowHandlers(Utils.java:60)

	at org.apache.axis2.deployment.DeploymentEngine.addNewModule(DeploymentEngine.java:337)

	at org.apache.axis2.deployment.DeploymentEngine.doDeploy(DeploymentEngine.java:690)

	at org.apache.axis2.deployment.RepositoryListener.init(RepositoryListener.java:165)

	at org.apache.axis2.deployment.RepositoryListener.<init>(RepositoryListener.java:53)

	at org.apache.axis2.deployment.DeploymentEngine.loadRepository(DeploymentEngine.java:107)

	at org.apache.axis2.deployment.FileSystemConfigurator.getAxisConfiguration(FileSystemConfigurator.java:120)

	at webserviceclient.WebServiceClient.main(WebServiceClient.java:48)

Exception in thread "main" 

Can you please tell me what can be possibly wrong?

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


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Resolved: (AXIS2-2241) getAxisConfiguration method of FileSystemConfigurator raising exception

Posted by "Ruchith Udayanga Fernando (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-2241?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ruchith Udayanga Fernando resolved AXIS2-2241.
----------------------------------------------

    Resolution: Fixed

HandlerDescription(String name) constructor was added only in Axis2-1.1. And it seems like you are using Rampart-1.1 which tries to create a HandlerDescription instance using the above constructor. But since you have the Axis2-1.0 jars this constructor is not available.

> getAxisConfiguration method of FileSystemConfigurator raising exception
> -----------------------------------------------------------------------
>
>                 Key: AXIS2-2241
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2241
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>         Environment: Axis2_1.0, Rampart_1.0, JDK1.4.2, Tomcat5.0.28
>            Reporter: Ayondeep Datta
>
> I am getting following exception when trying to call the getAxisConfiguration method of FileSystemConfigurator
> java.lang.NoSuchMethodError: org.apache.axis2.description.HandlerDescription.<init>(Ljava/lang/String;)V
> 	at org.apache.rampart.handler.WSDoAllHandler.<clinit>(WSDoAllHandler.java:37)
> 	at java.lang.Class.forName0(Native Method)
> 	at java.lang.Class.forName(Class.java:219)
> 	at org.apache.axis2.deployment.util.Utils.getHandlerClass(Utils.java:182)
> 	at org.apache.axis2.deployment.util.Utils.addFlowHandlers(Utils.java:60)
> 	at org.apache.axis2.deployment.DeploymentEngine.addNewModule(DeploymentEngine.java:337)
> 	at org.apache.axis2.deployment.DeploymentEngine.doDeploy(DeploymentEngine.java:690)
> 	at org.apache.axis2.deployment.RepositoryListener.init(RepositoryListener.java:165)
> 	at org.apache.axis2.deployment.RepositoryListener.<init>(RepositoryListener.java:53)
> 	at org.apache.axis2.deployment.DeploymentEngine.loadRepository(DeploymentEngine.java:107)
> 	at org.apache.axis2.deployment.FileSystemConfigurator.getAxisConfiguration(FileSystemConfigurator.java:120)
> 	at webserviceclient.WebServiceClient.main(WebServiceClient.java:48)
> Exception in thread "main" 
> Can you please tell me what can be possibly wrong?

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


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org