How to: Send a Sharing Invitation for an RSS Feed

Outlook Developer Reference

Sharing messages, including sharing invitations, sharing requests, and sharing responses, are represented in Microsoft Office Outlook 2007 by the SharingItem object. The CreateSharingItem method of the NameSpace object is used to create SharingItem objects for sharing invitations and sharing requests. Sharing responses are automatically created by Outlook when the Reply or ReplyAll methods of a SharingItem that represents a sharing invitation or sharing request are called.

This sample uses the OpenSharingItem method to create a SharingItem that represents a sharing invitation for a Really Simple Syndication (RSS) feed. Once shared, the recipient can then use the OpenSharedFolder method of the NameSpace object or the OpenSharedFolder method of the SharingItem object to open the RSS feed.

  1. The sample first creates a NameSpace object reference to the MAPI namespace.
  2. It then uses the CreateSharingItem method to create a new SharingItem object, using the URI of the RSS feed to establish the sharing context used by the SharingItem.
  3. Finally, the Add method for the Recipients collection of the newly created SharingItem object is called to add the specified recipient and the Send method is used to send the SharingItem.
  Public Sub ShareRSSByInvitation()
    Dim oNamespace As NameSpace
    Dim sRSSurl As String
    Dim oSharingItem As SharingItem
    
    On Error GoTo ErrRoutine
    
        ' Specify the RSS feed URL for which sharing is to
        ' be requested.
        sRSSurl = "feed://example.com/rss.xml"
        
        ' Get a reference to the MAPI namespace.
        Set oNamespace = Application.GetNamespace("MAPI")
        
        ' Create a new sharing request, using the RSS feed
        ' URL to establish sharing context.
        Set oSharingItem = oNamespace.CreateSharingItem(sRSSurl)
        
        ' Add a recipient to the Recipients collection of
        ' the sharing invitation.
        oSharingItem.Recipients.Add "someone@example.com"
        
        ' Send the sharing invitation.
        oSharingItem.Send
        
EndRoutine:
    On Error GoTo 0
    Set oSharingItem = Nothing
    Set oFolder = Nothing
    Set oNamespace = Nothing
Exit Sub

ErrRoutine: Select Case Err.Number Case 287 ' &H0000011F ' The user denied access to the Address Book. ' This error occurs if the code is run by an ' untrusted application, and the user chose not to ' allow access. MsgBox "Access to Outlook was denied by the user.", _ vbOKOnly, _ Err.Number & " - " & Err.Source Case -313393143 ' &HED520009 ' This error typically occurs if you set the ' AllowWriteAccess property to true for a ' default folder. MsgBox Err.Description, _ vbOKOnly, _ Err.Number & " - " & Err.Source Case -2147467259 ' &H80004005 ' This error typically occurs if the SharingItem ' cannot be sent because of incorrect or ' conflicting property settings. MsgBox Err.Description, _ vbOKOnly, _ Err.Number & " - " & Err.Source Case Else ' Any other error that may occur. MsgBox Err.Description, _ vbOKOnly, _ Err.Number & " - " & Err.Source End Select

GoTo EndRoutine

End Sub