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 James Black <jb...@ieee.org> on 2002/06/14 17:17:41 UTC

re: creating wsdl from java when using abstract classes

Hello,
  I have an abstract class called AbstractCommon that has an attribute
called jceProvider that it has setters and getters for.
  I have another class, Location, that extends AbstractCommon.

  In the wsdl file <element name="jceProvider" ...> exists in the
declaration for both AbstractCommon and Location.

  This causes problems when I try to use .NET to create a client, as it
sees two declarations for the same element.

  Any idea how I can just have it include an element only once, or not
include the element at all?
  My problem appears to start with java2WSDL btw.

  Thank you.