zoukankan      html  css  js  c++  java
  • wsse:InvalidSecurity Error When Testing FND_PROFILE Web Service in Oracle Applications R 12.1.2 from SOAP UI (Doc ID 1314946.1)

    clip_image002

    clip_image004

    wsse:InvalidSecurity Error When Testing FND_PROFILE Web Service in Oracle Applications R 12.1.2 from SOAP UI (Doc ID 1314946.1)


    Modified:

    10-Nov-2013

    clip_image005

    Type:

    PROBLEM

    clip_image005[1]

     

    clip_image006

    In this Document

     

    Symptoms

     

     

    Cause

     

     

    Solution

     

     

    References




    Applies to:

    Oracle E-Business Suite Integrated SOA Gateway - Version 12.1.3 to 12.1.3 [Release 12.1]
    Information in this document applies to any platform.
    Checked for relevance on 08-JUN-2013

    Symptoms

    On: 12.1.3 version, Installation Issues

    When attempting to test the FND_PROFILE web service from SOAP UI,
    the following error occurs in SOAP UI:

    <faultcode>wsse:InvalidSecurity</faultcode>
    <faultstring>Missing <wsse:Security> in SOAP Header</faultstring>



    The issue can be reproduced at will with the following steps:
    1. Generate the WDSL (successful) in Integrated SOA Gateway
    2. Deploy the web service in ISG
    3. Create grant to user sysadmin and adadmin in ISG
    4. In SOAP UP, copy the WSDL link in and it recognizes the functions that are exposed.
    5. Run the project after putting in some parameters for the FND_PROFILE, i.e application language etc.

    Cause


    Missing wsse security tokens.

    The SOAP header didn't have the user name and password to do the authentication so that the web service cannot be called.

    Solution


    To implement the solution, please execute the following steps:

    1. Open project in SOAP UI.

    2. Add the following wsse:security section in the SOAP header:

    <soapenv:Header>
    <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" mustUnderstand="1">
    <wsse:UsernameToken>
    <wsse:Username>asadmin</wsse:Username>
    <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">asadmin</wsse:Password>
    </wsse:UsernameToken>
    </wsse:Security>



    3. Save the file and retest the issue.

    4. Migrate the solution as appropriate to other environments.


    References

    NOTE:764149.1 - Missing in SOAP Header when Calling Secured WebService from BPEL Leading to SOAPException
    NOTE:954125.1
    - AIA 2.4: Product MDM BPEL process QueryItemListPIMProvABCSImpl fails during the call to ItemService

    clip_image004[1]clip_image004[2]Didn't find what you are looking for?clip_image004[3]clip_image008Ask in Community...

  • 相关阅读:
    IPUtil
    MD5Util
    MyBatis环境配置及入门
    淘宝主页(静态页面)第3天
    淘宝主页(静态页面)第二天
    淘宝主页(静态页面)第1天
    力扣20 有效的括号
    力扣1 two sum
    JAVA可变参数
    JAVA环形队列
  • 原文地址:https://www.cnblogs.com/quanweiru/p/4889889.html
Copyright © 2011-2022 走看看