views:

22

answers:

1

Can a driver call a C# web service or any other language?

+3  A: 

Technically yes it can. Its just a call via the protocol that the service is using. However since you're in kernel mode, certain USER mode libraries may not be available to you so you may have to code around these yourself.

For example if the service is running on a HTTP endpoint, then you can use raw sockets to access this.

How difficult this is depends on the platform the driver is in.

Preet Sangha