Cross-domain iframe requests are blocked in Office 365 SharePoint Online.


Hi,

I was currently working on some integration tasks between SharePoint 2013 online and CRM 2011 online. Here we wanted to use one of the search pages configured in SharePoint 2013 online inside an iframe of Case form in CRM 2011 online.

SharePoint 2013 online and CRM 2011 online were part of different Office 365 domain. After specifying the url for the iframe we got the following error

Found the following kb article

http://support.microsoft.com/kb/2795602

Then tried hosting the SharePoint 2010 online search page that is part of same domain in which CRM 2011 online is. That worked properly.

Hope it helps.

Microsoft Dynamics CRM Compatibility List


Hi,

Found this article that lists the minimum version of products compatible with Microsoft Dynamics CRM 4.0 and 2011.

Do check it out

http://support.microsoft.com/kb/2669061

Bye.

 

 

JavaScript Web Resource issue in CRM 2011 after installing Update Rollup 10


Hi,

We recently installed Update Rollup 10 in our development environment and we started getting the following alert message in our JavaScript WebResource.

“You have exceeded the maximum number of 200o characters in this field; it will be truncated”

However it allows us to save the web resource properly after we close (cancel) the popup.

Check this out

http://social.microsoft.com/Forums/en-US/crmdevelopment/thread/7f1afca5-004e-4780-9bbc-a9d6c3109c41

Bye.

 

TimeoutException: The request channel timed out while waiting for a reply after 00:00:59.7350618. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout.


Hi,

I was getting the above error while working with large number of records using OrganizationServiceProxy in a console application.

Increasing the value for the timeout property resolved the issue.

// set the binding timeout to 20 minute (default is 2 minutes)

organizationProxy.Timeout = new
TimeSpan(0, 20, 0);

Bye.

Advertisements

Fixed – AggregateQueryRecordLimit exceeded. Cannot perform this operation.


Hi,

I was getting the above error in my RetrieveMultiple call in case if the number of records returned were more than 50000.

This limit is governed by ‘AggregrateQueryRecordLimit’ column value of Deployment Properties table in MSCRM_CONFIG database.

Updating it resolved the issue for me. (Remember this is unsupported customization)

 

update DeploymentProperties

set IntColumn = 100000

where ColumnName = ‘AggregateQueryRecordLimit’

 

Hope it helps.

Advertisements

HTTP Error 404.15 – Not FoundThe request filtering module is configured to deny a request where the query string is too long. Exception type: CrmSecurityException Exception message: Could not find GUID for : server$ with SearchFilter: samAccountName


Hi,

Recently got the above error while trying to open the CRM web application. It was because the password for the account which was being used to run CRM services and CRM App Pool was recently changed.

Have a look at this article as well.

http://www.kevinholland.net/professional/crm/crm-4-0-update-rollup-18-gotcha

Bye.