Я потратил немало времени на это, поэтому вот где я застрял.
Я использую проигрыватель отладки 10.1 для получения запроса XMLA от:
http://localhost/dir/blah.swf
to:
http://localhost/olapbin/msblah.dll
Это прекрасно работало в файловой системе, но теперь на веб-сервере IIS7.
После долгих перебранок с файлом crossdomain.xml я остановился на:
<?xml version="1.0"?>
<cross-domain-policy>
<site-control permitted-cross-domain-policies="master-only"/>
<allow-access-from domain="*" to-ports="*" />
<allow-http-request-headers-from domain="*" headers="*"/>
</cross-domain-policy>
, который помещается в:
http://localhost/crossdomain.xml
и читается с помощью:
Security.loadPolicyFile("http://localhost:80/crossdomain.xml");
Я настраиваю ведение журнала политики (что помогло создать файл выше)) и на IE8 все работает просто отлично.Я получаю:
OK: Root-level SWF loaded: http://127.0.0.1/akts/ThinSlicerRunner.swf
OK: Policy file accepted: http://localhost/crossdomain.xml
OK: Searching for <allow-access-from> in policy files to authorize data loading from resource at http://localhost/olapbin/msmdpump.dll by requestor from http://127.0.0.1/akts/ThinSlicerRunner.swf
OK: Searching for <allow-http-request-headers-from> in policy files to authorize header sending to URL http://localhost/olapbin/msmdpump.dll by requestor from http://127.0.0.1/akts/ThinSlicerRunner.swf
OK: Request for resource at http://localhost/olapbin/msmdpump.dll by requestor from http://127.0.0.1/akts/ThinSlicerRunner.swf is permitted due to policy file at http://localhost/crossdomain.xml
В Chrome и Firefox я просто получаю:
OK: Root-level SWF loaded: http://localhost/akts/ThinSlicerRunner.swf
OK: Policy file accepted: http://localhost/crossdomain.xml
и ничего больше ... нет попыток авторизовать запросы httpservice.
Восновной журнал ошибок flex я получаю:
*** Security Sandbox Violation ***
Connection to
http://localhost/olapbin/msmdpump.dll
halted - not permitted from http://localhost/akts/ThinSlicerRunner.swf
, который не появляется, когда я запускаю то же самое из IE8.Любая идея, что происходит ??
КАК ЗАПРОШЕНО ... БОЛЬШЕ КОДА
Основной запрос отправки:
var connection:TsConnection = this.__connection;
var token:AsyncToken = new AsyncToken(null);
connection.service.request = this.__curSoapRequest;
var actualToken:AsyncToken = connection.service.send();
__tokenArr.push(actualToken);
var responder:AsyncResponder = new AsyncResponder(resultHandler, faultHandler, actualToken);
__responderArr.push(responder);
actualToken.addResponder(responder);
Подсветка объекта подключения:
public function init():void {
//Initialize the service object needed to query the server
this.__service = new HTTPService;
this.__service.method = "POST";
this.__service.contentType = "application/xml";
this.__service.resultFormat = "e4x";
this.__service.headers = getHeaders();
this.__service.url = this.__model.xmlaUrl;
this.__initialized = true;
}
public function get service():HTTPService {
return this.__service;
}
private function getHeaders():Object {
var o:Object = {};
o["SOAPAction"] = '"urn:schemas-microsoft-com:xml-analysis:Discover"';
o["Content-Type"] = "text/xml";
return o;
}
Спасибо за вашу помощь ... надеюсь, что это поможет другим, когда исправлено.; -)
Шон http://www.vidgridz.com/