码迷,mamicode.com
首页 > Web开发 > 详细

Salesforce WSDL引用到.Net发生无法解析地址字段的错误解决

时间:2015-07-28 10:24:18      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:

忘记是在哪个项目上碰到的,反正是碰到了,就是标准对象的地址类型在引用入.Net后报错,说找不到对应的类型。

所以,需要在WSDL下增加以下的语句(好像是在WSDL里增加吧,忘记了,汗一把。。。。)

Add the following within the <xsd:schema elementFormDefault="qualified" targetNamespace="http://soap.sforce.com/schemas/class/<classname>"> element:

<!-- Compound datatype: Address -->
<xsd:complexType name="address">
<xsd:complexContent>
<xsd:extension base="tns:location">
<xsd:sequence>
<xsd:element name="city" type="xsd:string" nillable="true"/>
<xsd:element name="country" type="xsd:string" nillable="true"/>
<xsd:element name="countryCode" type="xsd:string" nillable="true"/>
<xsd:element name="postalCode" type="xsd:string" nillable="true"/>
<xsd:element name="state" type="xsd:string" nillable="true"/>
<xsd:element name="stateCode" type="xsd:string" nillable="true"/>
<xsd:element name="street" type="xsd:string" nillable="true"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>

<!-- Compound datatype: Location -->
<xsd:complexType name="location">
<xsd:sequence>
<xsd:element name="latitude" type="xsd:double" nillable="true"/>
<xsd:element name="longitude" type="xsd:double" nillable="true"/>
</xsd:sequence>
</xsd:complexType>

---恢复内容结束---

Salesforce WSDL引用到.Net发生无法解析地址字段的错误解决

标签:

原文地址:http://www.cnblogs.com/dog2k/p/4681862.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!