Reputation: 15
How do i call a .net http handler from a c++ application?
Thanks, subs
Upvotes: 0
Views: 778
Reputation: 1063413
Generally the most convenient way of doing this is going to be with a plain old-fashioned HTTP request to the associated url; so then the question becomes "how do I make an HTTP request from c++?"
Luckily: How do you make a HTTP request with C++?
Upvotes: 1