如何发布WPF浏览器应用程序?

如何发布WPF浏览器应用程序?

问题描述:

我设计了一个wpf浏览器应用程序,并已通过ftp将其发布到AZURE中的我的网站服务中,

I have designed a wpf browser application and i have published it to my website service in AZURE by ftp ,

在发布的最后一步中对我说:

in the last step of the publish  said to me :

该应用程序将发布到:
ftp://waws-prod-am2-075.ftp.azurewebsites.windows.net/

用户将从以下位置启动该应用程序:
http://desktop-qmq683g/WpfBrowserApplication1/

The application will be published to:
ftp://waws-prod-am2-075.ftp.azurewebsites.windows.net/

Users will launch this application from:
http://desktop-qmq683g/WpfBrowserApplication1/

但是对用户而言的http无效,并且不能与我一起运行....

but the http that is  for the users is not a valid and not run with me....

现在:我和其他用户如何访问我的浏览器应用程序?

now : How I and the other users can access  to my browser application??

希望您能对我有所帮助,谢谢.

I hope you to help me and thank you so much .

您需要访问网站的公共URL . Azure中的网站带有azurewebsites.net的唯一子域,类似于 http://waws-prod-am2-075.azurewebsites.windows.net .尽管如何访问Azure网站不是WPF主题,所以请问您在Azure论坛中可能遇到的任何其他与Azure相关的问题 以获得更好的帮助: https://social.msdn.microsoft.com/forums/azure/zh-CN/home?category=windowsazureplatform

You need to access the public URL of your web site. A website in Azure comes with a unique subdomain of azurewebsites.net which is something like http://waws-prod-am2-075.azurewebsites.windows.net. How to access an Azure website is not a WPF topic though so please ask any further Azure related questions you may have in the Azure forums for better help: https://social.msdn.microsoft.com/forums/azure/en-US/home?category=windowsazureplatform

当涉及到XBAP时,它们仅适用于所有用户都使用Internet Explorer的Intranet方案.使用任何其他浏览器时,您可能会遇到问题.即使使用IE,也需要确保已启用XAML浏览器 所有客户端计算机上的工具"->安全性"->自定义级别"->"XAML浏览器"应用程序下的应用程序: https://forums.iis.net/t/1192607.aspx

When it comes to XBAPs these are only intended to be used in intranet scenarios where all users use Internet Explorer. You might running into issues when using any other browser. And even when using IE you need to make sure that you have enabled XAML browser applications under Tools->Security->Custom level->XAML browser application on all client machines: https://forums.iis.net/t/1192607.aspx

还应该将Web服务器配置为,以便客户端系统上的浏览器可以为XBAP加载正确的处理程序.请参阅以下页面,以获取有关在IIS中进行此操作的信息: https://msdn.microsoft.com/en-us/library/ms752346%28v = vs.110%29.aspx .

You should also configure the web server to so that the browser on the client's system can load the correct handler for the XBAP. Please refer to the following page for information about how to this in IIS: https://msdn.microsoft.com/en-us/library/ms752346%28v=vs.110%29.aspx.

有关如何部署XBAP的更多信息,请参考MSDN:

For more information about how to deploy an XBAP, please refer to MSDN: https://msdn.microsoft.com/en-us/library/aa970060(v=vs.110).aspx#deploying_a_xbap

希望有帮助.

请记住,通过将有用的帖子标记为答案来关闭话题,然后在遇到新问题时开始新话题.请不要在同一线程中问几个问题.

Please remember to close your threads by marking helpful posts as answer and then start a new thread if you have a new question. Please don't ask several questions in the same thread.