Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于 CS3 没有 Web 服务组件,就像以前的版本一样,是否有一个好的、功能完整的、仅限 AS3(无 Flex 依赖项)的库来使用 AS3 访问 Web 服务?
您可能想查看 http://alducente.wordpress.com/2007/10/27/web-service-in-as3-release-10/
您要使用哪种类型的服务?URLLoader 可以处理soap 请求(urlRequest.requestHeaders.push(new URLRequestHeader("Content-Type", "application/soap+xml"));),而NetConnection 可以处理大多数其他东西(AMF/Remoting)。
urlRequest.requestHeaders.push(new URLRequestHeader("Content-Type", "application/soap+xml"));