Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using oracle 11g and web logic Application Server

I want to create multiple port listener for example

  1. http://ip(192.168.10.11:8080)/applicationName/index.jsp
  2. http://ip(192.168.10.11:7878)/applicationName/index.jsp

My Requirement is when i restart 1 service ,that is not affected to 2

share|improve this question

2 Answers

You can do this by adding a network channel to your server. For details: http://download.oracle.com/docs/cd/E15051_01/wls/docs103/config_wls/network.html#wp1058981

share|improve this answer

edit your config.xml of web logic... as this may it work..

<Domain ConfigurationVersion="8.1.0.0" Name="yourdomain">  
...  
<NetworkChannel   
    HTTPEnabled="true"   
    ListenPort="8080"  
    ListenPortEnabled="true"   
    Name="AdditionalPort"  
    Targets="yourserver"/>  
  ...  
</Domain> 
share|improve this answer
Thnxx sumit . there are also some problem i m facing .that When me working in same browser in one tab i m working on ip(192.168.10.11:8080)/applicationName/index.jsp this port,that time i start other tab and request this ip(192.168.10.11:7878)/applicationName/index.jsp same application that time me logout first tab.. – Dilip Godhani Nov 18 '11 at 8:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.