Silverlight 动态调用 WebService(转)

本文详细介绍了如何在Silverlight应用中灵活调用远程WebService和WCF服务,通过初始化参数传递服务地址,实现代码的高灵活性。包括配置绑定、创建客户端实例、调用远程方法等关键步骤,适用于前端开发、后端开发、移动开发等多个领域的开发者。

1. 配置 IIS 绑定 IP地址

2. 在 SL 中引用 WebService

3. 在需要调用 WebService 的地方写下列代码:

image

WCF :

BasicHttpBinding basicBinding = new BasicHttpBinding();
CustomBinding binding = new CustomBinding(basicBinding);
 BindingElement binaryElement = new BinaryMessageEncodingBindingElement(); 
 // 删除原来 Elements 集合内的 TextMessageEncodingBindingElement
 binding.Elements.Remove(binding.Elements[0]); 
// 添加 BinaryMessageEncodingBindingElement
binding.Elements.Insert(0, binaryElement);
// wcf 地址
EndpointAddress endPoint = new EndpointAddress("http://172.168.1.100/DynamicInvokeWCF.Web/DynWCF.svc");

// 创建 wcf 客户端
DynWCFClient client = (DynWCFClient)Activator.CreateInstance(typeof(DynWCFClient), binding, endPoint);client.DoWorkCompleted += new EventHandler<DoWorkCompletedEventArgs>(client_DoWorkCompleted);
client.DoWorkAsync();

传统 WebService:

BasicHttpBinding basicBinding = new BasicHttpBinding();
 CustomBinding binding = new CustomBinding(basicBinding);
 BindingElement binaryElement = new BinaryMessageEncodingBindingElement(); 
 EndpointAddress endPoint = new EndpointAddress("http://172.168.1.100/DynamicInvokeWCF.Web/Asmx.asmx");
 AsmxSoapClient client = (AsmxSoapClient)Activator.CreateInstance(typeof(AsmxSoapClient), binding, endPoint);
client.HelloWorldCompleted += new EventHandler<HelloWorldCompletedEventArgs>(client_HelloWorldCompleted);
client.HelloWorldAsync(); 

SilverLight动态调用WebService的方法

在我们添加Service Reference的时候,可能不知道该服务最终会被部署到什么位置,或者该服务可能被迁移,此时我们可以使用以下手段进行Service的调用,提高代码编写的灵活性。

步骤1:修改宿主Web页面的代码,将服务地址以初始化参数方式传入.

< form  id ="form1"  runat ="server"  style ="height:100%" >
    
< div  id ="silverlightControlHost" >
        
< object  data ="data:application/x-silverlight-2,"  type ="application/x-silverlight-2"  width ="100%"  height ="100%" >
          ...
          
< param  name ="InitParams"  value ="serviceAddress=http://localhost/services/myservices.asmx"   />
          
< href ="http://go.microsoft.com/fwlink/?LinkID=149156&v=3.0.40624.0"  style ="text-decoration:none" >
               
< img  src ="http://go.microsoft.com/fwlink/?LinkId=108181"  alt ="Get Microsoft Silverlight"  style ="border-style:none" />
          
</ a >
        
</ object >< iframe  id ="_sl_historyFrame"  style ="visibility:hidden;height:0px;width:0px;border:0px" ></ iframe ></ div >
    
</ form >

步骤2:添加Service引用并注册调用远程方法的事件处理

添加Service的引用不必赘述.但此处添加Service Reference的目的仅在于获得远程方法的命名空间等程序结构信息。

如果我们的Silverlight程序主页面名叫MainPage,则在MainPage.xaml.cs中添加如下代码:

public   void  InitializeServices( string  serviceAddress)
        {
            BasicHttpBinding basicBinding  =   new  BasicHttpBinding();
            CustomBinding binding  =   new  CustomBinding(basicBinding);
            BindingElement binaryElement  =   new  BinaryMessageEncodingBindingElement();

            EndpointAddress endPoint  =   new  EndpointAddress(serviceAddress);

            MyService.MyServicesSoapClient serviceClient  =  (MyServicesSoapClient)Activator.CreateInstance( typeof (MyServicesSoapClient), binding, endPoint);
            serviceClient.MyRemoteMethodCompleted  +=   new  EventHandler < MyService.MyRemoteMethodCompletedEventArgs > (serviceClient_MyRemoteMethodCompleted);
            serviceClient.MyRemoteMethodAsync(); // 调用远程方法
        }  

步骤3:修改App.xaml.cs,添加Application.Startup事件处理方法Application_Startup

private void Application_Startup(object sender, StartupEventArgs e)
        {
            
this.RootVisual = new MainPage();
            
string serviceAddress = e.InitParams["serviceAddress"].ToString();
            (this.RootVisual as MainPage).InitializeServices(serviceAddress);
        }

OK,至此,我们已经实现了在程序启动时调用一个MyRemoteMethod方法。以上代码稍加改动,我们就可以在程序的任意位置以这种方式调用远程方法了。

此方法对WCF Service的调用也有效,手段类似,实现略有不同。 


跟网型逆变器小干扰稳定性分析与控制策略优化研究(Simulink仿真实现)内容概要:本文围绕跟网型逆变器的小干扰稳定性展开分析,重点研究其在电力系统中的动态响应特性及控制策略优化问题。通过构建基于Simulink的仿真模型,对逆变器在不同工况下的小信号稳定性进行建模与分析,识别系统可能存在的振荡风险,并提出相应的控制优化方法以提升系统稳定性和动态性能。研究内容涵盖数学建模、稳定性判据分析、控制器设计与参数优化,并结合仿真验证所提策略的有效性,为新能源并网系统的稳定运行提供理论支持和技术参考。; 适合人群:具备电力电子、自动控制或电力系统相关背景,熟悉Matlab/Simulink仿真工具,从事新能源并网、微电网或电力系统稳定性研究的研究生、科研人员及工程技术人员。; 使用场景及目标:① 分析跟网型逆变器在弱电网条件下的小干扰稳定性问题;② 设计并优化逆变器外环与内环控制器以提升系统阻尼特性;③ 利用Simulink搭建仿真模型验证理论分析与控制策略的有效性;④ 支持科研论文撰写、课题研究或工程项目中的稳定性评估与改进。; 阅读建议:建议读者结合文中提供的Simulink仿真模型,深入理解状态空间建模、特征值分析及控制器设计过程,重点关注控制参数变化对系统极点分布的影响,并通过动手仿真加深对小干扰稳定性机理的认识。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

hefeng_aspnet

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值