SSRS 2017 Delivery Extension Deployment

JD Brown 41 Reputation points
2020-09-10T14:24:55.757+00:00

In SSRS 2008 to 2012 the code block for permissions in rssrvpolicy.config is below. Does anyone know what code block is used in SSRS 2017?

<CodeGroup class="UnionCodeGroup"

version="1"
PermissionSetName="FullTrust"
Name="PrinterDeliveryCodeGroup"
Description="Code group for my delivery extension">
<IMembershipCondition class="UrlMembershipCondition"
version="1"
Url="C:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\ReportServer\bin\Microsoft.Samples.ReportingServices.CustomDeliverySample.dll"
/>

</CodeGroup

Blockquote

SQL Server Reporting Services
SQL Server Reporting Services
A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
2,860 questions
0 comments No comments
{count} votes

Accepted answer
  1. ZoeHui-MSFT 34,996 Reputation points
    2020-09-11T02:04:22.573+00:00

    Hi @JD Brown

    I compared my rssrvpolicy.config 2008 and rssrvpolicy.config 2017, it seems has the same settings.

    So I think the code block used in SSRS 2017 is the same as SSRS2008.

    Here are two official documentations for your reference.

    Hope it can be useful to you.

    https://learn.microsoft.com/en-us/sql/reporting-services/extensions/secure-development/code-access-security-in-reporting-services?view=sql-server-ver15

    https://learn.microsoft.com/en-us/sql/reporting-services/extensions/secure-development/using-reporting-services-security-policy-files?view=sql-server-ver15

    Regards,

    Zoe


    If the answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


1 additional answer

Sort by: Most helpful
  1. JD Brown 41 Reputation points
    2020-09-17T12:55:18.247+00:00

    Thanks for your assistance Zoehui

    0 comments No comments