My WSDLs are not be generated correctly or as I'm expecting them to. I have lots of elements in my xsd files that look like
<xs:element name="Caller" type="xs:string" nillable="false" minOccurs="0"/> But when I look at my WSDL I'm seeing the following <xsd:element minOccurs="0" name="caller" nillable="true" type="xsd:string"/> Why is my nillable attribute changing? I'm using spring2, jaxb, the latest xfire, jsr181, and schema first development. Thanks, deno
