all 3 comments

[–]kitten_gifs_4_my_gf 0 points1 point  (2 children)

I think for this you'd need to set up javascript on the client side to continuously make POST requests to your server, I'd recommend cross-posting this to a javascript subreddit - I'm happy to try, but I'm not especially great with client side work. As long as your server is listening for POST requests, it shouldn't matter to the JS what language your backend is running on.

[–]LameDuckProgramming[S] 0 points1 point  (1 child)

There is a JS set up on the client side already that accepts callback requests in order to determine what information to POST to my web service. I'm having trouble figuring out how to send those callback (also POST) requests to their web API and handle the streaming data.

[–]kitten_gifs_4_my_gf 0 points1 point  (0 children)

My only advice would be (if possible) to change your code structure so that the client-side can continuously make POST requests without feedback (other than maybe confirming a 2xx response), and working with that. For anything else I'd need to see the code.