接口文件格式说明(asp+xmlhttp)

asp+|xml

接口xml文件格式<info><rec>       <depID>所属栏目</depID>       <smallClassID>所属信息单位</smallClassID>       <type>信息发布形式</type><keyWord>关键字</keyWord><title>新闻标题</title><author>作者</author><original>原出处</original><content>新闻内容</content></rec><rec>       <depID>所属栏目</depID>       <smallClassID>所属信息单位</smallClassID>       <type>信息发布形式</type><keyWord>关键字</keyWord><title>新闻标题</title><author>作者</author><original>原出处</original><content>新闻内容</content></rec></info> 注:接口类型和数据注意事项。  

字段名 名称 类型 数据取值说明 上传数据说明
depID 所属栏目 Int(4)   代码(不能为空)
smallClassID 所属信息单位 Nvarchar(25)   代码(不能为空)
type 信息发布形式 Nvarchar(7) 重要信息=1弹出信息=2热点信息=3可复选多个,以“,”分隔如:1,2,3 代码(多个用逗号分隔)
keyWord 关键字 Nvarchar(50) 多个以“,”分隔 如:keyword1,keyowrd2 文字(多个用逗号分隔)
title 新闻标题 Nvarchar(50) 文字 文字(不能为空)
author 作者 Nvarchar(20) 文字 文字
original 原出处 Nvarchar(20) 文字 文字
content 新闻内容 varChar (4000) 文字 文字(不能为空)

   举例:<info><rec>       <depID>1</depID>       <smallClassID>20040212200856429814</smallClassID>       <type>1,3</type><keyWord>关键字1, 关键字2</keyWord>  <title>新闻标题</title><author>作者</author><original>原出处</original><content>新闻内容</content></rec></info>  上传方法说明: 将上述产生的字符串发送到http://服务器IP:端口/receiveInfo.asp(必须用POST方式传送) 经测试通过代码如下: 发送端:sendInfo.asp <%set xmlhttp=Server.CreateObject("MSXML2.ServerXMLHTTP") xmlstr="<info><rec><depID>1</depID><smallClassID>20040212200856429814</smallClassID><type>1,3</type><keyWord>关键字1, 关键字2</keyWord><title>新闻标题</title><author>作者</author><original>原出处</original><content>新闻内容</content></rec></info>" URL="http://192.168.1.5:9020/receiveInfo.asp"xmlhttp.open "POST",URL, Falsexmlhttp.send  xmlstrif  err.number=0 then       if xmlhttp.status <>"200" then              Response.Write "<font style='font-size:12px;color:red'>状态:"&xmlhttp.status&" ;描述:"&xmlHttp.ResponseText&"</font>"       else              Response.Write "<font style='font-size:12px;color:red'>  "&xmlHttp.ResponseText&"</font>"       end ifelse       Response.Write "<font style='font-size:12px;color:red'>状态:"&xmlhttp.status&" ;描述:"&xmlHttp.ResponseText&"</font>"end if%>   接收端:receiveInfo.asp  <%@codepage=936%><%Server.ScriptTimeOut=99999Response.Buffer =falseResponse.CharSet="gb2312"set xmldoc=Server.CreateObject("MSXML2.DOMDocument") xmldoc.load Request set root = xmldoc.DocumentElement for i=1 to xmldoc.documentelement.childNodes.length Set recnote = xmldoc.documentelement.childNodes(i-1) Set depIDnote = recnote.selectSingleNode("depID")Set smallClassIDnote = recnote.selectSingleNode("smallClassID")Set typenote = recnote.selectSingleNode("type")Set keyWordnote = recnote.selectSingleNode("keyWord")Set titlenote = recnote.selectSingleNode("title")Set authornote = recnote.selectSingleNode("author")Set originalnote = recnote.selectSingleNode("original")Set contentnote = recnote.selectSingleNode("content") response.Write depIDnote.text&"||"response.Write smallClassIDnote.text&"||"response.Write typenote.text&"||"response.Write keyWordnote.text&"||"response.Write titlenote.text&"||"response.Write authornote.text&"||"response.Write originalnote.text&"||"response.Write contentnote.text&"||"  next response.Write("0") %>

