Looking at:
testutils/target/generated/src/main/java/com/iona/ws/_2005/_11/locator/q
uery/FilterType.java
Which is generated from:
testutils/src/main/resources/wsdl/locator.wsdl
The following method signature doesn't look right:
public void setField(String value) {
Shouldn't it be:
public void setField(FilterFieldType value) {
Here's the relevant wsdl:
<xs:complexType name="FilterType">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="field"
type="tns:FilterFieldType"
use="required"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
-Mike