I have a flex app that loads a WSDL at runtime and shares that across several different web services I have defined. Unfortunately each call to loadWSDL() makes a network request for it, and while it's not really a problem due to caching it's still annoying and wasteful to have all those requests generated. Is there a simpler way to solve this problem and only make one network request?
My code is currently like:
var services:Array = ['service1', 'service2', ...]
for each (var name:String in services) {
var s:WebService = ServiceLocator.getInstance().getService(name) as WebService;
s.wsdl = wsdl;
s.loadWSDL();
}
Any help will be appreciated.