You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by Matt Clark <ma...@powerupnetworks.com> on 2003/01/13 21:47:35 UTC

NoSuchMethodError: ParameterDesc.

Hi, I'm try to call a webservice that I've deployed in Axis and seeing
the following exception:
 
Java.lang.NoSuchMethodError:
org.apache.axis.description.ParameterDesc.<init>(Ljavax/xml/namespace/QN
ame;BLjavax/xml/namespace/QName;Ljava/lang/class;ZZ)V
 
In my skeleton's static declarations section.  The offending code looks
like:
 
_params = new org.apache.axis.description.ParameterDesc [] {
            new org.apache.axis.description.ParameterDesc(new
javax.xml.namespace.QName("","in0"),
org.apache.axis.description.ParameterDesc.IN, new
javax.xml.namespace.QName(http://www.w3.org/2001/XMLSchema, int.class,
false, false ),
};
 
>From what I'm seeing in the Javadocs, there is no such contructor for
ParameterDesc.  Am I doing something wrong, or is the skeleton being
generated incorrectly?  I'm attaching the wsdl for anyone to try.
 
Thanks,
Matt Clark