时间: 2024-12-03 11:13:57

接口文件格式说明(asp+xmlhttp)的相关文章

网站综合信息查询工具大揭秘(asp+xmlhttp)

中介交易 http://www.aliyun.com/zixun/aggregation/6858.html">SEO诊断 淘宝客 云主机 技术大厅 此类工具很多是通过asp+xmlhttp抓取官方页面信息(一般是国外网站),再二次整理.汉化,以便国内站长查看! 废话少说,现在就把此类工具的实现原理简单给大家说说,相信你读了此文后也可以很轻松的写出此类工具! 1.Alexa详细信息查询工具 此类工具分为两种 1.通过Alexa官方API接口获取信息,此类查询每千次查询需要向alexa支付

c语言-小白求教接口使用(asp.net)

问题描述 小白求教接口使用(asp.net) 例如我要使用百度接口 http://api.map.baidu.com/location/ip?ak=DA01fc8690585960288eb3820c5f5bf7&ip=118.113.163.95&coor=bd09ll要怎么使用,还是什么 来着, 然后 传回来的是一串json 要怎么接受这个参数,request.from?我完全不懂 ,希望有例子,或者能讲的通俗易懂点 解决方案 http://download.csdn.net/deta

asp+XMLHTTP组件做采集常用函数收集

asp+|xml|采集|函数 asp+XMLHTTP组件做采集常用函数其中的html代码处理函数很管用,写得相当漂亮 <%'=================================================='函数名:GetHttpPage'作 用:获取网页源码'参 数:HttpUrl ------网页地址'==================================================Function GetHttpPage(HttpUrl)If IsNul

asp+xmlhttp 返回结果分析

问题描述 用asp+xmlhttp远程登录一个网站,并取回数据,由于目标网站没有xml网页,所以只能用responsetext取回html代码,我想比较准确的得到取回代码中表单的值,并处理后存入数据库.用正则表达式不太稳定,目标网页稍有改动就取不到值了.js里可以用getelementtagname.value这一类的语句(js不熟--也不知道写对没),asp里解决这个问题有什么思路么?我想了一个是将html转成xml,然后取节点,但是--太难了--,而且我对xml也不了解--希望有高手提供个思

用ASP+XMLHTTP编写天气预报程序

asp+|xml|程序|天气预报 本人就职于一个本地门户网站,每天网站上的天气都得更新.久而久之感到相当麻烦,于是写了一个定时的新闻小偷,帖出来大家参考一下系统要求: 支持FSO, 服务器UDP TCP/IP 没有屏蔽. 下面是小偷的内容: FileName TianQi.asp Write By Niaoked QQ408611119www.knowsky.com<% if hour(now)=9 and minute(now)<30 then getCategories() end if

用Asp+XmlHttp实现RssReader功能

asp+|rss|xml <style>body form* {font:12px tahoma;line-height:140%;color:#000000}.title .time a </style><script type="text/javascript">var switcher=0;</script><body ondblclick="if(switcher==0)else"><form

用ASP+XMLHTTP编写一个天气预报程序

asp+|xml|程序|天气预报|xml     本人就职于一个本地门户网站,每天网站上的天气都得更新.久而久之感到相当麻烦,于是写了一个定时的新闻小偷,帖出来大家参考一下系统要求: 支持FSO, 服务器UDP TCP/IP 没有屏蔽. 下面是小偷的内容:FileName TianQi.aspWrite By Niaoked QQ408611119www.knowsky.com<% if hour(now)=9 and minute(now)<30 then getCategories() e

远程获取类Asp xmlHttp

编者注:这个class主要用于操作asp中的xmlhttp. 首先是类定义 Cls_AspHttp.asp: <% ''================================================================= ''飞扬远程获取类(AspHttp) 1.0.1 Bate1 '' By 奔腾的心 '' 2006-04-19 ''=================================================================

asp XMLHTTP备案信息查询程序

下面提供这款备案查询程序是一款利用了asp教程 的microsoft.xmldom远程抓取valu.cn网站的代码. <%@language="vbscript" codepage="936"%> <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitio