我正在使用mule公开一个供salesforce调用的web服务。我的问题是如何将元素从wsdl映射到我的目标mysql数据库? 例如:在wsdl文件中,我有以下内容:
<xsd:element name="createAccount">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="accountName" type="xsd:string" nillable="false"/>
<xsd:element name="accountType" type="xsd:string" nillable="true"/>
<xsd:element name="industry" type="xsd:string" nillable="true"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
然后我想使用DataMapper将这三个元素映射到MySQL表中的三个字段。我的问题是: 1.在DataMappper中,如果我选择XML作为输入,它将询问我没有的模式文件。那么如何在DataMapper中配置它?
谢谢。
维夫
答案 0 :(得分:0)