在msdn 
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wmsrvsdk/htm/csiwmsauthenticationcallbackonauthenticatecomplete.asp文中最下提到
Requirements
Reference: Add a reference to Microsoft.WindowsMediaServices.
Namespace: Microsoft.WindowsMediaServices.Interop.
Assembly: Microsoft.WindowsMediaServices.dll.
Library: WMSServerTypeLib.dll.
Platform: Windows Server 2003, Enterprise Edition or Windows Server 2003, Datacenter Edition我已经满足要求写好 (已安装windows server 2003 and Windows Media Services)
以下是程序引用
using System;
using System.Text;
using WMSServerLib;
其他都是原文一样。但出现不能识别GenerateNonce() 等
请问还需要那些引用?
本人在网上查到有关GenerateNonce()的内容:http://www.chinadata.cn/showContent.asp?projectID=2083
文章说到“在ZX Web平台的包中提供了HTTP认证的API,这组API包括一个接口HttpAuth以及该接口的两个实现类HttpBasicAuth和HttpDigestAuth,分别实现基本认证和摘要认证。开发人员可以使用接口,也可以直接使用两个实现类。”
“HttpDigestAuth类在generateNonce方法中生成nonce,算法为
        NOnce = BCD( MD5( <client-IP>:<time-stamp>:<private-key> ) )“请问是否有HTTP认证的API,就可以实现我需要的generateNonce()呢???
哪里有的下载这个类呢? 
请高人指点 谢谢。。