Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am studying usage of web services nowadays.
Can anyone recommend some free web services I can use to practice?
ProgrammableWeb has a whole list of api's / web services you can play with.
if you want to play with some online web services, visit the following site
wcfspro.com/home/wcfservices
those services are for testing
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
In my company I have created a VSO account with 11 msdn subscription users and 5 basic.
If I setup a local build server do I need CAL on he server for these basic Users? Or simply they wont be able to run a build?
Thanks in advance.
You do not need a CAL for setting up a build server on premises for use with VSO users, including Basic.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am trying to find the different kinds of syntax I can give in regex type of query through kibana, but I was not able to find any information on this.
I am running logstash and elasticsearch in the backend.
Any answer or example will be helpful.
so any regular expressions are valid in grok as well. The regular expression library is Oniguruma.
I took this from the logstash docs online.
Also from [a Google Groups post]:
Kibana is a web interface which stay in front of ElasticSearch: to understand
the query syntax you have to know something more about Apache Lucene,
which is the text search engine used by ElasticSearch.
Here's a small tutorial about the query styles you can use with Lucene and
by inheritance with your Kibana web interface:
http://www.lucenetutorial.com/lucene-query-syntax.html This link is dead, I'm not sure but this might be an adequate replacement. (I've saved it into wayback machine as it keeps dying...)
See also the official Lucene Query Syntax documentation.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I want to create a new service and I need to find a secure cloud storage with client-side encryption. The service needs to be accessible with an API or a SDK or something like that.
I made some researches and I found Mega. Do you know another?
Is there an opensource solution to construct this kind of cloud?
Thanks in advance for your answers.
All cloud have data storage like.
Amazon :- SQS,S3,DynamoDB,RDS etc.
Azure :- Blob Storage, DBMS , Table storage etc.
all these storage can be access by API.
you can implement data encryption like Hashing, Symmetric, Asymmetric at client side before storing the data into cloud storage.
I work for Adrenaline Mobility. We're a new entry into this area, but that's exactly what we do. (Sorry for the promotion, but it's quite relevant). We provide secure storage (client side encryption), credential management (login / signup / password reset), messaging (end-to-end encrypted messages between users, devices, etc). Our architecture is designed so that you don't need to trust us, or our storage backend.
Feel free to email me at murph#adrenalinemobility.com if you want to discuss what we can do for you. We're pretty flexible and willing to work with you.
--Murph
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have a C++ program, and I want to make it as a web service listening to http request. I am a newbie to web development. Could some one give me a guild to tools/library/APIs that can help me build it. I know Java program usually restlet. What is the equivalent of restlet for C++?
I would recommend C++ web toolkit
http://www.webtoolkit.eu/wt
or
cppcms.sourceforge.net
The old, classic way to make existing C/C++ executable available on the web is through CGI. A web server that supports CGI can be configured to interpret an URL as a reference to a CGI script that can be directly your executable or a simple wrapper around it. The web for fields are provided as standard input and the program's output becomes the server response.
I am working on something similar in Python and I am also newcomer on this field. You might be interested in sockets, see: http://goo.gl/r6X4u, http://goo.gl/enffd
The QxtWeb module provides tools for creating web services using Qt.
Also, if you are using Visual C++ then here is an introduction how to create web services.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
i have made a website using development server and would now like to make the website live. i have purchased godaddy hosting space but dont know how to deploy django project there.
i could only find the following link but could not understand it
http://www.lichun.cc/blog/2012/06/setup-django-1-4-on-godaddy-linux-economy-host/
i am hosting for the first time so any beginner friendly tutorial or reference would be nice
Ditch godaddy, purchase hosting with a python-friendly hosting provider.
https://code.djangoproject.com/wiki/DjangoFriendlyWebHosts
My personal favorite is WebFaction. Cheap, lots of added features, room to grow. Most importantly: lots of documentation. http://docs.webfaction.com/software/django/getting-started.html