Hi,
How do you make the WSDL (made when you save a java or LotuScript web service in Domino) say that a value is required?
When I save my web service it makes a WSDL like this:
<complexType name="Resource">
<sequence>
<element name="resourceType" nillable="true" type="xsd:string"/>
<element name="name" nillable="true" type="xsd:string"/>
The corresponding Java code:
public class Resource {
public String resourceType = "Room";
public String name = null;
Here you can see that nillable is true.
That tells me that the values for this fields can be left out. Is there a way to not have the nillable attribute set to true?
If there is a documentation of this I hope someone can point me in the right direction.
I have tried to search for a solution but not been able to find any.
Thanks in advance