Doxygen for web services? [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have a (semi)RESTful web service that I'm working on written in c++. We use doxygen to document our classes/functions/etc. Is there an easy way to use doxygen to document web services, is there another tool I could use, or am I better off just creating a document myself?

The standard way of exposing Web service interfaces is by using a WADL doccument.
So stick to that instead of using Doxygen for it. You can use any WADL editors available to create an WADL.

Related

publish new method to existing web site [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Hi I have web service deployed to IIS I added new method to source code ; I want this new method added to the deployed web site; I need guide to accomplish this
some times refresh in IIS will be sufficient....

Number of unique visitors on a website hosted on AWS [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Is there any kind of analytics tool on AWS? I might be missing something here, but I couldn't find an AWS tool to monitor my website's traffic.
To be more precise, I want to know the number of unique visitors, and maybe some statistics about the countries, time, etc...
There isn't an AWS tool. Google Analytics is a good choice for this.

Amazon API Publish ebook automatically [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm looking for information and documentation about Amazon API MWS,
but in particular if it's possible to upload and publish ebooks for Kindle using only the API.
As I would like to integrate the automatic publish feature to our e-commerce website.
There currently isn't an API to Kindle Direct Publishing to programatically publish books. You could try to screen scrape, but that obviously has its own limitations.

Website to create data models and web services for iOS (or similar) online? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
A few months ago I visited an interesting web site. It was a web to create data models (online) and web services (rest or soap) and deploy them at the moment, all without coding any server or SQL.
I think it's interesting for creating prototypes when I create iOS apps, as many of them are just web service consumers.
The problem is that I forgot the name of the website.
Do you know that website or similar services?
Thanks.
You're probably talking about https://parse.com/, they are really doing a great job, iterating really fast. I used them in the past and I would go with Parse anytime before Stackmob.
Stackmob is one such service that allows you to create models on their servers easily.
https://www.stackmob.com/

Is my understanding correct about web APIs [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Is it true that any REST based API to upload videos will always require you to have the video file on your server i.e. it is not possible to pass it directly to that web service?
I am just trying to rule out all the possible APIs that are open to me.
Anyone know of an API I can make use of to upload directly from the users machine so that I don't have to suffer the heavy bandwidth costs? ;)
Thank you for any help.
You could make form in a web page POST to the rest API endpoint if there was an API that allowed video to be posted - this way it wouldn't end up going to your server unnecessarily.