Hi,

I need to fetch the targetNamespace from a WSDL which i loaded into a
WebService object.

In Flex 2 the following code worked just fine:

var webService:WebService = new WebService();
webService.wsdl = <URL>
...
webService.loadWSDL();
var operation:Operation = webService[<webServiceMethodName>];

var targetNamespace:String = operation.targetNamespace;

When i converted my project to Flex 3 the last code didn't compile as
it seems that the 'targetNamespace' property was removed from the
Operation class.

Does anyone know how can i get the targetNamespace?

Thanks,

Reply via email to