vote up 0 vote down star

Hi,

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 = false;
encoder.encode("SomeUser:SomePassword");

ws.httpHeaders = {AUTHORIZATION : "Basic " + encoder.toString()};

ws.loadWSDL();

var operation:AbstractOperation = ws.get_info;
operation.send();

And I'm getting an Error:

Error #2096: The HTTP request header AUTHORIZATION cannot be set via ActionScript.

Flex application and server are in the same domain. Also I have crossdomain.xml file in the root of my server (http://localhost:8000/crossdomain.xml) but it's never gets called by flex (I know from the log files). I will provide this file anyway:

<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
    <allow-access-from domain="*"/>
    <site-control permitted-cross-domain-policies="all"/>
    <allow-http-request-headers-from domain="*" headers="*"/>
</cross-domain-policy>

Thanks, Zinovii

flag

69% accept rate

1 Answer

vote up 2 vote down check

I've never had to do this before in Flex, but what version of the Flash plugin are you running? Version 9.0.115.0. completely blocks the use of that header, while later versions allow it with your crossdomain.xml configuration.

link|flag
D'oh! I'm running exactly this version 9.0.115.0 on Ubuntu from Adobe Flex builder for linux. – zdmytriv Jun 24 at 22:09
I double check this issue. That was the problem. On later versions works just fine. The issue that flex didn't call crossdomain.xml from the server also solved. When you in DEBUG mode Flex doesn't call crossdomain.xml (for some weird reason) but when you RELEASE then it calls crossdomain.xml from server. – zdmytriv Jun 24 at 22:54
Good to know about the crossdomain.xml debug/release difference. Thanks! – Jamie Love Jun 24 at 23:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.