Error running Reports 6i using OAS4.0.8

Hi,
We have the following architecture:
1. DB Server - Oracle 8.1.7 on W2K server
2. Reports Server - Oracle Reports Server 6.0.8 on W2K server
3. Web Server - OAS 4.0.8 on W2K server
When trying to execute report over the web (using Web CGI setup), we are not receiving any results (web page is blank). Are there any undocumented features that we have to do in order to make this run?
tnsnames.ora file is updated on the Web Listener server, and it points to correct Report Server. Reports Server service is running. RWCLI60 executes (from the command prompt on the Web Server) without any problems (saving result to a file). RWCGI60 is returning blank page always.
Also, do we have to install Reports Web cartridge on the Web server, and do we have to configure application for it in OAS? Problem is we cannot find RWOWS60.dll file.
Thanks for your help,
Dejan Bogojevic

Report server service is up and running but there is no activity on Reports Queue Manager.
URL I'm using is one from the "Run a Report on the Web" example, and I've mapped "dev60cgi" virtual directory in Listener configuration using <CN>.
Acctualy I've tried both cgi-bin and dev60cgi mappings (e.g. http://<my_listener_address>/cgi-bin/rwcgi60.exe?parameters=values or http://<my_listener_address>/dev60cgi/rwcgi60.exe?parameters=values). rwcgi60.exe is in the right location for both mappings (in cgi-bin and in dev60cgi).
They both have the same result - blank page. We will install 9iAS (it was planned to upgrade, but for some future date).
Thanks,
Dejan

