views:

5

answers:

0

I have deployed a JAX_WS service in JBoss using the bottom-up approach. In some class attributes, I specify the following annotation:

@XmlElement(name = "networkInfo", required = true, nillable = false)

however, I only get the following in the generated WSDL:

xs:element name="networkInfo" type="tns:networkInfo"

The minoccurs attribute is not included as I specify required=true in the annotation, but Where is the nillable attribute?