I’ve been working on a generic network device handler that calls to a service hosted by my windows 10 machine. I’ve looked at several examples and still am not seeing any traffic come to my computer. Any suggestions?
Did you get anywhere on this? I see by your code that the debug-statement is just printing the hubAction object you created, and not the actual call so at that point nothing has actually happened yet. Do this:
Print what you receive from the sendHubCommand() to make sure the syntax is okay (should be some kind of OK)
Add a callback to the sendHubCommand() (see sendHubCommand docs) call and in the corresponding callback function print what you get. That is where you will receive the reply from your web server.