As specified in these instructions, I downloaded my organization's enterprise.wsdl
file, downloaded wsc-23.jar
from the Web Services Connector downloads page, and ran the following command from the directory containing the two downloaded files:
java -classpath wsc-23.jar com.sforce.ws.tools.wsdlc enterprise.wsdl enterprise.jar
which generated this output:
[WSC23][wsdlc.run:348]Created temp dir: C:\Users\myName\AppData\Local\Temp\wsd
lc-temp-215798849-dir
[WSC23][wsdlc.<init>:110]Generating Java files from schema ...
[WSC23][wsdlc.<init>:110]Generated 290 java files.
[WSC23][wsdlc.compileTypes:298]Compiling to target default...
cannot find symbol
symbol: class RecordType
location: package com.sforce.soap.enterprise.sobject
cannot find symbol
symbol: class RecordType
location: package com.sforce.soap.enterprise.sobject
cannot find symbol
symbol: class RecordType
location: package com.sforce.soap.enterprise.sobject
cannot find symbol
symbol: class RecordType
location: package com.sforce.soap.enterprise.sobject
cannot find symbol
symbol: class RecordType
location: package com.sforce.soap.enterprise.sobject
Error: Compilation failed
Why is class RecordType
causing compilation to fail?
As a workaround to the issue we discussed in comments above, try manually adding the
RecordType
complex type to your WSDL. Here is what it should look like:As I mentioned above, this sounds like a bug in the WSDL generation, so I'd recommend filing a ticket with SFDC Support as well.