473,566 Members | 3,255 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

The check of the signature failed

Hi all,

Does someone know what this mean:
The check of the signature failed for assembly
'Infragistics.W ebUI.UltraWebGr id.v2'

I also did a post to Infragistics but maybe this is a general problem
and someone can tell me about it?

Richard Loupatty

MIO Development
the Netherlands
Nov 18 '05 #1
6 4061
Hi Richard,

From your description, you encountered the "check for the signature failed
for assembly" error when calling a certain assembly in your asp.net web
application, yes?

Based on my research, this problem is likely caused by refererncing a
delaysigned assembly which is strong-named but haven't contained complete
signature.(This is mostly used for the dev version of a component be fore
it is released or shipped). Is the assembly you used
("Infragistics. WebUI") a 3rd-party one ? I think you can create a simple
winform application and reference this dll to see whether the problem also
occured. If also occurr, then I think you have the following choices:
1. Ask the assembly's developers for release version which has complete
signature contained. This is most recommended.

2. Still use this delaysigned one, but you need to turns off verification
for this assembly using the following command:
sn ¨CVr myAssembly.dll
But this is only for developing, if you want to use the assembly in your
production, I strongly recommend that you choose the #1.

In addition, here is the reference in MSDN which has detailedly describe
the delaysign for an assembly:
#Delay Signing an Assembly
http://msdn.microsoft.com/library/en...yedsigningasse
mbly.asp?frame= true

HOpe also helps. Thanks.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx

Nov 18 '05 #2
Steven,

Got the same aswer from Infragistics. It's a strong-name issue.

But the problem only occurs at my provider (shared hosting) when I ftp
the files.

Deploying it with a simple copy of all files to several test-servers
didn't give the error.
What could be the difference ?

Even when putting the following in the web.config doesn't solve the problem
<!-- This reference is OK, it specifies the full name of WebGrid. -->
<add assembly="Infra gistics.WebUI.U ltraWebGrid.v2, Version=2.0.500 0.1,
Culture=neutral , PublicKeyToken= 7dd5c3163f2cd0c b" />

"Steven Cheng[MSFT]" <v-******@online.m icrosoft.com> schreef in bericht
news:30******** ******@cpmsftng xa06.phx.gbl...
Hi Richard,

From your description, you encountered the "check for the signature failed
for assembly" error when calling a certain assembly in your asp.net web
application, yes?

Based on my research, this problem is likely caused by refererncing a
delaysigned assembly which is strong-named but haven't contained complete
signature.(This is mostly used for the dev version of a component be fore
it is released or shipped). Is the assembly you used
("Infragistics. WebUI") a 3rd-party one ? I think you can create a simple
winform application and reference this dll to see whether the problem also
occured. If also occurr, then I think you have the following choices:
1. Ask the assembly's developers for release version which has complete
signature contained. This is most recommended.

2. Still use this delaysigned one, but you need to turns off verification
for this assembly using the following command:
sn ¨CVr myAssembly.dll
But this is only for developing, if you want to use the assembly in your
production, I strongly recommend that you choose the #1.

In addition, here is the reference in MSDN which has detailedly describe
the delaysign for an assembly:
#Delay Signing an Assembly
http://msdn.microsoft.com/library/en...yedsigningasse mbly.asp?frame= true

HOpe also helps. Thanks.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx

Nov 18 '05 #3
Hi Richard,

I'm not sure whether you've turn off the verification off the certain
assembly on the server where it worked well. But as I mentioned in the last
reply, a delaysign assembly has no private key info in the meta data. So if
you configured it in configure file and use it as a Strong-named assembly,
it'll occur certain errors.

And this error can be disabled by turn off the verification for the
assembly by
sn ¨CVr myAssembly.dll
as I mentioned.

So I think you can have a check to see whether you've turn this off. If
not, turn off the verification and test again to see whether the error
still occurs. Thanks.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx
Nov 18 '05 #4
It's clear to me now, but still doesn't work.
Could it be something at the provider's ?

"Steven Cheng[MSFT]" <v-******@online.m icrosoft.com> schreef in bericht
news:iY******** ******@cpmsftng xa10.phx.gbl...
Hi Richard,

