边肖将与您分享如何部署Silverlight和Web服务。希望大家看完这篇文章后有所收获。我们一起讨论一下吧!
我一直在通过Visual Studio测试Silverlight,我认为将它部署到服务器上会很容易。
没想到,我遇到了很多麻烦,花了一整天寻找解决办法。
首先,在xp系统下部署到本地IIS,服务器win2003也是如此。
如图,右键虚拟目录-属性-HTTP头-MIME类型。增加
扩展名:客户端
MIME类型:应用程序/x-silverlight-app
扩展名:控件
MIME类型:应用程序/xaml xml
所以Silverlight可以正常显示。
如果你调用网络服务,
您的网络服务位于承载Silverlight的网站下。数字
不会有跨域操作的麻烦。
但是您不能直接引用像localhost这样的本地服务。
否则,无法调用服务器上的部署。
我的方法是先在本地IIS中部署这个服务。
然后添加服务引用。
例如,地址为http://127 . 0 . 0 . 1:8088/SL/LinQxmlservice . asmx。
此时没有跨域操作,所以先测试成功。
然后打开服务引用目录,如图
用vs打开这里的所有文件,然后用Ctrl H替换,选择所有打开的文档。
将http://127 . 0 . 0 . 1:8088/SL/LinQxmlservice . asmx替换为
http://www.weiqi9d.com/LinqXmlService.asmx
也就是你的服务器地址。
我不知道我是怎么想出这个主意的。试一试,是的。
另一个问题,服务器仍然无法访问。xap不知道为什么。
我不得不改变。xap to。然后改变这个地方。
参数名=' source ' value=' client bin/Silverlight application 2 . htm '/如图所示
这样,即使您的sl是用vs2010开发的,而服务器没有。net 4.0安装后,它可以正常显示。
记录Silverlight如何调用网络服务。
使用系统;使用System。集合。通用;使用System。Linq使用System。Web使用System。网络服务;name spacesilverlightapplication 2 . web {//summary//web service 1的摘要描述
; /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [System.ComponentModel.ToolboxItem(false)] // 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消对下行的注释。 // [System.Web.Script.Services.ScriptService] public class WebService1 : System.Web.Services.WebService { [WebMethod] public string HelloWorld() { return "Hello World"; } } } 调用 using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; namespace SilverlightApplication2 { public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); this.Loaded += new RoutedEventHandler(Page_Loaded); } //创建Web Service对象 ServiceReference1.LinqXmlServiceSoapClient ws = new ServiceReference1.LinqXmlServiceSoapClient(); void Page_Loaded(object sender, RoutedEventArgs e) { AddEvent(); Bind(); } //注册事件,有点类似Ajax的回调 private void AddEvent() { ws.HelloWorldCompleted += new EventHandler<ServiceReference1.HelloWorldCompletedEventArgs>(ws_HelloWorldCompleted); } //回调函数 void ws_HelloWorldCompleted(object sender, ServiceReference1.HelloWorldCompletedEventArgs e) { button1.Content += e.Result + " hi"; //MessageBox.Show(e.Result); } private void Bind() { ws.HelloWorldAsync(); } } }
看完了这篇文章,相信你对“怎么部署Silverlight及Web Service”有了一定的了解,如果想了解更多相关知识,欢迎关注行业资讯频道,感谢各位的阅读!
内容来源网络,如有侵权,联系删除,本文地址:https://www.230890.com/zhan/115163.html