Hi guys,
i hope you can help me with my head-against-the-wall-bouncing-problem. First the scenario:
winlogon.exe (with customized GINA) calls a win32-DLL which calls to my C++-DLL (ummaged C / managed C++ bridge), which references my HttpWebRequest-C#-DLL which calls the Http-Server-address.
If i run my HttpWebRequest class standalone from a testApp.exe, AFTER windows logon, to call the remote Http-Server it works. But if try to call the server (above described scenario) BEFORE logged on to windows this creation fails with a System.Configur ation.Configura tionErrorsExcep tion:
HttpWebRequest req = new (HttpWebRequest ) WebRequest.Crea te(server-uri);
My HttpWebRequest-C#-DLL does not lie in the winlogon.exe (system32) application folder, but it is referenceable via GAC. Is this a permission problem with machine.config ? How can i fix it ? Can i provide an app.config to my C#-DLL with permission settings to allow the Http-Server-Call?
Thanks in advance and
greatings from Bavaria
Tobias
i hope you can help me with my head-against-the-wall-bouncing-problem. First the scenario:
winlogon.exe (with customized GINA) calls a win32-DLL which calls to my C++-DLL (ummaged C / managed C++ bridge), which references my HttpWebRequest-C#-DLL which calls the Http-Server-address.
If i run my HttpWebRequest class standalone from a testApp.exe, AFTER windows logon, to call the remote Http-Server it works. But if try to call the server (above described scenario) BEFORE logged on to windows this creation fails with a System.Configur ation.Configura tionErrorsExcep tion:
HttpWebRequest req = new (HttpWebRequest ) WebRequest.Crea te(server-uri);
My HttpWebRequest-C#-DLL does not lie in the winlogon.exe (system32) application folder, but it is referenceable via GAC. Is this a permission problem with machine.config ? How can i fix it ? Can i provide an app.config to my C#-DLL with permission settings to allow the Http-Server-Call?
Thanks in advance and
greatings from Bavaria
Tobias
Comment