Exception 50125 when report server startup

I start a in-process server with rwserver.sh comand on linux platform.
But when I run a web report on browser, the browser shows:
REP-56048: Engine null crashed, job Id: 1
I checked the report server trace file, find when I startup the report server, there is a exception listed below.
Anyone who can thow a light on this issue will be appreciated.
[2003/5/19 5:42:35:83] Exception 50125 (exception oracle.reports.RWException {
oracle.reports.RWError[] errorChain={struct oracle.reports.RWError {
int errorCode=55103,
java.lang.String errorString="API URLEngine:getEngineEnvs not applicable to URL engine",
java.lang.String moduleName="REP"
at oracle.reports.RWExceptionHelper.read(Unknown Source)
at oracle.reports.engine._EngineClassStub.getEnvs(Unknown Source)
at oracle.reports.server.EngineManager$TimedPingerThread.run(EngineManager.java:1581)
): Internal error exception oracle.reports.RWException {
oracle.reports.RWError[] errorChain={struct oracle.reports.RWError {
int errorCode=55103,
java.lang.String errorString="API URLEngine:getEngineEnvs not applicable to URL engine",
java.lang.String moduleName="REP"
[2003/5/19 5:42:35:83] Warning 50103 (EngineManager:registerEngine): REP-55103: API URLEngine:getEngineEnvs no
t applicable to URL engine
[2003/5/19 5:42:35:83] Info 56026
.....

Thanks for your feedback.Acturally, I try it ,but still get this error. It seems the engine is changed from URLEngine to rwEng-0, please have a look:
[2003/5/20 2:45:41:321] Info 56021 (EngineManager:spawnEngine): Engine rwEng-0 has been launched
[2003/5/20 2:45:41:322] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Initial
[2003/5/20 2:45:41:323] Debug 50103 (JobStore:writePersistFile): Purge persistent file
[2003/5/20 2:45:41:325] Debug 50103 (JobStore:writePersistFile): Purge persistent file done
[2003/5/20 2:45:52:813] Exception 50125 (java.lang.Exception: getEnvs call from Server to Enging failed - call did not return
at oracle.reports.server.EngineManager.registerEngine(EngineManager.java :981)
at oracle.reports.server.EngineCommImpl.registerEngine(Unknown Source)
at oracle.reports.server.EngineCommPOATie.registerEngine(Unknown Source)
at oracle.reports.server.EngineCommPOA._invoke(Unknown Source)
at oracle.reports.server.EngineCommPOA._invoke(Unknown Source)
at com.inprise.vbroker.poa.POAImpl.invoke(POAImpl.java:2355)
at com.inprise.vbroker.poa.ActivationRecord.invoke(ActivationRecord.java:104)
at com.inprise.vbroker.GIOP.GiopProtocolAdapter.doRequest(GiopProtocolAdapter.java:492)
at com.inprise.vbroker.IIOP.ServerProtocolAdapter.doRequest(ServerProtocolAdapter.java:64)
at com.inprise.vbroker.GIOP.GiopProtocolAdapter.dispatchMessage(GiopProt
ocolAdapter.java:653)
at com.inprise.vbroker.orb.TPDispatcherImpl$TPDispatcher.run(TPDispatcherImpl.java:99)
at com.inprise.vbroker.orb.ThreadPool$PoolWorker.run(ThreadPool.java:76)
): Internal error java.lang.Exception: getEnvs call from Server to Enging failed - call did not return
[2003/5/20 2:45:52:814] Info 56026 (EngineManager:registerEngine): Reports Server started up engine rwEng-0
[2003/5/20 2:45:52:815] State 56012 (IdleThread:run): Reports Server is ready
[2003/5/20 2:45:53:881] Exception 50125 (org.omg.CORBA.TRANSIENT: minor code:0 completed: No
at com.inprise.vbroker.orb.DelegateImpl.verifyConnection(DelegateImpl.java:336)
at com.inprise.vbroker.orb.DelegateImpl.is_local(DelegateImpl.java:493)
at org.omg.CORBA.portable.ObjectImpl._is_local(ObjectImpl.java:356)
at oracle.reports.engine._EngineClassStub.getEnvs(Unknown Source)
at oracle.reports.server.EngineManager$TimedPingerThread.run(EngineManager.java:1581)
): Internal error org.omg.CORBA.TRANSIENT: minor code: 0 completed: No
BTW, I have applied the core patch 2, and NT patch 1, form&report patch 2 before this error occurs.

Similar Messages

  • How forms know when Report Server is down

    Environment: Oracle Developer Suite 10g 10.1.2.0.2 R2
    os :windows xp
    I have button to call a report object :when-button-pressed
    declare
    v_report_name VARCHAR2(30):='REQ010';----report name without .rdf
              v_repid REPORT_OBJECT;
              vc_rep VARCHAR2(20);
              vc_rep_status VARCHAR2(20);
              vc_URL VARCHAR2(100);
              vc_rep_job VARCHAR2(10);
              Plist ParamList;
              dummy NUMBER;
              Report_Plist_name VARCHAR2(30) := 'REPORT_PARAM_LIST';
              REPORT_NOT_GENERATED EXCEPTION;
              PARAMETER_LIST_SECTION_PROBLEM EXCEPTION;
    BEGIN
    --=========================================================================          
    BEGIN     
                        --prepare the list of parameters to be sent to the report
                        Plist := Get_Parameter_List(Report_Plist_name);
                        IF NOT Id_Null(Plist) THEN
                             Destroy_Parameter_List(Report_Plist_name);
                        END IF;     
                        Plist := Create_Parameter_List(Report_Plist_name);      
                        IF Id_Null(Plist) THEN
                             dummy := Show_Alert('PARAM_LIST_CREATION_PROBLEM');
                             RAISE Form_Trigger_Failure;
                        END IF;
                        --Add parameter(s) to list just created
                        Add_Parameter(Plist, 'P_REQUEST_ID', TEXT_PARAMETER, :CUSTOMER_REQUESTS.CR_REQUEST_ID);
         EXCEPTION
    WHEN OTHERS THEN
    raise PARAMETER_LIST_SECTION_PROBLEM;
    END;
    --=============================================================================
              --START THE REPORT     
              v_repid := FIND_REPORT_OBJECT(v_report_name);
              vc_rep := RUN_REPORT_OBJECT(v_repid,Plist);
              vc_rep_status := REPORT_OBJECT_STATUS(vc_rep);
    --=============================================================================
    BEGIN          
                        IF vc_rep is NOT NULL THEN
                                  -- Wait until report finishes or produces an error
                                  WHILE vc_rep_status in
                                  ('RUNNING', 'OPENING_REPORT', 'ENQUEUED')
                                  LOOP
                                       vc_rep_status := REPORT_OBJECT_STATUS(vc_rep);
                                  END LOOP;
                                  -- Display the report if it is finished
                                  if vc_rep_status = 'FINISHED' then
                                                      vc_rep_job := substr(vc_rep,instr(vc_rep,'_')+1);
                                                      message('Report Completed');
                                                      vc_URL := '/reports/rwservlet/getjobid' ||vc_rep_job||
                                                      '?server='||get_report_object_property
                                                      (v_repid,report_server);
                                                      Web.show_document(vc_URL,'_blank');
                                                      -- Display an error if the report errored
                             END IF;
                        END IF;                              
    EXCEPTION
    WHEN OTHERS THEN
    raise REPORT_NOT_GENERATED;
    END;
    --=============================================================================
    Destroy_Parameter_List('REPORT_PARAM_LIST');
    EXCEPTION
    WHEN REPORT_NOT_GENERATED THEN
    msgbox('Error Calling Report');
    --Causes: 1-Report file name is incorrect,check report name and existance.
    -- 2-Or, Report Server is Down.
    WHEN PARAMETER_LIST_SECTION_PROBLEM THEN
    msgbox('CHECK PARAMETER SECTION ');
    WHEN OTHERS THEN
    msgbox(SQLERRM);
    END;
    Problem:
    ======
    How can I distingwish among these conditions:
    IF Report cannot run :
    when the problem is from the report file object itself.
    and IF the problem is the Report Server is Down.
    and the report file is not exist.
    Tries:
    I try to but many exception to differenciate between these conditions but I fail
    how can I display a message to the user,Inform him the problem ,
    So the support personnel know if the problem from the Report object or the application Server
    .

    Hi Krishan,
    If you want to check if local cache service is running, you can do something like this:
    NamedCache cache = CacheFactory.getCache(sCacheName);
    boolean isRunning = cache.getCacheService().isRunning();If you want to check if any storage enabled nodes (cache servers) are available in the cluster:
    NamedCache cache = CacheFactory.getCache(sCacheName);
    DistributedCacheService service = (DistributedCacheService) cache.getCacheService();
    Set storageEnabledMembers = service.getStorageEnabledMembers();
    if(storageEnabledMembers.isEmpty())
        // no cache servers available ...
        }Regards,
    Dimitri

  • RAS Java API Exception on Crystal Reports Server XI R2

    Hi
    We download run the evaluation version of Crystal Reports Server XI R2 SP2.
    Our web application uses RAS Java API to talk to Crystal Reports Server to open unmanaged reports.
            ReportClientDocument lo_ReportClientDoc = new ReportClientDocument(); //*** Cause exception
            ReportAppSession reportAppSession = new ReportAppSession();
            reportAppSession.createService(
              "com.crystaldecisions.sdk.occa.report.application.ReportClientDocument"); //*** Cause exception
            reportAppSession.setReportAppServer(servername);
            reportAppSession.initialize();   //*** Cause exception
            lo_ReportClientDoc.setReportAppServer(reportAppSession.getReportAppServer());
            lo_ReportClientDoc.open(asReportName,OpenReportOptions._openAsReadOnly);
            ReportServerControl control = new ReportServerControl();
            control.setReportSource(lo_ReportClientDoc.getReportSource());
    The lines marked with "//*** Cause exception" above cause the following exceptions, although at the end the reports came up correctly. When we were running Crystal Reports Server XI (Release 1), we did not see this exception. Can you tell what is going wrong? Thanks.
    SystemOut     O org.xml.sax.SAXParseException: File "null" not found.
    +     at org.apache.xerces.framework.XMLParser.reportError(XMLParser.java:1202)+
    +     at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromDocument(DefaultEntityHandler.java:499)+
    +     at org.apache.xerces.framework.XMLParser.parseSomeSetup(XMLParser.java:312)+
    +     at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1079)+
    +     at com.crystaldecisions.xml.serialization.XMLObjectSerializer.load(Unknown Source)+
    +     at com.crystaldecisions.proxy.remoteagent.ClientSDKOptions.readClientSDKOptions(Unknown Source)+
    +              at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.b(Unknown Source)+
    +     at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.h(Unknown Source)+
    +     at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.<init>(Unknown Source)+

    Hey did anyone ever answer your question, I have exactly the same problem 4 years later, sigh

  • Reports Server Startup Problem

    guys i am stucked up in the very beginning. When i try to startup the Reports Server from AS Enterprize manager it shows that the server is started. But it crashes at the moment it starts. When i enable the report server tracing then i found that it tries to connect with the user "repadmin" and it does not find this user. Please help me about that some body
    Regards
    Zahid Kareem.

    I just want to be able to start the server and run some examples with rwbuilder.<<<1) For running reports in builder you do not need server. (May be you already know this, but reading this line I got the impression that you think , you need server to run a report with builder)
    Once you create a report, you can generate a file using File --> Generate to file in builder.
    ( Also in a production env you need 9i AS for running reports in client-server mode etc. )
    2) osagent (third party tool) uses UDP for inter-agent communication. Normally the port is 14000. So can you see whether Linux has been configured for not allowing UDP communication at this port ?
    3) The reason osagent not starting may be because, already one may be running in your machine
    ps -ef | grep osagent
    In one machine only one osagent can run. If it is already running you do not have to start another.
    4)NOTE:
    As a workaround you can use "rwrun" utility in $OH\bin. This utility does not need a server and can run reports standalone in command line.
    Hope this helps
    Ratheesh

  • Re-scheduling reports when Report Server fails?

    Is there a method to re-schedule previously cheduled reports in the scenario that for instance, the report server fails for whatever reason?  My scenario is that I had a report server have a problem overnight and the reports that were scheduled did not execute.  Is there a fairly straight forward way to identify and reschedule the reports that did not run? 
    Thanks
    Marc

    There might be a way. When you schedule a report through CMC under Recurrence you have an option "Number of retries allowed" and "Retry interval in seconds".  Set the first parameter to be 1. If the report server fails overnight, then what you can do is set the interval seconds to be a big number, so that the next retry would be in the morning when someone would have restarted the server.
    - Noman Jaffery

  • ClassNotFound exception(stub) when running server

    Hi all,
    I have written an RMI program. All fies are in same directory same package and same machine. When running the server it is giving ClassNotFoundException. Server is run from same directory as the files. I could run the implementation through its main method. What may be wrong with it. The registry is started from another DOS window(same machine) with CLASSPATH set to blank. I tried with setting classpath to the files directory. There is no security manager. This is full stack trace.
    Hope anyone will help me and thanks in advance.
    ---------- Java Runner ----------
    java.rmi.ServerException: Server RemoteException; nested exception is:
         java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
         java.lang.ClassNotFoundException: CalcImpl_Stub
         at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:247)
         at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:223)
         at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:350)
         at sun.rmi.registry.RegistryImpl_Stub.rebind(Unknown Source)
         at java.rmi.Naming.rebind(Naming.java:160)
         at CalcServer.main(CalcServer.java:18)
    Caused by: java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
         java.lang.ClassNotFoundException: CalcImpl_Stub
    Caused by: java.lang.ClassNotFoundException: CalcImpl_Stub
    Output completed (1 min 0 sec consumed) - Normal Termination
    Antony Paul

    Hi,
    I think that you have to run the rmiregistry in the
    same directory path of your CalcImpl_StubNo, if you do that, your registry will never be able to supply the stub classes to client code - go read this
    http://java.sun.com/j2se/1.4.2/docs/guide/rmi/codebase.html

  • Reports 11gR2 - The in-process Reports Server  failed to start

    Hello,
    I recently installed the new Forms Reports 11gR2 on an Oracle Linux 5 update 6 64bit. Firstly, I installed the JDK1.6.29 64bit. Then, I installed the Weblogic Server 10.3.5 (jar version). Finally, I installed the Forms Reports 11gR2. After installation I reboot the machine. When it came up I manually started the Weblogic Server (10.3.5), the WLS_Forms, the WLS_Reports and OPMN. Everything looks fine except the in-process reports server.
    I can access the page (http://apps8.orasys.gr:8888/reports/rwservlet) without any problems but when I try to access the showjobs (http://apps8.orasys.gr:8888/reports/rwservlet/showjobs?)
    I get this message “REP-52266: The in-process Reports Server rep_wls_reports_apps8_asinst_1 failed to start.oracle.reports.RWException: IDL:oracle/reports/RWException:1.0”
    The status of the In-process Reports Server is down. When I try to start it, it fails. This is what I get in the log files:
    #SEARCH_CRITERIA
    #     START_TIME: 2011-11-15T09:36:20.036+02:00
    #     END_TIME: 2011-11-15T10:36:20.036+02:00
    #     MESSAGE_TYPES:INCIDENT_ERROR, ERROR, UNKNOWN
    #SELECTED_TARGETS_LIST
    #     /Farm_ClassicDomain/ClassicDomain/WLS_REPORTS/reports(11.1.2):oracle_repapp
    [2011-11-15T10:06:53.414+02:00] [WLS_REPORTS] [INCIDENT_ERROR] [REP-50125] [oracle.reports.server] [host: apps8.orasys.gr] [nwaddr: 212.205.62.203] [tid: Thread-34] [userId: <anonymous>] [ecid: 004gS5sBFOS0RtdePdaQPP00017Y00000O,1:27964] [probKey: 33] [APP: reports#11.1.2] [URI: /reports/rwservlet/showjobs] REP-50125 : java.lang.StringIndexOutOfBoundsException: String index out of range: -1 [[
    java.lang.StringIndexOutOfBoundsException: String index out of range: -1
         at java.lang.String.substring(String.java:1937)
         at oracle.reports.server.LDAPManager.createDirContext(LDAPManager.java:260)
         at oracle.reports.server.LDAPManager.createOIDContext(LDAPManager.java:176)
         at oracle.reports.server.RWSecurity.start(RWSecurity.java:122)
         at oracle.reports.server.SecurityHelper.start(SecurityHelper.java:107)
         at oracle.reports.server.RWServer.startServer(RWServer.java:985)
         at oracle.reports.server.RWServer.run(RWServer.java:358)
         at java.lang.Thread.run(Thread.java:662)
    [2011-11-15T10:07:02.729+02:00] [WLS_REPORTS] [INCIDENT_ERROR] [] [oracle.reports.servlet] [host: apps8.orasys.gr] [nwaddr: 212.205.62.203] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 004gS5sBFOS0RtdePdaQPP00017Y00000O,0:1:0x5f5e102] [probKey: 34] [APP: reports#11.1.2] [URI: /reports/rwservlet/showjobs] ServerManager:getServer Bind to Reports Server rep_wls_reports_apps8_asinst_1 failed.
    [2011-11-15T10:36:05.110+02:00] [WLS_REPORTS] [INCIDENT_ERROR] [REP-50125] [oracle.reports.server] [host: apps8.orasys.gr] [nwaddr: 212.205.62.203] [tid: Thread-68] [userId: weblogic] [ecid: 9abaf3e65885e557:23d03fee:133a635b091:-8000-0000000000000296,0] [probKey: 35] [APP: reports#11.1.2] REP-50125 : java.lang.StringIndexOutOfBoundsException: String index out of range: -1 [[
    java.lang.StringIndexOutOfBoundsException: String index out of range: -1
         at java.lang.String.substring(String.java:1937)
         at oracle.reports.server.LDAPManager.createDirContext(LDAPManager.java:260)
         at oracle.reports.server.LDAPManager.createOIDContext(LDAPManager.java:176)
         at oracle.reports.server.RWSecurity.start(RWSecurity.java:122)
         at oracle.reports.server.SecurityHelper.start(SecurityHelper.java:107)
         at oracle.reports.server.RWServer.startServer(RWServer.java:985)
         at oracle.reports.server.RWServer.run(RWServer.java:358)
         at java.lang.Thread.run(Thread.java:662)
    [2011-11-15T10:36:11.798+02:00] [WLS_REPORTS] [INCIDENT_ERROR] [] [oracle.reports.servlet] [host: apps8.orasys.gr] [nwaddr: 212.205.62.203] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: 9abaf3e65885e557:23d03fee:133a635b091:-8000-0000000000000296,1:27966] [probKey: 36] [APP: reports#11.1.2] ServerManager:getServer Bind to Reports Server rep_wls_reports_apps8_asinst_1 failed.
    #MESSAGE_COUNT: 4
    Please help. I really need to evaluate version in order to move to it as soon as possible.
    Thank you in advance,
    Evris

    Hi Evris,
    REP-50125 : java.lang.StringIndexOutOfBoundsException: String index out of range: -1
    Follow the below metalink id
    Start Report Server Failed, Javalang String Indexoutof Boundexception Rep-50125 [ID 372362.1]
    Hope this will be helpful,
    Regards,
    Fabian

  • Java Error while executing the excel template in the BIP 10g report server

    Hello Gurus,
    While we are executing the excel template we are getting the following java error and the report cannot be rendered to user who triggers the report. Where as the same excel template is generating output when user run it against the same data locally.
    "oracle.apps.xdo.servlet.scheduler.ProcessingException: [ID:652] Document file to deliver not found : C:\Oracle\bipublisher\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\xdo\tmp\xmlp3307tmp
    at oracle.apps.xdo.servlet.scheduler.XDOJob.deliver(XDOJob.java:1172)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.execute(XDOJob.java:495)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)"
    We have tried with designing the .rtf template for this report and we are able to generate the report form the server. Please let us know the cause for this error in the server and way to rectify the exception from the report server.
    Thanks,
    Kamath.

    "oracle.apps.xdo.servlet.scheduler.ProcessingException: [ID:652] Document file to deliver not found : C:\Oracle\bipublisher\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\xdo\tmp\xmlp3307tmp
    imho it's about empty result file
    Data are there
    may be yes but is some data from all for report itself ?
    in other words data can be in output ( in xml ) but report can filters data and so report doesn't have appropriate data to representation ( it's assumption for error )
    Data are there, when we are using rtf template, it is generating the output.
    if you sure about data for report and on this data report works fine by bip desktop, so no ideas, only SR
    btw you can first check my assumption and try to catch "no data found" in template
    also you can check data itself, is it well-formed xml

  • Help - Unable to start 11.1.2 Report Server !!!

    Hello All
    I installed 11.1.2 report server as part of Forms & Reports implementation using weblogic server. Everything went well until I shutdown the reports server using opmn and restarted it again, i got this error message.
    [2013-04-25T20:06:53.160+10:00] [reports] [ERROR] [] [oracle.reports.server] [tid: 1] [ecid: 0000Jt0eEvdEgK^5xVH7iW1HUG0i000002,0] IdleThr
    ead:run Failed to start OPMN Integrator
    [2013-04-25T20:06:53.165+10:00] [reports] [INCIDENT_ERROR] [REP-50125] [oracle.reports.server] [tid: 1] [ecid: 0000Jt0eEvdEgK^5xVH7iW1HUG0
    i000002,0] REP-50125 : An internal exception occurred: oracle.ons.ONSException: Unable to open config file. [[
    oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    at oracle.reports.utility.Utility.newRWException(Utility.java:1053)
    at oracle.reports.utility.Utility.newRWException(Utility.java:1066)
    at oracle.reports.server.IdleThread.run(IdleThread.java:136)
    [2013-04-25T20:11:40.047+10:00] [reports] [INCIDENT_ERROR] [REP-50002] [oracle.reports.server] [tid: 2] [ecid: 0000Jt0fKyFEgK^5xVH7iW1HUG0
    i000003,0] REP-50002 : The server is shutting down. [[
    oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    at oracle.reports.utility.Utility.newRWException(Utility.java:1053)
    at oracle.reports.server.RWServer.stateCheck(RWServer.java:1567)
    at oracle.reports.server.ConnectionImpl.callCheck(ConnectionImpl.java:2979)
    at oracle.reports.server.ConnectionImpl.disconnect(ConnectionImpl.java:757)
    at oracle.reports.server.ConnectionPOA._invoke(ConnectionPOA.java:309)
    at com.ibm.CORBA.poa.POAServerDelegate.dispatchToServant(POAServerDelegate.java:407)
    at com.ibm.CORBA.poa.POAServerDelegate.internalDispatch(POAServerDelegate.java:339)
    at com.ibm.CORBA.poa.POAServerDelegate.dispatch(POAServerDelegate.java:262)
    at com.ibm.rmi.iiop.ORB.process(ORB.java:533)
    at com.ibm.CORBA.iiop.ORB.process(ORB.java:1574)
    at com.ibm.rmi.iiop.Connection.respondTo(Connection.java:2915)
    at com.ibm.rmi.iiop.Connection.doWork(Connection.java:2782)
    at com.ibm.rmi.iiop.WorkUnitImpl.doWork(WorkUnitImpl.java:65)
    at com.ibm.rmi.iiop.WorkerThread.run(ThreadPoolImpl.java:193)
    at java.lang.Thread.run(Thread.java:738)
    [2013-04-25T20:11:40.050+10:00] [reports] [INCIDENT_ERROR] [REP-50002] [oracle.reports.server] [tid: 2] [ecid: 0000Jt0fKyFEgK^5xVH7iW1HUG0
    i000003,0] REP-50002 : The server is shutting down. [[
    oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    at oracle.reports.utility.Utility.newRWException(Utility.java:1053)
    at oracle.reports.server.RWServer.stateCheck(RWServer.java:1567)
    at oracle.reports.server.ConnectionImpl.callCheck(ConnectionImpl.java:2979)
    at oracle.reports.server.ConnectionImpl.disconnect(ConnectionImpl.java:757)
    at oracle.reports.server.ConnectionPOA._invoke(ConnectionPOA.java:309)
    at com.ibm.CORBA.poa.POAServerDelegate.dispatchToServant(POAServerDelegate.java:407)
    at com.ibm.CORBA.poa.POAServerDelegate.internalDispatch(POAServerDelegate.java:339)
    at com.ibm.CORBA.poa.POAServerDelegate.dispatch(POAServerDelegate.java:262)
    at com.ibm.rmi.iiop.ORB.process(ORB.java:533)
    at com.ibm.CORBA.iiop.ORB.process(ORB.java:1574)
    at com.ibm.rmi.iiop.Connection.respondTo(Connection.java:2915)
    at com.ibm.rmi.iiop.Connection.doWork(Connection.java:2782)
    at com.ibm.rmi.iiop.WorkUnitImpl.doWork(WorkUnitImpl.java:65)
    at com.ibm.rmi.iiop.WorkerThread.run(ThreadPoolImpl.java:193)
    at java.lang.Thread.run(Thread.java:738)
    Any help would be good.
    Regards
    Amit

    Internal bug. Metalink says:
    Add the jar file $ORACLE_HOME/opmn/lib/ons.jar at the beginning of REPORTS_CLASSPATH in the file $ORACLE_INSTANCE/config/reports/bin/reports.sh and restart your reports server.
    Worked for me!

  • [Forum FAQ] The Reporting Server cannot be reinstalled on a same SQL Server Reporting Service instance

    Symptom: Sometimes, when you want to reinstall the Reporting Server Role for Operation Manager 2012,
    but you may encounter an issue that the Reporting Server Role cannot be reinstalled after you successfully uninstall it. When you check the System Center Operation Manager installation log, you can find the following error as shown in Figure 1.
    Figure 1: Reporting Server Role cannot be reinstalled
    It seems that the SQL Server Reporting Service has not been configured properly. When you open Reporting Services Configuration Manager to check the settings, the settings seem fine though.
    Even you recreate Reporting Service Database, the error remains.
    After reviewing the OpsMgrSetupWizard.log, we get the following errors when wizard try to connect to SQL Server Reporting Instance (Figure 2).
    [07:24:05]:    Error:  :CheckHttpAddressResponse failed: Threw Exception.Type: System.Net.WebException, Exception Error Code: 0x80131509, Exception.Message:
    The remote server returned an error: (500) Internal Server Error.
    [07:24:05]:    Error:  :StackTrace:   at System.Net.HttpWebRequest.GetResponse() at Microsoft.EnterpriseManagement.OperationsManager.Setup.ReportingComponent.CheckHttpResponseFromSRSUrl(String
    httpSite)
    Figure 2: Error Log -1
    It indicates the Reporting Service encounters an internal error. The Website cannot handle the request. So you may check the Reporting Service log which is located in C:\Users\Administrator.SCOM2012\AppData\Local\SCOM\LOGS
    and the following errors may be found (Figure 3).
    library!ReportServer_0-18!1448!03/30/2014-02:53:23:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    Unable to load assembly Microsoft.EnterpriseManagement.Reporting.Security, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: The report server has encountered a configuration error.  ---> System.IO.FileNotFoundException:
    Could not load file or assembly 'Microsoft.EnterpriseManagement.Reporting.Security' or one of its dependencies. The system cannot find the file specified.
    File name: 'Microsoft.EnterpriseManagement.Reporting.Security'
    Figure 3: Error Log -2
    Reason: After the Reporting Server is installed on a SSRS instance, the Reporting Server of SCOM
    needs to modify the web.config and rsreportserver.config  file to add its own assembly to make the Reporting Server work. But it does not change it back when Reporting Server is uninstalled. So the assembly cannot be loaded and the SSRS cannot respond
    our requests.
    Resolution:  When the Reporting Server is installed, the old web.config and rsreportsserver.config
    files will be backed up to web.config1 and rsreportsserver.config1. So you just need to change the files’ name back, then try to install Reporting Server of SCOM again. Everything would go smoothly. 
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Hi AakashGhare,
    According to your error message, SQL Server 2008 databases are version 655. SQL Server 2008 R2 databases are 661. When you are trying to attach an 2008 R2 database (v. 661) to an 2008 instance and this is not supported. As other post, once the database has
    been upgraded to an 2008 R2 version, it cannot be downgraded. You'll have to either upgrade your 2008 SP2 instance to R2, or you have to copy out the data in that database into an 2008 database (such as using the data migration wizard).
    In addition, if you want to use a Windows Batch file code and command to automatically login to SQL Server, detach database and attach a new one database, there is a similar details about batch code for attaching database to a new database, you can refer
    to this article.
    http://notesbyparth.wordpress.com/2012/06/29/run-sql-commands-from-windows-batch-file-or-attachdetach-database-automatically-using-batch-script/
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Oracle Report Server wierd problem

    Hi All,
    I am facing very wierd problem with oracle report server.
    I am using Oracle Report Server 10g R1. The problem I am facing is as under:
    There is custom parameter form where user enters report filter criteria and press a button to create the report.
    The problem is that report is giving output some times and sometimes it gives no output at all. Both the times, the parameters passed by user are same. The report executions are done for both runs one after other. We have tried to look in report server trace file but could not find anything. When report server fails to give any data in the report, at the same time, we have tried to execute the report query on SQL prompt and it did return data.
    Can any one give any hint where the problem could be ?
    Thanks,
    Ramchandra Jetwani

    Hi,
    When i used to get only one page the options like facing, continuous facing are disabled. And displays only single page.
    These options are enabled only when there are multiple pages in pdf.
    One more thing i found that it happens when I first view the report as pdf it displays
    all the pages, then i change the display format to csv and again when i change
    the format to pdf the problem starts.
    And when I will restart the report server service, it works fine again until i wont view it in CSV format.
    Message was edited by:
    Yogesh

  • Report server is not starting up...

    Hi,
    I am using Oracle 9iDS since last 1 year and everything was fine. suddenly I am getting below error during startup of report server
    Report server startup command ---> rwserver server=rep_in011370 batch=no
    Error : REP-50142 : Read file c:\Oracle\Ora811\reports\server\rep_in011370.dat error
    Pls. guide me how to resolve this error as I have re-installed report builder but still same problem...
    Regards/-
    Neeraj

    1) Please post the version of Reports and the OS because some problems could be version specific and OS specific
    2) Enable tracing
    Edit
    $OH\reports\conf\server_name.conf
    And uncomment "trace" element. It should be like this
    <trace traceOpts="trace_all"/>
    Now we can see the engine trace also in logs directory. That may throw some light about the issue.
    3) Please try the following in conf file
    Comment the url engine element if you are not planning to use url engine
    <!--engine id="rwURLEng" .... /-->
    4) Increase callback timeout for rwEng engine element in conf file
    <engine id="rwEng" class="oracle.reports.engine.EngineImpl" initEngine="1" maxEngine="1" minEngine="0" engLife="50" maxIdle="30" callbackTimeOut="60000">
    Increase callbackTimeOut (make it 1.5 or double or something) and try
    Thanks
    The Oracle Reports Team

  • 9ias v2 - reports server failed, all else worked, how to fix?

    My install went fine with the one exception of the reports server. It generated an error but all else kept on working.
    A couple of answers if anybody knows though would be great.
    1. How do you install ONLY the reports server.
    2. I can't find the Discoverer Plus or Viewer html start files.
    Could this have been caused by the reports server not installing?
    3. I've installed 9i database v2, 9ias v2, 9ids, etc. Where is the documentation
    to now get Portals up?
    Thx. for the help.

    It looks like the error indeed has to do with the rwaddpag.sql problem.
    Here's the message below:
    ====================================================
    Oracle Home : c:\oracle\ora9ias2
    Deploying Reports for OC4J
    Reports deployment was successful
    Starting file instantiation
    File instantiation succeeded
    Registering Reports as a database provider
    Queue null
    Number of actions : 1
    Done
    Starting Action : SQLPlus
    Command c:\oracle\ora9ias2/bin/sqlplus.exe -s "PORTAL/XXXX@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=bigbang.workgroup)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=iasdb.bigbang.workgroup)))" @"c:\oracle\ora9ias2/portal/admin/plsql/wwd/rwaddpag.sql"
    Process destroyed
    Process err
    Process out
    Action queue failedoracle.ifs.utils.common.ProcessDestroyedException
    Error executing : rwaddpag.sql
    Reports registration failed
    Starting EM integration
    EM integration was successful
    Reports Configuration failed
    =====================================================
    The answer is as you suggested in the Reports release notes. However,
    the notes say to "Log on to the Oracle Internet Directory and obtain
    the Oracle9iAS Portal user database password".
    1. What the heck is that and how do I log on to it?
    2. If I 'log on' to it, it'll show the Portal user database password?
    Inquiring minds (mine) want to know!
    Thanks for any assistance.
    Russ I recieved this advice :
    Start up the Oracle Internet Directory administration tool:
    Start > Programs > (9iAS Instance) > Oracle Internet Directory > Oracle Directory Manager
    Log into the oidadmin tool using the OID administrator account
    (cn=orcladmin) for the Infrastructure installation.
    Username: cn=orcladmin
    Password: administrator_password (note this is the one you set during install)
    Server : host running Oracle Internet Directory and port number where
    Oracle Internet Directory is listening (this may be 4032)
    Navigate the administration tool.
    => Entry Management
    => cn=OracleContext
    => cn=Products
    => cn=IAS
    => cn=Infrastructure Databases
    => orclReferenceName=Single Sign-On database SID:Single Sign-On Server
    hostname
    (for example: orclReferenceName=iasdb:infra.acme.com)
    => orclResourceName=PORTAL
    Click the above entry and look for the orclpasswordattribute attribute
    value on the right panel. This value is the Oracle9iAS Portal user
    database password

  • Report Engine rwEng-0 crashed when server startup

    I installed 9ias on RedHat Linux, and applied the latest patches(Core patch 2, NT patch 1, form&report patch 2).But when I start the report server(in-process server).
    The report server's log shows:
    ** 2003/5/19 8:51:9:297 -- Reports Server is starting up
    *** 2003/5/19 8:51:24:418 -- Reports Server started up engine rwURLEng-0
    *** 2003/5/19 8:51:31:892 -- Reports Server started up engine rwEng-0
    *** 2003/5/19 8:51:32:956 -- Engine rwEng-0 crashed
    Then I run a report with the web browser, after single sign-on login interface, the browser is hang, then shows
    REP-51026: No output for job 19
    Some new lines append in the log file:
    *** 2003/5/19 9:7:2:980 -- Reports Server started up engine rwEng-0
    *** 2003/5/19 9:7:9:633 -- Reports Server started up engine rwEng-1
    *** 2003/5/19 9:7:15:994 -- Reports Server started up engine rwEng-2
    *** 2003/5/19 9:7:23:226 -- Reports Server started up engine rwEng-3
    *** 2003/5/19 9:7:30:328 -- Reports Server started up engine rwEng-4
    *** 2003/5/19 9:21:24:827 -- Reports Server shut down engine rwURLEng-0
    *** 2003/5/19 9:21:30:413 -- Reports Server started up engine rwURLEng-0
    I sent the request again, the browser shows:
    REP-50125: Caught exception: org.omg.CORBA.OBJECT_NOT_EXIST: minor code: 0 completed: No
    Anyone can help me?

    Thanks for your advice,I try it , when startup, no error in the reportserver.trc file, but when I send a request from the web , it shows:
    [2003/5/20 2:59:7:975] Debug 56031 (ConnectionImpl:runJob): Job 1 is waiting for
    notification
    [2003/5/20 2:59:8:919] Info 56020 (EngineManager:spawnEngine): Launching engine
    rwURLEng-0
    [2003/5/20 2:59:8:919] Debug 50103 (EngineManager:spawnEngine): Start engine com
    mand line = /oracle/product/app/bin/rwengine.sh -cp /oracle/product/app/j2ee/hom
    e/lib/ojsp.jar:/oracle/product/app/reports/jlib/rwrun.jar:/oracle/product/app/jl
    ib/zrclient.jar -XX:+AllowUserSignalHandlers -XX:CompileThreshold=20000 -Xmx128M
    oracle.reports.engine.RWEngine name=rwURLEng-0 server=rep_app_server ORACLE_HOM
    E=/oracle/product/app engineimplclass=oracle.reports.urlengine.URLEngineImpl tra
    ceopts=trace_all tracefile=/oracle/product/app/reports/logs/rep_app_server-rwURL
    Eng-0.trc tracemode=trace_replace cacheDir=/oracle/product/app/reports/cache
    [2003/5/20 2:59:8:969] Info 56021 (EngineManager:spawnEngine): Engine rwURLEng-0
    has been launched
    [2003/5/20 2:59:8:970] State 56004 (EngineInfo:setState): Engine rwURLEng-0 stat
    e is: Initial
    [2003/5/20 2:59:19:841] Exception 50125 (exception oracle.reports.RWException {
    oracle.reports.RWError[] errorChain={struct oracle.reports.RWError {
    int errorCode=55103,
    java.lang.String errorString="API URLEngine:getEngineEnvs not applicable to URL
    engine",
    java.lang.String moduleName="REP"
    at oracle.reports.RWExceptionHelper.read(Unknown Source)
    at oracle.reports.engine._EngineClassStub.getEnvs(Unknown Source)
    at oracle.reports.server.EngineManager$TimedPingerThread.run(EngineManag
    er.java:1581)
    ): Internal error exception oracle.reports.RWException {
    oracle.reports.RWError[] errorChain={struct oracle.reports.RWError {
    int errorCode=55103,
    java.lang.String errorString="API URLEngine:getEngineEnvs not applicable to URL
    engine",
    java.lang.String moduleName="REP"
    [2003/5/20 2:59:19:842] Warning 50103 (EngineManager:registerEngine): REP-55103:
    API URLEngine:getEngineEnvs not applicable to URL engine
    report_server.log shows:
    *** 2003/5/20 2:56:53:703 -- Reports Server is starting up
    *** 2003/5/20 2:59:19:842 -- Reports Server started up engine rwURLEng-0
    *** 2003/5/20 2:59:25:94 -- Reports Server started up engine rwEng-0
    *** 2003/5/20 2:59:26:164 -- Engine rwEng-0 crashed
    *** 2003/5/20 2:59:32:439 -- Reports Server started up engine rwEng-0
    *** 2003/5/20 2:59:35:302 -- Engine rwEng-0 crashed
    *** 2003/5/20 2:59:42:88 -- Reports Server started up engine rwEng-0
    *** 2003/5/20 2:59:44:472 -- Engine rwEng-0 crashed
    I still get "REP-56048: Engine null crashed, job Id: 1
    " on the web.

  • How to consume the Calendar Exception details from Project Server 2013 to an SSRS report using PSI ?

    Hello,
    Can anyone guide me how to access the calendar exception details from Project Server using PSI?
    I need to extract calendar details of enterprise resources , like exception name, exception type, exception start date and exception end date into my SSRS report hosted in SharePoint 2013 and 2010.
    I would be helpful if I can get a sample of this. I have read through many PSI documents in fact still going through ,what  PSI does and doesn't ,  PSI methods etc. from Project Server SDK and MSDN . Moreover, I
    am a beginner in .NET programming. I am confused and have lots of questions in my mind, like which PSI service should be used in my report(is it  just Calendar.svc), can we pull the details as XML type data source my SSRS report ,are
    there any other configuration settings apart from " setting up an event handler by installing an event handler assembly on each Project Server computer in the SharePoint farm, and then configuring the event handler
    for the Project Web App instance by using the Project Server Settings page in the General Application Settings of SharePoint Central Administration" (as per prerequisites for PSI in SDK) , how can I implement authentication settings
    -(when user with proper SharePoint permission
    can accesses the SSRS report  )
    Kindly bear with me if my questions are not appropriate .
    Please do guide me, and .
    Thanks in Advance!!
    Mridhula
    Mridhula.S

    Hi Brendan,
    Project server reporting database doesn't contain the calendar info. The only supported way to use the PSI to read the calendar info from Published database.
    See this
    reply from Amit.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

Maybe you are looking for

  • Disc Burner. Why are some files not readable or writeable?

    Hello, I am trying to backup my friends computer files on a beige G3 (233 MHz). I am burning about 6 DVDs of AIF music files. Most of the files are about 30 - 40 Megs in size. Often I receive error messages on particular files that read: "The operati

  • How to call a .swf file in another .swf file?

    Hi all, I am new to flash and ActionScript3.0. Presently, I am using flash CS3 and the code I need is in ActionScript 3.0. Suppose, I have a .swf file(viz., file1.swf). Now, i am developing one more .swf file(viz., file2.swf), in which I need to exec

  • How to find out the vector images in pdf file?

    I need to extract all vector(line art) images from pdf file. Is it possible to find out whether the pdf contains vector image or not through programmatically? Kindly advice me. Thanks, Prabudass

  • How can I get the working directory of a project from an Annotation Processor in Java

    I am writing an annotation processor in Java and in this annotation processor I want to be able to find a file in the Project hierarchy of the project on which I am using this annotation processor. Through the annotation I can pass in the path of the

  • SQL Query with a decode

    Hi everyone, I have a decode in my query : select decode(rdf.id_element_act, null, null, '<image src="#IMAGE_PREFIX#24find.gif"') linkfrom ..... I want to put an image if my id_element is not null. I replace img by image to be able to show you my cod