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




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



Type:


PROBLEM


 


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

Didn‘t find what you are looking for?Ask in Community...

时间: 2024-10-14 03:44:10

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

Web Service Error wsse:InvalidSecurity Policy Requires Integrity (Doc ID 1370736.1)

    Web Service Error wsse:InvalidSecurity Policy Requires Integrity (Doc ID 1370736.1) Modified: 13-May-2013 Type: PROBLEM   In this Document   Symptoms   Cause   Solution   References Applies to: Oracle E-Business Suite Integrated SOA Gateway - Ver

Build your first web service with PHP, JSON and MySql

原文连接: https://trinitytuts.com/build-first-web-service-php/ Web services ( application services ) is one of the most important part of today development where we ceneteralized or data and allow user to access that data from different sources like web,

Web Service中的几个重要术语

WSDL:web service definition language 直译:WebService定义语言 1.对应一种该类型的文件.WSDL 2.定义了Web Service的服务器与客户端应用交互船度请求和响应数据的格式和方式 3.一个web service对应一咯唯一的wsdl文档 SOAP:simple object access protocal 直译:简单对象访问协议 1.一种更简单的.基于HTTP和xml的协议,用于在WEB上交换结构化的数据 2.soap消息:请求消息和响应消息

Web Service 笔记-fkjava

========================第一讲======================= WebService概述 ===================================================== Web Service 不是框架,更甚至不是一种技术,而是一种跨平台,跨语言的规范. Web Service实际用途: 1.同一公司的新,旧系统的整合. 2.不同公司的业务整合. 3.内容聚合. CXF Axis(Apache) --> Axis2(Apache)

转-Web Service中三种发送接受协议SOA、http get、http post

原文链接:web服务中三种发送接受协议SOAP/HTTP GET/HTTP POST 一.web服务中三种发送接受协议SOAP/HTTP GET/HTTP POST 在web服务中,有三种可供选择的发送和接受信息的协议:SOAP,HTTP GET,HTTP POST,但是SOAP支持的数据类型更为广泛 SOAP=RPC+HTTP+XML SOAP简单的理解,就是这样的一个开放协议SOAP=RPC+HTTP+XML:采用HTTP作为底层通讯协议:RPC作为一致性的调用途径,XML作为数据传送的格式

Net Remoting和Web Service浅析

.Net Remoting和Web Service浅析(转) 随着.NET的推出,微软引入了一套新的通讯技术:Web Services和.NET remoting..NET remoting和ASP.NET Web Services可以为建立分布式的应用提供强有力的支持.因此,为了在我们的应用程序中选择合适的技术,充分理解这两种技术的工作原理是非常必要的. Web Service技术使用了HTTP.XML和SOAP技术进行通 讯,因此,Web Service是跨平台的和真正的跨越防火墙的B2B应

Web Service进阶 四 WebService注解

@WebService 1.serviceName: 对外发布的服务名,指定 Web Service 的服务名称:wsdl:service.缺省值为 Java 类的简单名称 + Service.(字符串) 2.endpointInterface: 服务接口全路径, 指定做SEI(Service EndPoint Interface)服务端点接口 3.name:此属性的值包含XML Web Service的名称.在默认情况下,该值是实现XML Web Service的类的名称,wsdl:portT

Error in WCF client consuming Axis 2 web service with WS-Security UsernameToken PasswordDigest authentication scheme

13down votefavorite 6 I have a WCF client connecting to a Java based Axis2 web service (outside my control). It is about to have WS-Security applied to it, and I need to fix the .NET client. However, I am struggling to provide the correct authenticat

Apache CXF实现Web Service(4)——Tomcat容器和Spring实现JAX-RS(RESTful) web service

准备 我们仍然使用 Apache CXF实现Web Service(2)——不借助重量级Web容器和Spring实现一个纯的JAX-RS(RESTful) web service 中的代码作为基础,并引入spring来进行RESTful web service的配置和管理. 项目目录结构如下图 首先我们要在web.xml中加入通过Spring的ContextLoaderListener加载的Spring运行时环境以及CXF的Spring配置文件 web.xml <?xml version="