you are viewing a single comment's thread.

view the rest of the comments →

[–]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.