When generating the jar via WSDL I see the fields are present on the custom object.
(e.g. MyCustomObj__c
, field MyField__c
), but when I generate the JAR (via the WSC tool) the resulting jar's does not allow access to this field.
e.g. I can do MyCustomObj__c obj = new MyCustomObj__c();
but obj.getMyField__c()
is not defined.
(I'm using the Enterprise WSDL v34.0 and WSC 34.2.0, which are the latest as of time of writing)
How can I access this custom field?