how to call a Webservice from C++ project? [closed] - c++

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I have one C++ project, I dont know how to call APIs from the projects and take response on that. is there any packages or documentation available for the implementation?
Please help me! Thanks in advance.

i have found one solution .if use cpprestsdk from nuget we can able to call apis from c++ project.

Related

How to write a build script [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I want to write a build script which can compile the code, run the unit tests and produce a nuget package.
Can anyone please help or point me to the right direction.
Thanks.
Since you mentioned nuget, I presume you use C#. I had the best experience with Cake for build scripts.
Cake - Home
But seriously, any build system would do, goole is your friend for this. I would also advise against using powershell for this sort of job.

OpenCV (or similar library) in Go [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I intend to use OpenCV for a project in which I've already built the server in Go. However, OpenCV doesn't have a Go API, so what's the best solution? Call a c++ program with .exec, use swig, find another library to do computer vision?
Thanks.
Edit: I want to maximize performance, and I'm ok with C++.
SWIG is certainly a viable option.
You can also search for a Go binding to OpenCV. For example: https://github.com/lazywei/go-opencv

If I wanted to create a GUI for wget in c++.. where would I start? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Question is the title.
I'm sorry, I suppose I need to specify.
I'm not sure what commands or what code to use to actually link wget to a gui.
I have two weeks until classes start and I just want to Create something.
Maybe here and here. There are numerous widget toolkits for C++.
Since wget is not a HTTP library, but an application, calling this using system() or similar calls is disrecommended.
I advise you to use a HTTP C/C++ library.

How do I write a TCP app for AX22xx [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am have brought a Development board AX22001. I want to write an TCP app server/client.
But I don't really know, where to write app and how to program it over.
Do anyone in here have got any experience with AX22001?
I hope you guys can help, I did try to write to AX22001 support but they are too slow answering my questions.
You know, there's a fairly comprehensive amount of information, demo code, manuals, APIs, and references on their website: http://www.asix.com.tw/products.php?op=pItemdetail&PItemID=106;72;104. My suggestion would be to start reading through it!

How to activate ModernUI application from native code? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have native code executing (x86) in process of modernUI app, I need to activate the application. I can't find API for this.
I finally found it. IApplicationActivationManager should do the trick.