Re: Problem with setting boolean to nil

2008-06-23 Thread Julie . Hansen
Thanks for your reply Amila. I have tried as you suggested, but am getting compile errors now when compiling. This is the code snippet generated to delcare the boolean attriute. code /** * field for IgnoreConflict */

Re: Problem with setting boolean to nil

2008-06-23 Thread Mauro Molinari
Hi Julie, -Euwc option as of now generates code that requires 1.5 compliance to your Java code, because of the auto (un)boxing conversion you noticed. -- Mauro Molinari Software Developer [EMAIL PROTECTED] - To unsubscribe,

Problem with setting boolean to nil

2008-06-22 Thread Julie . Hansen
Hi, I have found that the java code generated from a WSDL does not seem to support setting boolean fields to nil. For example - here is a snippet of the WSDL : element name=ignoreConflict nillable=true type=xsd:boolean / and the java code generated to add this element to the soap request

Re: Problem with setting boolean to nil

2008-06-22 Thread Amila Suriarachchi
use -Euwc option. in this case it generates a Boolean object instead of boolean. thanks, Amila. On Mon, Jun 23, 2008 at 8:48 AM, [EMAIL PROTECTED] wrote: Hi, I have found that the java code generated from a WSDL does not seem to support setting boolean fields to nil. For example - here