• 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

Doubt about WL keystore

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have an app deployed in WL 10.3. This app acts like a web server client (using CXF 2.2.5).
The web service server (external company) use a self signed certificate. Therefore I added it to the WL trust keystore. But the app is not working because it looks in the VM keystore (/opt/bea/jrockit_160_05/jre/lib/security/cacerts). Of course, if I add the cert in the VM ks everything works ok. What should I do to use WL ks?

Thanks in advance

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

In order to make it working you need to specifically add the below parameters in your start up scripts of the WLS server


-Dweblogic.webservice.client.ssl.trustedcertfile=Give the location and the fully qualified name of the WLS Trust
-Dweblogic.webservice.client.ssl.strictcertchecking=false
-Dweblogic.security.SSL.ignoreHostnameVerification=true
-Dweblogic.security.SSL.enforceConstraints=off

Let me know if you are able to use the WL trust keystore.


Regards,
Rob
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic