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 babloosony <ba...@gmail.com> on 2005/02/24 14:42:06 UTC

Need xsd for java.util.Vector

Hi All,

I have 2 questions :


1. Can anyone give me a xsd file for the java class that is an input
to a POJO that need to be exposed as  web service that need to be
exposed as Document/Literal style web service  using Apache AXIS.
Basically I want to generate an xsd schema for this java class and
include that in a WSDL that need  to be given to .NET so that they can
consume my service.


public class Animal implements java.io.Serializable
{
	private Vector animalQualitiesVector = new Vector();

	public void setAnimalQualitiesVector(Vector v)
	{
		animalQualitiesVector = v;
	}
	public Vector getAnimalQualitiesVector()
	{
		return animalQualitiesVector;
	}
}



2. Do we have tools that generate xsd schemas for such java classes.
Did anyone use one ?



Thanks & Regards,
Kumar.