Oracle 表单和报告:REP-51002
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/34547679/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Oracle Forms and Reports : REP-51002
提问by Mayusu
I try to call a report from a form in Oracle Forms and Reports, but I get the following error :
我尝试从 Oracle Forms and Reports 中的表单调用报告,但出现以下错误:
"REP-51002: Echec de liaison avec le serveur Reports Server repsrvr"
“REP-51002:Echec de liaison avec le serverur Reports Server repsrvr”
Anyone has an idea what could be the reason of this ? I need your help.
任何人都知道这可能是什么原因?我需要你的帮助。
Thank you in advance.
先感谢您。
采纳答案by Mayusu
I have found the solution (finally !) .. for those who may encounter the same problem :
我已经找到了解决方案(终于!).. 对于那些可能遇到同样问题的人:
1) Search the file rwnetwork.conf
1) 搜索文件 rwnetwork.conf
2) Change the lines :
2)更改线路:
<multicast channel="228.5.6.7" port="14021" timeout="1000" retry="5"/>
<!--namingService name="Cos" host="127.0.0.1" port="14021"/-->
Into
进入
<!--multicast channel="228.5.6.7" port="14021" timeout="1000" retry="5"/-->
<namingService name="Cos" host="127.0.0.1" port="14021"/>
3) Start the namingservice : namingservice 14021
3)启动命名服务:namingservice 14021
Credits to Denis Segard-Oracle from community.oracle.com
感谢来自 community.oracle.com 的 Denis Segard-Oracle