如何在Exchange2000中使用XML
XML是在Exchange中存储数据格式的一种,一般应用在Exchange中的以下内容: www.bitsCN.com
Web Storage System 中条目的某些属性合Exchange模式定义,还经常应用在WebDAV
请求中的返回信息、请求等。用户也使用Web Storage System存储XML文档、XSL文 中国.网管联盟
档、HTML文档。 中国.网管联盟
例如:Exchange2000中以XML格式存储联系人的属性信息如下:
<D:prop xmlns:D="DAV"
xmlns:C="urn:schemas:contacts"> BBS.bitsCN.com网管论坛
<D:href>http://server/exchange/zhang/Contacts/zhang.eml<D:href>
bitsCN.nET中国网管博客
<C:fileas>zhang.feng</C:fileas> 中国.网管联盟
<C:email>zhang@163.net</C:email>
bitsCN.Com
<C:title>super XML</C:title>
www_bitscn_com
<C:department>Deve</C:department>
bitsCN.Com
</D:prop> DL.bitsCN.com网管软件下载
为了学习XML的使用方法,现举个例子来说明,下面的例子阐明了如何针对直接的Exchange URL构造HTTP/WebDAV PROPFIND⑴方法请求的内容: bbs.bitsCN.com
<html>
<head> 中国网管论坛
<title>test<title> bitsCN.Com
<script language=vbscript> 中国网管论坛
Dim xmlDoc
DL.bitsCN.com网管软件下载Sub cmdGo_OnClick() bbs.bitsCN.com
Dim strURL,strPropReg
www_bitscn_com
strURL = txtURL.value
bitscn.comstrPropReg="<?xml vesion='1.0'?>"
中国网管论坛strPropReg=strPropReg&"<d:propfind xmlns:d='DAV:'>"
bitsCN.nET中国网管博客strPropReg=strPropReg&"<d:prop>" 中国.网管联盟
strPropReg=strPropReg&"<d:displayname>"
中国网管联盟
strPropReg=strPropReg&"<d:creationdate>" BBS.bitsCN.com网管论坛
strPropReg=strPropReg&"</d:prop>"
bitsCN_com
strPropReg=strPropReg&"</d:propfind>"
BBS.bitsCN.com网管论坛
With CreateObject("microsoft.xmlhttp") bitsCN_com
.Open "PROPFIND",strURL,True
www.bitsCN.com
.SetRequestHeader "Context-type:","text/xml"
中国.网管联盟
.SetRequestHeader "Depth","1,noroot" bitscn.com
.Send(strPropReg) www.bitsCN.com
responsehere.innerText = .ResponseText BBS.bitsCN.com网管论坛
End With bitsCN_com
End Sub
BBS.bitsCN.com网管论坛
</script>
</head>
DL.bitsCN.com网管软件下载
<body> bbs.bitsCN.com
<h2>Get Contents of Folder Using XML/HTTP</h2>
<br> bbs.bitsCN.com
<p>Enter a URL,something like http://server/public/documents/</p>
<p><input type="text" width=100 name="txtURL"></p>
<p><input type="button" value="Go" name="cmdGo"></p> BBS.bitsCN.com网管论坛
<div id=responsehere>
bitsCN.nET中国网管博客
</div>
中国网管联盟
</body>
中国.网管联盟
</html> bitsCN.nET中国网管博客
⑴在Web Storage System中访问属性,使用PROPFIND方法
P.S:本文作者Blog:http://www.cnblogs.com/hbzxf
文章整理:西部数码--专业提供域名注册、虚拟主机服务
http://www.west263.com
以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!



