When Starting OC4J, why the report server doesn't start automatically? !!

Dear All,
I have DS 10g on my system and I start the OC4J when I have to run either forms or reports.
But when I attend to start the do the following command from the form:
WEB.SHOWDOCUMENT(..../getjobid<jobid>?server=<servername>...), I have an error: FRM-41213: Unable to connect to the report server <servername>.
I noticed that if I run the following URL:http://<server>:.../reports/rwservlet, it gives me a list of command, but the server still not running..But if I add any command to the above URL like for example "getserverinfo" or "showjobs" then the server is started. Now, and after the command, if we return back and we run the report from the form, the report will run successfully.
The question WHY??
Regards,
Joe
Message was edited by: Joe
Joe Farah

Hello,
That's the way it works ...
http://download-uk.oracle.com/docs/cd/B14099_17/bi.1012/b14048/pbr_strt.htm
2.1.3.1 Starting the In-process Server (Windows and UNIX)
If you are using Reports Server as an in-process server (the default configuration), sending a run report request starts the in-process server; however, if you are sending a request through a command line, the servlet must be invoked first using either the run report URL or the Web command URL. When you have successfully started the servlet, this also means you have successfully started the in-process server.
If you use "Oracle Application Server", the "in-process" reports server will be started automatically by opmn ...
Regards

