In this article you will learn how to call webservices hosted on asp.net applications from flex. First rewrite webservice class as CYMService: package Services { import mx.controls.Alert; import mx.managers.CursorManager; import mx.rpc.AbstractOperat…
协议肯定是使用http协议,因为soap协议本身也是基于http协议.期中第二种方式:只有webservice3.5以后版本才可以成功 第一种方式:构造soap格式的body,注意加粗的黄色标识,比如: createXMLHttpRequest(); var data; data = '<?xml version="1.0" encoding="utf-8"?>'; data = data + '<soap:Envelope…