Does anyone know if the crossdomain policy file at salesforce.com has changed? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T08:02:34Zhttp://stackoverflow.com/feeds/question/307048http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/307048/does-anyone-know-if-the-crossdomain-policy-file-at-salesforce-com-has-changed1Does anyone know if the crossdomain policy file at salesforce.com has changed?Simon2008-11-20T22:14:10Z2009-11-10T20:05:28Z
<p>Suddenly my Flex Apps can no longer connect to salesforce.com via its API, I am getting a security sandbox violation. Login credentials are correct, I have tried them via a different means, and I have obfuscated them below.</p>
<p>This was working fine earlier today and I have not been coding since then.</p>
<p>Anyone else come across this or know what's going on?</p>
<p>Here is the exception returned to my app</p>
<pre><code>Method name is: login
'A997F86A-36E9-DDDC-EC6B-BBEE23101466' producer connected.
'A997F86A-36E9-DDDC-EC6B-BBEE23101466' producer sending message 'B89E5879-D7F7-E91E-2082-BBEE231054DD'
'direct_http_channel' channel sending message:
(mx.messaging.messages::HTTPRequestMessage)#0
body = "<se:Envelope xmlns:se="http://schemas.xmlsoap.org/soap/envelope/"><se:Header xmlns:sfns="urn:partner.soap.sforce.com"/><se:Body><login xmlns="urn:partner.soap.sforce.com" xmlns:ns1="sobject.partner.soap.sforce.com"><username>simon.palmer@***.com</username><password>***</password></login></se:Body></se:Envelope>"
clientId = (null)
contentType = "text/xml; charset=UTF-8"
destination = "DefaultHTTPS"
headers = (Object)#1
httpHeaders = (Object)#2
Accept = "text/xml"
SOAPAction = """"
X-Salesforce-No-500-SC = "true"
messageId = "B89E5879-D7F7-E91E-2082-BBEE231054DD"
method = "POST"
recordHeaders = false
timestamp = 0
timeToLive = 0
url = "https://www.salesforce.com/services/Soap/u/11.0"
Method name is: login
*** Security Sandbox Violation ***
Connection to https://www.salesforce.com/services/Soap/u/11.0 halted - not permitted from https://localhost/pm_server/pm/pm-debug.swf
'A997F86A-36E9-DDDC-EC6B-BBEE23101466' producer acknowledge of 'B89E5879-D7F7-E91E-2082-BBEE231054DD'.
'A997F86A-36E9-DDDC-EC6B-BBEE23101466' producer fault for 'B89E5879-D7F7-E91E-2082-BBEE231054DD'.
Comunication Error : Channel.Security.Error : Security error accessing url : Destination: DefaultHTTPS
Error: Request for resource at https://www.salesforce.com/services/Soap/u/11.0 by requestor from https://localhost/pm_server/pm/pm-debug.swf is denied due to lack of policy file permissions.
</code></pre>
http://stackoverflow.com/questions/307048/does-anyone-know-if-the-crossdomain-policy-file-at-salesforce-com-has-changed/307764#3077640Answer by Chris for Does anyone know if the crossdomain policy file at salesforce.com has changed?Chris2008-11-21T03:41:40Z2008-11-21T03:41:40Z<p>Did you recently upgrade to flash player 10? Flash player 10 changes the way policy files work to some degree, and the crossdomain.xml file needs to be updated to address this. In short, Salesforce.com probably isn't prepared for users upgrading to Flash Player 10 yet.</p>
http://stackoverflow.com/questions/307048/does-anyone-know-if-the-crossdomain-policy-file-at-salesforce-com-has-changed/324456#3244561Answer by superfell for Does anyone know if the crossdomain policy file at salesforce.com has changed?superfell2008-11-27T18:38:18Z2008-11-27T18:38:18Z<p>You have to make sure to load the policy from the /services tree, the default policy at the root won't help you. You need to load this policy https://www.salesforce.com/services/crossdomain.xml</p>
http://stackoverflow.com/questions/307048/does-anyone-know-if-the-crossdomain-policy-file-at-salesforce-com-has-changed/339479#3394791Answer by Simon for Does anyone know if the crossdomain policy file at salesforce.com has changed?Simon2008-12-04T02:48:24Z2008-12-09T09:16:21Z<p>The solution to this problem was to set the server protocol and url as follows:</p>
<pre><code>apex = new Connection();
apex.serverUrl = "https://na3.salesforce.com/services/Soap/u/14.0";
apex.protocol = "https";
</code></pre>
<p>However, this seems to create a secondary issue of users being locked out, so the issue of non-connectivity remains.</p>
<p><strong>Update:</strong> salesforce.com have acknowledged a bug. See my <a href="http://stackoverflow.com/questions/339487/login-error-connecting-to-salesforcecom-from-flex">other related post</a>.</p>
http://stackoverflow.com/questions/307048/does-anyone-know-if-the-crossdomain-policy-file-at-salesforce-com-has-changed/805274#8052740Answer by dave for Does anyone know if the crossdomain policy file at salesforce.com has changed?dave2009-04-30T03:49:18Z2009-04-30T03:49:18Z<p>Hello, I am uploading a file from flex to Google docs. Everything is working in the local file however, when we upload the SWF file as S-controls in Salesforce (sandbox), an error appears upon connecting to Google. Please see error below:</p>
<p>Error:[FaultEvent fault=[RPC Fault faultString="Security error accessing url" faultCode="Channel.Security.Error" faultDetail="Destination: DefaultHTTPS"] messageId="1F812836-1318-B845-AC01-F51AB1D11518" type="fault" bubbles=false cancelable=true eventPhase=2]</p>
<p>We tried the following solutions below but nothing seems to work:
FLEX:
- Add the crossdomain.xml in the bin-debug folder: below is the content of the cross domain policy.
- Used flash.system.security.allowinsecuredomain/allowdomain(“*”) in the initialization.
- Also tried in the connection.protocol set to http
Salesforce:
- Disabled the protocol security in the remote site settings
o Setup -> Administration Setup -> Security Controls -> Remote Site Settings
URL: <a href="http://www.google.com.ph" rel="nofollow">http://www.google.com.ph</a></p>
<p>There’s no problem in connection to Salesforce but upon initialization of the uploading page the security error will appear specifically in the onErrorFault function. Below are code snippets:</p>
<p>
<p>private function init():void{
Security.allowInsecureDomain("*");
//<br />
RESTProxyTest();
send_data();
arrAddedFiles = new Array();
this.uploadGrid.dataProvider= this.acFiles;
this.title = "Attachment: "+this.selectedTimeSheetDetail.Project.label;
}</p>
<p>public function RESTProxyTest():void
{
_conn = new NetConnection();
_conn.addEventListener(AsyncErrorEvent.ASYNC_ERROR, doAsyncError);
_conn.addEventListener(IOErrorEvent.IO_ERROR, doIOError);
_conn.addEventListener(SecurityErrorEvent.SECURITY_ERROR, doSecurityError);
_conn.addEventListener(NetStatusEvent.NET_STATUS, doNetStatus);
_conn.objectEncoding = ObjectEncoding.AMF3;</p>
<pre><code> _conn.connect(_url);
_responder = new Responder(onResult, onFault);
}
</code></pre>
<p>private function send_data():void {
userRequest.url = getLoginURL();
userRequest.addEventListener(ResultEvent.RESULT, httpResult);
userRequest.addEventListener(FaultEvent.FAULT, onErrorFault);
userRequest.send();
} </p>
<p>private function onErrorFault(obj:FaultEvent):void
{
Alert.show("Error:"+obj.toString());
}</p>
<p>private function httpResult(obj:ResultEvent):void
{
trace(obj.toString());</p>
<pre><code> var result:String = obj.result as String;
var pos:int = result.lastIndexOf("Auth=");
var auth:String = result.substr(pos + 5);
txtAuth.text = StringUtil.trim(auth);
placeCall();
}
</code></pre>
<p>protected function placeCall():void
{
trace("placeCall");
var headers:Array = ["Authorization: " + "GoogleLogin auth=" + StringUtil.trim(txtAuth.text)];
var postVars:Array = [];<br />
var uri:String = "http://docs.google.com/feeds/documents/private/full?showfolders=true";
_conn.call("RESTProxy.request", _responder, uri, "get", new Array(), postVars, headers);
}</p>
<p>private function getLoginURL():String
{
var url:String = 'https://www.google.com/accounts/ClientLogin?accountType=HOSTED_OR_GOOGLE&' +
'Email=' + this.session.config.gmail + '&' +
'Passwd=' + this.session.config.password + '&service=writely'; </p>
<pre><code> return url;
}
]]>
</code></pre>
<p></p>
<p></p>
http://stackoverflow.com/questions/307048/does-anyone-know-if-the-crossdomain-policy-file-at-salesforce-com-has-changed/1434078#14340780Answer by inkiev for Does anyone know if the crossdomain policy file at salesforce.com has changed?inkiev2009-09-16T16:30:34Z2009-09-16T16:30:34Z<p>I resolve this issue accessing to the Flash Player Configuration Panel(I just recommend it in a development environment), in the "Global Security" tab, select Always Allow.</p>
<p>Regards.</p>
http://stackoverflow.com/questions/307048/does-anyone-know-if-the-crossdomain-policy-file-at-salesforce-com-has-changed/1710818#17108180Answer by flexenespannol for Does anyone know if the crossdomain policy file at salesforce.com has changed?flexenespannol2009-11-10T20:05:28Z2009-11-10T20:05:28Z<p>I found the solution to this problem </p>
<p>go here, <a href="http://community.salesforce.com/sforce/board/message?board.id=general%5Fdevelopment&message.id=35491#M35491" rel="nofollow">http://community.salesforce.com/sforce/board/message?board.id=general%5Fdevelopment&message.id=35491#M35491</a></p>