using .net classes obtained form web services in flex
from flex, when calling a .net web method that returns a custom class, I always recieve an ObjectProxy, even if I have the same class开发者_开发百科 created on flex. How do I manage this ObjectProxy as the class I have?
thanks.
To use custom classes with WebServices they need to be registered with SchemaTypeRegistry
. You'll need to map the namespace and local name from the wsdl to an AS3 class.
精彩评论