This topic and its replies were posted before the current version of LEADTOOLS was released and may no longer be applicable.
#1
Posted
:
Monday, September 6, 2010 2:00:49 AM(UTC)
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.
#2
Posted
:
Monday, September 6, 2010 4:02:49 AM(UTC)
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)
Groups: Registered
Posts: 2
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.