首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 媒体动画 > flex >

flex HTTPService施用

2012-12-22 
flex HTTPService应用flex和spring security搭建的时候遇到一个问题,在发送http请求的时候需要给服务器发

flex HTTPService应用
flex和spring security搭建的时候遇到一个问题,在发送http请求的时候需要给服务器发送sessionid要不然你只能请求到security没有拦截的login页面

var httpService:HTTPService=new HTTPService;httpService.url=Constants.SERVER + this._url;httpService.method=this._method;httpService.useProxy=false;httpService.requestTimeout = 10;httpService.headers["JSESSIONID"]=Constants.SESSIONID;if(!isLogin){if("GET" == httpService.method)httpService.contentType="application/x-www-form-urlencoded";elsehttpService.contentType="application/json";}else{httpService.contentType="application/x-www-form-urlencoded";}httpService.addEventListener("result", resultHandler);httpService.addEventListener("fault",faultHandler);httpService.send(params);// 上面是发送sessionid// 获取sessionid,请求登录成功后,http请求的根据http协议会返回一个sessionid这里就可以获得到private function resultHandler(event:ResultEvent):void{var jsessionId:String = event.currentTarget.headers["JSESSIONID"];}

热点排行