NetworkInformationException when calling GetAllNetworkInterfaces froma windows service

S

sebastian.dau

Hi News Group,

I'm writing some code that discovers network interfaces and devices.
It works correct when executed in a console application (managed)
but it fails when executed from a managed windows service.
The service is configured to run as local service so I guess that is
enough permission to perform the operations.


Does anybody know how to discover network info from a windows service
and why my code does fail ???


See stack for info.


Even though it's managed code I know that the underlying function is
pure win api and the source of the error.


System.Net.NetworkInformation.NetworkInformationException: The data
is
invalid
at
System.Net.NetworkInformation.SystemNetworkInterface.GetAdaptersAddresses
(AddressFamily family, FixedInfo fixedInfo)
at
System.Net.NetworkInformation.SystemNetworkInterface.PostWin2KGetNetworkInt­
erfaces
(AddressFamily family)
at
System.Net.NetworkInformation.SystemNetworkInterface.GetNetworkInterfaces
(AddressFamily family)
at
System.Net.NetworkInformation.SystemNetworkInterface.GetNetworkInterfaces
()
at
System.Net.NetworkInformation.NetworkInterface.GetAllNetworkInterfaces
()
 
S

sebastian.dau

Hi News Group,

I'm writing some code that discovers network interfaces and devices.
It works correct when executed in a console application (managed)
but it fails when executed from a managed windows service.
The service is configured to run as local service so I guess that is
enough permission to perform the operations.

Does anybody know how to discover network info from a windows service
and why my code does fail ???

See stack for info.

Even though it's managed code I know that the underlying function is
pure win api and the source of the error.

System.Net.NetworkInformation.NetworkInformationException: The data
is
invalid
   at
System.Net.NetworkInformation.SystemNetworkInterface.GetAdaptersAddresses
(AddressFamily family, FixedInfo fixedInfo)
   at
System.Net.NetworkInformation.SystemNetworkInterface.PostWin2KGetNetworkInt­­
erfaces
(AddressFamily family)
   at
System.Net.NetworkInformation.SystemNetworkInterface.GetNetworkInterfaces
(AddressFamily family)
   at
System.Net.NetworkInformation.SystemNetworkInterface.GetNetworkInterfaces
()
   at
System.Net.NetworkInformation.NetworkInterface.GetAllNetworkInterfaces
()


Hello NG,

finally I got it solved. My observations where a little missleading
here.
I figured out that one of our MSI's did include deployment of
iphlpapi.dll.
When that lib file is taken from an WinXp system and deployed and used
on Win7 the upper function failes because of incompatibility.
Solutution is to remove local copies of the lib and make the system
use the one that comes with the OS.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top