I have a WebService written in VB.NET, in it, I have a Long defined as such:
<s:element minOccurs="0" maxOccurs="1" name="clientId" type="s:long"/>
Now, whenever I call this WS from another VB.NET application, along with settings clientId
var, I also have to set clientIdSpecified
to True
- thats the quirk of .NET. However, my client works with Java, and the question is - do they have to do the same and set clientIdSpecified
to True
?
This boolean is not part of the specs so if they do need to set it up, I have to warn them.