是否可以通过ASP.NET(理想情况下是MVC)进行非安全的WMRM DRM许可证交付?
我的静默交付工作正常。
所有samples from the SDK(WMRM10.1)都在asp中 - 我没有经验(我从PHP到ASP.NET)。
看起来我需要在hbs中包含的vbscript或JavaScript中实现实际发布。这是对的吗?
有没有人有一个在JavaScript / ASP.NET中执行非安全许可证发布的示例?
答案 0 :(得分:0)
我最终使用与此非常相似的视图使用了这个:
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<LicenceViewModel>" %>
<html>
<head>
<script language="JavaScript" type="text/javascript">
function Storev71License()
{
LicenseObj.StoreLicense('<%= Model.Licence %>');
}
</script>
</head>
<body onload="Storev71License()">
<object classid="clsid:A9FC132B-096D-460B-B7D5-1DB0FAE0C062" height="0" id="LicenseObj" width="0">
<embed mayscript type="application/x-drm-v2" hidden="true">
</object>
<p>You have received a license for this movie. Click Play.</p>
</body>
</html>