"The Page Cannot Be Displayed" error when clicking the Remote Agent

Hi everyone! We have installed ACS SE 4.0 and we have added a remote agent running on Windows Server 2003. Recently, we are encountering "The page cannot be displayed" error when we click the RA under a network device group. This is resolved by rebooting the ACS SE appliance and accessing the ACS SE web console again but after few hours, problem reoccurs. Clicking the links on the ACS SE web console is okay at first but after clicking the RA, every link shows the error "The page cannot be displayed." Hope you could help us on this problem. Anyone's support is very much appreciated.
Thanks!

Hi JG,
Thank you so much for your response. Does Cisco have a documentation that states that this is a known issue with 4.0, such as release notes, for we might need this for the proposal upgrade?
Again, thanks a lot!

Similar Messages

  • The page cannot be displayed error in UWL

    Hi
    I am getting the "The page cannot be displayed error” when I try to click the Refresh button or MSS link in the UWL.
    Any idea...
    Regards
    Ali

    Hello,
    Can you be more clear? Are you able to see UWL list itself. If you are not able to see the UWL itself, then please make the needed config is done as in the link
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/39/a1bb5c4c0d4ab4a417e87ef35f1efa/frameset.htm
    Regards
    <i><b>Raja Sekhar</b></i>

  • The page cannot be displayed Error showing for workspace

    Hi All
    The page cannot be displayed Error showing for workspace.
    http://localhost:19000/workspace/index.jsp
    Other web applications working fine.... Shared Services, FDM webclient
    1. I have restarted Hyperion Workspace - Agent Service and IIS Admin service Still my problem didn't get resolved.
    2.Below web services extensions provided *"Allow"* permission in Internet information services(IIS)Manager
    Active Server Pages
    ASP.NET v1.1.4322
    ASP.NET v2.0.50727
    Internet Data Connector
    Server Side Includes
    WebDAV
    Application Pool->DefaultApp Status showing Running
    Web sites->*1.Default web site 2.Administration* Status showing Running
    Regards
    Smilee

    Correct, I just mistyped it in my thread. I just tried "http://epm.southbay.local:19000/workspace/"
    When I click Start Reporting and Analysis core serivces a command prompt window opens with the name "server" on the window, but the command prompt window itself is empty.

  • "Page cannot be displayed" error when attempting to download large dataset.

    In the following code, can anybody please tell me at what point the data actually starts to get transferred and the popup "download file" box appears? I'm thinking that the dialog box should appear on the first outputstream.write and start transferring data. However, I think it's not transferring the data until the while loop has finished! That's bad because this is a real long process and I eventually get "Page cannot be displayed" error. On a smaller dataset (shorter while loop) everything seems to work correctly. Is there some sort of a web server configuration that tells it to write out the data ONLY if outputstream closes? I really need it to write out the data as it's coming in. Code is below and thanks in advance.
    response.setHeader("Expires", "0");
    response.setHeader("Content-disposition","inline;filename=Download.csv");
    response.setContentType("application/x-msdownload");
    outputStream = response.getOutputStream();
    bufferInBytes = this.getData();
    while (bufferInBytes != null)
    outputStream.write(bufferInBytes, 0, bufferInBytes.length);
    outputStream.flush();
    bufferInBytes = this.getData();
    outputStream.close();

    Hi All,
    Thanks for all your help.
    Seems I already found out the issue.
    Since we are using "Personal Home Page" for the system profile option "Self Service Personal Home Page Mode" I checked oracle note and found out
    that 11i did not support this mode. Maybe this is the problem that is why we are getting page cannot be displayed error when only 1 responsibility is active.
    The way to fix this, is to use mode 'Framework Only' instead of 'Personal Home Page' as Oracle are phasing out mod_plsql based UI and it will not be present in future releases. No maintenance is being performed (i.e. bug fixes) to the mod_plsql based UI technology.
    Please check this note for more clearer explanation:
    Is The 'Personal Home Page' Mode Supported In Oracle 11i Applications? [ID 368628.1]
    Again, thank you for your help!

  • Page cannot be displayed error when login to EBS home page

    Hi All,
    I have some problem login to EBS page, if only one responsibility is active to user it will get error Page cannot be Displayed error 404 on the Main Menu.
    However if 2 or more responsibilities are active no error will come up and it will show all responsibilities.
    Below is the log I got from apache.
    [Thu Apr 28 15:58:26 2011] [warn] mod_plsql: Stale Connection due to Oracle error 6502
    [Thu Apr 28 15:58:26 2011] [error] mod_plsql: /pls/XXX/OracleNavigate.menuBypass ORA-6502
    ORA-06502: PL/SQL: numeric or value error: hex to raw conversion error
    ORA-06512: at "APPS.ICX_CALL", line 1077
    ORA-06512: at "APPS.ORACLENAVIGATE", line 2358
    ORA-06512: at line 28
    Appreciate if someone can share something about this.
    Database Server
    RDBMS : 10.2.0.2.0
    Oracle Applications : 11.5.10.2
    Thanks a lot

    Hi All,
    Thanks for all your help.
    Seems I already found out the issue.
    Since we are using "Personal Home Page" for the system profile option "Self Service Personal Home Page Mode" I checked oracle note and found out
    that 11i did not support this mode. Maybe this is the problem that is why we are getting page cannot be displayed error when only 1 responsibility is active.
    The way to fix this, is to use mode 'Framework Only' instead of 'Personal Home Page' as Oracle are phasing out mod_plsql based UI and it will not be present in future releases. No maintenance is being performed (i.e. bug fixes) to the mod_plsql based UI technology.
    Please check this note for more clearer explanation:
    Is The 'Personal Home Page' Mode Supported In Oracle 11i Applications? [ID 368628.1]
    Again, thank you for your help!

  • Page cannot be displayed' error when 2 events (FireAction and GO) fired

    We have created a framework page where FireAction event will be executed
    when the value of a calendar item is modified. When we modify the
    value and leave the cursor in the field (without tabbing out), and click
    GO button, 'Page cannot be displayed' error message will be displayed.
    When FireAction event is started, we use CO to retrieve the event. And
    when the cursor remains in item1 after being modified and click GO,
    2 events will be started (the FireAction event and the GO button's event)
    and 'Page cannot be displayed' error will be shown since CO is retrieving
    2 events at the same time.
    Since by changing certain fields of framework page without tabbing out
    is a regualar operation, how can we go around this error when we are
    using FireAction event?
    sample34_00co.java
    package oracle.apps.xx03.ap.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.webui.OADialogPage;
    import java.util.Calendar;
    * Controller for ...
    public class Sample34_00CO extends OAControllerImpl
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    public StringBuffer message = new StringBuffer();
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    Calendar cal = Calendar.getInstance();
    // When the browser back button is not executed
    if (!pageContext.isBackNavigationFired(false))
    System.out.println("NOT FROM BACK BUTTON!! ["+cal.getTime()+"]");
    // When the browser back button is executed
    else
    System.out.println("FROM BACK BUTTON!! ["+cal.getTime()+"]");
    //Action being performed when the browser back button is executed
    OADialogPage dialogPage = new OADialogPage(STATE_LOSS_ERROR);
    pageContext.redirectToDialogPage(dialogPage);
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    Calendar cal = Calendar.getInstance();
    if ( "updateItem1".equals(pageContext.getParameter(EVENT_PARAM)) )
    //When FireAction is executed
    System.out.println("item1 FireAction is executed! ["+cal.getTime()+"]");
    else
    //When other actions beside FireAction is executed
    System.out.println("item1 FireAction is not executed! ["+cal.getTime() +"]");
    sample34_00pg.xml
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <!-- dbdrv: exec java oracle/jrad/tools/xml/importer XMLImporter.class java &phase=dat+24 checkfile:~PROD:~PATH:~FILE &fullpath:~PROD:~PATH:~FILE -username &un_apps -password &pw_apps -dbconnection &jdbc_db_addr -userId "1" -rootPackage /oracle/apps/~PROD -rootdir &fullpath:~PROD:mds:directory -->
    <page xmlns:jrad="http://xmlns.oracle.com/jrad" xmlns:oa="http://xmlns.oracle.com/oa" xmlns:ui="http://xmlns.oracle.com/uix/ui" version="9.0.3.8.11_1183" xml:lang="en-US" xmlns:user="http://xmlns.oracle.com/jrad/user" xmlns="http://xmlns.oracle.com/jrad" file-version="$Header$">
    <content>
    <oa:pageLayout id="PageLayoutRN" windowTitle="Sample34_00 WindowTitle" amDefName="oracle.apps.fnd.framework.server.OAApplicationModule" title="Sample34_00 PageHeader">
    <ui:corporateBranding>
    <oa:image id="corporateBrandingImage" source="/OA_MEDIA/FNDSSCORP.gif"/>
    </ui:corporateBranding>
    <ui:contents>
    <oa:messageComponentLayout id="MainRN" controllerClass="oracle.apps.xx03.ap.webui.Sample34_00CO">
    <ui:contents>
    <oa:messageTextInput id="item1" prompt="item1" dataType="DATE">
    <ui:primaryClientAction>
    <ui:fireAction event="updateItem1"/>
    </ui:primaryClientAction>
    </oa:messageTextInput>
    <oa:messageLayout id="ButtonLayout">
    <ui:contents>
    <oa:submitButton id="Go" use="/oracle/apps/fnd/attributesets/Buttons/Go"/>
    </ui:contents>
    </oa:messageLayout>
    </ui:contents>
    </oa:messageComponentLayout>
    </ui:contents>
    </oa:pageLayout>
    </content>
    </page>
    ----------

    Shive...good one..!!
    One thing that you can do if you don't wanna have PPR, is to validate date column in fire action event in CO in process form request, and raise an error if you don't find appropriate format or null , as per your requirement.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • The page cannot be displayed (message when

    Hi together,
    since a couple of weeks, I have the problem with the message above in subject. My Client tries to access a "news" document which is - so I think - created by XMLForms Builder. When he clicks on the link, he got the message "The page cannot be displayed. The page you are looking for is currently unavailable. ....".
    I have checked the IE option settings. Therefore, we have a PDF document with all required settings. I had also the same problem which has been fixed after I have made changes on my settings but that has no effect on my Client's PC.
    I need an urgent idea / solution how to fix that. Thanks for helps
    Cengiz

    If this is an XE installation it would probably be best addressed in the Oracle XE forum. Having said that, I had a similar problem on my Windoze machine and needed to uninstall all previous Oracle client products.
    The basic problem (for me) was that the operating environment (path and environment variables) is not properly prepared to run the XE database and web server. Removing the other Oracle client apps removed the conflicting and offending environment settings and all works well.
    For further info you might want to go to that Oracle XE forum.
    Earl

  • Getting "Page Cannot be displayed" error when calling a procedure

    Hi all,
    I have a page having a table with more than 2000 rows. On click on save I need to call a pl/sql procedure and then a concurrent program and then based upon the result of CP I need to update the records from the back end.
    All this is done on the click of save button. Now my issue is the concurrent program takes a long time to get completed and I get "Page cannot be displayed error" on my page. Is there any way by which on click of save button I can redirect user to some other page saying the CP has been submitted and at the same time my CP and Pl/SQl procedure will be called. Here I have only one constraint that after competitions of my CP I need to update my table as well. So I need to handle that part as well.
    Regards,
    Arvind Goel

    hi
    would u please share ,how r u calling concurrent program ???
    thanx
    Pratap

  • "The page cannot be displayed" error in RWB with IE6 on Windows XP SP2

    The following screens in the RWB give an error "The page cannot be displayed":
    - End-to-end monitoring
    - Alert Configuration
    - Alert Inbox
    My colleague who is on IE6 on Windows 2000 can display the pages. We have the same roles.
    I searched on SAP notes and in the XI forum but could not find any response to this issue yet.
    Any ideas?
    Thanks.
    Cedric

    Not really an answer for you, but I run SP2 with IE6 and have no problems.  Could be a problem with the host being defined for the Windows 2000 user, but not yourself.  Some RWB connections are internally using the Fully qualified domain name while others don't.  I know this was an issue with our adapter engine set-up at one point after we applied SP13.

  • Page cannot be displayed error when executing WAD

    Hi all,
    I'm getting this error (Page cannot be displayed) when i execute my WAD. What is curious is that i can execute it ok i some machines, but some others get the error.
    Anyone knows what could be causing this?
    I've tried in different machines, all with Win XP sp2 and IE6 browser... and remains the same: some execute the WAD ok, some don't.
    I'll appreciate any help on this.
    Thank you,
    g.

    I had the same error and was a PROXY problem....
    I fix it setting in IE connetions the access to HTTP://MYSERVER/...ETC....in LAN Configuration->advanced options in IE....it works fine for me....
    Regards...

  • Page cannot be displayed - error when a view is created

    Hi all,
         I am new to webdynpro. I am trying to craete a webdynpro application. when a view is created i am not getting the login popup and the layout shows "Page cannot be displayed". I am connected through the router string. The same when i try in the local system i am able to view the layout. The services are activated in sicf.
    Pls guide me to resolve this issue. Is it neccessary that the host name has to be added in my machine also? Because the host is added in the server machine.
    Thanks in advance,
    Neela

    Hi,
    Try following thing:
    Make sure that proxy settings are up to date, for this
    i) Get the link of application
    ii) Copy the part till .com e.g. abc.def.com
    iii) Open internet explorer
    iv) Goto Tools-> Internet Options-> Connections-> LAN Settings-> Advanced->
    v) Add link of application in 'Exceptions' part as *.def.com
    Regards,
    Saket

  • Receive "The Page cannot be displayed" in the page header within FBL5N

    I have a user that started getting "The Page cannot be displayed" error message in the web content header after running FBL5N. The computer is running SAPGUI 710 and Windows XP SP3. I have already checked the FEATURE_DISABLE_MK_PROTOCOL settings in the registry. Any help and guidance would be appreciated.

    you must be using SAPGUI 7.10 patch level 15 or above.
    I have a feeling that you upgrade to IE8 on that workstation...

  • BEX - Query Designer - Query Execution - IE "The page cannot be displayed'

    Hi ALL,
    Trying to execute a query from BEx Query Designer, result needs to be displayed on Internet Explorer.
    However, when IE pops up to show the result, it says 'The page cannot be displayed'.
    It seems the PORT Number is wrong.
    When I execute the RSPLAN the port number is 52300 (23 ASCS)  (and it works!!).
    For this web query the port in URL is 55300 (53 SCS).
    Could you help to configure the right port?
    Something needs to be done on Basis side configurations?
    Thank you,
    Nivia

    Hi,
    This especific problem was solved na SM30 programa RSPOR_T_PORTAL.
    But I still have problem:
    The PORTAL logon is displayed and after input the user and pass shows the 500 Internal Error.
    Caused by: com.sap.mw.jco.JCO$Exception: (102) RFC_ERROR_COMMUNICATION: Connect to message server host failed
    Connect_PM  TYPE=B MSHOST=calsaps011.net.bradesco.com.br GROUP=PUBLIC R3NAME=BWH MSSERV=sapmsBWH PCS=1
    ERROR       partner 'calsaps011.net.bradesco.com.br:sapmsBWH' not reached
    I have looked the services and hosts and the files has the sapgw<> and sapms<> right configured.
    The important detail is that The PORTAL works if it doesn't come from BEx.
    COULD SOMEONE HELP ME?
    Tks,
    Nivia

  • Database Home Page - The page cannot be displayed

    Hello Oracle Gurus,
    Thank you in advance for your response.
    I'm running Oracle Database 10g Express Edition on Windows XP. When I launch the Database Home Page in IE I get a "The page cannot be displayed" error.
    I have gone through several posts on this forum and I have tried the following 5 things:
    1. I have stopped the database (net stop ...) and re-started the database (net start ...). This did not fix the problem.
    2. I checked the reading of "select open_mode from v$database;" this returned:
    OPEN_MODE
    READ WRITE
    I assume this is what it should be.
    3. I checked the reading of "select status from v$instance;" this returned:
    STATUS
    OPEN
    I assume this is what it should be.
    4. In IE -> Tools -> Internet Options -> Security -> Local intranet -> Sites -> Advanced, I added 127.0.0.1 to the local intranet zone.
    5. I restarted my WinXP PC.
    None of the above things worked.
    Does anybody have any suggestions of things to try to get the Database Home Page up and running?
    Please note that I am a newbie to Oracle so please write your response at the simplest possible level.
    Thanks,
    K

    There's a specific XE forum where they may have better answers than here. See Cannot access Oracle XE database home page

  • Webtemplate: The page cannot be displayed

    Hello All,
    When I try to execute a webtemplate in the Browser, I am getting "The page cannot be displayed" message. At the top of the Browser winow.."Cannot find server-Microsoft internet explorer"
    Could you explain me why the webtemplate is unable to execute in the browser?...what are the steps i have to proceed to execute the webtemplate in the browser?
    Regards,
    Pasumarty

    Hello Heike Guder,
    I checked in SMICM, HTTP protocol is running on 8080.
    I compared the Parameters of properly configured WAS, on which our webreporting is currently running.
    from rz10 the fllowing parameters are found, from the running server.
    icm/host_name_full
    icm/server_port_0
    icm/server_port_1
    icm/max_conn
    icm/max_threads
    icm/keep_alive_timeout
    and I added all the above parameters to the server, on which, ICM is not configured. After adding the above parameters, I found fallowing things:
    1. When i execute the template in the browser..the URL is "http://<server>:8100/sap/bw/BEx?sap-language=EN&bsplanguage=EN&CMD=LDOC&TEMPLATE_ID=ZACD_CHECK_APPLICATION01"
    --> even though icm/server_port_0 PROT=HTTP,PORT=8080,TIMEOUT=1800  but in the URL it is showing 8100 port.
    2. http://<server>:8100/sap/bw/BEx? is not working, same message, page can not be displayed.
    Please suggest me, if you have any further suggestions, to make WAS working properly.
    Regards
    Ravi

