Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 Development Tools
 Reporting Services Development
 Rendering Extenstion

Author  Topic 

JulioDiaz
Starting Member

2 Posts

Posted - 2009-09-18 : 14:19:40
Hi guys,

I built a custom rendering extension based on this article written by James Yip ([url]http://msdn.microsoft.com/en-us/magazine/cc163840.aspx[/url]); I implemented IRenderingExtension and IExtension, proceeded to register the extension in rsreportserver.config

<Extension Name="CUSTOM_RENDERER"
Type="Rex.Rendering.CustomRenderer,
Rex.Rendering.CustomRenderer" />

and rssrvpolicy.config

<CodeGroup class="UnionCodeGroup" version="1"
PermissionSetName="FullTrust" Name="Custom Render"
Description="This code group grants Custom Renderer code full trust.">
<IMembershipCondition class="UrlMembershipCondition" version="1"
Url="C:\Program Files\Microsoft SQL Server\MSSQL.3\Reporting
Services\ReportServer\bin\Rex.Rendering.CustomRenderer.dll" />
</CodeGroup>

When I start reporting services I get this error:

Report server extension CustomerRenderer does not implement IExtension interface.

As I previously indicated I implemented this interface, and confirmed it by even decompiling the assembly. Does anybody have an idea about what's causing this?

Reagrds and thanks in advance,
Julio Diaz
   

- Advertisement -