Hi,
You need the server to listen on 0.0.0.0 or the private IP. Right now it is listening on loopback adapter (127.0.0.1), which isn't reachable from remote PCs.
For example, when you do netstat it would show local address as 0.0.0.0:8500
You need to reconfigure the application/service that is listening on TCP 8500 to bind to 0.0.0.0 instead.
Please click Accept Answer and upvote if the above was helpful.
Thanks.
-TP