Similar Messages

  • Error running reports from Crystal Server XI R2 with datasets

    Hi, sorry if my english is not good. I'm from Spain.
    I have a problem. I'm programming with Visual Basic .NET 2008.
    I'm using Crystal Reports Server and programming under Visual Basic to take reports from crystal Server, changing the tables from the report to datasets and scheduling this report.
    Crystal server change connections to CrystalReports.Dataset.
    Preview reports from server sends me an error "DataBase connector unknown"
    If I run this report (with datasets) into my VBNET application (into a  CrystalDecisions.Windows.Forms.CrystalReportViewer control), IT WORKS!!!
    I need help because I need to schedule these reports (to send them by email, export to PDF formats, ...)

    Reporting off of a dataset is reporting off of a disconnected datasource.  The reason your application works is beacuse you most likely populating a dataset in your application and passing it to the report at the same time.  When scheduling, there is no interaction with the report so unless the report is using an xml file on disk as its datasource, how can it retrieve data?
    To get around this, you can build a dll (.net data provider) that returns either a dataset or datatable and point your report to this dll.  this way, when the report is executed, it loads the dll which fetches the data for you.
    - so the first step is to compile a dll that returns a dataset or datatable.
    - to design your report off of this dll open the database expert and create a new ADO.NET connection.
    - in the File Path area, click the ellipsis ("...") button to browse to your dll and make sure the selected File Type is ".Net DataSet Provider".
    - once the dll is selected, you can choose the dataset/table returned by the dll.
    If your method in the dll is parameterized, it will add a parameter to the report (similar to stored procedure parameters.
    note: the location of your dll must be in the same path on the CR Server as it was when you designed your report in order for it to be loaded correctly.  I usually put the dll in a folder that I know will exist on both machines.
    Dan

  • Intermittent  Error Running Report

    I have an intermittent issue with the WPF report Viewer.  I run a report and get the window open with the busy circle as per normal but then there is a  Invalid report file path error appearin, then a blank report is shown in the viewer.   If I run the report again everything is fine.   Can anyone help to explain why this is happening
    The error being reported is.
    Error Exception: SEHException
    Error Message: External component has thrown an exception.
    Error Stack Trace:
       at CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.RemoveAfterFormatPageEventCallBack(ISCRAfterFormatPageEventCallBack formatPageEventCallBack)  
    at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.RemoveAfterFormatPageEventCallBack(ISCRAfterFormatPageEventCallBack eventCallback)   
    at CrystalDecisions.CrystalReports.Engine.ReportDocument.ClearCache(Boolean clearDocument)   
    at CrystalDecisions.CrystalReports.Engine.ReportDocument.InternalClose(Boolean bSetupForNextReport)   
    at CrystalDecisions.CrystalReports.Engine.ReportDocument.Close()
    at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob)  
    at CrystalDecisions.CrystalReports.Engine.ReportDocument.EnsureLoadReport()
    at CrystalDecisions.CrystalReports.Engine.ReportDocument.get_Database()
    at ....ReportViewer.CleanUpObjectsForMemoryLeak() in ...ReportViewer.xaml.cs:line 307     at ....ReportViewer.Window_Unloaded(Object sender, RoutedEventArgs e) in..\ReportViewer.xaml.cs:line 297  
    at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)   
    at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)  
    at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)   
    at System.Windows.UIElement.RaiseEvent(RoutedEventArgs e)   
    at System.Windows.BroadcastEventHelper.BroadcastEvent(DependencyObject root, RoutedEvent routedEvent)   
    at System.Windows.BroadcastEventHelper.BroadcastUnloadedEvent(Object root)   
    at MS.Internal.LoadedOrUnloadedOperation.DoWork()  
    at System.Windows.Media.MediaContext.FireLoadedPendingCallbacks()
    at System.Windows.Media.MediaContext.FireInvokeOnRenderCallbacks()
    at System.Windows.Media.MediaContext.RenderMessageHandlerCore(Object resizedCompositionTarget)  
    at System.Windows.Media.MediaContext.RenderMessageHandler(Object resizedCompositionTarget)  
    at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)   
    at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)  
    FYI the CleanUpObjectsForMemoryLeak code is listed below and all references - which should only be on window close or disposal of window
            private void CleanUpObjectsForMemoryLeak()
                if (this.vwCrystalReportViewer != null)
                    var objRptDocViewer = (ReportDocument)this.vwCrystalReportViewer.ViewerCore.ReportSource;
                    if (objRptDocViewer != null)
                        foreach (CrystalDecisions.CrystalReports.Engine.Table table in objRptDocViewer.Database.Tables)
                            table.Dispose();
                        }// Line 297
                        objRptDocViewer.Database.Dispose();
                        objRptDocViewer.Close();
                        objRptDocViewer.Dispose();
                        objRptDoc.Close();
                        objRptDoc.Dispose();
                        objRptDoc = null;
                    this.ParameterValues = null;
                    this.PassedReport = null; //Line 307
                    if (this.vwCrystalReportViewer.ViewerCore.ParameterFieldInfo != null)
                        this.vwCrystalReportViewer.ViewerCore.ParameterFieldInfo.Clear();
                    if (this.vwCrystalReportViewer.ViewerCore != null)
                        this.vwCrystalReportViewer.ViewerCore.Content = null;
                        this.vwCrystalReportViewer.ViewerCore.Dispose();
                    if (this.vwCrystalReportViewer.Owner != null)
                        this.vwCrystalReportViewer.Owner = null;
                    this.vwCrystalReportViewer = null;
                    GC.Collect();
    private void Window_Unloaded(object sender, RoutedEventArgs e)
                CleanUpObjectsForMemoryLeak();
            private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e)
               e.Cancel = true;
                CleanUpObjectsForMemoryLeak();
                this.Visibility = System.Windows.Visibility.Collapsed;
    ~ReportViewer()
                try
                    CleanUpObjectsForMemoryLeak();
                finally { }

    Couple of things I'd do differently.
    1) Load the report object using the engine, not the viewer:
    objRptDoc.Load = <path to the report>
    2) You really do not need all that viewer clean up code (but that would just be my preference):
    if (this.vwCrystalReportViewer.ViewerCore != null)
                        this.vwCrystalReportViewer.ViewerCore.Content = null;
                        this.vwCrystalReportViewer.ViewerCore.Dispose();
                    if (this.vwCrystalReportViewer.Owner != null)
                        this.vwCrystalReportViewer.Owner = null;
                    this.vwCrystalReportViewer = null;
                    GC.Collect();
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Error Running Reports as Portlet in Oracle AS 10g

    #First, I create the report server using Reports Server Access Portlet (Administration>     Oracle Reports Security Setting)
    When defining the Server Name and Printers, I fill the fields like this:
    Display Name : MY_REPORTS_SERVER
    Reports Server Name : myserver
    Oracle Reports Web Gateway URL for JSP reports : http://stts:7778/
    Oracle Reports Web Gateway URL for RDF reports : http://stts:7778/reports/rwservlet
    #Second, I create the report definition using Reports Definition File Access portlet
    Display Name : myreport
    Reports Servers : MY_REPORTS_SERVER
    Oracle Reports File Name : test.rdf (default report sample)
    Execute : via servlet
    #The problem is.....
    When I tried to run the report by clicking Run / Run as Portlet link, the report doesn't show up.
    Then, I rightclick-View Page Source on the page
    <iframe name="iFramePortlet"
    src="http://sttsstts/reports/rwservlet?report=test.rdf&server=myserver&destype=Cach....
    I found that the src tag is doubling my computername into sttsstts, it supposed to be stts only.
    How come this happen???
    I already tried to change server definition into
    Oracle Reports Web Gateway URL for JSP reports : http://localhost/
    Oracle Reports Web Gateway URL for RDF reports : http://localhost/reports/rwservlet
    but the when tried to run the report again, the src still added by computername become:
    src="http://localhoststts/reports/rwservlet?report=test.rdf&server=myserver&destype=Cach............
    plaease help me...
    Thanx before,
    Chris

    Hi,
    I found two Metalink Notes that could of use to you :-
    Metalink Note:230544.1 :- How To Install And Configure OSA AS Portlets (Main Document)
    Metalink Note:247595.1 :- Installing AS Portlets 1.0 with OFA or OSA Version 6.4
    Regards,
    Sandeep

  • Error running reports Parameter validation failed

    Hi All
    I have a user who gets an error when running reports from a remote console. If I log on with my account on his console I am able to run the report..
    I have checked a few things and now open to some suggestions.. please
    SMSAdminUI.log
       at System.Management.ManagementObject.Initialize(Boolean getObject)
       at System.Management.ManagementBaseObject.get_wbemObject()
       at System.Management.PropertyData.RefreshPropertyInfo()
       at System.Management.PropertyDataCollection.get_Item(String propertyName)
       at System.Management.ManagementBaseObject.GetPropertyValue(String propertyName)
       at System.Management.ManagementBaseObject.get_Item(String propertyName)
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlConnectionManager.GetInstance(String objectPath)\r\nManagementException details:
    instance of SMS_ExtendedStatus
     Description = "Error retrieving object ResourceID=83886343";
     ErrorCode = 2151811598;
     File = "e:\\nts_sccm_release\\sms\\siteserver\\sdk_provider\\smsprov\\SspInterface.h";
     Line = 1198;
     Operation = "GetObject";
     ParameterInfo = "SMS_MachineSettings.ResourceID=\"83886343\"";
     ProviderName = "ExtnProv";
     StatusCode = 2147749890;
    \r\n
    [17, PID:8664][10/23/2014 08:27:20] :System.Management.ManagementException\r\nInvalid class \r\n   at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode)
       at System.Management.ManagementObjectCollection.ManagementObjectEnumerator.MoveNext()
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryResultsObject.<GetEnumerator>d__0.MoveNext()\r\nManagementException details:
    instance of __ExtendedStatus
     Operation = "ExecQuery";
     ParameterInfo = "SELECT * FROM SMS_Identification";
     ProviderName = "WinMgmt";
    \r\n
    [23, PID:8664][10/23/2014 08:27:59]  Parameter validation failed. It is not possible to provide valid values for all parameters. ---> Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Parameter validation failed. It is not possible
    to provide valid values for all parameters.

    ReportServerService.log
    (/ConfigMgr_J01/Site - Discovery and Inventory Information/Computers with duplicate MAC addresses).
    library!ReportServer_0-20!358!10/24/2014-10:18:47:: i INFO: Call to GetPropertiesAction(/ConfigMgr_J01/Site - Discovery and Inventory Information, PathBased).
    library!ReportServer_0-20!358!10/24/2014-10:18:47:: i INFO: Call to GetReportParametersAction(/ConfigMgr_J01/Site - Discovery and Inventory Information/Computers with duplicate MAC addresses).
    processing!ReportServer_0-20!358!10/24/2014-10:18:47:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: , Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Parameter validation failed. It is not
    possible to provide valid values for all parameters.;
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetItemTypeAction(/).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetItemTypeAction(/).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetDataSourceContentsAction(/ConfigMgr_J01/{5C6358F2-4BB6-4a1b-A16E-8D96795D8602}).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetPropertiesAction(/ConfigMgr_J01, PathBased).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetItemTypeAction(/).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetDataSourceContentsAction(/ConfigMgr_J01/{5C6358F2-4BB6-4a1b-A16E-8D96795D8602}).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to CreateDataSourceAction({5C6358F2-4BB6-4a1b-A16E-8D96795D8602}, /ConfigMgr_J01, True).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to ListTasksAction(Catalog).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to SetPropertiesAction(/ConfigMgr_J01).
    processing!ReportServer_0-20!358!10/24/2014-10:19:07:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: , Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Parameter validation failed. It is not
    possible to provide valid values for all parameters.;

  • Error running app wich uses Cristal Reports XI in client PCs

    Hello,
    have Crystal Reports XI for Developers. I have develop an application qich connects with CR to show reports. When I try to execute the app in a client computer (not my developing machine) and i have an error when i try to connect and show a report.
    The error is number 512 and its description: Print Engine not opened
    In the developing computer there is no error because i have installed the desktop application, but i would like not to have to install the Desktop Application of CR in each client computer where i would like to run my application.
    Whit dll,s or something else i need to avoid this problem??
    Thanks.

    Hello,
    crpe32 as a report engine was deprecated as of CR 9. But I now assume you maybe using Delphi? Would be more informative if you gave all this info first so we don't have to ask or guess...
    Search here if you are using delphi on "delphi" and you'll find more info and how to's.
    If you are not using Delphi then your only option now is to either move to the RDC which also was deprecated in CR XI R2 or use our .NET assemblies and upgrade to Visual Studio 2008 or 2010.
    Thank you
    Don

  • Error running reports with new OMS

    Hello All,
    We had a bunch of reports scheduled in Grid Control. After migrating to a new OMS on a new server, reports are not being sent anymore.
    I've done some tests and the error I see is this:
    This is a scheduled report. The most recently generated report completed with the following error. Error: Unexpected occurred while e-mailing report: - null
    The report is a simple one showing waits in terms of I/O, instance activity etc..
    If anyone has ideas, let me know.
    Cheers.
    P.S. Preferred credentials are set and work fine. This is OMS 10.2.0.5 on Solaris 10. The target instance is a 9i instance.

    I checked with both Mozilla and IE. Issue is not related to browser.
    The problem seems to be information isn't available on host - If i go to the host- CPU/Memory/IO utilization show - No data is currently not available. I'm not sure if this is because of the 10.2.0.5 release but suspect that's the case since the data was available on 10.2.0.3 GC.
    If anyone has seen issues where host metrics aren't showing in GC 10.2.0.5, let me know. The host is running solaris 9. GC is on solaris 10/Repository is at 11.1.0.7.
    Thanks

  • Error Running Reports (REP-0081 &  REP-0124)

    Please help.
    I am having the following error when running a report on the web:
    (from the Reports Queue Manager)
    Terminated with Error :
    REP-0081: Error during file I/O operation. REP-0124: Unable to
    write to the temporary file. scafa 3
    thanks for a reply
    regards
    Yogeeraj

    Hello pals,
    i have set the following parameters: TMPDIR and REPORTS60_TMP...
    and it seems to be working!!!
    i hope that the problem is not somewhere else.
    NB. I was having problems with 2 reports only. the others were
    working fine.
    any comments will be most welcomed.
    regards
    Yogeeraj

  • Getting class not found error running java application using OIM libraries

    Hi,
    I have created a java application in which I access OIM libraries to fetch user list and then assign user roles. As i run the application it generates exception and program crashes. However, I am using the same libraries in OIM adapters and it is working fine. Following is the exception message i am getting.
    Caused by: java.lang.NoClassDefFoundError: org/springframework/jndi/JndiTemplate
    at oracle.iam.platform.OIMClient.<init>(OIMClient.java:83)
    at RoleAssignment.RoleAssignment.getUserAndChangePassword(RoleAssignment.java:143)
    at RoleAssignment.RoleAssignment.execute(RoleAssignment.java:81)
    at RoleAssignment.RoleAssignment.main(RoleAssignment.java:36)
    ... 5 more
    Caused by: java.lang.ClassNotFoundException: org.springframework.jndi.JndiTemplate
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)

    Hi,
    I resolved the problem by making spring.jar part of my executable jar file. I have added oimclient.jar, spring.jar, wlfullclient.jar, commons-logging.jar, and eclipselink.jar part of my executable jar. Now I am getting the error below. I googled it and it mentioned that i should add path of authwl.conf in my run configuration in eclipse. So i added the following line in " -Djava.security.auth.login.config=/u01/oracle/Middleware/Oracle_IDM1/server/CustomExec/authwl.conf " under the VM Arguments section of run configuration, but it continues to give the same error.
    java.lang.SecurityException: Unable to locate a login configuration
         at com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:93)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at javax.security.auth.login.Configuration$3.run(Configuration.java:247)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.login.Configuration.getConfiguration(Configuration.java:242)
         at javax.security.auth.login.LoginContext$1.run(LoginContext.java:237)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.login.LoginContext.init(LoginContext.java:234)
         at javax.security.auth.login.LoginContext.<init>(LoginContext.java:403)
         at Thor.API.Security.LoginHandler.weblogicLoginHandler.login(weblogicLoginHandler.java:58)
         at oracle.iam.platform.OIMClient.login(OIMClient.java:134)
         at oracle.iam.platform.OIMClient.login(OIMClient.java:129)
         at com.infotech.tra.organization.RoleAssignment.getUserAndChangePassword(RoleAssignment.java:213)
         at com.infotech.tra.organization.RoleAssignment.execute(RoleAssignment.java:149)
         at com.infotech.tra.organization.RoleAssignment.main(RoleAssignment.java:49)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader.main(JarRsrcLoader.java:56)
    Caused by: java.io.IOException: Unable to locate a login configuration
         at com.sun.security.auth.login.ConfigFile.init(ConfigFile.java:250)
         at com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:91)
         ... 24 more

  • ERROR: Running OA page using Jdeveloper.

    Hi,
    We have extened one ABCVO.xml object related one page. Now i want to run the page from jdeveloper i am getting an error saying XXABCVO.xml of type defination is not found .
    Is there any extra setup i have to do reflect the extended changes to be apper in the page when i am running page using Jdeveloper. Please help me.
    Thanks
    sreenu.

    Hi sreenu,
    Whenever you are extending a seeded VO, you need to create the substitution for the old VO by clicking on the .jpx file.
    Then import the jpx file using the jpximport command from command prompt.
    To run the page which contains the customizations, you need to add -Djbo=ProjectName in the runner option of your project settings. Then you will be able to run the page from your local Jdeveloper.
    Anoop

  • Error running report

    Hi All,
    When trying to run a report (that makes inserts to the database )in 6i Reports the following error is faced:
    REP-1401: 'afterpform': Fatal PL/SQL error occured.
    ORA-03120 two-task conversion routine:interger overflow
    But when the same report is run in 9i the report runs fine.
    Also if the inserts are done directly at the backend the insert is done fine.
    What can be the cause ?? please help me out.
    Regards,
    Kirti..

    Also if the inserts are done directly at the backend the insert is done fine.What insert you are making ?? Please give some more details of processing.
    Thanks

  • Web Analysis Studio. Error in report that uses dimension that was deleted.

    Hi, everyone.
    Firstly I created a web analysis document.
    Then i deleted one dimension from the cube outline.
    And when I run the report I ve got an error like this:
    [1033] Native: 502 Invalid object file specified
    App\TEST\Cube\TST_C\Category
    Please advise, how can I delete the dimension from the report.
    Thanks.

    Thanks for your answer.
    Does the report open without the dimension?It opens blank.
    If the report opens then you can navigate to data source (dimension browser) and remove the dimension.How can I do this? This dimension is not in rows, nor columns, nor pages - it is in filter.
    Open the report, remove the dimension from report and saveHow can I do this? Please help, I think this is the way to move further.
    Actually, I have hundred of reports which rely on one cube, from which one dimension was deleted.
    So, I really need an approach to make reports automatically reflect changes in outline (I mean deleting of one dimension).

  • Error on Report when using timestamp functions

    I have been trying to generate a report with the sales pipeline for the following 12 months. The filter I have used is:
    (Opportunity."Close Date" >= TIMESTAMPADD(SQL_TSI_DAY,Current_Date,365)
    but seems to be there is something wrong, can anybody help me??
    Message was edited by:
    user612106

    The error shown is:
    S1000. Código: 10058. [NQODBC] [SQL_STATE: S1000] [nQSError: 10058] A general error has occurred. [nQSError: 16001] ODBC error state: 42884 code: -440 message: [IBM][CLI Driver][DB2/AIX64] SQL0440N No authorized routine named "TIMESTAMP_ISO" of type "FUNCTION" having compatible arguments was found. SQLSTATE=42884 . [nQSError: 16002] Cannot obtain number of columns for the query result. (S1000)

  • Error running Portlet that uses JSTL

    Anyone have any issues running a JSR 168 Portlet in Sun Portal Server that is running on Sun Web Server 7.0 update 2? This same portlet runs fine in the Portlet Driver application running on Glassfish. Seems to be an issue in the servlet/JSP implementation on Sun Web Server.
    service-j2ee reports: StandardWrapperValve[jsp]: PWC1406: Servlet.service() for servlet jsp threw exception
    java.lang.NoSuchMethodError: javax.servlet.jsp.PageContext.getELContext()Ljavax/el/ELContext;
    at org.apache.taglibs.standard.tag.common.core.SetSupport.doEndTag(SetSupport.java:140)
    at org.apache.jsp.jspf.summary_jspf._jspx_meth_c_set_0(summary_jspf.java:168)
    at org.apache.jsp.jspf.summary_jspf._jspService(summary_jspf.java:110)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:105)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:917)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:359)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:403)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:311)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:917)
    at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:391)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:297)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:178)
    at mil.army.usaac.portlet.onthefloor.LogBackFilter.doFilter(LogBackFilter.java:43)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:210)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:178)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:270)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:241)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:182)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:160)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
    at com.sun.webserver.connector.nsapi.NSAPIProcessor.process(NSAPIProcessor.java:149)
    at com.sun.webserver.connector.nsapi.NSAPIConnector.service(NSAPIConnector.java:995)

    Try bundling JSTL and Standard jars in the webapp and see whether the issue is resolved.
    Else write a simple webapp that uses JSTL and deploy on Sun Web Server 7.0 update 2 and see whether you see the same exception. You can post the issue to WebServer forum.
    Regards,
    Deepak

  • Error running universall installer using Oracle 11g on Windows server 2003

    Hi,
    I want to uninstall Oracle 11g on Windows server 2003 and when I run universall installer I receive the following error
    Checking swap space: 0 MB available, 500 MB required.
    Please advise how to resolve this error and the procedure to uninstall Oracle 11g on Windows server 2003
    Thanks,
    Ant

    Hi;
    For swap problem, please check:
    Swap space problem on Windows XP
    http://www.pcnineoneone.com/howto/swpfile1.html
    For remove process please check:
    Oracle 11g on Windows Srv 2003
    WIN: Manually Removing all Oracle Components on Microsoft Windows Platforms [ID 124353.1]
    Regard
    Helios

