Reputation: 3906
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?
Upvotes: 0
Views: 7022
Reputation: 1175
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
Upvotes: 1