我只是初学者,webservice中Schema是什么啊?下面这种形式的Schema,应该怎么写代码啊??xmlversion 1.0 ?
我只是初学者,webservice中Schema是什么啊?
下面这种形式的Schema,应该怎么写代码啊?
<?xml version= "1.0 "?>
<xs:schema xmlns:xs= "http://www.w3.org/2001/XMLSchema ">
<xs:element name= "PaymentConfirmRequest ">
<xs:complexType>
<xs:sequence>
<xs:element name= "ID " type= "xs:string "/>
<xs:element name= "edit " type= "xs:string "/>
<xs:element name= "time " type= "xs:string "/>
<xs:element name= "tid " type= "xs:string "/>
<xs:element name= "UID " type= "xs:string "/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
[解决办法]
去baidu搜一下就知道了,这不是一两句能说清楚的
[解决办法]
public void PaymentConfirmRequest(string ID,string edit,string time,string tid,string UID)
{
}
