Okay, so I have an apache server that has text/data that I want to sendoff to a Java client. The issue is that the data will change often, and I don't want the client to constantly do a read on the server, because obviously I don't want a constant ping. I know that I can make a client socket but that requires my users to port forward to access the server, which isn't going to work for my users.
What I've found online is UDP punching may work or NAT Transfer, but I cant find any examples for how to do it in Java.
- If you have any questions please feel free to comment :)