flex中调用webservice的两种方法

1,用C#写好一个webservice,包含两个方法:

    [WebMethod]
    public string HelloWorld()
   {
        return "Hello World";
    }

    [WebMethod]
    public int GetSum(int a, int b)
    {
        int c = 0;
        c = a + b;
        return c;
    }

2,通过mxml配置,调用

	<fx:Declarations>
		<!-- 将非可视元素(例如服务、值对象)放在此处 -->
		<s:WebService id="myWebService" wsdl="http://localhost:4358/WebServicetest/WebService.asmx?wsdl">
				<s:operation name="GetSum" resultFormat="object" result="myresultTwo(event)"/>
				<s:operation name="HelloWorld" resultFormat="object" result="myresultTwo(event)"/>
		</s:WebService>
	</fx:Declarations>
	<s:Button id="myOne" x="184" y="177" width="131" height="47" label="MethodOne"
			  click="myOne_clickHandler(event)"/>
	<s:Button id="myTwo" x="393" y="177" width="131" height="47" label="MethodTwo"
			  click="myTwo_clickHandler(event)"/>
	<fx:Script>
		<![CDATA[
			import mx.controls.Alert;
			import mx.events.FlexEvent;
			import mx.rpc.events.ResultEvent;
			import mx.rpc.soap.WebService;
			
			public function myresultOne(event:ResultEvent):void
			{
				Alert.show(event.result.toString());
			}
			public function myresultTwo(event:ResultEvent):void
			{
				Alert.show(event.result.toString());
			}

			protected function myOne_clickHandler(event:MouseEvent):void
			{
				// TODO Auto-generated method stub
				myWebService.HelloWorld();
			}
			
			protected function myTwo_clickHandler(event:MouseEvent):void
			{
				// TODO Auto-generated method stub
				myWebService.GetSum(7,9);
				
			}
			
		]]>
	</fx:Script>

3,通过AS调用

			protected function application1_creationCompleteHandler(event:FlexEvent):void
			{
				// TODO Auto-generated method stub
				var myser:WebService=new WebService();
				myser.wsdl="http://localhost:4358/WebServicetest/WebService.asmx?wsdl";
				myser.loadWSDL();
				myser.getOperation("HelloWorld").addEventListener(ResultEvent.RESULT,myresultOne);
				myser.getOperation("HelloWorld").send();
				myser.getOperation("GetSum").addEventListener(ResultEvent.RESULT,myresultTwo);
				myser.getOperation("GetSum").send(2,3);	
			}
			
			public function myresultOne(event:ResultEvent):void
			{
				Alert.show(event.result.toString());
			}
			public function myresultTwo(event:ResultEvent):void
			{
				Alert.show(event.result.toString());
			}



  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值