Similar Messages

  • When i start the report server it say starting then it say shutting down

    i received this message everytime i start the report server
    starting then shutting down
    this happen after i did remove the server from the domain and re-join it again to the domain
    please help

    Hello,
    The best method to diagnoze this kind of problem is to activate the Reports Server trace
    Edit the file $ORACLE_HOME/reports/conf/<reports server name>.conf
    Modify it in order to have a line :
    <trace traceOpts="trace_all"/>
    Then, restart the reports server.
    The trace files will be generated in $ORACLE_HOME/reports/logs for Reports 9.0.2
    or in $ORACLE_HOME/reports/logs/<reports server name> for Reports 9.0.4
    Regards

  • Reports server doesn't start after upgrade 11.1.1.2 - 11.1.1.6

    Hello,
    I've upgraded a Linux server from Weblogic 10.3.2 / Forms 11.1.1.2 to Weblogic 10.3.6 / Forms 11.1.1.6 and I have some problems with reports server.
    I can't use jobStatusRepository on my reports server.
    I've created a new one, and when I activate the Job Status Repository, server can't start.
    I've added this features from Enterprise Manager and I've build a new credential (I first have tried to redefine old ones).
    When I modify my rwserver.conf adding comments to jobStatusRepository section, my report server start (from opmnctl or from Enterprise Manager) but as soon I put on line the jobStatusRepository, it fails to start.
    My server is an Oracle Linux 5.
    I've done the same on another server (same releases) and it does the same ...
    Thanks for any help.
    Xavier Cabantous

    Hello,
    thanks for your reply.
    I've put level TRACE:32in traces but there is nothing interesting in log files :
    in console~rep11_nodhos~1.log =>
    12/06/09 21:02:10 Start process
    9 juin 2012 21:02:13 oracle.security.jps.internal.common.util.XmlSchemaValidationUtil$StrictErrorHandler warning
    ATTENTION: Echec de la validation du contenu XML. SchemaLocation: schemaLocation value = 'http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd' must have even number of URI's. Emplacement : line 2 column 272.
    but I've seen in other topics that we don't have to care to this Warning.
    in rwserver_diagnostic.log =>
    no errors messages, it ends with
    [2012-06-09T21:02:13.483+02:00] [reports] [TRACE:16] [] [oracle.reports.server] [tid: 10] [ecid: 0000JVIc0PeFw000jzwkno1Fotqn000001,0] [SRC_CLASS: oracle.reports.utility.RWLogger] [SRC_METHOD: writeln] Multicast:registerReceiver Packet handler registered
    [2012-06-09T21:02:13.489+02:00] [reports] [NOTIFICATION:16] [] [oracle.reports.server] [tid: 10] [ecid: 0000JVIc0PeFw000jzwkno1Fotqn000001,0] ServerPacketHandler:start ServerPacketHandler started successfully
    I just have opened a SR on MetaLink

  • HT1926 Why the iTunes download doesn't start in windows 7 after deleting temp file etc

    I have followed the instructions for deleting the temp files and still when I click the download button nothing happens. I am very new to this Windows 7 so most likely I am the reason for this failure but its driving me crazy! How do I get iTunes to work?

    Adobe staff has to browse these forums on their own time (I know that should be part of their job) so their visits are infrequent.
    There are several sites to report bugs which seems to be counterproductive.   I think this one has the most support right now. http://feedback.photoshop.com/photoshop_family
    And you are sure you are not running Bridge CS5 in the background?  You can only run one Bridge program at any one time.
    In both the Mac and Win OS seems like the workaround to create a new user works frequently, but it is a hassle.  In your problem solving did you unistall everything then run the Adobe Script Cleaner? 
    Although this is a stretch for this problem, but might search your uninstall directroy and see if there are any expired Adobe trials you have not uninstalled.  For whatever reason it can stop launch of Bridge "as you need to launch parent application at least once".  Apparently even though it is long gone it is still seeing it as "parent" program.  As I said it is kind of a stretch here, but you never know.
    Good luck on this as I know it is extrememly frustrating and Adobe does have its communication problems. 
    That is why it is important for the users to step up and start contributing to these forums with suggestions on what to try, thiings they have tried and worked or did not, etc. 

  • Why the J2EE server doesn't compile my JSP ?

    I made up a simple JSP to start learning J2EE, i tried it on an Java IDE on my PC and it works; when i try to deploy the page on my web site host server(supporting J2EE) and execute it, i got a blank page only.
    Browsing the Html code, i see the same code i wrote; the JSP special tags have not been executed.
    What's wrong ?
    Have i to deploy the page in a particular way, or it is a J2EE server problem?
    This is the simple page :
    <%@ page contentType="text/html"%>
    <html>
    <head><title>JSP Page</title></head>
    <body>
    <%= "Java Server Page"%>
    </body>
    </html>

    Try this:
    <%@ page language="java" %>
    <html>
    <p><%= "Java Server Page"%></p>
    </html>You don't need to that content HTML stuff - the JSP knows that it's going to send HTML down to the browser.
    It works on my machine deployed in a WAR and running under Tomcat 4.1.27. Here's the HTML I get when I "View Source":
    <html>
    <p>Java Server Page</p>
    </html>Works fine. - MOD

  • Excess time taken to schedule requests to the report server

    I have a file which contains 10000 requests to be send to the report server. The total time taken by the report client to send the request to the report server is somewhere around 4 - 5 hours. Why does report client take so much time to schedule the request to the report server ????? How can i get around this problem, since the report execution doesn't start till the last request has been send since i am using schedule=<some_delay> and not schedule=NOW.

    I have a file which contains 10000 requests to be send to the report server. The total time taken by the report client to send the request to the report server is somewhere around 4 - 5 hours. Why does report client take so much time to schedule the request to the report server ????? How can i get around this problem, since the report execution doesn't start till the last request has been send since i am using schedule=<some_delay> and not schedule=NOW.

  • Report service doesn't start after installing 9iAS

    Forms are fine after installing 9iAS, but report server doesn't
    start, and is not listed in Control Panel, Services.
    If I try start it as RWMTS60.exe -install oracledev2 tcpip I got
    the error "Please consult the installation guides for how to set
    up and run this program", if I start it as RWMTS60.exe -listen
    oracledev2 I got the error "Rep 0001:Unable to find the report
    builder message file. Please verify your installation". Attempt
    to run any Reports product (Runtime, for instance) causes
    Dr.Watson on RWRUN60.exe. The registry parameter RW60 points to
    the ORACLE_HOME/report60 for the Reports Server that is failing.
    What do I do to start Reports ?
    Thank you,
    Kate

    Hi,
    1. Stop the DBConsole. (set ORACLE_SID first & ORACLE_HOME)
    cd %ORACLE_HOME%\bin
    emctl stop dbconsole
    2. Update the <ORACLE_HOME>/<hostname_sid>/sysman/config/emd.properties file.
    Change line from:
    tracelevel.main=WARN
    To
    tracelevel.main=DEBUG
    Decomment this line, so that the line becomes :
    EMAGENT_PERL_TRACE_LEVEL=DEBUG
    3. Update the <ORACLE__HOME>/<hostname_sid>/sysman/config/emomslogging.properties
    Change line from:
    log4j.rootCategory=WARN, emlogAppender, emtrcAppender
    To
    log4j.rootCategory=DEBUG, emlogAppender, emtrcAppender
    4. Remove/backup all log files from ORACLE_HOME/<hostname_sid>/sysman/log
    5. Start the dbconsole and upload the output of each command
    - start the dbconsole: "emctl start dbconsole"
    - issue "emctl clearstate"
    - status the dbconsole: "emctl status dbconsole"
    - check the status of the agent until it comes up: "emctl status agent"
    - force an upload: emctl upload
    6. Check If you are able to view the dbconsole Page & login
    check below logs may be you can see the close error messages to solve the issue.
    <ORACLE_HOME>/<hostname_sid>/sysman/log directory
    <ORACLE_HOME>/<hostname_sid>/sysman/config/emoms.properties
    Otherwise re-create the DBconsole using the metalink doc 278100.1 : How To Drop, Create And Recreate DB Control In A 10g Database. (Please check the steps from Recreate/ReConfig DB Control, if you want to re-create)
    Thanks.

  • MDM Server doesn't start after upgrade to SP 5

    hi,
    i'm not used to sap services on windows hosts.
    After the Update from 7.1.04 to 7.1.05 the mdm server doesn't start. I found only a few logs (unter c:/usr/sap/SID/MDS00/work). Most of them from sapcpe (without errors or warnings). Only the sapstart.log contains a bit information:
    SAP-R/3-Startup Program
    Starting at 2010/08/16 21:29:18
    Startup Profile: "C:\usr\sap\MDM\SYS\profile\MDM_MDS00_mdmtest"
    Starting Programs
    (1684) Execute: C:\usr\sap\MDM\SYS\exe\uc\NTAMD64\sapcpe.EXE pf=C:\usr\sap\MDM\SYS\profile\MDM_MDS00_mdmtest list:C:\usr\sap\MDM\SYS\exe\uc\NTAMD64/mds.lst
    (976) Execute: C:\usr\sap\MDM\SYS\exe\uc\NTAMD64\sapcpe.EXE pf=C:\usr\sap\MDM\SYS\profile\MDM_MDS00_mdmtest list:C:\usr\sap\MDM\SYS\exe\uc\NTAMD64/shared.lst
    (3632) Execute: C:\usr\sap\MDM\SYS\exe\uc\NTAMD64\sapcpe.EXE pf=C:\usr\sap\MDM\SYS\profile\MDM_MDS00_mdmtest list:C:\usr\sap\MDM\SYS\exe\uc\NTAMD64/sapinstance.lst
    (2172) Execute: C:\usr\sap\MDM\MDS00\exe\mdmcpc.bat C:\usr\sap\MDM\SYS\profile\MDM_MDS00_mdmtest.INI C:\usr\sap\MDM\MDS00\config\mds.ini
    (3652) CreateProcess: C:\usr\sap\MDM\MDS00\exe\mds.EXE
    Process 3652 died unexpectedly, restarting process
    (3612) Restart CreateProcess: C:\usr\sap\MDM\MDS00\exe\mds.EXE
    Process 3612 died unexpectedly, restarting process
    (2364) Restart CreateProcess: C:\usr\sap\MDM\MDS00\exe\mds.EXE
    Process 2364 died unexpectedly, restarting process
    (3576) Restart CreateProcess: C:\usr\sap\MDM\MDS00\exe\mds.EXE
    Process 3576 died unexpectedly, restarting process
    (3588) Restart CreateProcess: C:\usr\sap\MDM\MDS00\exe\mds.EXE
    Process 3588 died unexpectedly, final process restart.
    Process will not be restated in the future because of frequent failure.
    (1396) Restart CreateProcess: C:\usr\sap\MDM\MDS00\exe\mds.EXE
    This isn't really much I can work with. In the sapmmc I found the Option Developer Trace. I try to 'switch it on', but there is no difference.
    With 7.1.04 the server was running well.
    I happy for any suggestions

    Hi,
    Please check out Note 1482822 - MDM Server not starting after MDM 7.1 SP05 was installed.
    hope it helps you.
    Best regards,
    sudhanshu

  • Bad load arguments supplied when starting up the Reports Server

    Dear All,
    In report60\server\<filename>.ora
    Following were the contents :
    maxconnect=20
    cachedir="d:\Oracle\806\REPORT60\server\cache"
    cachesize=50
    minengine=0
    initengine=0
    maxengine=1
    maxidle=30
    security=1
    englife=50
    We chnaged it to
    maxconnect=20
    cachedir="d:\Oracle\806\REPORT60\server\cache"
    cachesize=50
    minengine=1
    initengine=0
    maxengine=5
    maxidle=30
    security=1
    englife=50
    We imideatly got result we checked it put it on live application server.
    Everything was smooth but next day we got calls/email from user saying report were slow. when we checked the windows process on application server rwmts60 was occuping 50% of memory so we killed that process. We restrarted the report service but was unable to restart.Then we saw the report log as follows :
    *** 2008-07-29 17:36:51 -- Server started up an engine. (Rep60_WEBDB-01)
    *** 2008-07-29 17:36:53 -- Server engine crashed. (Rep60_WEBDB-01)
    *** 2008-07-29 17:38:18 -- Server started up an engine. (Rep60_WEBDB-01)
    *** 2008-07-29 18:39:44 -- Server shutting down an engine. (Rep60_WEBDB-01)
    *** 2008-07-30 09:13:19 -- Server engine cannot be started. (Rep60_WEBDB-01)
    *** 2008-07-30 09:15:24 -- Server engine cannot be started. (Rep60_WEBDB-01)
    *** 2008-07-30 09:17:29 -- Server engine cannot be started. (Rep60_WEBDB-01)
    *** 2008-07-30 09:19:34 -- Server engine cannot be started. (Rep60_WEBDB-01)
    *** Bad load arguments supplied when starting up the Reports Server
    *** Bad load arguments supplied when starting up the Reports Server
    *** Bad load arguments supplied when starting up the Reports Server
    *** Bad load arguments supplied when starting up the Reports Server
    then we changed back our ora file to
    maxconnect=20
    cachedir="d:\Oracle\806\REPORT60\server\cache"
    cachesize=50
    minengine=0
    maxengine=1
    initengine=0
    maxidle=30
    security=1
    englife=50
    And restarted the service which restarted suceesfully.
    My question is i had changed maxengine=5 and minengine=1 on 20- JUL-2008 around 16:00 .Did this happen b'coz of this 2 parameters.
    Kindly advice.
    Thanking You in anticipation.
    Best Regards,
    Devendra

    Hello Mahendraji,
    Thanks for your reply.
    I may ask some basic question please accomodate me.
    <<$RACLE_HOME\reports\conf\apple_report.conf>>
    I have Application server 9i version 1.0.2.0.0 (isuite).
    I have installed in D drive
    In this drive a folder d:\orcale is created.
    Inside of this i don't have any folder called "reports"
    i have folder called "806"
    \\webdb-01\D-Drive\Oracle\806
    Inside of which i have folder "report60"
    \\webdb-01\D-Drive\Oracle\806\REPORT60
    Inside of which i have folder "SERVER"
    \\webdb-01\D-Drive\Oracle\806\REPORT60\SERVER
    In which i found "Rep60_WEBDB-01.ora" , "Rep60_WEBDB-01.log" and "cgicmd.dat"
    and 2 folders "CACHE" and "security".
    I am confused as you said that the file name should be Rep60_WEBDB-01.CONF but i have Rep60_WEBDB-01.ora are they one and the same . If yes is the extension b'coz i have older version of 9i i.e 1.0.2.0.0 (isuite).
    if no where i how i can search this .
    This Rep60_WEBDB-01.ora file doesnot have parameter "engineResponseTimeOut" if i add it will it work.
    Your explanation regarding "engineResponseTimeOut" is clear.
    Maximum Time taken by our report is 20 minutes. But sometimes when report hangs or SQL takes more time than normal due to the environment so the max time might change to 25 or 30 minutes in such a case should we keep it at 45 minutes to avoid any unneccessary termination.
    <<Note:
    It is always better to run batch reports on a separate server with different engineResponseTimeOut values. Do not submit interactive and batch reports to same server.>>
    If i create a seperate application server how can i send reports requested by user to batch in this seperrate server.
    What should be the criteria of report to be redirected to seperate server?
    What do mean by "submit interactive" and "submit batch"
    My interpretation is when we click on submit query button it is "submit interactive" is it correct.
    I am not clear about "submit batch"
    I know there might be some silly questions but please do accomodate.
    Kindly advice.
    Thanks.
    Regards,
    Devendra Shelke

  • Starting the reports server as a servlet

    Dear friends, I'm trying to run a JSP Report which was built with JDev and Report Builder, but when I compiled the JSP Report on JDev, the Internet Browser has started with the LOADING... page and nothing happened.
    I have Report Services and HTTP Server started, but I can't verify if the Reports Servlet is running.
    I've been reading the "Publishing Reports to the Web with Oracle9iAS Reports Services" document at "http://otn.oracle.com/docs/products/reports/htdocs/doc_library/getstart/docs/a92102_01.pdf" and it's written that we can start the reports server as a servlet typing :
    http://< your_machine_name>:<your_port_num>/reports/rwservlet
    In my case :
    <your_machine_name> = bicas
    <your_port_num> = Is it a HTTP port number? If it is. = 80
    Then :
    http://bicas:80/reports/rwservlet
    But this return a HTTP 404 error, page not found.
    I have Oracle9iDS and Oracle9iAS installed on the same machine.
    What do I need to do to start the reports server as a servlet?
    Do I need to do this to run a JSP Report from the Web?

    Try the following:
    1) Create a new project in JDev
    2) Add a new Reports JSP object into the project from 'File -> new' (this'll setup the project form JSP report execution)
    3) Edit the JSP report, or add your own jsp report to the project
    4) run the JSP report
    To use Reports servlet's in-process server, remove 'server=...' from JSP tag rw:report's 'parameters' attribute, and make sure JVM is set to 'hotspot' in 'Project Setting -> Runner'.
    To use standalone Reports server, start the server, and specified the server in rw:report's 'parameters' attribute.
    Hope this helps.
    Regards,
    Charlie Sheng

  • I am walking through Apples tutorial getting started with iOS development. I am at the storyboard area and can't seem to drag the cancel button to the green exit. I am not sure why the exit button doesn't except it. Is anyone else having this issue?

    I am walking through Apples tutorial getting started with iOS development. I am at the storyboard area and can't seem to drag the cancel button to the green exit. I am not sure why the exit button doesn't except it. Is anyone else having this issue? Is there a work around? I have done this app twice and still cant get the exit to except the Cancel or Done  bar buttons

    Yes I checked it.  As far as I can see I did everything Apple said to do.  I took some screen shot so you can see how the screens are connected and what and where the code is, and what it does when I drag the cancel and done bar buttons to the exit

  • How to start a report on the reports server from a pl/sql procedure

    I would like to start or queue a report on the reports server / cartridge from within a serverside pl/sql procedure along with passing report parameters.
    Can I use the package utl_http and if yes, how?
    null

    Hi,
    Before this you have to prepare your internal table with tab delimeter structure with data.
    data: wa_appl_title like line of appl_title.
           concatenate fhdr '/file_details_'
                        sy-datum '_' sy-uzeit '.txt' into fhdr.
    *MOD01 - start.
           open dataset fhdr for output in text mode." ENCODING DEFAULT.
            open dataset fhdr for output in text mode ENCODING DEFAULT.
    *MOD01 - end.
            if sy-subrc = 0.
              clear wa_appl_title.
              read table appl_title into wa_appl_title index 1.
              if sy-subrc = 0.
                transfer wa_appl_title to fhdr.
              endif.
              loop at appl_it.
                transfer appl_it to fhdr.
              endloop.
              close dataset fhdr.
              write: / text-t05.
            else.
              write: /  text-t04.
            endif.
    After this you view in AL11 tranx.
    let us know any thing else you need.
    Thanks,
    Deepak.

  • Reporting Services will not automatically use a different replica for the report server databases when a failover occurs. How to overcome this issue

    Reporting Services offers limited support for using AlwaysOn Availability Groups with report server databases. The report server databases can be configured in AG to be part of a replica; however Reporting Services will not automatically use a different
    replica for the report server databases when a failover occurs. How to overcome this issue? is there any workaround for that..
    Rahul

    Hi.
    With the AlwaysOn listener you should have a single DNS name to connect to regardless of which cluster node is active. Are you using the listener service? If not, please refer to the link below.
    http://msdn.microsoft.com/en-us/library/hh213417.aspx#AGlisteners

  • Graphs not shown in EXCEL, when the reports server is secured with SSL

    We installed a SSL certificate on the reports server to run as https instead of http and the graphs in the reports stopped working for desformat=EXCEL. The graphs in the pdf output run fine.the version we are using is Oracle reports 10g

    Hi,
    I had similar kind of problem and see below for details.
    I am using Vertical bar charts in my RTF Tempalte and output format is EXCEL. When i am prevewing from BI Publisher desktop output it is showing the charts . When i Used same template and running in the server side(i.e oracle applications concurrent manager ) it is not showing the charts in the output. If i run the same template through oracle applications concurrent manager with PDF output it is showing charts in the output.
    Please share your thoughts/experiences/suggesition regarding this.
    If any help appreciated.
    Thanks,
    Dinesh

  • WMIProviderException: An error occurred when attempting to connect to the report server remote procedure call (RPC) end point

    I am getting the following error message while trying to configure a database for a Reporting Service Server.  Both SQL Server and Reporting server are 2012 named instances.  I have 2014 instances as well on the same server.
    Exception details...
    Microsoft.ReportingServices.WmiProvider.WMIProviderException: An error occurred when attempting to connect to the report server remote procedure call (RPC) end point. Verify that the Report Server Windows service is running, and then retry the operation.
     ---> System.Runtime.InteropServices.COMException (0x800706B3): The RPC server is not listening. (Exception from HRESULT: 0x800706B3)
       --- End of inner exception stack trace ---
       at Microsoft.ReportingServices.WmiProvider.RSWmiAdmin.ThrowOnError(ManagementBaseObject mo)
       at Microsoft.ReportingServices.WmiProvider.RSWmiAdmin.GenerateDatabaseScript(String databaseName, Int32 lcid, Boolean isSharePointIntegrated, String& script)
       at ReportServicesConfigUI.WMIProvider.RSReportServerAdmin.GenerateDatabaseScript(String databaseName, Int32 lcid, Boolean isSharePointIntegrated, String& script)
    Can someone help me on this please?

    Hi Jaigi,
    According to your description, you want to change a report server database for Reporting Services. But it fails on the last step and returns a error. Right?
    In this scenario, it seems you are creating a report server database on another server via remote connection. Based on the error message, it has issues on executing the script for generating new database. Please check if you have permission to connect the
    server and create a new database. Also please check if the Reporting Services Windows services is working properly.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

Maybe you are looking for