我正试图在伙伴关系的典型和“将数据转换成新的XML”中,要求从电子商务信息预报中获取xml数据,并将这些数据作为回应。
这是协会的文字。
<%
product_code = Request.QueryString("product_code")
url = "http://www.the site.com/net/WebService.aspx?Login=name@thehost.com&EncryptedPassword=***********&EDI_Name=GenericProducts&SELECT_Columns=p.ProductCode,p.ProductName,pd.ProductDescriptionShort,pe.ListPrice,pe.ProductPrice,pe.SalePrice&WHERE_Column=p.ProductCode&WHERE_Value=" & product_code
Set xData = CreateObject("Microsoft.XMLHTTP")
xData.Open "get", url, False
xData.Send
Response.ContentType = "text/xml"
Response.write (xData.responseText)
Set xData = Nothing
%>
这里是一份称为“APIC”的书本中回归数据的样本。 例如,如果上述网页被称作数据,我用www.thesite.com/getdata.asp?product_code=m406789。 之后将归还下列人员。
<?xml version="1.0" encoding="UTF-8"?>
<xmldata>
<Products>
<ProductCode>M406789</ProductCode>
<ProductID>858</ProductID>
<ProductName>M406789 Ignition Box</ProductName>
<ProductDescriptionShort><img alt="" src="/v/vspfiles/assets/images/alliance_small.jpg" align="right" />Ignition Box</ProductDescriptionShort>
<ListPrice>134.2200</ListPrice>
<ProductPrice>80.5300</ProductPrice>
<SalePrice>59.9500</SalePrice>
</Products>
</xmldata>
我想做的是,回归的XML数据就是如此。
<?xml version="1.0" encoding="UTF-8"?>
<hotspot>
<ProductCode>M406789</ProductCode>
<ProductID>858</ProductID>
<ProductName>M406789 Ignition Box</ProductName>
<ProductDescriptionShort><img alt="" src="/v/vspfiles/assets/images/alliance_small.jpg" align="right" />Ignition Box</ProductDescriptionShort>
<ListPrice>134.2200</ListPrice>
<ProductPrice>80.5300</ProductPrice>
<SalePrice>59.9500</SalePrice>
</hotspot>
任何帮助或抽样守则都会受到高度赞赏。 不知道要走什么路。