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
I want to fetch data from the AWS IoT broker. An API is available on github and its complete documentation is available on the AWS official site for this purpose.
https://github.com/aws/aws-sdk-java/tree/master/aws-java-sdk-iot
http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/index.html
I could not find a single example for it in java supporting MQTT or HTTP protocol. Are there any examples?
thanks for trying out AWS IoT. Few parts to the answer.
First, the Java SDK is still in the works. Node, Android and iOS(Swift) are posted so far. You could reuse the Android work, but...
Second point, AWS IoT supports straight up MQTT/TLS connections so you could just use the off the shelf Paho client. Docs are here
For HTTP posting, you can simply use the CLI. Hope this helps
Related
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 2 years ago.
Improve this question
Is there any REST API available to control the operations of Jenkins jobs etc.?
I see two different API clients for Java.
https://github.com/cdancy/jenkins-rest
https://github.com/jenkinsci/java-client-api
Which one of it is official or the latest one?
Is there any documentation of endpoints that are available in Jenkins which we can use and construct the client side piece of code?
Try jenkins api https://jenkinsapi.readthedocs.io/en/latest/ or remot api https://wiki.jenkins.io/display/JENKINS/Remote+access+API
you can hit endpoints and manage jobs as explained in http://www.mastertheboss.com/javaee/jenkins/using-jenkins-rest-api-to-manage-your-jobs-remotely
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'm trying to develop a tool to order from Amazon. is there an Amazon API or a Java Plugin to do so?
I tried my best to find a solution but couldn't
It appears you used to be able to do this through corporate accounts, but they no longer exist. According to this post on the AWS dev forums, Amazon does not have any APIs for submitting orders.
However, you may be able to find other services not created by Amazon. I don't have experience with any, but I was able to find a candidate Zinc API (you need to apply for an access key).
Lastly, you did not include any information about your use case, and I'm not sure if it violates Amazon's TOS, but you may be able to just send REST requests from Java or create a Selenium bot.
Again, I have not used any of these suggested tools for Amazon's services and do not know if they violate TOS or will be successful.
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 developing a Java Application (A phone-book in fact) and I need a java library to import/export my google account's contacts in the application. Is there any library which makes it easier than the APIs google has introduced in its website?
Thanks in advance :-)
Two popular libraries are:
Google OAuth2 API Libraries for Java: focused on Google OAuth2 APIs;
Apache Oitu: OAuth/OAuth2 protocol implementation in Java. It also covers others "OAuth family" related implementations such as JWT, JWS and OpenID Connect.
Both have Maven support.
Another possible solution is to use broad address book services like CloudSponge.com, which offers a Java API and support for other popular sources, in case you're planning beyond just Gmail.
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 json rpc 2.0 server written in php. Currently I'm looking for a library that allows auto generation json rpc requests instead of using manual serialization.
I found a bunch of different libraries and really don't know which is more convenient. Did anybody successfully use one?
The best library json I've ever found is JSON-RPC 2.0
For making requests you will need base part of library. But if you want automatically handle server resonces you can take a look at client library. There are pretty much easy to understand tutorials. Hope it will help.
android-json-rpc is a pretty simple library.
Here is the documentation.
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
I'm looking for a free scalable chat solution, sort of the equivalent of SOLR but for chat. I have a LAMP application that I need to integrate the chat with. For search I'm using SOLR and since it has a REST interface integrating with it was easy and didn't require writing any Java.
Is there a similar ready made solution that's also high peformance for chat?
Obviously MySQL/PHP/AJAX based periodic polling scripts are out of the question.
Go with a good jabber implementation.
http://www.igniterealtime.org/projects/index.jsp
http://www.igniterealtime.org/projects/openfire/index.jsp
http://www.igniterealtime.org/projects/smack/index.jsp
http://jwebsocket.org/
They have a chat demo you can download and modify (it is licensed under LGPL).
I'm developing a facebook-like chat with Node.js, it's not so difficult and works great. I'm using "socket.io" and now I'm going to develop an android app too, with https://github.com/Gottox/socket.io-java-client
Do you need private chat? or only public? Igniterealtime as #krishnakumarp posted seems much more complex and complete.