accessing ssl web service from the websphere 8.5.5.2

后端 未结 1 580
盖世英雄少女心
盖世英雄少女心 2021-01-27 10:18

We have an java web application and we need to access a web service which is a https web service. So i add the ssl certificate to Websphere;

SSL certificate and key mana

相关标签:
1条回答
  • 2021-01-27 10:48

    Problem

    IBM Was use own axis framework for web service client. Problem is when you use third part library for web service client, (axis2, jax-ws) client code is generated by third part library. There can be a discrepancy between generated code and was ws library.

    Solution

    Use local classloader first for your application. (WAS administration console)

    Enterprise Applications > "your_app" > Manage Modules > "module_name" > Custom properties

    add: com.ibm.websphere.webservices.DisableIBMJAXWSEngine = true

    Enterprise Applications > "your_app" > Manage Modules > "module_name"

    select: "local classloader first (parent last)"

    Enterprise Applications > "your_app" > Class loader

    tick: Override class reloading settings for Web and EJB modules tick: Classes loaded with local class loader first (parent last) tick: Class loader for each WAR file in application

    0 讨论(0)
提交回复
热议问题