When I generate using 24SevenOffices WSDL for CompanyService I get the following:
type ArrayOfInt struct {
int []int32 `xml:"int,omitempty" json:"int,omitempty"`
}
And this is what the WSDL has:
...
<s:complexType name="ArrayOfInt">
<s:sequence>
<s:element minOccurs="0" maxOccurs="unbounded" name="int" type="s:int" />
</s:sequence>
</s:complexType>
...
Is the WSDL-spec bad or is this a bug with gowsdl?