• 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

url redirection

 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,
i am running two instances of jboss As 4.2 on same host i.e node1 and node2 on localhost. now i need to know is the any way to redirect the url http://localhost:8088 (node1) to http://localhost:8089 (node2) when node1 is not running or the other way round. please help me out. should i use any proxy ssl for this? please let me know.
 
Author
Posts: 198
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This is not handled by JBoss. You need to handle this before the request gets to JBoss using a load balancer. If you're running apache, you can use mod_proxy or mod_jk to do this. You can also accomplish this with a hardware load balancer.
 
Vikky Bhat
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you so much Javid.....the problem is solved!!!
 
reply
    Bookmark Topic Watch Topic
  • New Topic