Salesforce编译从WSDL生成顶点类时出现错误



当我尝试从下面的WSDL文件生成Apex类时,我得到的是以下生成的类有编译错误:错误:testxyzCom错误:意外标记:'limit' at 7:23

生成的类也在下面给出。我在Salesforce方面已经有了一些经验,而且据我所知,如果WSDL文档包含Apex保留词,那么在生成Apex类时,该词将添加_x。例如,WSDL文档中的limit转换为生成的Apex类中的limit_x。但这不是发生在上述情况下,请解释。请帮帮我。

WSDL文件
<?xml version="1.0" encoding="UTF-8"?> 
<wsdl:definitions targetNamespace="http://test.xyz.com" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://test.xyz.com" xmlns:intf="http://test.xyz.com" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> 
<!--WSDL created by Apache Axis version: 1.4 
Built on Apr 22, 2006 (06:55:48 PDT)--> 
<wsdl:types> 
<schema elementFormDefault="qualified" targetNamespace="http://test.xyz.com" xmlns="http://www.w3.org/2001/XMLSchema"> 
<element name="createOpurtunityData"> 
<complexType> 
<sequence> 
<element maxOccurs="unbounded" name="keys" type="xsd:string"/> 
<element maxOccurs="unbounded" name="values" type="xsd:string"/> 
<element name="limit" type="xsd:int"/> 
</sequence> 
</complexType> 
</element> 
<element name="createOpurtunityDataResponse"> 
<complexType> 
<sequence> 
<element maxOccurs="unbounded" name="createOpurtunityDataReturn" type="xsd:string"/> 
</sequence> 
</complexType> 
</element> 
</schema> 
</wsdl:types> 
<wsdl:message name="createOpurtunityDataResponse"> 
<wsdl:part element="impl:createOpurtunityDataResponse" name="parameters"> 
</wsdl:part> 
</wsdl:message> 
<wsdl:message name="createOpurtunityDataRequest"> 
<wsdl:part element="impl:createOpurtunityData" name="parameters"> 
</wsdl:part> 
</wsdl:message> 
<wsdl:portType name="TestWSDL"> 
<wsdl:operation name="createOpurtunityData"> 
<wsdl:input message="impl:createOpurtunityDataRequest" name="createOpurtunityDataRequest"> 
</wsdl:input> 
<wsdl:output message="impl:createOpurtunityDataResponse" name="createOpurtunityDataResponse"> 
</wsdl:output> 
</wsdl:operation> 
</wsdl:portType> 
<wsdl:binding name="TestWSDLSoapBinding" type="impl:TestWSDL"> 
<wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> 
<wsdl:operation name="createOpurtunityData"> 
<wsdlsoap:operation soapAction=""/> 
<wsdl:input name="createOpurtunityDataRequest"> 
<wsdlsoap:body use="literal"/> 
</wsdl:input> 
<wsdl:output name="createOpurtunityDataResponse"> 
<wsdlsoap:body use="literal"/> 
</wsdl:output> 
</wsdl:operation> 
</wsdl:binding> 
<wsdl:service name="TestWSDLService"> 
<wsdl:port binding="impl:TestWSDLSoapBinding" name="TestWSDL"> 
<wsdlsoap:address location="http://tempuri.org/Salesforcexyz/services/TestWSDL"/> 
</wsdl:port> 
</wsdl:service> 
</wsdl:definitions> 

生成的Apex类是

/Generated by wsdl2apex 
public class testxyzCom { 
public class createOpurtunityData_element { 
public String[] keys; 
public String[] values; 
public Integer limit; 
private String[] keys_type_info = new String[]{'keys','http://www.w3.org/2001/XMLSchema','string','1','-1','false'}; 
private String[] values_type_info = new String[]{'values','http://www.w3.org/2001/XMLSchema','string','1','-1','false'}; 
private String[] limit_type_info = new String[]{'limit','http://www.w3.org/2001/XMLSchema','int','1','1','false'}; 
private String[] apex_schema_type_info = new String[]{'http://test.xyz.com','true','false'}; 
private String[] field_order_type_info = new String[]{'keys','values','limit'}; 
} 
public class TestWSDL { 
public String endpoint_x = 'http://tempuri.org/Salesforcexyz/services/TestWSDL'; 
public Map<String,String> inputHttpHeaders_x; 
public Map<String,String> outputHttpHeaders_x; 
public String clientCertName_x; 
public String clientCert_x; 
public String clientCertPasswd_x; 
public Integer timeout_x; 
private String[] ns_map_type_info = new String[]{'http://test.xyz.com', 'testxyzCom'}; 
public String[] createOpurtunityData(String[] keys,String[] values,Integer limit) { 
testxyzCom.createOpurtunityData_element request_x = new testxyzCom.createOpurtunityData_element(); 
testxyzCom.createOpurtunityDataResponse_element response_x; 
request_x.keys = keys; 
request_x.values = values; 
request_x.limit = limit; 
Map<String, testxyzCom.createOpurtunityDataResponse_element> response_map_x = new Map<String, testxyzCom.createOpurtunityDataResponse_element>(); 
response_map_x.put('response_x', response_x); 
WebServiceCallout.invoke( 
this, 
request_x, 
response_map_x, 
new String[]{endpoint_x, 
'', 
'http://test.xyz.com', 
'createOpurtunityData', 
'http://test.xyz.com', 
'createOpurtunityDataResponse', 
'testxyzCom.createOpurtunityDataResponse_element'} 
); 
response_x = response_map_x.get('response_x'); 
return response_x.createOpurtunityDataReturn; 
} 
} 
public class createOpurtunityDataResponse_element { 
public String[] createOpurtunityDataReturn; 
private String[] createOpurtunityDataReturn_type_info = new String[]{'createOpurtunityDataReturn','http://www.w3.org/2001/XMLSchema','string','1','-1','false'}; 
private String[] apex_schema_type_info = new String[]{'http://test.xyz.com','true','false'}; 
private String[] field_order_type_info = new String[]{'createOpurtunityDataReturn'}; 
} 
} 

我最近在使用保留关键字'long'生成APEX类的WSDL中遇到了类似的问题。

我认为wsdl2apex不够聪明,不能像你建议的那样为保留关键字添加后缀。

您可以手工对生成的类执行此操作吗?

在createOpurtunityData_element

public Integer limit_x; 
在TestWSDL

public String[] createOpurtunityData(String[] keys,String[] values,Integer limit_x) {
request_x.limit_x = limit_x;

我不是100%确定如何调用WebServiceCallout.invoke将处理这个变化。如果可以的话,更新web服务和WSDL会更容易,这样它就不会使用APEX关键字了。

相关内容

  • 没有找到相关文章