Hello
I have installed Integration option for Sharepoint software 4.1 on the sharepoint server which is published over internet.
From the company network i can log in to sharepoint then to BO and see the reports and dashboards, but from internet connection i get cross domain policy file specification error #2170.
I edited the crossdomain.xml to the following :
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<site-control permitted-cross-domain-policies="all"/>
<allow-http-request-headers-from domain="*" headers="*" secure="false" />
<allow-access-from domain="*" secure="false" />
</cross-domain-policy>
Fiddler show the following Error
The connection to '10.x' failed.
Error: ConnectionRefused (0x274d).
System.Net.Sockets.SocketException No connection could be made because the target machine actively refused it 10.x:8888
I don't know what i missed and if the problem comes form publishing Sharepoint over internet or from crossdomain.xml ???
Thank You