Link to home
Start Free TrialLog in
Avatar of BOBCOLIN
BOBCOLIN

asked on

CAN I KNOW HOW TO ADD THE FOLLOWING HANDLER MAPPING IN IIS6.0

HI ALL,

CAN I KNOW HOW TO ADD THE FOLLOWING HANDLER MAPPING IN IIS6.0

Request path: Reserved.ReportViewerWebControl.axd
Type: Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
Name: Reserved.ReportViewerWebControl.axd

REGARDS,
BOB
Avatar of pcsmitpra
pcsmitpra
Flag of India image

Hi Bob,

You could not add this Handler directly, First you have to convert it using the StrongName
As strong names are generated using PublicKey cryptography.  So, it is necessary to have a PublicKey as part of the assemblies manifest so implementation of  applications can then encrypt using the PrivateKey generated with a strong name key, which is essentially a very large random number, Hence, make the assembly useful.  The PublicKeyToken value is that public key.  A StrongName assembly's PublicKey token can be found with the "sn.exe" utility which comes with the .NET Framework SDK with the "-T" switch.  The "sn.exe" utility is primarily used to generate and manage strong name keys, and sign assemblies.

In Your case PublicKeyToken=b03f5f7f11d50a3a

Thanks
PcsMitPra
Avatar of BOBCOLIN
BOBCOLIN

ASKER

Thanks for reply..

can you explain me in more detail...how to go with steps.

my app is developed in .Net 3.5with  silverlight 2.0

Bob
Locate  "sn.exe" utility which comes with the .NET Framework SDK. Execute it on command prompt using -T switch and also provide the value of PublicKetToken.
Command with examples are here:
http://msdn.microsoft.com/en-us/library/k5b5tt23%28VS.80%29.aspx
Thanks for it.

where and how to add or configure this  in IIS 6.0(windows server 2003 R2 SP2).

In my server, I have only .Net 3.5 sp1 framework not visual studio.so can i know how to go in my server with this.

Bob
ASKER CERTIFIED SOLUTION
Avatar of pcsmitpra
pcsmitpra
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks