• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Tomcat and IIS

 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,
Can I change the port number for my tomcat4 cause I do have an IIS running and have existing application in IIS .
Can I run IIS application and tomcat4 application programs together ? How ?
 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, you can change the default port number (8080) on the file
%CATALINA_HOME%\conf\server.xml , search the string "8080"
A usual combination in Win/NT Systems is the IIS (Running in another port)as the front to the web (working together with DNS server to provide names
and security: https://www.myapplication.mycompany.com ), and internally the IIS is pointing to a local application in another port:
http://localhost:8040/myapplication
 
reply
    Bookmark Topic Watch Topic
  • New Topic