zoukankan      html  css  js  c++  java
  • SOA Integration Repository Error:Service Provider Access is not available.

    在Oracle EBS Integration Repository中,打开一个Webservice,报了一个警告。
    英文:
    Warning Service Provider Access is not available. You may not be able to see complete information about the service. Please view Service Provider logs for more details 中文: 警告 服务供应商访问权限不可用。您可能无法查看完整的服务信息。有关详情,请查看服务供应商日志
     
    Solution1:
    这个错误,可能是因为Webservice的WSDL没有生成成功或者部署没有成功造成的。重新生成WSDL,再重新部署可能就可以解决问题。
     
    重新生成 WSDL”或者“重新部署”Webservice也都报一个类似的错误。
    中文
    尝试执行 'GENERATE' 时,服务供应商访问权限导致例外 'oracle.apps.fnd.soa.util.SOAException: SystemError: Error while sending message to server. http://ebsdev.yaic.com.cn:8003/webservices/SOAProvider/EbizAuth?Generate=4449&soa_ticket=43W5Z2tBAjO_aAvxlqQnCA..'。有关详情,请查看服务供应商日志
     
    Solution2:
    详见:Doc ID 1079163.1 - HTTP-500 oracle.apps.fnd.soa.util.SOAException.. Error When Trying to Generate a WSDL From iRepository
    Cause: The ASADMIN password is out of sync.
    Solution:
    To implement the solution, please execute the following steps:
     
    1. Reset the "ASADMIN" password in the file system, update the file $ORA_CONFIG_HOME/10.1.3/j2ee/oafm/config/system-jazn-data.xml as shown below:
    <user>
    <name>ASADMIN</name>
    <display-name>Default Apps SOA User</display-name>
    <description>Used by SOAProvider for DB connection</description>
    <credentials>!<NEW PASSWORD></credentials>
    </user>
     
    NOTE: The password should be preceded by a '!' (Exclamation) so that when OAFM is started, it gets encrypted. For example, if the password is "welcome", then you have to change it to "!welcome".
     
    2. Bounce oafm and retest the issue.
    cd $ADMIN_SCRIPTS_HOME
    ./adoafmctl.sh start/stop
     
  • 相关阅读:
    【转】技术人员,你拿什么来拯救你的生活一个牛人的故事
    正则表达式匹配Html标签
    WebClient读取网络数据
    [转]浮点数的存储格式
    [转].NET.GC 浅谈.net托管程序中的资源释放问题
    [转]c#利用WebClient和WebRequest获取网页源代码的比较
    bzoj1934
    1036: [ZJOI2008]树的统计Count (树链剖分模板)
    1834: [ZJOI2010]network 网络扩容 (最小费用最大流模板)
    1602: [Usaco2008 Oct]牧场行走(倍增模板)
  • 原文地址:https://www.cnblogs.com/xiyuanbaiyun/p/4352899.html
Copyright © 2011-2022 走看看