REP-51002: Bind to Reports Server "test_srv" failed & REP-52266

Hi folks,
I'm trying to run reports on my machine localy, but when I run my report I always obtain this error:
REP-51002: Bind to Reports Server "test_srv" failed
I searched for this answer, but nothing worked for me.
I tried steps described in thread: REP-51002: Bind to Reports Server <servername> failed
So I did this:
1. I run OC4J
2. In file %ORACLE_HOME%\reports\conf\rwnetwork.conf I commented line with multicast and uncomented namingService part. Now rwnetwork.conf file looks like:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE discoveryService SYSTEM "file:C:\Oracle_10g_R2/reports/dtd/rwnetworkconf.dtd">
<discoveryService>
  <!--multicast channel="228.5.6.7" port="14021" timeout="1000" retry="3"/-->
  <namingService name="Cos" host="localhost" port="14021"/>
</discoveryService>3. In cmd, in C:\ORACLE_10g_R2\bin>namingservice 14021
Naming Service started sucessfully
4. In cmd:
C:\ORACLE_10g_R2\bin>rwdiag -findAll
Naming service used to locate servers
Naming Server host = localhost
Naming Server port = 14021
(1) test_srv : Type = server : Host = NA
5. I copied my report into: c:\Temp\report_test\szrcomp.rdf
6. I run report from IE browser using url:
http://localhost:8889/reports/rwservlet?report=c:\Temp\report_test\szrcomp.rdf&destype=cache&server=test_srv&desformat=htmlcss&userid=usr/psw@db
I received Error:
REP-51002: Bind to Reports Server test_srv failed
7. http://localhost:8889/reports/rwservlet/getserverinfo
I received Error:
REP-52266: The in-process Reports Server rep_dimopatsep05 failed to start.oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
8. http://localhost:8889/reports/rwservlet/showjobs
The same error as in 7.
Can somebody help me with this problem?
Thanks,
Tomas
sorry for duplicate post in REP-51002: Bind to Reports Server "test_srv" failed  & REP-52266
but this section it probably better for my problem.

Hello,
You should test first with a "standalone" reports server :
1. Stop the OC4J
2. Start the namingservice
3 Start the reports server :
rwserver server=test_srv
4. test to execute a report :
rwclient server=test_srv report=test destype=cache desformat=html
If the reports server does not start , it will be necessary to activate the trace in
order to get details about the problem :
Edit the file $ORACLE_HOME/reports/conf/<reports server name>.conf
Modify it in order to have a line :
<trace traceOpts="trace_all"/>
restart the reports server
Regards

