1
Answer

Getting error as "Error while loading plugin symbols"

santo jd

santo jd

14y
10.7k
1
Hello all,

I have written a C# dll and trying to use that in unmanaged C++ code.
I got compiled properly but while executing C++ code I think C# dll is not getting loaded and I am getting following error:
"Error while  loading plugin symbols"

I am a beginner for C#.

Please guide me.

Thanks in advance.


San.

Answers (1)
2
Thiyagarajan E

Thiyagarajan E

NA 1.1k 6.8k 8y
I found the Solution:
Finf the Report web config in the below path :
C:\Program Files\Microsoft SQL Server\MSRS12.MSSQLSERVER\Reporting Services\ReportManager\web .config
Replace or add below line: to set admin credential for all users to access the report.

<authentication mode="Windows" /> // Authentication mode to be set to windows

<identity impersonate="true " userName="UserName" password="Password"/> // identity impersonate to be set to true and User name & Password of the SQL Server administrator should be added.