I'm not sure whether you've turn off the verification off the certain
assembly on the server where it worked well. But as I mentioned in the last reply, a delaysign assembly has no private key info in the meta data. So if you configured it in configure file and use it as a Strong-named assembly,
it'll occur certain errors.

And this error can be disabled by turn off the verification for the
assembly by
sn ¨CVr myAssembly.dll
as I mentioned.

So I think you can have a check to see whether you've turn this off. If
not, turn off the verification and test again to see whether the error
still occurs. Thanks.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx

Nov 18 '05 #5
Hi Richard,

I'm not sure on the Provider but this is a potential cause. Also, it is it
possbile that you ask a release one( not compiled as delaysign) from the
provider? If so, I think that'll be nice. Do you think so?

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx

Nov 18 '05 #6
Steven,

Ok,

I installed a new version of Infragistics and it seems to work now.

But I still don't understand why it didn't work out with the old files.
if it's a 1 to 1 copy to the provider
Thanks for spending time on this !!

"Steven Cheng[MSFT]" <v-******@online.m icrosoft.com> schreef in bericht
news:NQ******** ******@cpmsftng xa10.phx.gbl...
Hi Richard,

I'm not sure on the Provider but this is a potential cause. Also, it is it
possbile that you ask a release one( not compiled as delaysign) from the
provider? If so, I think that'll be nice. Do you think so?

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx

Nov 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

12
10668
by: Kim | last post by:
I have a .NET service sending mails using CDOEX. These mails I need to sign. I got a tip that I should use CAPICOM. That worked fine sending a mail with signature. BUT the problem is that I have to type the password for my certificate every time my program signs a mail :o( My program is a windows service running on a server so typing...
5
1677
by: Steven T. Hatton | last post by:
If you happen to have Accelerated C++ by Koenig and Moo, and haven't gotten around to reading it, I suggest you count the pages between page 18 and page 51. I came up with zero. This is very disappointing since I have been intending to read the book for some time now. I finally picked it up with the expectation that I would breeze through...
1
1479
by: martijn | last post by:
H! I'm busy with testing python and now i'm trying to check if a url makes a forward to a other location with the same content. So it will be possible to scan unique website's. I already made these checks: the html forward: <meta http-equiv="refresh" content="0;URL=othersite.com">
6
337
by: Richard Loupatty | last post by:
Hi all, Does someone know what this mean: The check of the signature failed for assembly 'Infragistics.WebUI.UltraWebGrid.v2' I also did a post to Infragistics but maybe this is a general problem and someone can tell me about it?
0
1099
by: Fabricio de Reuter Sperandio | last post by:
Hi everyone, could you help me with this error? The check of the signature failed for assembly 'NHibernate' Its works perfectly on my develop machine but after upload to the host server this error comes up. Thank you,
0
2827
by: Michael R. Pierotti | last post by:
Has anyone seen this error before when trying to make the install on a program. ------ Starting pre-build validation for project 'HafaSMPPInstall' ------ WARNING: Unable to find dependency 'mscorlib' (Signature='B77A5C561934E089' Version='1.0.5000.0') of assembly 'Devshock.Protocol.SmppClient.DLL' WARNING: Unable to find dependency...
3
2205
by: Karsten W. | last post by:
Hello, with the zope.interface module I can query if my class claims to implement my API. This is what the method implementedBy is for. However, I find myself constantly changing the API and I am looking for a more reliable way to check my implementation classes. Is there a way to check if at least all function names of the API are...
0
2385
by: Chris Mullins [MVP - C#] | last post by:
I've got a WCF Service hosted in IIS running on a Win2k3 machine. The service is built with Beta 2 of Orcas. The service is configured for Message Security, using the UserNameToken provider. Users are authenticated using the ASP.Net Membership provider, and authorized using the ASP.NET role provider. The server has a self-signed certificate...
0
1437
by: steven acer | last post by:
Hi i'm trying to sign a file and verify its signature with a DSA key. But i don't know if i'm doing it the right way !. I tried 2 different ways but i either got an error or simply the verification just failed. Here's what i did in the 1st attempt i generated the hash for the file and then tried to sign that hash by chunks of 20 bytes (...
0
7673
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7893
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8109
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
6263
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5485
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5213
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3626
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1202
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
926
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.