views:

52

answers:

1

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?

A: 

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.

Goran