在哪里可以找到生产服务器的 silverlight 4.0?

发布于 2024-08-30 05:37:52 字数 124 浏览 1 评论 0原文

在哪里可以找到生产服务器的 silverlight 4.0?

为此需要安装 vs 2010 吗?

或者只需要安装 4.0,从哪里可以找到生产服务器的 4.0?

有相同的许可证还是免费的?

where can I find the silverlight 4.0 for the production server ?

For this need to install vs 2010 ?

or only need to install 4.0 from where can I find the 4.0 for the production server ?

is there any license for the same or its free ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

街角卖回忆 2024-09-06 05:37:52

实际上并没有任何为 Silverlight 本身设置“生产”服务器的概念。通常,您只需在 html 中配置对象标记,如下所示:-

     <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
      <param name="source" value="ClientBin/YourApp.xap"/>
      <param name="onError" value="onSilverlightError" />
      <param name="background" value="white" />
      <param name="minRuntimeVersion" value="4.0.50303.0" />
      <param name="autoUpgrade" value="true" />
      <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=4.0.50303.0" style="text-decoration:none">
          <img src="http://go.microsoft.com/fwlink/?LinkId=161376" alt="Get Microsoft Silverlight" style="border-style:none"/>
      </a>
    </object>

这将允许任何尚未安装 RTM Silverlight 4 插件的客户端从 Microsoft 下载并安装。

如果您正在谈论支持您可能使用 VS2010 构建的 silverlight 应用程序所需的服务器端组件,那么这是一个非常非常好的问题。

如果您要从 VS2010 中的标准模板创建 Silverlight 4 Business 应用程序,您最终将得到一个面向 .NET 4 的 Web 应用程序。因此,该应用程序将要求服务器支持 ASP.NET 并在服务器上运行 .NET 4。

我确信开发一个在服务器端使用 3.5 的 Silverlight 4 应用程序是完全可能的。然而,VS2010 中的开发人员体验可能会成为核心,因为我怀疑为快速开发此类应用程序而创建的许多便利功能将不起作用。当然这只是我的猜测,有时间我会尝试一下,看看真正的体验是什么。

There isn't really any concept of setting up a "Production" server for Silverlight itself. You would normally just configure the object tag in the html like this:-

     <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
      <param name="source" value="ClientBin/YourApp.xap"/>
      <param name="onError" value="onSilverlightError" />
      <param name="background" value="white" />
      <param name="minRuntimeVersion" value="4.0.50303.0" />
      <param name="autoUpgrade" value="true" />
      <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=4.0.50303.0" style="text-decoration:none">
          <img src="http://go.microsoft.com/fwlink/?LinkId=161376" alt="Get Microsoft Silverlight" style="border-style:none"/>
      </a>
    </object>

This will allow any clients that don't yet have the RTM Silverlight 4 plugin to download and install from Microsoft.

If you are talking about the server-side components needed to support a silverlight app that you may have built with VS2010 well thats a very very good question.

If you were to create a Silverlight 4 Business application from the standard template in VS2010 you will end up with a web app targeting .NET 4. So that application will require that the server to support ASP.NET with .NET 4 on the server.

I'm sure its quite possible to develop a Silverlight 4 application that uses 3.5 on the server-side. However its likely that developer experience in VS2010 is going to be hard core since I suspect many of the conveniences created to make developing such apps speedy will not work. Of course this only a suspicion, I'll try to give it a go sometime to see what the realy experience is.

太傻旳人生 2024-09-06 05:37:52

正如 Anthony 所说,服务器本身托管 Silverlight 并不需要太多。这是一种客户端技术,因此 99% 的工作是由客户端插件和 Anthony 的答案中的 html 完成的。

但是,您确实需要在服务器上为 Silverlight 设置 MIME 类型,您可以在 为 Silverlight 应用程序配置 IIS

As Anthony stated there isn't really much required on the server itself host Silverlight. It's a client technology so 99% of the work is done by the client plugin and the html in Anthony's answer.

However you do need to setup the mime types for Silverlight on the server which you can read up on at Configuring IIS for Silverlight Applications

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文