Hi, i want to use the autogenerated WSDLs from tuscany, but all arguments are nilable and not required per default, also non-complex types just get labled arg0,arg1 etc. After some research i found out about JAXB/WS bindings and with the use of @XmlElement(required = true, nillable = false) on the Bean properties and @XmlType on the Bean i get close to what i want. However the complex type itself is still not required and nillable. How do i annotate that properly? I guess it would have to happen in the service interface or impl class, but i could not find any info on how to annotate that.
thanks
