keyongtech


  keyongtech > dotnet.framework.aspnet.* > dotnet.framework.aspnet.main > 12/2003

 #1  
12-01-03, 04:30 PM
Manuel Lopez
Hello,

I have a Web Project (UserControls.dll) with some user controls that
is shared by many asp.net web applicattions.

What we do is copy UserControls.dll to all the applications bin
folders an this works correctly.

We want to have this shared code in the GAC.

Wit other non-web projects we create a snk file, add it to the project
and compile. Later we register this dll manually in the GAC.

I have been trying to do this with a web project , and all the time I
get an error saying that it cannot read the snk file.

Is it possible to strong name the generated dll of a web project?

Thanks in Advance.

Manuel
 #2  
12-01-03, 05:31 PM
Chris Jackson
Yes it is, but with ASP.NET there are two places where a binary is built.
You may have to put the strong name in the temporary directory where things
are built:

c:\documents and
settings\<userName>\VSWebCache\<machineName>\<appl icationName>
 #3  
12-01-03, 05:49 PM
Manuel Lopez
Hello Chris,

Thanks for the reply.

Our problem is that we cannot compile our web project with
the user controls when we add a snk file and reference it
from Assembly file.

It seems as if you cannot use then with web projects.


>-----Original Message-----
>Yes it is, but with ASP.NET there are two places where a

binary is built.
>You may have to put the strong name in the temporary

directory where things
>are built:
>
>c:\documents and
>settings\<userName>\VSWebCache\<machineName>\<app licationN

ame>
>>--

>Chris Jackson
>Software Engineer
>Microsoft MVP - Windows Client
>Windows XP Associate Expert
>--
>More people read the newsgroups than read my email.
>Reply to the newsgroup for a faster response.
>(Control-G using Outlook Express)
>--
>
>"Manuel Lopez" <mcpollo> wrote in message
>news:5557

controls that
>> is shared by many asp.net web applicattions.
>>
>> What we do is copy UserControls.dll to all the

applications bin
>> folders an this works correctly.
>>
>> We want to have this shared code in the GAC.
>>
>> Wit other non-web projects we create a snk file, add it

to the project
>> and compile. Later we register this dll manually in the

GAC.
>>
>> I have been trying to do this with a web project , and

all the time I
>> get an error saying that it cannot read the snk file.
>>
>> Is it possible to strong name the generated dll of a

web project?
[..]
 #4  
12-01-03, 07:47 PM
Chris Jackson
I may be missing what you are asking here. Are you trying to compile the
project you are strong naming and failing? If that is the case, then you
need to move the SNK file. The error that is generated should tell you the
directory it is searching in and failing to find it. Have you compiled and
strong named an assembly, and having trouble referencing it? You should
definitely be able to reference a strong named file - that also works. You
just need to make sure it is in the search path. What is the error that you
are seeing?
 #5  
12-02-03, 09:28 AM
Manuel Lopez
Hello Again Chris,

My problem is that i canīt generate the strong name "web"
project.

The snk file is the at the same level of of vbproj file,
and in assembly i have :

<Assembly: AssemblyKeyFile("..\..\Keys.snk")>

I have tried copying the snk file to the bin directory,
changing the path and it just doesnīt work for a "Web"
project.

Maybe you just canīt strong name a "Web" through Visual
Studio.

Thanks

>-----Original Message-----
>I may be missing what you are asking here. Are you trying

to compile the
>project you are strong naming and failing? If that is the

case, then you
>need to move the SNK file. The error that is generated

should tell you the
>directory it is searching in and failing to find it. Have

you compiled and
>strong named an assembly, and having trouble referencing

it? You should
>definitely be able to reference a strong named file -

that also works. You
>just need to make sure it is in the search path. What is

the error that you
>are seeing?
>
>--
>Chris Jackson
>Software Engineer
>Microsoft MVP - Windows Client
>Windows XP Associate Expert
>--
>More people read the newsgroups than read my email.
>Reply to the newsgroup for a faster response.
>(Control-G using Outlook Express)
>--
>
>"Manuel Lopez" <anonymous>

wrote in message
[..]
 #6  
12-02-03, 04:34 PM
Chris Jackson
You can strong name it, you just have to manually drag the SNK file to the
VSWebCache folder (as indicated in my first post). VS.NET does not provide
the mechanisms, though the error message should help you locate the proper
directory. The folder in inetpub is NOT where it goes. I have done it
before, I just don't have any on this machine to give you the exact
location, but I promise you that it works.
 #7  
12-02-03, 09:12 PM
Chris Jackson
I guess I should point out, for the sake of completeness, that this may not
be the best idea. The reason I have strong named ASP.NET assemblies is
basically just to see if it can be done. (Well, FXCop was barking...)
However, note that the model for ASP.NET is not *complete* compilation, but
rather compilation of the code behind, followed by JIT compilation of the
declarative ASPX page. So, your derived forms won't actually exist in the
strong named assembly. What you should consider is developing a class
library of classes that derive from the UserControl class to provide the
basic functionality that you need, and then provide declarative pages whose
code behind inherits from this. This just occurred to me, so I figured I
would add this appendix...
Similar Threads
Strong naming assembly in an vb aspx project

I put my StrongNameKey.snk in my root foler. in my assemblyinfo.vb I have: <Assembly: AssemblyKeyFileAttribute("StrongNameKey.snk")> I get the error "Error creating...

Strong Naming an Assembly using the Project settings in VS2005

You get warnings when compiling a project that is using the AssemblyKeyFile attribute. It recommends changing this to use the compiler option. I read about this and the...

strong naming an assembly that has non-strong named references?

How can I strong name my assembly if it references 3rd part non-strong named dlls? I just want my part strong named--I don't care about their part. Thanks, Shane

Strong Naming

Hi, I have an ASP.NET app. I wrote some assemblies in VB.NET which my ASP app calls. I want to Strong Name these assemblies. Anyone know any good sites that goes...

Strong Naming

Hi, I have an ASP.NET app. I wrote some assemblies in VB.NET which my ASP app calls. I want to Strong Name these assemblies. Anyone know any good sites that goes...


All times are GMT. The time now is 07:32 AM. | Privacy Policy