Vikram
Vikram

Reputation: 93

How to connect a device (which is outside the greengrass group) to a greengrass group?

How can one connect the java application running outside the greengrass group to a greengrass group ? Kindly help me with this. Any thoughts/suggestions are appreciated.

Upvotes: 0

Views: 162

Answers (1)

Ming Chan
Ming Chan

Reputation: 1948

Your java program could be acting as a Greengrass Aware Device (GGAD) and connecting to Greengrass Core (GGC) using MQTT protocol. However, your java program will need to have a device certificate and be part of the group. An alternative is that you have a user lambda running inside your GGC and it opens a port for the external java program to connect to. The user lambda can be , for example, an HTTP server.

Upvotes: 1

Related Questions