RSS for Microsoft CRM 3.0
Here it is...RSS for MS CRM
Announcing the release of sample code that allows you to use RSS, a protocol for delivery of information over the Internet, to easily access Microsoft CRM data! Microsoft CRM provides a secure, central data collection, storage, and modification tool for business data while RSS provides the transport mechanism.
While it was originally crafted for the syndication of news stories, RSS can be used for delivering other types of information as well. After information is provided in RSS format, an RSS reader application, or aggregator, dynamically retrieves and displays the information. The RSS reader periodically checks for new information and notifies you when something new and of interest to you has arrived.
Download this package to learn how you can combine Microsoft CRM and RSS technologies to receive dynamic updates to critical company business data that directly affects how you do business.
The download includes a sample Web application for accessing business data feeds from Microsoft CRM using RSS technology. You'll also find information about how to install and use the sample software, and how to dynamically retrieve and display Microsoft CRM data in commonly available RSS reader applications.
You can download this package here:
https://download.microsoft.com/download/3/2/1/32163234-b67e-491b-ae5a-8717f649baaa/CrmRssFeed.exe
Comments
Anonymous
June 22, 2006
I am having some trouble with this implementation. The link that should provide the feed gives an error, and the URL changes to the following:
http://dmpsrv3.digmap.local:5555/_common/error/errorhandler.aspx?errNum=&errMessage=CS0246%3a+The+type+or+namespace+name+'RSSServices'+could+not+be+found+(are+you+missing+a+using+directive+or+an+assembly+reference%3f)
The only thing that may be slightly different from the directions is we have our site hosted from this directory:
C:Program FilesMicrosoft CRMCRMWeb
and directions reference this directory:
c:inetpubwwwrootrss
Any help?
Thanks!Anonymous
September 25, 2006
The comment has been removedAnonymous
October 03, 2006
I am having some trouble with this implementation. The link that should provide the feed gives an error, and the URL changes to the following: http://dmpsrv3.digmap.local:5555/_common/error/errorhandler.aspx?errNum=&errMessage=CS0246%3a+The+type+or+namespace+name+'RSSServices'+could+not+be+found+(are+you+missing+a+using+directive+or+an+assembly+reference%3f) The only thing that may be slightly different from the directions is we have our site hosted from this directory: C:Program FilesMicrosoft CRMCRMWeb and directions reference this directory: c:inetpubwwwrootrss Any help? Thanks!Anonymous
January 08, 2008
The comment has been removedAnonymous
June 25, 2010
I noticed the last post regarding this issue was in 2006, 4 years later here is the fix (my last client on v3.0 needs this function) In the .CS files, change: this.Url = "http://localhost:/mscrmservices/2006/crmservice.asmx"; to this.Url = "http://localhost:5555/mscrmservices/2006/crmservice.asmx"; (or whatever port) "make" again, IISRESET, bob's your uncle