flex « wsdl « Java Enterprise Q&A





1. How to load WSDL from file    stackoverflow.com

I am trying to save some bandwidth and include wsdl file in my flex/air application. Which url format should I use in order to load that file instead of the ...

2. How to pass Authorization header from Flex WebService?    stackoverflow.com

I have Basic Authorization mechanism on the server for WSDL/SOAP. How I can send "Authorization" header through Flex WebService? Simplified example:

var ws:WebService = new WebService();
ws.wsdl = "http://localhost:8000/api/service.wsdl"

var encoder:Base64Encoder = new Base64Encoder();
encoder.insertNewLines = ...

3. Flex WebService using WSDL. How to list available operations?    stackoverflow.com

I'm using WebService class with WSDL. How to list available operations in WSDL and their parameters? There is operations property but it's empty.

4. Flex + Mate + WebServiceInvoker : Changing the WSDL according to FlashVars    stackoverflow.com

I have a Mate project with a WebService tag instance in the EventMap (which I'm using within various event handlers). I'd quite like to be able to set the wsdl property ...

5. Flex WSDL to Actionscript as ant task?    stackoverflow.com

Flex Builder 3 provides support to generate actionscipt from WSDL via the GUI ( Data->Import Web Service (WSDL) ) - but this sort of method requires that you check in the ...

6. Webservice.wsdl and credentials    stackoverflow.com

So I've got a bit of an issue I'm trying to work through. Perhaps some Flex guru could assist? I have a WebService instance that attempts to load a WSDL file from ...

7. AS3 Code generation from a wsdl    stackoverflow.com

As part of a nightly build i want to automate the generation of action script classes like Flex does but in an automated fashion. So I'm looking for an equivalent tool ...

8. Initialize webservice WSDL at runtime using Flex and Mate framework    stackoverflow.com

I am developing a Flex application on top of Mate framework. In this application, I am using a webservice to retrieve data.
As this webservice as not a fix location URL (depending ...

9. Unable to load WSDL file error in flex while making a call to a web service    stackoverflow.com

I am trying to call a webservice from my Flex application and this is the code:

 <mx:WebService id="myWebService"
     wsdl="http://172.16.111.103:22222/cics/services/PRESENT1?wsdl">

     <mx:operation name="PRESENT1Operation"
   ...





10. Flash Builder 4 Web Service Introspection for dynamic wsdl location    stackoverflow.com

In Flex 3, introspecting a web service resulted in a constructor that allowed the location of the web service to change at runtime. It appears that the Web Service introspection ...

11. Web Services with Flex and Sudz-c    stackoverflow.com

I am generating actionscript classes for my flex project using Sudz-c (http://sudzc.com/Default.aspx). They have a wonderful tutorial on using Sudz-c generated classes in ObjC, but I can't find anything for ...

12. How to auto generate classes from WSDL in Flex 4    stackoverflow.com

I'm trying to auto-generate classes based on a webservice using Flex4. The classes were already generated, but there are new properties to one class and that is why i need to ...

13. How to solve ClassCastException for java.util.ArrayList via WSDL of ColdFusion 9's CFC?    stackoverflow.com

I hope this problem would not waste your time. I use Adobe Coldfusion 9 to create CFC to to interact with database. Generally, CFC can be generate WSDL by itself. for example:

http://localhost/services/employeeService.cfc?wsdl
The ...

14. Equivalent datatypes in flex for various wsdl data types?    stackoverflow.com

WSDL defines a number of datatypes supported by web service . Is there a documentation stating the various equivalents of those datatypes on flex side. In general for any language that ...

15. Have Flex WebServices share a common wsdl    stackoverflow.com

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 ...

16. Manually consume WSDL in Flex Builder 3    stackoverflow.com

I'm trying to consume a .Net web service of mine in a Flex Builder 3 project. The function's signature in the service is:

bool MyFunction(Enums.Channels var1, Enums.Payments.PayMethods var2)
I tried importing the WSDL ...