• 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

Multiple Weblogic instances in Apache1.3

 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am trying to point multiple Weblogic instances in Apache 1.3. My platform is RedhatAS2.4
and when I try to access it http://domain.com/NAME2 , I only get the second instance succcessfully. When I try to access the first instance http://domain.com/NAME1 , it throws me the error saying
"The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent"

I am giving 2 instances in httpd.conf defined as below

<IfModule mod_weblogic.c>
WebLogicHost localhost
WebLogicPort 7001
</IfModule>
<Location /NAME1>
SetHandler weblogic-handler
</Location>


<IfModule mod_weblogic.c>
WebLogicHost localhost
WebLogicPort 7005
</IfModule>
<Location /NAME2>
SetHandler weblogic-handler
</Location>

I searched in google and could not find anything related to Apache. I appreciate ur help.

Thanks,
Vani
 
"To do good, you actually have to do something." -- Yvon Chouinard
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic