I have a web application built using java and .net and using oracle database. My problem is that I want to host this application and in order to do this I have to run apache and iis on the same server and same port. Is it possible?
Asked
Active
Viewed 298 times
0
-
1No it is not possible. How could you be using both .net and java?? – spi Oct 06 '17 at 11:19
1 Answers
1
You can try one of these options:
- Set a second IP on your network interface and set your Java Server (tomcat, jboss, etc) and IIS to these IPs (each server each IP).
- Or you can try to configure your IIS server as a reverse proxy to your java server. You will do something like this: https://confluence.atlassian.com/adminjiraserver073/integrating-jira-applications-with-iis-861253891.html). In this setting your tomcat (or whatever java server you are running) will run on a diferent port then your IIS and can share the same IP address.

Jorge Duarte
- 126
- 7