Maybe you are looking for

  • Lumia 1020 Echo During calls

    Hi there When i make or receive a call the other person on the phone hears me clearly and I hear them clearly but when they speak, THEY hear an ECHO. This has only started recentyl. I have tried turning speaker volume down and resetting the 1020 etc

  • How to unlock a carrier locked iPad 1?

    I have a iPad that was bought on contract on Orange. I have a 3 sim and when I try it, I get a message in iTunes "The Sim card inserted in this iPad does not appear to be supported" I am guessing it is carrier locked, I have found a few people on the

  • Why this program don't work without the "stop"?

    can you tell me why this program don't work without "stop"?and why the "stop" of my program can not work? Attachments: N(%}QA2R@SOLAF_12~0SQ)A.jpg ‏67 KB

  • Database toolkit problem

    Hello I have a problem with running DB toolkit. After installation I try to open example or build very simple code with DB Tools Open Connection. The result is broken arrow shows me that the DB ..Open connection.vi is not executable. I have installed

  • Doubt on Workflow in ESS/MSS

    Hi How to achieve Workflow in MSS/ESS for Portal. Like Leave approval / Reject etc. Can I use GP in EP or Do I need to configure SAP Workflow. I am totally confused. Do any one has documentation where like how these things are related. Regards Sowmya