Can a driver call a C# web service or any other language?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.