dll component services and strong names
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
my question is, if u want to create a component service, u need to register your dll with RegSvcs .exe. Before u can do this, u must make sure that your dll has strong name: signed by private key. Now, the simplest way is to use "sn" tool: sn - k c:\SimpleKeyPair.snk then, register server by: regsvcs c:\MyTransactionServ.dll However, is there any way I can use my private key from my web server certificate or personal certificate obtained from versign? thanx!