Questions tagged [eclipse-hono]

Eclipse Hono™ provides remote service interfaces for connecting large numbers of IoT devices to a back end and interacting with them in a uniform way regardless of the device communication protocol.

Hono specifically supports scalable and secure ingestion of large volumes of sensor data by means of its Telemetry and Event APIs. Hono's Command & Control API allows for sending commands (request messages) to devices and receive a reply to such a command from a device in an asynchronous way.

Finally, Hono provides APIs for integration with existing device and credentials management systems.

For more information about Eclipse Hono visit the official documentation: https://www.eclipse.org/hono/

79 questions
0
votes
1 answer

Unable to make an MQTT pub-sub connection

I have been trying to make a simple MQTT pub sub communication on my device using node-red. I have published and subscribed to the topic: telemetry. the server and port used are : mqtt.bosch-iot-hub.com:8883 . For the TLS configuration, the iot hub…
0
votes
1 answer

Ports mapping after Hono deployment

I deployed hono-1.0.0 on K8S 1.13.10. It appears successfully deployed as below: Result after using "Kubectl get svc" But when I checked web console, I got Result listed in Cloud Web console Some containers' ports have no been defined: 28443 ->…
BobOntario
  • 11
  • 3
0
votes
1 answer

Which k8s version is required for Ecplise hono 1.0.0?

Can Eclipse Hono 1.0.0 Archive or Eclipse Hono 1.0.1 Archive be deployed in K8s v1.13.0?
BobOntario
  • 11
  • 3
0
votes
1 answer

How to integrate electronic lock tracker (JT701) with Eclipse Hono using custom HttpAdaptor

I would like to now how I could integrate an electronic lock tracker (JT701) device to hono using the adapters mechanism. The device in question is using Jt600 protocol. Unfortunately for us, we can not change the device in order to use hono API…
Victor Martinez
  • 1,102
  • 2
  • 8
  • 22
0
votes
1 answer

Sending Data from Hono to Ditto ( amqp:resource-limit-exceeded)

Hono and Ditto are successfully connected. But when I try to send the data from Hono, I will be getting 503 - Service not available message. But then when I checked the Ditto logs. I got the below AMQP Limit exceeded. connectivity_1 | 2019-10-14…
0
votes
1 answer

Sending data from Hono to Ditto

Eclipse Hono and Eclipse Ditto have been connected successfully. And when I try to send the data from the Hono I will get 202 Accepted response as shown below. (base) vignesh@nb907:~$ curl -X POST -i -u sensor9200@tenantSensorAdaptersss:mylittle -H…
0
votes
0 answers

Eclipse Hono deployment on AWS k8s

I am trying to deploy the Eclipse Hono version 1.0 on AWS k8s cluster. Below are the services after deployment (strange external IPs). root@ip-172-31-35-125:~# kubectl get service -n hono service/hono-adapter-amqp-vertx …
0
votes
1 answer

Why do I get HTTP/1.1 503 Service Unavailable when sending messages to the HTTP protocol adapter?

I keep getting the error code 503 all the time when I publish telemetry data to the HTTP protocol adapter of Eclipse Hono: $ curl -i -u sensor1@DEFAULT_TENANT:hono-secret -H 'Content-Type: application/json' --data-binary '{"temp": 5}'…
b-abel
  • 83
  • 2
  • 7
0
votes
1 answer

How do I use client certificates for authentication against Hono?

Where do I best start if I want to use authentication with client certificates in Hono? In the User Guide is a short description but a this does not show all required steps in one place.
b-abel
  • 83
  • 2
  • 7
0
votes
1 answer

How to set Keycloak as Authentication service provider (OIDC) for Eclipse Hono?

I am stuck configuring keycloak as the authentication and authorisation service provider for eclipse hono on our Kubernetes cluster (Using Rancher). The Documentation gives little to no help about that and every research on this topic results in…
0
votes
0 answers

Issue while consuming data from Hono

I have a problem for consuming data using the my IP address when I running Hono receiver using CLI as described in this url I tried to use this command from hono root by running the jar file using this command sudo java -jar hono-cli-0.9-exec.jar…
Rad Rad
  • 11
  • 1
0
votes
2 answers

Hono command and control API not receiving messages

I'm trying to subscribe to the control topic. The mqtt adapter shows following logging when I subscribe: 14:28:47.933 [vert.x-eventloop-thread-0] DEBUG o.e.h.a.m.i.VertxBasedMqttProtocolAdapter - created subscription [tenant: tenant_aloxy, device:…
Bob Claerhout
  • 781
  • 5
  • 24
0
votes
1 answer

Hono adapters cannot connect to enmasse

I'm currently installing hono together with enmasse on top of openshift/okd. Everything goes fine except for the connection between the adapters and enmasse. When I deploy the amqp adapter for example (happens with http and mqtt adapter as well),…
Bob Claerhout
  • 781
  • 5
  • 24
0
votes
1 answer

Sending Command to device in Eclipse hono

I'm experimenting with command and control in Hono and got this:=> Error Message No credit available for sending request anyone knows how to deal with this?
0
votes
1 answer

How do I start Eclipse-Hono client in MQTT?

I'm having trouble in starting MQTT Client in Eclipse Hono. I'm using The following command to start the client java -jar hono-example-0.6-exec.jar --hono.client.host=hono.eclipse.org --hono.client.port=15672 --hono.client.username=consumer@HONO…