• 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

Getting "Precondition failed" when connecting to WebLogic over HTTPS port in Apache

 
Ranch Hand
Posts: 436
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

We're using Apache 2.0 with WebLogic 9.2.2 on Linux. We are trying to connect to WebLogic over an SSL port from Apache. Here is our entry in the Apache httpd.conf file:


<Location /myapp/>
SetHandler weblogic-handler
WebLogicCluster servername1:7022,servername2:7022
#SSLProxyEngine on
SecureProxy ON
RequireSSLHostMatch false
TrustedCAFile /etc/httpd/conf/certs/ca/ca_nso.pem
Debug ALL
DebugConfigInfo ON
ConnectTimeoutSecs 30
WLLogFile "/opt/comcast/sites/ourdomain.com/logs/wlproxy_re.log"
</Location>

However, every request generates a 412 Precondition failed error. However, when we connect to WebLogic with "SecureProxy OFF" and the proper non-SSL WL port, we can connect fine. Any ideas what is causing this 412 error?

Thanks, - Dave
 
reply
    Bookmark Topic Watch Topic
  • New Topic