Question

Since CS3 doesn't have a web service component, as previous versions had, is there a good, feature-complete, AS3-only (no Flex dependencies) library for accessing web services with AS3?

Was it helpful?

OTHER TIPS

What type of service are you trying to consume? URLLoader can handle soap requests (urlRequest.requestHeaders.push(new URLRequestHeader("Content-Type", "application/soap+xml"));) and NetConnection can handle most other stuff (AMF/Remoting).

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top