I was getting the above error while uninstalling CRM 2011 Server beta.

Uninstalling Microsoft Dynamics CRM 2011 for Microsoft Office Outlook before uninstalling Server resolved the issue.
I was getting the above error while uninstalling CRM 2011 Server beta.

Uninstalling Microsoft Dynamics CRM 2011 for Microsoft Office Outlook before uninstalling Server resolved the issue.
We had one of our web application deployed inside ISV folder in CRM 2011. We were showing one of the aspx pages in it inside an IFrame of a form.
First we specified the relative url like this for URL field in CRM form
/ISV/myWebApplication/Default.aspx
However on form we were getting page not found error.
Using developer tools, we found out that it was taking the url (src) for the iframe as
/contoso/isv/myWebApplication/Default.aspx
It was appending the organization name to it.
In CRM 4 this wasn’t the case.
Then we gave the absolute url for URL field in IFrame.
http://servername/isv/myWebApplication/Default.aspx.
However this time also we got page not found error. The url that it was using was
http://servername/contoso/isv/myWebApplication/Default.aspx i.e. again appending orgname to it.
The way we got it working was to define the src of the Iframe dynamically in the form onload event’s JavaScript.
function IframeSrc(){
crmForm.all.IFRAME_Map.src=”/ISV/ myWebApplication / Default.aspx”;
}
Hope it helps !
.
I got that error while creating a new web application in SharePoint 2010. Actually recently we had changed the password of the administrator account. However we had to follow this extra step to get the things working properly.
stsadm -o updatefarmcredentials -userlogin <domain\username> –password <newpassword>
http://technet.microsoft.com/en-us/library/cc263417(office.12).aspx
Bye..
Check out these wonderful tools to lear Linq and oData Query
Bye.
Hi,
While searching for how to use Organization.svc within a silverlight application, i found these 2 helpful posts
http://msdn.microsoft.com/en-us/library/gg594452.aspx#Y1145
http://erikpool.blogspot.com/2010_12_01_archive.html
The other easier option that i can think of is creating a custom wcf service that uses Organization.svc and using this custom wcf service in the silverlight application.
Download the solution here
http://www.box.net/shared/pgditixq1o
Bye.
After restoring the database to the server, I got the following error while importing the organization using the Deployment Manager

The build version of the database that I was importing was different than the build version of the database of the organization that I already had there.
http://support.microsoft.com/kb/946594 ( to find the build version of the database)
The one we were importing had higher build version.
Than we installed the update for Microsoft Dynamics CRM 2011 Release Candidate
http://support.microsoft.com/kb/2461082
Restarted the server and was able to import the organization successfully.
Hope it helps.