Welcome Guest! To enable all features, please Login or Register.

Notification

Icon
Error

Options
View
Last Go to last post Unread Go to first unread post
#1 Posted : Monday, September 6, 2010 2:00:49 AM(UTC)

Dirk  
Dirk

Groups: Registered
Posts: 2


I have an application on an offline (not web access) Server. If I start the C# application the application hang exactly 90 seconds before the form with a leadtools RasterImageViewer is shown.
I think this looks like a timeout by an internet access from leadtools. How can I disable this access.
 

Try the latest version of LEADTOOLS for free for 60 days by downloading the evaluation: https://www.leadtools.com/downloads

Wanna join the discussion? Login to your LEADTOOLS Support accountor Register a new forum account.

#2 Posted : Monday, September 6, 2010 4:02:49 AM(UTC)

Adnan Ismail  
Guest

Groups: Guests
Posts: 3,022

Was thanked: 2 time(s) in 2 post(s)

The delay is most likely not caused directly by our DLLs, but caused by the .NET framework trying to verify the digital signature of our DLLs.
Adding the following code to the <ApplicationName>.exe.config file for the EXE application should solve the issue and cause initial loading of our DLLs to be much faster:
<configuration>
    <runtime>
        <generatePublisherEvidence enabled="false"/>
    </runtime>
</configuration>

This is explained in the following Microsoft article in the "More Information" section:
http://support.microsoft.com/kb/936707
 
#3 Posted : Monday, September 6, 2010 10:17:49 PM(UTC)

Dirk  
Dirk

Groups: Registered
Posts: 2


That´s it! Thank you!
 
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Powered by YAF.NET | YAF.NET © 2003-2024, Yet Another Forum.NET
This page was generated in 0.325 seconds.