Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Driver call Web Service

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

like image 417
Codeffect Avatar asked Nov 23 '25 00:11

Codeffect


1 Answers

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.

like image 153
Preet Sangha Avatar answered Nov 25 '25 15:11

Preet Sangha