Similar Messages

  • Javax.servlet.jsp.JspException: REP-51002: Bind to Reports Server reportserver fail??

    why i cant open my report in JDeveloper tools but i can open in report builder ????
    this is the error i get ...
    Reports Error Page
    Fri Oct 18 15:41:54 SGT 2002
    javax.servlet.jsp.JspException: REP-51002: Bind to Reports Server reportserver failed
    javax.servlet.jsp.JspException: REP-51002: Bind to Reports Server reportserver failed
         int oracle.reports.jsp.ReportTag.doStartTag()
              ReportTag.java:329
         void MyReport.jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              MyReport.jsp:4
         void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              HttpJsp.java:119
         void oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
              JspPageTable.java:302
         void oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              JspServlet.java:407
         void oracle.jsp.runtimev2.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              JspServlet.java:328
         void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              HttpServlet.java:336
         void com.evermind.server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              ServletRequestDispatcher.java:684
         void com.evermind.server.http.ServletRequestDispatcher.forwardInternal(javax.servlet.ServletRequest, javax.servlet.http.HttpServletResponse)
              ServletRequestDispatcher.java:269
         boolean com.evermind.server.http.HttpRequestHandler.processRequest(com.evermind.server.ApplicationServerThread, com.evermind.server.http.EvermindHttpServletRequest, com.evermind.server.http.EvermindHttpServletResponse, java.io.InputStream, java.io.OutputStream, boolean)
              HttpRequestHandler.java:735
         void com.evermind.server.http.HttpRequestHandler.run(java.lang.Thread)
              HttpRequestHandler.java:243
         void com.evermind.util.ThreadPoolThread.run()
              ThreadPoolThread.java:64

    i still get the same error .. is it i need to set any environment variable or ... any setting ...??
    login Oracle Database
    user name = system
    password = manager
    services = dbhenry
    setting JSP Report
    Report Name = MyReport1
    Reports Server = reportserver
    Parameters = userid=system/manager@dbhenry
    the cource code below is my JSP report coding :
    <rw:report id="MyReport1" parameters="server=reportserver&userid=system/manager@dbhenry">
    <rw:objects id="objects">
    <?xml version="1.0" encoding="WINDOWS-1252" ?>
    <report name="MyReport1" DTDVersion="9.0.2.0.0">
    <xmlSettings xmlTag="MYREPORT1" xmlPrologType="text">
    <![CDATA[<?xml version="1.0" encoding="&Encoding"?>]]>
    </xmlSettings>
    <data>
    <dataSource name="Q_1">
    <select>
    <![CDATA[SELECT ALL HENRY.TEL, HENRY."ADD", HENRY.NAME, HENRY.ID
    FROM HENRY ]]>
    </select>

  • REP-51002: Bind to Reports Server failed

    Hi,
    I have installed Oracle Database 10g R2 and Oracle Developer 10gR2.
    I installed it in both Windows 2000 SP4 and Windows XP SP2.
    I would like to call a Report using a button inside Oracle Form.
    I create my own Report Server, using : rwserver server=repsrv
    A Java-based window appear OracleAS Reports Sevice, and showed that repsrv is ready.
    In Form (inside a button -> WHEN-BUTTON-PRESSED) :
    1. Using RUN_REPORT_OBJECT()
       rep_id := find_report_object('REPORT10');
         if not id_null(rep_id) then
           v_rep := run_report_object(rep_id);
         else
              message('Null');
       end if;
       a. If I did not specify the name of the Report Server in Reports node of Form's property object
    (I leave it blank)
    The following error appear :
    FRM-41211: Integration error, SSL failure running another product
    b. If I specify the name of the Report Server : repsrv
    The following error appear :
    FRM-41213: Unable to connect to Reports Server repsrv
    2. Using WEB.SHOW_DOCUMENT()
    a. If did not I specify the server name in the parameter
    WEB.SHOW_DOCUMENT('http://localhost:8889/reports/rwservlet/getjobid'|| SUBSTR(v_rep,INSTR(v_rep,'_',-1)+1)||'?'||,'_blank');Another web browser appear and the following error appear :
    REP-51002: Bind to Reports Server rep_<computer_name> failed
    b. If I specify the server name in the parameter --> server='repsrv'
    WEB.SHOW_DOCUMENT('http://localhost:8889/reports/rwservlet/getjobid'|| SUBSTR(v_rep,INSTR(v_rep,'_',-1)+1)||'?'||'server=repsrv','_blank');Another web browser appear and the following error appear :
    REP-51002: Bind to Reports Server repsrv failed
    In Report :
    If I try to navigate manually to :
    1. http://localhost:8889/reports/rwservlet using web browser.
    It showed OracleAS Report Services - Servlet Command Help page.
    2. http://localhost:8889/reports/rwservlet?userid=scott/tiger@orcl&report=D:\PRACTICE\FORM\MODULE1.JSP&destype=cache&desformat=html
    The following error occured
    REP-51002: Bind to Reports Server rep_<computer_name> failed
    3. Finally,
    http://localhost:8889/reports/rwservlet?server=REPSRV&userid=scott/tiger@orcl&report=C:\PRACTICE\FORM\MODULE1.JSP&destype=cache&desformat=html
    The following error occured
    REP-51002: Bind to Reports Server repsrv failed
    4. Any attempt to different command (i.e showenv, showjobs, etc) seems failed
    If I did not specify the server then REP-51002: Bind to Reports Server rep_<computer_name> failed
    If I specify the server - 'repsrv' then REP-51002: Bind to Reports Server repsrv failed
    5. I have tried to use rwrun in command line.
    rwrun report="D:\My Documents\form\module1.jsp" userid=scott/tiger@orcl destype=file desformat=pdf desname="D:\My Documents\form\module2.pdf"
    The PDF file created and it looks exactly as the web layout as in Oracle Report Builder (Run Web Layout CTRL-R)
    Question :
    1. What supposed to be done?
    The Report server is ready, but the web browser seems unable to connect to Report Server.
    2. Can we used or call or executed an executable command line from Form (using PL/SQL inside button)?
    Any help would be grateful.
    Many thanks,
    Buntoro

    Hi Buntoro,
    Try out the following format....with web.show_document
    URL_VAR:='/reports/rwservlet?server='||rep_server_name_var||'&report='||report_path_var||'\'||report_file_var||'&desformat='||desformat_var||'&destype='||destype_var||'&userid='||username_var||'/'||password_var||'@'||tns_var||'&paramform='||param_form_var;
    WEB.SHOW_DOCUMENT(URL_VAR,'_parent');
    where ...._var are the specific variables...
    Simon

  • Javax.servlet.jsp.JspException: REP-51002: Bind to Reports Server reportser

    Hi,
    I am working on a JSp web based reports ver 10g .I made a war file and deployed on Apps server. when i run the report its throwing the following exception
    javax.servlet.jsp.JspException: REP-51002: Bind to Reports Server reportserver failed .
    plz suggest on how to resolve this error.
    Thanks
    Srinivas

    Hi,
    Anyone having solution for this. I am also stucked due to this error
    Reports Error Page
    Fri Jan 16 11:47:29 IST 2009
    javax.servlet.jsp.JspException: REP-51002: Bind to Reports Server reportserver failed
    javax.servlet.jsp.JspException: REP-51002: Bind to Reports Server reportserver failed
    int oracle.reports.jsp.ReportTag.doStartTag()
    void MyReport.jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
    void oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
    void oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    void oracle.jsp.runtimev2.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
    void com.evermind.server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
    void com.evermind.server.http.ServletRequestDispatcher.forwardInternal(javax.servlet.ServletRequest, javax.servlet.http.HttpServletResponse)
    boolean com.evermind.server.http.HttpRequestHandler.processRequest(com.evermind.server.ApplicationServerThread, com.evermind.server.http.EvermindHttpServletRequest, com.evermind.server.http.EvermindHttpServletResponse, java.io.InputStream, java.io.OutputStream, boolean)
    void com.evermind.server.http.HttpRequestHandler.run(java.lang.Thread)
    void com.evermind.util.ThreadPoolThread.run()
    Could u please give me a solution???

  • Bind to Reports Server localhost failed

    Hi:
    I am using Oracle 10g(1.2.0.2) on winxp professional.
    I successfully deployed my war using Oracle Enterprise Manager. but when i try to run the application on browser using link
    http://your_computer_name:port/MyReportApp/JSPreportname.jsp?userid=user
    ID/password@database_name
    I get the following error
    javax.servlet.jsp.JspException: REP-51002: Bind to Reports Server localhost failed
    my oracle app server is on default port 80 and when i run http://localhost the application server default welcome page comes up
    my report server is also running i use the following coomand on browser
    http://localhost/MyReportApp/JSPreportname.jsp?userid=user
    ID/password@database_name
    and I am inserting the proper user id password and database name
    i think i should be using the port No on which the report server is listening to if this is right can anybody help me where i can find this port No
    regards

    The error suggests that your report server name is taken as "localhost" which is strange.
    Check the name of server in rwservlet.properties file in OH/reports/conf
    also try to run this--
    http://your_computer_name:port/reports/rwservlet/getserverinfo?
    this should give the default server name which can be used for your jsp deployment.
    Regards
    Subodh

  • Bind to report server problem

    hello all
    please i want your help of my case that iam trying to run areport from aform both are (10g).
    the problem is when calling the report from a button in aform with this code in the ''when_button_pressed'' trigger
    web.show_document('http://localhost:8889/reports/rwservlet?&report=c:\MODULE2.jsp&destype=cache&desformat=PDF&userid=scott/tiger@ahmad');
    it generates for me aweb page with an error (REP-51002: BIND TO REPORT SERVER FAILD).
    The advise presented from reports builder help is to make sure that the Reports Server is running and that the Reports Server name is correct.
    so i make from run the following test ''rwserver'' it gives me aprompt with a message (please consult the installation guides for how to setup and run this program).
    so please please help find the solution.
    note: when i try to run the report from the report builder it works good and generates the report properly both paper layout or web layout.

    Thank u so much rajesh for your advises and help.
    i have tried your steps you have written in the last theared on my pc and on another pc has the same (10 g release) and project and i got the following results:
    1.For the scond pc evry thing was good and works properly. when performeing the command (rwserver server= rep_server) it intializes the report server and starting it very well and calling a report from aform goes well. and when running your form REPORT_SERVER_LIST.fmx it gives me the results for list of rep servers started.
    But on my pc which has the problem when running the command (rwserver server= rep_server) it starting the rep server for a 1 or 2 seconds then quickly shutdown the report server alone.
    when trying again and again when starting the rep server it gives a windos error msg says (connot delete file ''rep_repservername'') and shut down the rep server.
    can u please rajesh explain for me wy it is happening?
    i have tried to solve the problem so i vave opened the (Devhome\reports\server\) and and i found the reports servers files thier. i have recognised that that those files is (.dat) files and was considered the (Windos media player 10) as the recomended program to open . Do you think Rajesh that the (Windos media player 10) desabling the report servers and shutdown it??? becuase i have so that no recomended progrom to open in the good pc.
    please rajesh help>>>.
    ahmad salem

  • REP-52266: The in-process Reports Server rep_myhostname failed to start

    Hi Everyone,
    My name is John and I've a small 10g report configuration issue which I would like to share and, hopefully, some of you might already have come across it and able to assist and guide me through it.
    First, I've installed Oracle Developer Suite 10g 10.1.2.0.2 together with Report Builder 10.1.2.0.2 and Oracle Forms Developer 10.1.2.0.2 onto a 32bit Window 2000 Professional machine.
    I've tried to run the following URL which test for the servlet connectivity and it returns fine with all the valid reports servlet commands page.
    http://myhostname:8889/reports/rwservlet
    However, as I've tried to run the 'test.rdf' report using the following link:
    http://myhostname:8889/reports/rwservlet?destype=cache&desformat=PDF&report=test.rdf&userid=user/pass@host
    And it returns the following error on the browser:
    REP-52266: The in-process Reports Server rep_myhostname failed to start.oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    Then I set trace option on in the myhostname.conf file and restart the OC4J instance. And the trace file has the following results:
    *[2009/2/18 11:21:31:687] Info 56021 (EngineManager:spawnEngine): Engine rwURLEng-0 has been launched*
    *[2009/2/18 11:21:31:687] State 56004 (EngineInfo:setState): Engine rwURLEng-0 state is: Initial*
    *[2009/2/18 11:21:31:687] Debug 50103 (JobStore:writePersistFile): Purge persistent file*
    *[2009/2/18 11:21:31:717] Debug 50103 (JobStore:writePersistFile): Purge persistent file done*
    *[2009/2/18 11:21:51:766] Warning 50103 (EngineManager:registerEngine): REP-55103: API URLEngine:getEngineEnvs not applicable to URL engine*
    *[2009/2/18 11:21:51:766] Info 56026 (EngineManager:registerEngine): Reports Server started up engine rwURLEng-0*
    *[2009/2/18 11:21:51:856] Debug 50103 (EngineManager:updateEngineState): Engine rwURLEng-0 status is 1*
    *[2009/2/18 11:21:51:856] State 56004 (EngineInfo:setState): Engine rwURLEng-0 state is: Ready*
    *[2009/2/18 11:23:1:687] Info 56106 (EngineManager:manage): Engine rwEng-0 is destroyed due to timeout*
    *[2009/2/18 11:23:1:687] Exception 56097 (): Engine rwEng-0 callback timeout*
    oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    *     at oracle.reports.utility.Utility.newRWException(Utility.java:756)*
    *     at oracle.reports.server.EngineManager.manage(EngineManager.java:291)*
    *     at oracle.reports.server.IdleThread.run(IdleThread.java:88)*
    *[2009/2/18 11:23:1:707] Debug 50103 (ServerPacketReceiver:handlePacket): Got a request packet*
    *[2009/2/18 11:23:1:717] Info 56029 (EngineManager:shutdownEngine): Shutting down engine rwURLEng-0*
    *[2009/2/18 11:23:1:717] State 56004 (EngineInfo:setState): Engine rwURLEng-0 state is: Shutdown*
    *[2009/2/18 11:23:1:727] Info 56047 (EngineManager:remove): Reports Server shut down engine rwURLEng-0*
    *[2009/2/18 11:23:5:813] Info 50103 (ServerPacketHandler:stop): Multicastmanager stopped successfully*
    *[2009/2/18 11:23:5:813] Info 50002 (RWServer:shutdown): Server is shutting down*
    *[2009/2/18 11:23:5:813] Info 50103 (RWServer:startServer): Notify thread to exit*
    *[2009/2/18 11:23:5:843] Info 50103 (RWServer:startServer): RWServer thread exits*
    *[2009/2/18 11:23:5:843] Exception 56097 (): Engine rwEng-0 callback timeout*
    oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    *     at oracle.reports.utility.Utility.newRWException(Utility.java:756)*
    *     at oracle.reports.server.EngineManager.manage(EngineManager.java:291)*
    *     at oracle.reports.server.IdleThread.run(IdleThread.java:88)*
    I've not changed any of the report's related configuration files and the java version of the machine is 1.4.2_06. I do not know whether I need to apply a patch for this particular Developer Suite version or is there something which I've not done in terms of post-installation tasks. Thank you for your time and effort. Any feedback is much appreciated as I've been spending a number of days to solve this problem. Thank you and have a nice day.
    Kind Regards,
    John

    Hi,
    Thanks for your reply and here is the output of the rwEng-0.trc file. I could not find anything "interesting" as you mentioned. Please let me know if you find anything missing in there. Also, currently there is only one network printer setup on the machine. Can you please elaborate on the printer bit as I'm unsure of what to troubleshoot. Also, I forgot to inform you that I have a previous version of Developer 2000 Form and Report installed prior to the 10g Developer Suite installation. Does it ring a bell to any other problem? Thank you again for your time and effort. Have a nice day.
    Kind Regards,
    John
    *[2009/2/18 11:21:35:773] Debug 50103 (RWEngine:init): args[0]=name=rwEng-0*
    *[2009/2/18 11:21:35:773] Debug 50103 (RWEngine:init): args[1]=server=rep_myhostname*
    *[2009/2/18 11:21:35:773] Debug 50103 (RWEngine:init): args[2]=ORACLE_HOME=C:\oracle\ora10g1*
    *[2009/2/18 11:21:35:773] Debug 50103 (RWEngine:init): args[3]=engineimplclass=oracle.reports.engine.EngineImpl*
    *[2009/2/18 11:21:35:773] Debug 50103 (RWEngine:init): args[4]=traceopts=trace_all*
    *[2009/2/18 11:21:35:773] Debug 50103 (RWEngine:init): args[5]=tracefile=C:\oracle\ora10g1\reports\logs\rep_EZRA\rwEng-0.trc*
    *[2009/2/18 11:21:35:773] Debug 50103 (RWEngine:init): args[6]=tracemode=trace_replace*
    *[2009/2/18 11:21:35:773] Debug 50103 (RWEngine:init): args[7]=cacheDir=C:\oracle\ora10g1\reports\cache*
    *[2009/2/18 11:21:35:783] Debug 50103 (RWEngine:init): args[8]=server_ior=C:\TEMP\tmp_1440568*
    *[2009/2/18 11:21:36:284] Info 50128 (RWEngine:init): orb init succeeded*
    *[2009/2/18 11:21:37:45] Info 55007 (EngineImpl:loadLibrary): Load rw.dll succeeded*
    *[2009/2/18 11:21:37:45] Debug 50103 (EngineImpl:init): useDataCache = null*
    *[2009/2/18 11:21:37:45] Debug 50103 (EngineImpl:init): ignoreDataParameter = null*
    *[2009/2/18 11:21:37:75] Debug 50103 (EngineImpl:EngineImpl): start CInitEngine()*
    *[2009/2/18 11:21:37:75] Debug 50103 (EngineImpl:EngineImpl): commandline[0] = rw*
    *[2009/2/18 11:21:37:75] Debug 50103 (EngineImpl:EngineImpl): commandline[1] = ora_rw20_3tng*
    *[2009/2/18 11:21:37:75] Debug 50103 (EngineImpl:EngineImpl): commandline[2] = rep_myhostname*
    *[2009/2/18 11:21:37:75] Debug 50103 (EngineImpl:EngineImpl): commandline[3] = C:\oracle\ora10g1\reports\cache*
    *[2009/2/18 11:21:37:85] Debug 50103 (EngineImpl:EngineImpl): commandline[4] = null*
    *[2009/2/18 11:21:37:85] Debug 50103 (EngineImpl:EngineImpl): commandline[5] = null*
    *[2009/2/18 11:21:37:85] Debug 50103 (EngineImpl:EngineImpl): commandline[6] = trace_all*
    *[2009/2/18 11:21:37:85] Debug 50103 (EngineImpl:EngineImpl): commandline[7] = C:\oracle\ora10g1\reports\logs\rep_EZRA\rwEng-0.trc*
    *[2009/2/18 11:21:37:85] Debug 50103 (EngineImpl:EngineImpl): commandline[8] = trace_replace*
    *[2009/2/18 11:21:37:85] Debug 50103 (EngineImpl:EngineImpl): commandline[9] = null*
    *[2009/2/18 11:21:37:85] Debug 50103 (EngineImpl:EngineImpl): commandline[10] = null*
    *[2009/2/18 11:21:37:85] Debug 50103 (EngineImpl:EngineImpl): commandline[11] = null*

  • REP-52266: The in-process Reports Server rep_adminserver_ikit_asinst_1 failed to start.oracle.reports.RWException: IDL:oracle/reports/RWException:1.0

    Hi,
    I have installed oracle forms and reports 11gR2 on Windows 7 Professional 64bit (and configured in development mode), the forms are working fine but when i run a report i get this message
    REP-52266: The in-process Reports Server rep_adminserver_ikit_asinst_1 failed to start.oracle.reports.RWException: IDL:oracle/reports/RWException:1.0

    I was trying to add a new destination:
       <destination class="oracle.reports.server.DesMail" destype="mail"/>
    I couldn't make it work , so I commented my changes.
    In fact, I should have gone back to a backup file , as weblogic seemed to have changed the file itself!! (attributes of the xml tags were in different order, and more things ...) but just undoing what I have done did the trick.
    This file seems to be quite picky, I left this tag uncommented
       </pluginParam>
    and the same REP-5226 error happened.

  • Rep-51002 unable to bind to report server

    Hi,
    I have installed developer 10g, and trying to run my jsp report using OC4J instance and start OC4J instanse for reports. but unable to run the report.
    I did'nt configure any report server but it still producing the same error. (Rep-51002)
    no AS instance installed, no report server configured.
    on the other side at other system it runs fine with same configurations.
    Regards,
    Raza

    sir,
    I am new to oracle 10g and i am not very conversant with this. so i might be asking the basic doubts also
    You are calling the wrong report server (the name is wrong).
    How do i know the correct report server and where do i call it? In my software the reports path is hard coded and its like this
    192.168.1.101:8889/reports/rwservlet?destype=cache&desformat=pdf&paramform=yes&parameter=yes&report=D:\SOURCE\PENSION\
    There is no report server installed at all.
    How do i check this? I installed the application of oracle 10g the same way in windows xp and its working fine.
    Report server is not running.
    http://<server>:<port>/reports/rwservlet/showenv?server=<repserver_name>
    I did try checking it using this url
    http://192.168.1.101:8889/reports/rwservlet/showenv?server=rep_ags-pension.
    Is this the right way? this also gave the same error message. what should i substitute in "showenv?"
    I would be grateful if you could guide me to solve this
    thanks in advance

  • REP-52266: The in-process Reports Server rep_mictest failed to start.oracle

    Dear All
    I am facing the problem while calling report from Application server . When i checked the trace log file i got the below message .
    Exception 50139() Cant delete file E:\Mid\reports\server\<servername>.dat
    Can any one help me to come out from this problem
    Thanks
    jack

    Hi Jack
    Metalink id ID 429950.1,will provide u solutons
    Change the Reports Server configuration so that minEngine is set to a value less than or equal to initEngine and maxEngine
    Make the changes in ur rep_mictest.conf file location /$ORACLE_HOME/reports/conf(Take the backup of original report server.conf file)
    In my case the min Engine and InitEngine are set as follows
    <engine id="rwEng" class="oracle.reports.engine.EngineImpl" initEngine="4" maxEngine="6" minEngine="3" engLife="50" maxIdle="30" callbackTimeOut="90000">
    Once you make the above changes,Bounce the report server
    Regards
    Fabian

  • Web Intelligence Report Server - Error: Failed to run rexec. Error number

    Hello,
    I post a message in this forum :
    "When i want to start "Web Intelligence Report Server" with CMC, i've got this error :
    Web Intelligence Report Server: Echec du démarrage/de l'arrêt du service sur l'ordinateur distant : Error: Failed to run rexec. Error number: %12.
    Any idea ?"
    I've do this command :
    bouser@v-bo-1 bobje$ ./ccm.sh -restart ras
    bouser@v-bo-1 bobje$
    but i have always the same error "Error: Failed to run rexec. Error number: %12".
    Thanks

    Please try to avoid posting duplicate forum posts.
    This command :
    bouser@v-bo-1 bobje$ ./ccm.sh -restart ras
    Restarts RAS server and has nothing to so with WebIntelligence.
    To be able to Start/Stop servers from CMC, you have to have rexec running on your Unix box.
    Google rexec for more information on what it does and ask your Unix admin to enable it.

  • Union All with Linked Servers - Works until loaded on to the report server then fails.

    Hi,
    On our production server I have 2 linked servers.  One that leads to ServiceNow via ODBC and one that leads to an HP Openview database.
    Testing these linked servers works fine.  I have a query that obtains info from each source and 'union all' together.  When i run this query in SQL Server management studio it works fine and I get info from both data sources union-ed together perfectly.
    I transfer this into Visual Studio and create a report, which again runs perfectly.
    I upload this report to the report server and try to run it and get the error: 
    An error has occurred during report processing. (rsProcessingAborted)
    Query execution failed for dataset 'Dataset1'. (rsErrorExecutingCommand)
    For more information about this error navigate to the report server on the local server machine, or enable remote errors
    When I rummage through the log files for the report server, I find very little helpful errors, basically this:
    ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: , Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Query execution failed for dataset 'Dataset1'. ---> System.Data.SqlClient.SqlException: Cannot
    execute the query.
    I did a test where I created a copy of the report and ran only he Servicenow  section of the report and it works, then ran only the HP section of the report and it works.  It seems the UNION ALL is the problem somehow. 
    Anyone have any ideas??
    Thanks
    Kirsty

    Hi Kirsty,
    As you posted, this issue is caused by the security configuration of Linked Server.
    Generally, in a domain environment, we can specify a domain account as the stored credentials for the report, and then configure the Linked Server to "Be made using the login’s current security context".
    However,if we specify a SQL Server login as the stored credentials for the report, please set the Linked Server security to "By using this security context", and then providing the necessary credentials to authenticate at the linked server.
    Please also add the Reporting Services Security role to the Linked Server Remote Server Login Mappings.
    For more information about Creating Linked Servers, please refer to
    http://msdn.microsoft.com/en-us/library/ff772782.aspx
    About Security for Linked Servers, please refer to
    http://msdn.microsoft.com/en-us/library/ms175537.aspx
    Regards,
    Swallow

  • Report server creation fails in 11g

    Dear All,
    When we try to create a new report server it throws the error.
    Command :
    opmnctl createcomponent -adminUsername username -adminHost myserverhost -adminPort myserverport -oracleHome E:\Oracle\Middleware\oracle_common -oracleInstance E:\Oracle\Middleware\
    asinst_1 -instanceName asinst_1 -componentName test_rep_Server -componentType ReportsServerComponent
    Error:
    Command failed: The component type 'ReportsServerComponent' is not supported. Valid component types are: [EMAGENT, OCM]
    Server Spec:
    Fussion Middle ware : FMW 11.1.1.4.0 64
    Oracle Application Server : 11.1.1.2.0_64
    patch Applied : p11060983_111140_MSWIN-x86-64
    OS : Windows 2008
    Bit : 64
    When i check the opmnctl status EMAGENT and OCM are Alive
    Please help me to solve this issue...
    Edited by: Suresh Kumar VS on Jul 31, 2012 6:50 PM

    Hello,
    Please check the following note:
    How Do You Create And Start Up A Standalone Reports Server In 11g R1 & R2? (Doc ID 961174.1)
    Make sure you are using opmnctl from MIDDLEWARE_HOME/ORACLE_INSTANCE/bin/opmnctl
    Also make sure you set ORACLE_HOME. and ORACLE_INSTANCE to correct locations.
    Regards,
    Alex
    If someone answer helped please mark it accordingly.

  • Report server creation fails

    Dear All,
    When we try to create a new report server it throws the error.
    Command :
    opmnctl createcomponent -adminUsername username -adminHost myserverhost -adminPort myserverport -oracleHome E:\Oracle\Middleware\oracle_common -oracleInstance E:\Oracle\Middleware\
    asinst_1 -instanceName asinst_1 -componentName test_rep_Server -componentType ReportsServerComponent
    Error:
    Command failed: The component type 'ReportsServerComponent' is not supported. Valid component types are: [EMAGENT, OCM]
    Server Spec:
    Fussion Middle ware : FMW 11.1.1.4.0 64
    Oracle Application Server : 11.1.1.2.0_64
    patch Applied : p11060983_111140_MSWIN-x86-64
    OS : Windows 2008
    Bit : 64
    When i check the opmnctl status EMAGENT and OCM are Alive
    Please help me to solve this issue...
    Edited by: Suresh Kumar VS on Jul 31, 2012 6:49 PM

    Hello,
    Please check the following note:
    How Do You Create And Start Up A Standalone Reports Server In 11g R1 & R2? (Doc ID 961174.1)
    Make sure you are using opmnctl from MIDDLEWARE_HOME/ORACLE_INSTANCE/bin/opmnctl
    Also make sure you set ORACLE_HOME. and ORACLE_INSTANCE to correct locations.
    Regards,
    Alex
    If someone answer helped please mark it accordingly.

  • Reporting server installation fails

    Hi,
    I am installing SCOM  reporting on my SQL server and it keeps failing.
    I have disabled firewall on my management server (domain profile). 
    DNS resolution is also working,
    I am using separate instance of SQL server for SCOM. all services are running for SQL server. 
    Below are the logs, any help is appreciated: (Only error entries)
    Line 52: [22:16:27]: Error:
    :Error:User did not accept EULA.
    Line 52: [22:16:27]:
    Error: :Error:User did not accept EULA.
    Line 88: [22:16:28]:
    Error: :Error:IsReportingValidToInstall failed SRS instance not provided 
    Line 88: [22:16:28]:
    Error: :Error:IsReportingValidToInstall failed SRS instance not provided 
    Line 161: [22:16:30]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 162: [22:16:30]:
    Error: :The management server specified would lead to an invalid scenario. Setup will attempt to find a valid scenario mgt server.
    Line 164: [22:16:30]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 166: [22:16:31]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 167: [22:16:31]:
    Error: :The management server specified would lead to an invalid scenario. Setup will attempt to find a valid scenario mgt server.
    Line 169: [22:16:31]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 171: [22:16:32]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 172: [22:16:32]:
    Error: :The management server specified would lead to an invalid scenario. Setup will attempt to find a valid scenario mgt server.
    Line 174: [22:16:32]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 207: [22:16:34]:
    Always: :HttpErrorsRoleCheckTitle
    Line 292: [23:34:03]:
    Error: :Could not retrieve DNS name: Threw Exception.Type: System.Net.Sockets.SocketException, Exception Error Code: 0x80004005, Exception.Message: No such host is known
    Line 292: [23:34:03]:
    Error: :Could not retrieve DNS name: Threw Exception.Type: System.Net.Sockets.SocketException, Exception Error Code: 0x80004005, Exception.Message: No such host is known
    Line 293: [23:34:03]:
    Error: :StackTrace:   at System.Net.Dns.InternalGetHostByName(String hostName, Boolean includeIPv6)
    Line 296: [23:39:27]:
    Error: :Could not retrieve DNS name: Threw Exception.Type: System.Net.Sockets.SocketException, Exception Error Code: 0x80004005, Exception.Message: No such host is known
    Line 296: [23:39:27]:
    Error: :Could not retrieve DNS name: Threw Exception.Type: System.Net.Sockets.SocketException, Exception Error Code: 0x80004005, Exception.Message: No such host is known
    Line 297: [23:39:27]:
    Error: :StackTrace:   at System.Net.Dns.InternalGetHostByName(String hostName, Boolean includeIPv6)
    Line 306: [23:40:21]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 307: [23:40:21]:
    Error: :The management server specified would lead to an invalid scenario. Setup will attempt to find a valid scenario mgt server.
    Line 309: [23:40:21]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 311: [23:40:22]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 312: [23:40:22]:
    Error: :The management server specified would lead to an invalid scenario. Setup will attempt to find a valid scenario mgt server.
    Line 314: [23:40:22]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 486: [23:40:43]:
    Error: :Error:User did not accept EULA.
    Line 486: [23:40:43]:
    Error: :Error:User did not accept EULA.
    Line 522: [23:40:43]:
    Error: :Error:IsReportingValidToInstall failed SRS instance not provided 
    Line 522: [23:40:43]:
    Error: :Error:IsReportingValidToInstall failed SRS instance not provided 
    Line 595: [23:40:44]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 596: [23:40:44]:
    Error: :The management server specified would lead to an invalid scenario. Setup will attempt to find a valid scenario mgt server.
    Line 598: [23:40:44]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 600: [23:40:45]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 601: [23:40:45]:
    Error: :The management server specified would lead to an invalid scenario. Setup will attempt to find a valid scenario mgt server.
    Line 603: [23:40:45]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 605: [23:40:47]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 606: [23:40:47]:
    Error: :The management server specified would lead to an invalid scenario. Setup will attempt to find a valid scenario mgt server.
    Line 608: [23:40:47]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 641: [23:40:48]:
    Always: :HttpErrorsRoleCheckTitle
    Line 726: [23:41:01]:
    Error: :Could not retrieve DNS name: Threw Exception.Type: System.Net.Sockets.SocketException, Exception Error Code: 0x80004005, Exception.Message: No such host is known
    Line 726: [23:41:01]:
    Error: :Could not retrieve DNS name: Threw Exception.Type: System.Net.Sockets.SocketException, Exception Error Code: 0x80004005, Exception.Message: No such host is known
    Line 727: [23:41:01]:
    Error: :StackTrace:   at System.Net.Dns.InternalGetHostByName(String hostName, Boolean includeIPv6)
    Line 730: [23:41:51]:
    Error: :Could not retrieve DNS name: Threw Exception.Type: System.Net.Sockets.SocketException, Exception Error Code: 0x80004005, Exception.Message: No such host is known
    Line 730: [23:41:51]:
    Error: :Could not retrieve DNS name: Threw Exception.Type: System.Net.Sockets.SocketException, Exception Error Code: 0x80004005, Exception.Message: No such host is known
    Line 731: [23:41:51]:
    Error: :StackTrace:   at System.Net.Dns.InternalGetHostByName(String hostName, Boolean includeIPv6)
    Line 910: [00:03:54]:
    Debug: :Setting Error Reporting bit for this msi
    Line 1099: [00:10:23]:
    Error: :Application Monitoring reports publishing failed.: Threw Exception.Type: System.InvalidOperationException, Exception Error Code: 0x80131509, Exception.Message: Client found response content type of '', but
    expected 'text/xml'.
    Line 1099: [00:10:23]:
    Error: :Application Monitoring reports publishing failed.: Threw Exception.Type: System.InvalidOperationException, Exception Error Code: 0x80131509, Exception.Message: Client found response content type of '', but
    expected 'text/xml'.
    Line 1101: [00:10:23]:
    Error: :StackTrace:   at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
    Line 1108: [00:10:23]:
    Error: :Error:Publishing App Diagnostics Reports failed.
    Line 1108: [00:10:23]:
    Error: :Error:Publishing App Diagnostics Reports failed.
    Line 1109: [00:10:23]:
    Error: :FATAL ACTION: ConfigureReportingForInstall
    Line 1110: [00:10:23]:
    Error: :ProcessInstalls: Running the PostProcessDelegate returned false.
    Line 1111: [00:10:23]:
    Always: :SetErrorType: Setting NonVitalFailure. currentInstallItem: Reporting Server
    Line 1112: [00:10:23]:
    Error: :ProcessInstalls: Running the PostProcessDelegate for OMREPORTING failed.... but this item is not fatal so we will process the other items.
    Line 1246: [00:10:33]:
    Debug: :Attempted to add a warning icon to item OMREPORTING but since this was an NonVitalFailure case, we added an Error icon instead.
    Line 1305: [00:16:53]:
    Always: :<?xml version="1.0" encoding="utf-8"?><Root><DisplayItem image="/SetupChainerUI;component/smallgreencheck.png" displayText="Initial configuration" controlTitle="INITIAL_CONFIGURATION"
    /><DisplayItem image="/SetupChainerUI;component/smallerror.png" displayText="Reporting" controlTitle="OMREPORTING" ErrorInformationText="&lt;TextBlock TextWrapping='Wrap' xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'&gt;&lt;Run
    Text=&quot;Reporting failed to install.&amp;#xA;&quot;/&gt;&lt;Hyperlink Foreground=&quot;#FF0066CC&quot; NavigateUri=&quot;C:\Users\USER\AppData\Local\SCOM\Logs\OpsMgrSetupWizard.log&quot;&gt;&lt;Run Text=&quot;For
    more information, view the Setup log.&quot;/&gt;&lt;/Hyperlink&gt;&lt;/TextBlock&gt;" /><DisplayItem image="/SetupChainerUI;component/yieldIcon.png" displayText="Final configuration" controlTitle="POSTINSTALL"
    ErrorInformationText="&lt;TextBlock TextWrapping='Wrap' xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'&gt;&l...
    Line 1305: [00:16:53]:
    Always: :<?xml version="1.0" encoding="utf-8"?><Root><DisplayItem image="/SetupChainerUI;component/smallgreencheck.png" displayText="Initial configuration" controlTitle="INITIAL_CONFIGURATION"
    /><DisplayItem image="/SetupChainerUI;component/smallerror.png" displayText="Reporting" controlTitle="OMREPORTING" ErrorInformationText="&lt;TextBlock TextWrapping='Wrap' xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'&gt;&lt;Run
    Text=&quot;Reporting failed to install.&amp;#xA;&quot;/&gt;&lt;Hyperlink Foreground=&quot;#FF0066CC&quot; NavigateUri=&quot;C:\Users\USER\AppData\Local\SCOM\Logs\OpsMgrSetupWizard.log&quot;&gt;&lt;Run Text=&quot;For
    more information, view the Setup log.&quot;/&gt;&lt;/Hyperlink&gt;&lt;/TextBlock&gt;" /><DisplayItem image="/SetupChainerUI;component/yieldIcon.png" displayText="Final configuration" controlTitle="POSTINSTALL"
    ErrorInformationText="&lt;TextBlock TextWrapping='Wrap' xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'&gt;&l...
    Line 1305: [00:16:53]:
    Always: :<?xml version="1.0" encoding="utf-8"?><Root><DisplayItem image="/SetupChainerUI;component/smallgreencheck.png" displayText="Initial configuration" controlTitle="INITIAL_CONFIGURATION"
    /><DisplayItem image="/SetupChainerUI;component/smallerror.png" displayText="Reporting" controlTitle="OMREPORTING" ErrorInformationText="&lt;TextBlock TextWrapping='Wrap' xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'&gt;&lt;Run
    Text=&quot;Reporting failed to install.&amp;#xA;&quot;/&gt;&lt;Hyperlink Foreground=&quot;#FF0066CC&quot; NavigateUri=&quot;C:\Users\USER\AppData\Local\SCOM\Logs\OpsMgrSetupWizard.log&quot;&gt;&lt;Run Text=&quot;For
    more information, view the Setup log.&quot;/&gt;&lt;/Hyperlink&gt;&lt;/TextBlock&gt;" /><DisplayItem image="/SetupChainerUI;component/yieldIcon.png" displayText="Final configuration" controlTitle="POSTINSTALL"
    ErrorInformationText="&lt;TextBlock TextWrapping='Wrap' xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'&gt;&l...
    Line 1375: [00:40:27]:
    Error: :Error:User did not accept EULA.
    Line 1375: [00:40:27]:
    Error: :Error:User did not accept EULA.
    Line 1411: [00:40:28]:
    Error: :Error:IsReportingValidToInstall failed SRS instance not provided 
    Line 1411: [00:40:28]:
    Error: :Error:IsReportingValidToInstall failed SRS instance not provided 
    Line 1484: [00:40:29]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 1485: [00:40:29]:
    Error: :The management server specified would lead to an invalid scenario. Setup will attempt to find a valid scenario mgt server.
    Line 1487: [00:40:29]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 1489: [00:40:30]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 1490: [00:40:30]:
    Error: :The management server specified would lead to an invalid scenario. Setup will attempt to find a valid scenario mgt server.
    Line 1492: [00:40:30]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 1494: [00:40:31]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 1495: [00:40:31]:
    Error: :The management server specified would lead to an invalid scenario. Setup will attempt to find a valid scenario mgt server.
    Line 1497: [00:40:31]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 1530: [00:40:33]:
    Always: :HttpErrorsRoleCheckTitle
    Line 1645: [00:40:48]:
    Error: :CheckHttpAddressResponse failed: Threw Exception.Type: System.Net.WebException, Exception Error Code: 0x80131509, Exception.Message: The remote server returned an error: (503) Server Unavailable.
    Line 1645: [00:40:48]:
    Error: :CheckHttpAddressResponse failed: Threw Exception.Type: System.Net.WebException, Exception Error Code: 0x80131509, Exception.Message: The remote server returned an error: (503) Server Unavailable.
    Line 1645: [00:40:48]:
    Error: :CheckHttpAddressResponse failed: Threw Exception.Type: System.Net.WebException, Exception Error Code: 0x80131509, Exception.Message: The remote server returned an error: (503) Server Unavailable.
    Line 1646: [00:40:48]:
    Error: :StackTrace:   at System.Net.HttpWebRequest.GetResponse()
    Line 1747: [22:22:41]:
    Error: :Error:User did not accept EULA.
    Line 1747: [22:22:41]:
    Error: :Error:User did not accept EULA.
    Line 1783: [22:22:41]:
    Error: :Error:IsReportingValidToInstall failed SRS instance not provided 
    Line 1783: [22:22:41]:
    Error: :Error:IsReportingValidToInstall failed SRS instance not provided 
    Line 1856: [22:22:42]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 1857: [22:22:42]:
    Error: :The management server specified would lead to an invalid scenario. Setup will attempt to find a valid scenario mgt server.
    Line 1859: [22:22:42]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 1861: [22:22:44]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 1862: [22:22:44]:
    Error: :The management server specified would lead to an invalid scenario. Setup will attempt to find a valid scenario mgt server.
    Line 1864: [22:22:44]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 1866: [22:22:46]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 1867: [22:22:46]:
    Error: :The management server specified would lead to an invalid scenario. Setup will attempt to find a valid scenario mgt server.
    Line 1869: [22:22:46]:
    Error: :No Management Server property was provided and Setup could not find a valid Management Server.  Please rerun setup with a valid management server.
    Line 1902: [22:22:48]:
    Always: :HttpErrorsRoleCheckTitle
    Line 2018: [22:24:14]:
    Error: :Dummy schedule was not created: Threw Exception.Type: System.Web.Services.Protocols.SoapException, Exception Error Code: 0x80131501, Exception.Message: System.Web.Services.Protocols.SoapException: The SQL
    Agent service is not running. This operation requires the SQL Agent service. ---> Microsoft.ReportingServices.Diagnostics.Utilities.SchedulerNotRespondingException: The SQL Agent service is not running. This operation requires the SQL Agent service.
    Line 2018: [22:24:14]:
    Error: :Dummy schedule was not created: Threw Exception.Type: System.Web.Services.Protocols.SoapException, Exception Error Code: 0x80131501, Exception.Message: System.Web.Services.Protocols.SoapException: The SQL
    Agent service is not running. This operation requires the SQL Agent service. ---> Microsoft.ReportingServices.Diagnostics.Utilities.SchedulerNotRespondingException: The SQL Agent service is not running. This operation requires the SQL Agent service.
    Line 2021: [22:24:14]:
    Error: :StackTrace:   at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
    Line 2057: [22:24:28]:
    Error: :Dummy schedule was not created: Threw Exception.Type: System.Web.Services.Protocols.SoapException, Exception Error Code: 0x80131501, Exception.Message: System.Web.Services.Protocols.SoapException: The SQL
    Agent service is not running. This operation requires the SQL Agent service. ---> Microsoft.ReportingServices.Diagnostics.Utilities.SchedulerNotRespondingException: The SQL Agent service is not running. This operation requires the SQL Agent service.
    Line 2057: [22:24:28]:
    Error: :Dummy schedule was not created: Threw Exception.Type: System.Web.Services.Protocols.SoapException, Exception Error Code: 0x80131501, Exception.Message: System.Web.Services.Protocols.SoapException: The SQL
    Agent service is not running. This operation requires the SQL Agent service. ---> Microsoft.ReportingServices.Diagnostics.Utilities.SchedulerNotRespondingException: The SQL Agent service is not running. This operation requires the SQL Agent service.
    Line 2060: [22:24:28]:
    Error: :StackTrace:   at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
    Line 2224: [22:26:09]:
    Debug: :Setting Error Reporting bit for this msi
    Line 2421: [22:30:30]:
    Error: :Application Monitoring reports publishing failed.: Threw Exception.Type: System.InvalidOperationException, Exception Error Code: 0x80131509, Exception.Message: Client found response content type of 'text/html;
    charset=utf-8', but expected 'text/xml'.
    Line 2421: [22:30:30]:
    Error: :Application Monitoring reports publishing failed.: Threw Exception.Type: System.InvalidOperationException, Exception Error Code: 0x80131509, Exception.Message: Client found response content type of 'text/html;
    charset=utf-8', but expected 'text/xml'.
    Line 2422: The request failed with the error message:
    Line 2436:          .error {margin-bottom: 10px;}
    Line 2443:             <span><H1>Server Error in '/ReportServer_SCOMDB' Application.<hr width=100% size=1 color=silver></H1>
    Line 2449:             <b> Description: </b>An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about
    the error and where it originated in the code.
    Line 2455:             <b>Source Error:</b> <br><br>
    Line 2479:    System.Web.ApplicationStepManager.ResumeSteps(Exception error) +762
    Line 2501:    at System.Web.HttpApplication.ApplicationStepManager.ResumeSteps(Exception error)
    Line 2506: [22:30:30]:
    Error: :StackTrace:   at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
    Line 2513: [22:30:30]:
    Error: :Error:Publishing App Diagnostics Reports failed.
    Line 2513: [22:30:30]:
    Error: :Error:Publishing App Diagnostics Reports failed.
    Line 2514: [22:30:30]:
    Error: :FATAL ACTION: ConfigureReportingForInstall
    Line 2515: [22:30:30]:
    Error: :ProcessInstalls: Running the PostProcessDelegate returned false.
    Line 2516: [22:30:30]:
    Always: :SetErrorType: Setting NonVitalFailure. currentInstallItem: Reporting Server
    Line 2517: [22:30:30]:
    Error: :ProcessInstalls: Running the PostProcessDelegate for OMREPORTING failed.... but this item is not fatal so we will process the other items.
    Line 2651: [22:30:56]:
    Debug: :Attempted to add a warning icon to item OMREPORTING but since this was an NonVitalFailure case, we added an Error icon instead.

    Ensure that SQL Server Reporting Services has been correctly installed and configured
    To verify that Reporting Services is configured correctly
    Verify that the ReportServer and ReportServerTempDB databases in SQL Server Management Studio are located on the stand-alone server.
    Verify the correct configuration of SQL Server Reporting Services. Click Start, point to Programs, point to the appropriate offering of Microsoft SQL Server, point to Configuration Tools, and then click Reporting Services Configuration Manager. Connect
    to the instance on which you installed Reporting Services.
    3.In the navigation pane, select the <servername>\SQLinstance. This displays the Report Server status in the results pane. Ensure that the Report Server Status is Started.
    4.In the navigation pane, select Scale-out Deployment, and then ensure that the Status column has the value of Joined.
    5.Verify that the Report Server website is functioning and available by browsing to
    http://servername/reportserver_<$instance>. You should see a page with the <servername>/ReportServer_<$INSTANCE> and the text, Microsoft SQL Server Reporting Services Version ##.#.####.##
    where the # is the version number of your SQL Server installation.
    6.Verify that the Report Manager website is configured correctly by opening Internet Explorer and browsing to <a href="http:///reports_<instance">http://<servername>/reports_<instance>.
    7.In the Report Manager website, click New Folder to create a new folder. Enter a name and description, and then click OK. Ensure that the new, created folder is visible on the Report Manager website.
    Roger

Maybe you are looking for