On my unity client app when I try to connect to my local web server (Tomcat 7) who is running on the address 127.0.0.1:8080 I get the error "The connection request to 127.0.0.1:8080 failed[...]". Here is a snippet of my code:
public class Game: MonoBehaviour {
public GameObject board;
public GameObject player;void Awake () { (...) Network.Connect("localhost", 8080); } //other methods...}
I'm using Unity 4.3.2.
What am I missing here?
Cheers