Maybe you are looking for

  • IDoc to File Scenario Error ( IS - Retail )

    Hi all , I was trying scenario IDoc (SAP ECC 6.0) (IS-Retail) to File scenario . When i trigerred IDoc from ECC system , it's showing sent successfully to external system or program. But the problem is it's not coming inside XI sxmb_moni . I have che

  • ThinkPad T510 Ethernet Card Driver on Debian Lenny

    Hello, I just bought my first Lenovo laptop, a Lenovo ThinkPad T510, and received it just yesterday. I partitioned the HDD and installed Debian Lenny on it. During the installation, Debian was unable to detect a network connection and throws up sayin

  • Different no. range for return GR

    Dear Experts, Our company using purchase return process. We have use diffent document type (Return PO) & different no. range for this return PO (1XXXX). But return GR still using the same GR no which start from 5XXX. Now our business required to main

  • Yamaha E313 - connection problem

    Hi all! I just bought Yamaha E313 and MIDI to USB converter UX16. After spending some long hours to find drivers for UX16, I got it connected to my iMac. In Garageband settings I can see that software do find MIDI input and it is all. But, I can not

  • I can't send an email because my page has changed

    I don't know what happened. I have a page that I can't understand. there is no place to send a email. I used to have a page that had download and other things at the bottom of the page and that page came up fast. Now I don't know what I have