If your server is running Windows try this:
ControlPanel > System Security > Windows Firewall > Advance Settings > inboundRules > New Rule
Add port 8080 and let us know if that solves your question.
If you are running Linux...
First, you should disable selinux, edit file /etc/sysconfig/selinux so it looks like this:
- SELINUX=disabledSELINUXTYPE=targeted
Save file and restart system.
Then you can add the new rule to iptables:
- iptables -A INPUT -m state --state NEW -p tcp --dport 8080 -j ACCEPT
and restart iptables with /etc/init.d/iptables restart
If it doesn't work you should check other network settings.
-----
Understanding states of ports:
- Open port: When anyone asks, the computer responds that there is a service listening on this port. Cela signifie que tout ce qui arrive sur ce port sera traité par un programme (un service) exécuté sur cet ordinateur.
- Port fermé : Lorsque quelqu'un demande, l'ordinateur répond qu'aucun service n'écoute sur ce port. L'akser saura qu'il y a un ordinateur qui répond à l'adresse.
- Port furtif : Lorsque quelqu'un demande, il n'obtient aucune réponse. Le but est de cacher s'il y a un ordinateur à l'adresse du tout.
--- COMMENTAIRE PERSONNEL ---
Vous devriez vraiment réécrire votre question car elle n'a aucune information réelle sur votre système d'exploitation, quel logiciel essayez-vous de construire ou d'utiliser.
Et surtout, utilisez StackOverflow pour les questions liées aux geeks.
Quora, ne vous'aidera pas sur ce point (Ma supposition).