Is there a way to clone WebService object in as3? The ObjectUtil method seems to throw an error.
If not is there a way to cache wsdl and assign it to new WebService object so that constant loading of wsdl can be omitted?
Is there a way to clone WebService object in as3? The ObjectUtil method seems to throw an error.
If not is there a way to cache wsdl and assign it to new WebService object so that constant loading of wsdl can be omitted?
I can acomplish what I need using AsyncToken class. It is the correct solution to my problem. With AsyncToken I can re-use the same WebService object.
It does not address the issue of someone needing to make a clone of WebService class.