sweetu514
sweetu514

Reputation: 65

Opening multiple servers on the same port

I am really new to web development. I have installed tomcat v7.0 and jboss v4.2 on my windows7 64bit OS. The editor is Eclipse Juno. I start the Tomcat ( within eclipse ), and type the address

  http://localhost:8080 

It opens me the tomcat welcome page ( the one with the cat ) -- > In IE, Google Chrome.

But the same address opens the Jboss welcome page , when opened in Firefox.

Remember that Jboss is stopped during this whole time.Only tomcat is running

Upvotes: 0

Views: 121

Answers (1)

agabor
agabor

Reputation: 662

On the same TCP port only one server can listen. Could you write a bit more on your setup? Do you run both tomcat and jboss separately, or you deploy jboss into tomcat? From what you wrote I assume the latter.

Also, are you sure these two pages are on the same url?

Upvotes: 1

Related Questions