views:

53

answers:

1

I have a schema with something along the lines of

<xs:element ref="Item" minOccurs="0" maxOccurs="unbounded" />

and it is referenced in my wsdl. When I use wsimport to create java code, the class gets a field called

List<Item> item;

Is there a way to get it to name the field something more standard like items or itemList?

I don't want to name the xs:element Items because then I would get a class called Items which is as bad.

+2  A: 

Ok, this seemed to solve it:

Instead of

<xs:element ref="Item" minOccurs="0" maxOccurs="unbounded" />

I used

<xs:complexType name="Item">...</xs:complexType>
<xs:element name="ItemList" type="Item" minOccurs="0" maxOccurs="unbounded" />

which resulted in the code:

List<Item> itemList;
Sionide21
Using the `name` attribute is the way to go.
Pascal Thivent
+1 didn't know what was the corresponding XSD of `@WebParam(name="Item") List itemList`
ewernli
Alternatively it turns out this can be done in bindings.xml. If anyone is interested, I can post that method as well.
Sionide21