Ask a Question related to ASP.NET Web Services, Design and Development.
-
Will #1
dllimport and web services
I have an C#/ASP.Net 1.1 Web Service that has an exposed Web Method
that uses an unmanaged DLL via the DllImport Attribute. Is one copy of
the DLL loaded per call to the Web Method, or does ASP.Net use the same
instance of the DLL for every call to the Web Method? My guess is that
due to the "static" keyword required by the DllImport attribute
indicates that only one copy is used for all requests.
The creator of the DLL has doubts that it is thread-safe, and would
like me to ensure that a new copy of the DLL is loaded with each call
to the web method. Is there a way to force the web service to use a
fresh copy?
The Web Service runs on a Win2k Server PC under IIS 5.
Thanks,
Will.
Will Guest
-
DllImport to unmanaged
Hello NG From a Web Project (C#, XP-box) I want to call unmanaged code : so private static extern int FirstFunc(); BUT when I in my... -
DllImport Error
Hello friends, I need to load an unmanaged dll(which i wrote for license control) from system32 folder and then my asp. net project will read the... -
dllimport call in aspnet application makes the application hangs
As our application design requires us to use one of the validation API engine which was written on C(so basically all I have is a dll) and I tested... -
DllImport and WebMethod and STAThread
I'm trying to use a 3rd party DLL, which I have no control over, in my WebService (written in C#). However, every time my WebService tries to call... -
Networking Services - services.msc
Hi, I'd like to know which services are responsible for home networking. i.e. which services do I need to be running for others to have access...



Reply With Quote

