I
am new to classes. I have a namespace called "SSRS" and a class called "CustomReportCredentials". My class file is located in a folder called "Classes" in the root dir. I am trying to follow the instructions fromhttp://msdn.microsoft.com/en-us/library/ms251661(v=vs.100).aspx
but I am not sure the last value should be for the key.
This is the error I get:
The type 'SSRS.CustomReportCredentials, Classes' could not be found
jeffrijo
Member
22 Points
27 Posts
web.config ReportViewerServerConnection key values???
Apr 12, 2012 12:47 PM|LINK
How do I add a reference to a class for the "ReportViewerServerConnection" in the web.config file?
<addkey="ReportViewerServerConnection"value="SSRS.CustomReportCredentials, ???" />
I am new to classes. I have a namespace called "SSRS" and a class called "CustomReportCredentials". My class file is located in a folder called "Classes" in the root dir. I am trying to follow the instructions fromhttp://msdn.microsoft.com/en-us/library/ms251661(v=vs.100).aspx but I am not sure the last value should be for the key.
This is the error I get:
The type 'SSRS.CustomReportCredentials, Classes' could not be found
Thanks,
Joseph
------------------------------------------------------------------------------------------
Please give the name of the assembly instead of Classes. The assembly can be found in the bin directory:
-------------------------------------------------------------------------------------------In the bin directory, I see KOK.dll and KOK.pdb (KOK is the name of my project). I tried this:
addkey="ReportViewerServerConnection"value="SSRS.CustomReportCredentials, KOK" />
and go this error:
The type 'SSRS.CustomReportCredentials, KOK' does not implement IReportServerConnection