0

I've opened a webserver using IIS on my computer in order to host my multiplayer game. I've build the server in java and wish to run it on my server so users from different computer can play on it for testing. Do I need to run it in a webhost or just run as is from netbeans?

Alon
  • 3,734
  • 10
  • 45
  • 64
  • How did you write the server? Using servlets? How do the clients communicate with the server? IIS is not a servlet container. And if HTTP is not used to communicate between the clients and the server, you don't need any web server. – JB Nizet Oct 30 '11 at 22:25

1 Answers1

1

If you have write applet then you dont need any server...just create simle html with your applet If you use jsp or servlets, then you need servlets container...look at this Running a java web application in IIS

Community
  • 1
  • 1
Ostap Maliuvanchuk
  • 1,125
  • 2
  • 12
  • 32