Reports Servlet - Page not found

Hi,
We have problems with OracleAS Reports Services. We have installed oracle applicaction server 10g and we create a standalone report server, but when we issue
http://<server>:7778/reports/rwservlet
we get "Page not found" error. We looked at the error.log in Apache/logs directory and it gives:
File does not exist: /app/oracle/product/Reports/Apache/Apache/htdocs/reports/rwservlet
What is the issue? I checked the repserver.conf file, opmn.xml, tnsnames.ora, rwservlet.properties.
Help please. Thanks in advance...

Hello,
In order to "forward" the request to the OC4J OC4J_BI_Forms , some settings are required :
Could you check that mod_oc4j.conf in included in httpd.conf ?
In $ORACLE_HOME/Apache/Apache/conf/httpd.conf
# Include the mod_oc4j configuration file
include "d:\oracle\unified\Apache\Apache\conf\mod_oc4j.conf"
Then, check that there is an Oc4jMount directive for reports :
In $ORACLE_HOME/Apache/Apache/conf/mod_oc4j.conf
Oc4jMount /reports OC4J_BI_Forms
Oc4jMount /reports/* OC4J_BI_Forms
Regards

Similar Messages

  • SQL Server 2012 Reporting Services, Report Manager - Page not found

    Hi all,
    I am working on migrating reports to a new server so we can upgrade to a new machine and to SQL Server 2012 SP2.  The machine is up and running on Windows Server 2012 and I have installed SQL Server EE 2012 SP2.  I have imported the three databases
    from 2008R2
    * Report Server
    * ReportServer TempDB
    * RSSubscribers
    I have re-applied the encryption keys and I was thinking that everything was good to go until I went to try and manage the subscriptions on a report.  I select a report, use the drop arrow to get to manage
    and then try to select any of the options such as subscriptions and I get a "Page Not Found Error"
    If I take the URL and paste it in another browser, putting the previous server name in, it works fine.  So, the URL works fine...  I have no idea as to what I should do to figure out the problem.  I am considering rebuilding the whole install
    just to see if that would fix it.
    Thanks

    Hi SqlDude,
    According to your description, you have bind SSL to a Reporting Services URL Reservation. Now you find in your Report Manager, the Subscription page still start with "http://". Right?
    In this scenario, we need to change setting in rsreportserver.config file. Go to rsreportserver.config in "\Program Files\Microsoft SQL Server\MSSQL\Reporting Services\ReportServer". Find <Add Key="SecureConnectionLevel" Value="0"/>.
    Change the value into "3".
    Acceptable values are: 
    3 Most secure—Use SSL for absolutely everything.
    2 Secure—Use SSL for rendering and methods that pass credentials but don't insist on it for all SOAP calls.
    1 Basic Security—Accepts http but rejects any calls that might be involved in the passing of credentials.
    0 Least Secure—Don't use SSL at all.
    Besides, if you want to submit a feedback to Microsoft, please feel free to submit
    your situation on our product to the following link:
    https://connect.microsoft.com/SQLServer/Feedback.
    If you have any other questions, please feel free to ask.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Marketing Analytics dashboard reports showing page not found

    Hi All,
    We are using Apps 7.9.6.3,when I click Glossary dashboard navigation reports links showing page can't found.
    Error Page 404 page not found.
    This is the navigation path
    http://HOSTNAME:7001/analytics/Res/l_en/marketing/MarketingGlossary.html#Sent
    Please let me know where is the path, how to configure html files.
    Thx,

    That might be BI 10g related
    check here for the same OracleBI\web\app\olh\l_en\marketing\MarketingGlossary.html

  • Java Servlet page not opening error 404

    Hi!
    I am working with servlets. I compiled the java file and the class file is been moved to
    c:\javawebserver2.0\servlets, and the html files moved to public_html. Html files r opening
    the classpath is mapped to jsdk.jar i.e
    set CLASSPATH=c:\javawebserver2.0\lib\jsdk.jar
    Built-in samples r working without any problem
    when i try to run the servlet
    Page Not Found error 404 occuring
    Please do the favour for me
    thanks

    404 Not Found means you didn't deploy the app properly.
    I think deploying an app like this is a terrible idea. If you have more than one app deployed on a production web server/servlet engine, you wouldn't want to put them all in the same place. "public_html" and the generic "servlets" directory shouldn't be used as dumping grounds for all your apps.
    Learn how to deploy using a WAR file. It'll keep all your apps separate and their constitutive parts together.
    Why Java Web Server? I don't think anyone uses it seriously anymore. Tomcat is the reference implementation of the servlet/JSP specs. I'd download that and use it instead of JWS. JMO, of course.

  • Applying changes to report queries results in HTML 404 page not found

    Hello,
    When I try to change report queries (especially by using multiple queries) I frequently get HTML 404 page not found.
    This happens when I click Apply Changes after I edited the query, but also quite often just when I try to confirm the changes in the query.
    When I logout and then login again, after a few tries, I finally succeed.
    The problem of HTML 404 page not found appears quite a few times, even when I try to delete a query or to open one for editing
    Can anyone help me out here? It is really frustrating any development of reports with APEX
    I'm using APEX version 3.1.2.00.02 with Oracle XE

    Where do you publish your site and how do you upload the files?
    What is the URL of your site?

  • Proxy servlet returns "page not found"

    I want all request ending with "/PPO" will be proxy to "http://www.yahoo.com".
              Explanation:
              Our application is deployed on:
              C:\bea\user_projects\rci_domain\applications\rdas
              "rdas" is an applications context, we access our application using:
              http://localhost:7001/rdas/LoginDev.jsp
              I want the following request should be proxied to another server.
              http://localhost:7001/rdas/PPO (request for "PPO")
              Should Proxy to: http://www.yahoo.com
              I tried to simulate the same type of scenario. Following is a part from my web.xml file.
              <servlet>
                   <servlet-name>ProxyServlet</servlet-name>
                   <servlet-class>weblogic.servlet.proxy.HttpProxyServlet
                   </servlet-class>
                   <init-param>
                        <param-name>redirectURL</param-name>
                        <param-value>http://www.yahoo.com</param-value>
                   </init-param>
              </servlet>
              <servlet-mapping>
                   <servlet-name>ProxyServlet</servlet-name>
                   <url-pattern>/PPO</url-pattern>
              </servlet-mapping>
              Problem:
              It is taking me to yahoo.com, but with "Page Not Found" content. I don’t know why it is showing the yahoo.com page with "Page not found". For example you will see the same page what I am seeing using HTTPProxyServlet, if you try the following:
              http://www.yahoo.com/rdas/PPO
              or
              http://www.yahoo.com/blabla
              Note: I can not define "context-root" set to "/" parameter in weblogic.xml file, because our application is accessed using "/rdas". All request must have /rdas as well.
              I don’t know what I am missing here. Your solution/suggestions are really important. Your earliest reply is really grateful.
              Thanks
              Farhan

    As Peter says, it might be a bug. I did another test. Selected the URL from my IDD, opened the Hyperlink panel, clicked on Create New Hyperlink and this is what I get: http://www.projectorcentral.com/paint_perfect_screen_%24100.htm. So ID is changing "$" to "%24". But, when I click on Go To Destination, still takes me to the website! I'm on a PC with CS6 8.0.1 and using Google Chrome.
    Did a second test just for fun: without selecting the URL in the ID, I went to Type/Hyperlinks & Cross-References/Convert URLs to Hyperlinks and ID creates two Hyperlinks: http://www.projectorcentral.com/paint_perfect_screen_ and a separate: 100.htm. So, ID splits the Hyperlink right at "$". So definitely ID doesn't like the "$".

  • RRI to ABAP report - Page not found error

    Hello,
    I am trying to setup a Jump from Query to an ABAP report to display long text at line item - when I do this from Web, it tries to open but ends up with a "Page not found" error. The page title bar says Bex Launacher ( RRI transactions)
    We are on BI 7.0 SP10 and I have tested SICF's Webgui service, this seems to works fine ( calls SAP gui in HTML)
    I tested in RSRT and it works fine. Just doesn't work from the report in Web Browser ( Go to-> program name)
    Any ideas?
    Dev

    Any ideas ?

  • BUG? Interactive report select other tab results in Page not found

    Hello all,
    Recently I have updated our Apex install to version 4.0.1 on Oracle 11.2. There I found the following problem, for which I don't know if it is a bug or not:
    Steps to reproduce:
    1. Select a sample application and open a page that contains an interavtive report
    2. Run the page
    3. Click on "Actions" and select "Filter"
    4. Wait for the filter to show and then select any other tab.
    This results in a page not found. The address bar shows the link: http://apex.oracle.com/pls/apex/wwv_flow.accept without any parameters.
    I have tried to use another template and finally I turned to the sample applications. There this issue can also be found.
    My questions:
    1. Is this problem already known
    2. Is there a work around? because this can be very annoying for our customer.
    Thanks!
    Mark.
    Edited by: user13295208 on 25-okt-2010 2:54

    Hi,
    Thanks for your reply Patrick.
    I have read the post and added the parameter. i am using the EPG. I am able to reproduce using the described steps even using the test applications on the oracle apex environment on the internet from oracle itself.
    This is the output I get:
    Tue, 26 Oct 2010 06:34:47 GMT
    wwv_flow.accept: SIGNATURE (parameter names) MISMATCH
    VARIABLES IN FORM NOT IN PROCEDURE: APEXIR_BETWEEN_FROM,APEXIR_BETWEEN_TO
    NON-DEFAULT VARIABLES IN PROCEDURE NOT IN FORM:
    DAD name: apex
    PROCEDURE : wwv_flow.accept
    URL : http://XDB HTTP Server:8080/apex/wwv_flow.accept
    PARAMETERS :
    ===========
    P_FLOW_ID:
    300
    P_FLOW_STEP_ID:
    15
    P_INSTANCE:
    4195959754273719
    P_PAGE_SUBMISSION_ID:
    3898486033507817
    P_REQUEST:
    Status
    P_ARG_NAMES:
    2229031230287918
    2328020293962011
    2328412840962015
    P_T01:
    2
    P_T02:
    -1
    P_T03:
    P_IGNORE_01:
    COLUMN
    P_IGNORE_10:
    BIY_ID
    =
    is null
    =
    >
    minutes
    APEXIR_BETWEEN_FROM:
    APEXIR_BETWEEN_TO:
    P_MD5_CHECKSUM:
    ENVIRONMENT:
    ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=2
    SERVER_SOFTWARE=Oracle Embedded PL/SQL Gateway/11.2.0.1.0
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=8080
    SERVER_NAME=XDB HTTP Server
    REQUEST_METHOD=POST
    QUERY_STRING=
    PATH_INFO=/wwv_flow.accept
    SCRIPT_NAME=/apex
    REMOTE_HOST=
    REMOTE_ADDR=195.75.194.25
    SERVER_PROTOCOL=HTTP/1.1
    REQUEST_PROTOCOL=HTTP
    REMOTE_USER=ANONYMOUS
    ORACLE_SSO_USER=
    OSSO_IDLE_TIMEOUT_EXCEEDED=
    OSSO_USER_GUID=
    HTTP_CONTENT_LENGTH=459
    HTTP_CONTENT_TYPE=application/x-www-form-urlencoded
    HTTP_USER_AGENT=Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.4)
    HTTP_HOST=172.21.3.112:8080
    HTTP_ACCEPT=image/gif,image/jpeg,image/pjpeg,image/pjpeg,application/xaml+xml,application/vnd.ms-xpsdocument,application/x-ms-xbap,application/x-ms-application,application/vnd.ms-excel,application/vnd.ms-powerpoint,application/msword,*/*
    HTTP_ACCEPT_ENCODING=gzip,deflate
    HTTP_ACCEPT_LANGUAGE=nl
    HTTP_ACCEPT_CHARSET=
    HTTP_COOKIE=WWV_CUSTOM-F_1295002828055418_300=10462C0802BCE5E0; ORA_WWV_USER=-1; ORA_WWV_REMEMBER_UN=ADMIN:BAGTRAX BSC; ORA_WWV_R3=%23ALL; ORA_WWV_R2=%23ALL; ORA_WWV_R1=%23ALL; LOGIN_USERNAME_COOKIE=bsc
    HTTP_IF_MODIFIED_SINCE=
    HTTP_REFERER=http://172.21.3.112:8080/apex/f?p=300:15:4195959754273719::NO
    HTTP_SOAPACTION=
    HTTP_ORACLE_ECID=
    HTTP_ORACLE_CACHE_VERSION=
    HTTP_AUTHORIZATION=
    WEB_AUTHENT_PREFIX=
    DAD_NAME=apex
    DOC_ACCESS_PATH=docs
    DOCUMENT_TABLE=wwv_flow_file_objects$
    PATH_ALIAS=
    REQUEST_CHARSET=AL32UTF8
    REQUEST_IANA_CHARSET=UTF-8
    SCRIPT_PREFIX=
    HTTP_IF_MATCH=
    HTTP_CACHE_CONTROL=
    SOAP_BODY=
    HTTP_X_ORACLE_DEVICE_CLASS=
    HTTP_X_ORACLE_DEVICE_ORIENTATION=
    HTTP_X_ORACLE_DEVICE_MAXDOCSIZE=
    HTTP_X_ORACLE_DEVICE=
    HTTP_X_ORACLE_ORIG_ACCEPT=
    HTTP_X_ORACLE_ORIG_USER_AGENT=
    HTTP_X_ORACLE_USER_LOCALE=
    HTTP_X_ORACLE_USER_NAME=
    HTTP_X_ORACLE_USER_DISPLAYNAME=
    HTTP_X_ORACLE_USER_USERKIND=
    HTTP_X_ORACLE_USER_AUTHKIND=
    HTTP_X_ORACLE_USER_DEVICEID=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE1=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE2=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLASTLINE=
    HTTP_X_ORACLE_USER_LOCATION_BLOCK=
    HTTP_X_ORACLE_USER_LOCATION_CITY=
    HTTP_X_ORACLE_USER_LOCATION_COMPANYNAME=
    HTTP_X_ORACLE_USER_LOCATION_COUNTY=
    HTTP_X_ORACLE_USER_LOCATION_STATE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODEEXT=
    HTTP_X_ORACLE_USER_LOCATION_COUNTRY=
    HTTP_X_ORACLE_USER_LOCATION_TYPE=
    HTTP_X_ORACLE_USER_LOCATION_X=
    HTTP_X_ORACLE_USER_LOCATION_Y=
    HTTP_X_ORACLE_SERVICE_HOME_URL=
    HTTP_X_ORACLE_SERVICE_PARENT_URL=
    HTTP_X_ORACLE_HOME_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_LABEL=
    HTTP_X_ORACLE_CACHE_USER=
    HTTP_X_ORACLE_CACHE_SUBID=
    HTTP_X_ORACLE_CACHE_AUTH=
    HTTP_X_ORACLE_CACHE_DEVICE=
    HTTP_X_ORACLE_CACHE_LANG=
    HTTP_X_ORACLE_CACHE_ENCRYPT=
    HTTP_X_ORACLE_ASSERT_USER=
    So it looks like something with the interactive report.
    Any ideas?
    Mark

  • Report export (CSV) results in page not found error

    Hello,
    I'm having this strange error which i cannot seem to figure out. I have enabled report export through CSV in a report (report attributes). When i click the link in the report i get a page not found error (http 404). At first i thought it was a problem with the http-server. But as other applications (on different databases) don't have this problem i'm thinking it has to do with this apex-instance. Till 2 days ago it did work on this instance too.
    I'm really out of ideas, so if anyone can push me in the right direction i would really appreciate!
    Apex 3.2
    DB 10.2.0.4
    Thanks,
    Patrick

    Does this compare to the same as the url for your page?
    Has your server changed?
    Have you changed the dad file recently?
    have you checked the Apache access/error logs right after the 404 error is encountered ?
    Gus..

  • Edit Page;Report;Enable CSV Output;Apply Changes;Page Not Found;wwv_flow

    Hi,
    We have a really annoying error in our application, whereby we are unable to save ANY changes to report attributes if Enable CSV Output is Yes.
    I have many pages with Enable CSV Output set to Yes, and when run, the pages can indeed be exported to Excel, fine so far.
    However, if we do Edit Page, choose Report change Enable CSV Output to No, then apply changes the option is removed ok - BUT if we then set it back to Yes, when we apply changes again we get a Page Not Found error at this address ;
    http://sglas-sand.fm.rbsgrp.net:7780/pls/fdm_uat2/wwv_flow.accept
    We obviously dont need to keep changing this value, but the above demonstrates that our reports do currently support CSV output, but for some recent reason, trying to save a page where this option has been changed to Yes causes this crash.
    We also seem unable to change and save any other attribute when CSV Output is set to Yes. This leaves us in a tricky situation - unable to change our pages unless we are prepared to remove the Export option!
    We were wondering if the support of this this option requires any special processing / objects / etc to be availble / running. Any help greatly appreciated.
    John Nice
    Royal Bank of Scotland - Finance IT

    Hi Scott,
    Thanks for the reply. Our errors were like this in the log ;
    [Thu Feb 22 14:52:33 2007] [error] [client <private ip removed>] ] [ecid: 1172155953:<private ip removed>] :30306:0:1855,0] mod_plsql: /pls/fdm_uat2/wwv_flow.accept HTTP-404 ORA-06550: line 23, column 3:\nPLS-00306: wrong number or types of arguments in call to 'ACCEPT'\nORA-06550: line 23, column 3:\nPL/SQL: Statement ignored\n
    Versions are ;
    Database : 10.2.02
    HTMLDB : 2.2
    Apache : 10g release 2
    Regards,
    John
    Message was edited by:
    John @ RBoS

  • Next page on ACS Report = Page not found

    Hi,
    I have ACS Appliance Release 3.3(3) Build 11.
    Everything works fine, except in the TACACS+ Accounting and TACACS+ Administration, in the Report menu.
    When I try to click on the next page, it says "Page not found".
    The other reports work fine.
    Is there any patch that I should apply?
    TIA

    Sounds like an issue with CSAdmin. Could be there is some text in the 2nd page of the CSV file that is corrupt or contains HTML like stuff.
    CSAdmin does its best to escape the data contained in the CSV files, but its still possible to get messed up.
    Download the CSV file and check it to see it looks OK.
    BTW, you can use extraxi csvsync to download CSVs via HTTP direct from the ACS to your desktop!
    Darran

  • Travel Mgmt:Click on Create Expense Report -PAGE NOT FOUND or NOT AVAILABLE

    I am trying to configure Travel management in the portal.
    When I log into the portal as the user and click on:
    (1) Travel and Expenses -> Create Expense Report, the corresponding iview is displayed
    (2) But when I create a travel request. And then go to My Trips and Expenses and for the just created Travel Request, Click on the same link "Create Expense Report", I get PAGE NOT FOUND or NOT AVAILABLE error.

    Hello, there.
    I have a similar problem.
    Could u plz tell me how to resolve this problem?

  • T&E-Unable to edit/print expense report - Page not found or is unavailable

    Hello Gurus!!
    We have some of the users reporting that they are unable to edit/print the expense report. When they try to do that they are getting the error message "page not found or is unavailable". We verified that the URL for the PCD page parameter is being maintained correctly in the Homepage Area framework.
    Could anybody please suggest what else could be wrong?
    Thanks
    ~~MK

    Missing pemissions

  • Page not found or not available

    Hi All,
    I am using ESS/MSS. While generating reports I am getting an error.
    In MSS , I am able to select the report in first step and in second step I am able to define selection criteria. But when I try to get
    report results( as results will be shown in a seperate window) it is showing as page not found or not available.
    I have checked the authorization and it is fine. The service is also running fine. But in portal I am facing this error.
    Can anyone help me in this.
    Thanks!
    Swarnaprakash

    Hi Lukas/Siddarth,
    Thanks for the suggestion.
    I wanted to tell one more information. Few days back in HR side they did patch upgrade.Please suggest what are the things shud I check
    This is the log I got from NWA
    Error looking up url: portal_content/com.sap.pct/line_manager/com.sap.pct.erp.mss.bp_folder/com.sap.pct.erp.mss.roles/com.sap.pct.erp.mss.manager_self_service/com.sap.pct.mss.hcm.rpt.iac
    [EXCEPTION]
    com.sapportals.portal.pcd.gl.PermissionControlException: Access denied (Object(s): portal_content/com.sap.pct/line_manager/com.sap.pct.erp.mss.bp_folder/com.sap.pct.erp.mss.roles/com.sap.pct.erp.mss.manager_self_service/com.sap.pct.mss.hcm.rpt.iac)
    at com.sapportals.portal.pcd.gl.PcdFilterContext.filterLookup(PcdFilterContext.java:422)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1248)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1254)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1254)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1254)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1254)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1254)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1254)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookupLink(PcdProxyContext.java:1353)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookup(PcdProxyContext.java:1300)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.java:1067)
    at com.sapportals.portal.pcd.gl.PcdGlContext.lookup(PcdGlContext.java:72)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.java:1060)
    at javax.naming.InitialContext.lookup(InitialContext.java:347)
    at javax.naming.InitialContext.lookup(InitialContext.java:347)
    at com.sapportals.portal.pcd.pcm.roles.RoleNavigationConnector.getNodes(RoleNavigationConnector.java:286)
    at com.sapportals.portal.pcd.pcm.roles.RoleNavigationConnector.getNode(RoleNavigationConnector.java:160)
    at com.sapportals.portal.navigation.cache.connector.CacheNavigationConnector.getOriginalNode(CacheNavigationConnector.java:941)
    at com.sapportals.portal.navigation.cache.connector.CacheNavigationConnector.getNode(CacheNavigationConnector.java:790)
    at com.sapportals.portal.navigation.NavigationService.getNavNode(NavigationService.java:1611)
    at com.sapportals.portal.navigation.NavigationService.getNode(NavigationService.java:579)
    at com.sapportals.portal.navigation.cache.CachedNavigationService.getNode(CachedNavigationService.java:156)
    at com.sapportals.portal.navigation.NavigationEventsHelperService.getCurrentNavNode(NavigationEventsHelperService.java:688)
    at com.sapportals.portal.navigation.NavigationEventsHelperService.getCurrentLaunchNavNode(NavigationEventsHelperService.java:745)
    at com.sapportals.portal.navigation.NavigationEventsHelperService.getCurrentLaunchNavNode(NavigationEventsHelperService.java:731)
    at com.sapportals.portal.navigation.workAreaiView.doContent(workAreaiView.java:136)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
    at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:235)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:541)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:430)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

  • "Page not found" error while fetching data using tomcat

    Hi all
    We have a java web application that runs on a distant server . The web server is apache tomcat . The database used is oracle. We upload large data to the site and generate various reports. We are using servlets for this purpose. But when there the amount of data fetch is larger, the browser shows "Page not found" error . We tried to increase the time out of the web server but it didnt work . Is there any solution to this problem ?
    Thanks & Regards
    Ashish

    Yup, don't fetch everything at a go!
    Google around for optimization techniques. I know one site called "javaperformancetuning" or something of that sort. It has some interesting articles on how to do this.
    Rich.

Maybe you are looking for

  • Can i downgrade to ios6 from ios7 ?

    i have ios7.1. can i downgrade it to ios 6.1.*  .how to do that ?

  • PLEASE HELP ! THIS IS URGENT FOR ME ABOUT IPOD TOUCH APPS

    *I had an ipod touch 2.2 software, with about 30 apps ! some paid for, some not. and i had about 25 of them synced to my laptop. a virus hit my laptop, and i formated it. later, my ipod had a software crash thing, and i formated that too into 2.1. AL

  • Cast Object Array to String Array.

    When I try to cast an object array to string array an exception is thrown. How do I go about doing it? Vector temp = new Vector(); Object[] array = temp.toArray(); String[] nonterms;                               nonterms = (String[])array; Thanks, A

  • Regarding Materialized view

    Hi all, I have two database .there is one table in first database.I want to synchronize this table with second database. for that i have created materialized view but when i am create that materialized view it gives following error ORA-12054: cannot

  • Adobe Flash player black bands prior to 11.7.700.202 and again in 11.7.700.224

    I was having issues at my campus when I scroll content.  The browser alternately covers the text, pictures, and buttons with black bars a few lines too early as I scroll.  The bars are random as to doing this, as sometimes it is black bars followed b