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?
+2
A:
You may want to check out http://alducente.wordpress.com/2007/10/27/web-service-in-as3-release-10/
Ryan Lanciaux
2008-09-09 14:43:52
More recent version (1.1) fixes a problem we had with XFire-generated services: http://labs.alducente.com/?page_id=11
RickDT
2008-10-27 18:31:31
A:
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).
Typeoneerror
2009-01-10 10:32:59