UWL giving "Page Cannot be Displayed" when accessed through Internet

Dear  all,
We have exposed our portal to Internet and are currently testing the functionality.
All applications are working fine except UWL and Identity Management. UWL is working fine if I'm not using the Webdynpro UI for display.
Later we checked. Only the Webdynpro based applications are having problem when accessing through Internet.
What can be the reason for this? Please help. We are stuck up  because of this.
Best Regards,
Aparnna
Edited by: Aparnna Prasad on Aug 13, 2008 2:48 PM

Dear Aparna,
   Please check the following things
   1. Enter the Hosts enteries of R/3 and EP server.
   2. Try to ping the r/3 & EP server outside your network.
Regards
Ponnusamy

Similar Messages

  • Just installed LMS 3.2 and get "Page Cannot Be Displayed" when trying to access it.

    I installed CiscoWorks LMS 3.2 on a Server 2008 SP1 machine.  Installation went fine.  I am using IE 7.0 on the server to access LMS 3.2.  I get the web interface for the unsecure site but when I provide my login credentials, I get redirected to the 443 site and the generic IE Page Cannot Be Displayed is returned.

    Could be CSCtb17186:
    http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCtb17186
    https://supportforums.cisco.com/message/1328649#1328649
    Also, LMS 3.2 calls for manually setting the amount of swap on Win2k8:
    https://supportforums.cisco.com/message/680507#680507

  • Page cannot be found when accessing Web Dypro on Citrix Netscaler.

    Hi Everyone,
    Has anyone tried using Web Dypro Web Application on Netscaler?
    We have a Web Dynpro application on SAP Enterprise portal that are being hosted by our SSL-VPN (Citrix Netscaler) but when we try accessing our Web Dynpro to our Safari Ipod it pop-up page cannot be displayed. But when accessing it to a normal browser all the pop-ups are accessible and working.
    Regards,
    Michael Mondelo.

    Hi,
    I've tried to update the firmware but when connecting to Netgear it replies 'there is no firmware update available' so I guess it's up to date.  Just wondered if I should change any of the router settings from auto to manual?
    Although I'm not sure what I should change.
    It's a netgear n150 with adsl2+

  • JSF 1.1 integration with shale-tiles-1.0.4 giving page cannot be displayed

    I am trying to get shale-tiles-1.0.4 work with JSF 1.1
    I am getting the page can not be displayed error.
    The page cannot be displayed
    There is a problem with the page you are trying to reach and it cannot be displayed.
    Please try the following:
    Open the 10.21.31.170:8988 home page, and then look for links to the information you want.
    Click the Refresh button, or try again later.
    Click Search to look for information on the Internet.
    You can also see a list of related sites.
    HTTP 500 - Internal server error
    Internet Explorer
    These are the steps I have followed
    I have included shale-core-1.0.4.jar and shale-tiles-1.0.4.jar in /WEB-INF/lib
    I have included the following entry in web.xml
    <servlet>
    <servlet-name>Tiles Servlet</servlet-name>
    <servlet-class>org.apache.tiles.servlets.TilesServlet;/servlet-class>
    <init-param>
    <param-name>definitions-config</param-name>
    <param-value>/WEB-INF/tiles-defs.xml;/param-value>
    </init-param>
    <load-on-startup>3</load-on-startup>
    </servlet>
    <context-param>
    <param-name>definitions-config</param-name>
    <param-value>/WEB-INF/tiles-defs.xml;/param-value>
    </context-param>
    <listener>
    <listener-class>
    org.apache.tiles.listener.TilesListener
    </listener-class>
    </listener>
    My tiles-defs.xml:
    <tiles-definitions>
    <definition name="/siteMainLayout" path="/tiles/layout.jsp";>
    <put name="header" value="/tiles/header.jsp";/>
    <put name="menu" value="/tiles/menu.jsp";/>
    <put name="content" value=""/>
    </definition>
    <definition name="/systemLogon" extends="/siteMainLayout">
    <put name="content" type="template" value="/welcome.jsp";/>
    </definition>
    <definition name="/systemChangePwd" extends="/siteMainLayout">
    <put name="content" type="template" value="/application/changePassword.jsp";/>
    </definition>
    <definition name="/systemMain" extends="/siteMainLayout">
    <put name="content" type="template" value="/application/mainPage.jsp";/>
    </definition>
    <definition name="/systemFailue" extends="/siteMainLayout">
    <put name="content" type="template" value="/failue.jsp";/>
    </definition>
    <definition name="/systemMain" extends="/siteMainLayout">
    <put name="content" type="template" value="/application/mainPage.jsp";/>
    </definition>
    <definition name="/systemCancel" extends="/siteMainLayout">
    <put name="content" type="template" value="/application/Misc.jsp";/>
    </definition>
    </tiles-definitions>
    My layout.jsp:
    <%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles"%>
    <h:panelGrid columns="2">
    <f:facet name="header">
    <f:subview id="header">
    <tiles:insert name="header" flush="false"/>
    </f:subview>
    </f:facet>
    <f:subview id="menu">
    <tiles:insert name="menu" flush="false"/>
    </f:subview>
    <f:subview id="content">
    <tiles:insert name="content" flush="false"/>
    </f:subview>
    </h:panelGrid>
    My faces-config.xml:
    <faces-config xmlns="http://java.sun.com/JSF/Configuration">
    <managed-bean>
    <managed-bean-name>backing_Welcome</managed-bean-name>
    <managed-bean-class>state.mn.mdh.mrc.login.Welcome;/managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    <!--oracle-jdev-comment:managed-bean-jsp-link:1Welcome.jspx-->
    </managed-bean>
    <application>
    <view-handler>
    org.apache.shale.tiles.TilesViewHandler
    </view-handler>
    </application>
    <navigation-rule>
    <from-view-id>/systemLogon.jsp;/from-view-id>
    <navigation-case>
    <from-outcome>ChangePassword</from-outcome>
    <to-view-id>/systemChangePwd</to-view-id>
    <redirect/>
    </navigation-case>
    <navigation-case>
    <from-outcome>LoginSuccess</from-outcome>
    <to-view-id>/systemMain</to-view-id>
    <redirect/>
    </navigation-case>
    <navigation-case>
    <from-outcome>Others</from-outcome>
    <to-view-id>/systemCancel</to-view-id>
    <redirect/>
    </navigation-case>
    <navigation-case>
    <from-outcome>Failure</from-outcome>
    <to-view-id>/systemFailue</to-view-id>
    <redirect/>
    </navigation-case>
    </navigation-rule>
    My systemLogon.jsp:
    <%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles"%>
    <html>
    <f:view>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"/>
    <title>System Logon</title>
    </head>
    <body>
    <f:subview id="content">
    <h:form>
    <tiles:insert name="content" flush="false">
    </tiles:insert>
    </h:form>
    </f:subview>
    </body>
    </f:view>
    </html>
    The url I am trying is http://10.21.31.170:8988/Test-ViewController-context-root/faces/systemLogon.jsp
    Please assist in what I am missing.
    Thanks,
    Ambika

    Hi
    I do not see any error messages on the application server log except the server initialized message( I have included that at the end)
    But when I run the application in Firefox browser it gives me this error,
    Error instantiating web-application
    Error loading listener 'org.apache.tiles.listener.TilesListener', class not found
    When I removed the <listener> entry from web.xml and get the error,
    Error instantiating web-application
    Error instantiate servlet classes
    The message in Jdeveloper is:
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    C:\jdevstudio10133\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config>
    C:\jdevstudio10133\jdk\bin\javaw.exe -client -classpath C:\jdevstudio10133\j2ee\home\oc4j.jar;C:\jdevstudio10133\jdev\lib\jdev-oc4j-embedded.jar -Xverify:none -XX:MaxPermSize=256m -DcheckForUpdates=adminClientOnly -Doracle.application.environment=development -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 -Doc4j.jms.usePersistenceLockFiles=false oracle.oc4j.loader.boot.BootStrap -config C:\jdevstudio10133\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config\server.xml
    [waiting for the server to complete its initialization...]
    Could not canonicalize '"C:\Program Files\Sybase\Adaptive Server Anywhere 6.0\win32"' (The filename, directory name, or volume label syntax is incorrect). From system property java.library.path.
    Jun 13, 2008 10:18:21 AM oracle.security.jazn.JAZNConfig parseJAZNConfig
    FINE: JAAS: Configuration properties: { location = system-jazn-data.xml, provider.type = XML, realm.default = jazn.com }
    Jun 13, 2008 10:18:21 AM oracle.security.jazn.JAZNConfig parseJAZNConfig
    FINE: JAAS: Configuration properties: { provider.type = XML }
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.JAZNConfig parseJAZNConfig
    FINE: JAAS: Configuration properties: { provider.type = XML }
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.JAZNConfig parseJAZNConfig
    FINE: JAAS: Configuration properties: { location = TestWithShaleTiles-jazn-data.xml, provider.type = XML, realm.default = jazn.com }
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: Configuration properties: { location = system-jazn-data.xml, deployment.url = file:/C:/jdevstudio10133/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/system-application.xml, provider.type = XML, realm.default = jazn.com }
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): deployment URL=file:/C:/jdevstudio10133/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/system-application.xml
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): classpath=null
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): this=[JAZNConfig file:/C:/jdevstudio10133/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/system-application.xml]
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.JAZNConfig fileExists
    FINE: JAAS: Verify file=C:\jdevstudio10133\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config\jazn.xml
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.JAZNConfig getDefaultJAZNConfigFilePath
    FINE: JAAS: Configuration file=C:\jdevstudio10133\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config\jazn.xml
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.JAZNConfig getJAZNProperties
    FINE: JAAS: Configuration file=C:\jdevstudio10133\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config\jazn.xml
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.JAZNConfig parseJAZNConfig
    FINE: JAAS: Configuration properties: { idm.token.type = HTTP_COOKIE, custom.sso.key.alias = ssoSymmetricKey, idm.token.asserter.class = oracle.security.jazn.sso.SSOCookieTokenAsserter, realm.default = jazn.com, custom.sso.url.login = /jsso/SSOLogin, provider.type = XML, custom.sso.url.logout = /jsso/SSOLogout, idm.token.collector.class = oracle.security.jazn.sso.SSOCookieTokenCollector, location = ./system-jazn-data.xml, idm.authentication.name = JavaSSO, idm.token.collector.cookie.1 = ORA_OC4J_SSO }
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: Configuration properties: { idm.token.type = HTTP_COOKIE, custom.sso.key.alias = ssoSymmetricKey, idm.token.asserter.class = oracle.security.jazn.sso.SSOCookieTokenAsserter, realm.default = jazn.com, deployment.url = file:/C:/jdevstudio10133/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/jazn.xml, custom.sso.url.login = /jsso/SSOLogin, provider.type = XML, custom.sso.url.logout = /jsso/SSOLogout, idm.token.collector.class = oracle.security.jazn.sso.SSOCookieTokenCollector, location = ./system-jazn-data.xml, idm.authentication.name = JavaSSO, idm.token.collector.cookie.1 = ORA_OC4J_SSO }
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): deployment URL=file:/C:/jdevstudio10133/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/jazn.xml
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): classpath=null
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): this=[JAZNConfig file:/C:/jdevstudio10133/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/jazn.xml]
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.spi.xml.XMLJAZNProvider getJAZNDataXMLDoc
    FINE: JAAS-XML: url=file:/C:/jdevstudio10133/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/system-jazn-data.xml fname=file:/C:/jdevstudio10133/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/system-jazn-data.xml file=C:\jdevstudio10133\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config\system-jazn-data.xml
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.spi.xml.XMLRealmUser init
    FINE: JAZN-XML: XMLRealmUser.init: user(anonymous) is deactivated.
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.spi.xml.XMLJACCRepository init
    FINE: JACC: jaccRepo.init - JACCRepository already initialized. repo=[XMLJACCRepository isValid=true
         jaznConfig=[JAZNConfig file:/C:/jdevstudio10133/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/jazn.xml]
         jaccPolicyMap.keySet=[]
         jaccPolicyMap.values=[]] node=oracle.xml.parser.v2.XMLElement@170984c
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.spi.xml.XMLUserManager getAdminUser
    FINE: JAZN-XML: UserManager.getAdminUser: admin.user=oc4jadmin
    Jun 13, 2008 10:18:22 AM oracle.security.jazn.oc4j.RealmUserManager getAdminUser
    FINE: JAZN-OC4J: RealmUserManager.getAdminUser()=RealmUser: oc4jadmin
    Jun 13, 2008 10:18:23 AM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering transactions (commit 0) (rollback 0) (prepared 0).
    Jun 13, 2008 10:18:23 AM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering local transactions Queue[jms/Oc4jJmsExceptionQueue].
    Jun 13, 2008 10:18:23 AM oracle.oc4j.security.SSLMessages logGetSecureSocket
    FINE: getSecureSocket(address=/0.0.0.0, port=24043, backlog=30)
    Jun 13, 2008 10:18:23 AM oracle.oc4j.security.SSLMessages logGetSecureSocket
    FINE: getSecureSocket(address=/0.0.0.0, port=24043, backlog=30)
    Jun 13, 2008 10:18:25 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: Configuration properties: { deployment.url = file:/C:/jdevstudio10133/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/application.xml, provider.type = XML }
    Jun 13, 2008 10:18:25 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): deployment URL=file:/C:/jdevstudio10133/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/application.xml
    Jun 13, 2008 10:18:25 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): classpath=null
    Jun 13, 2008 10:18:25 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): this=[JAZNConfig file:/C:/jdevstudio10133/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/application.xml]
    Jun 13, 2008 10:18:25 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: Configuration properties: { deployment.url = file:/C:/jdevstudio10133/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/application-deployments/datatags/, provider.type = XML }
    Jun 13, 2008 10:18:25 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): deployment URL=file:/C:/jdevstudio10133/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/application-deployments/datatags/
    Jun 13, 2008 10:18:25 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): classpath=null
    Jun 13, 2008 10:18:25 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): this=[JAZNConfig file:/C:/jdevstudio10133/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/application-deployments/datatags/]
    Jun 13, 2008 10:18:25 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: Configuration properties: { location = TestWithShaleTiles-jazn-data.xml, deployment.url = file:/C:/jdevstudio10133/jdev/mywork/Test_Tiles/Test_with_shale_tiles/TestWithShaleTiles-oc4j-app.xml, provider.type = XML, realm.default = jazn.com }
    Jun 13, 2008 10:18:25 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): deployment URL=file:/C:/jdevstudio10133/jdev/mywork/Test_Tiles/Test_with_shale_tiles/TestWithShaleTiles-oc4j-app.xml
    Jun 13, 2008 10:18:25 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): classpath=null
    Jun 13, 2008 10:18:25 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): this=[JAZNConfig file:/C:/jdevstudio10133/jdev/mywork/Test_Tiles/Test_with_shale_tiles/TestWithShaleTiles-oc4j-app.xml]
    Jun 13, 2008 10:18:25 AM oracle.security.jazn.spi.xml.XMLJAZNProvider getJAZNDataXMLDoc
    FINE: JAAS-XML: url=file:/C:/jdevstudio10133/jdev/mywork/Test_Tiles/Test_with_shale_tiles/TestWithShaleTiles-jazn-data.xml fname=file:/C:/jdevstudio10133/jdev/mywork/Test_Tiles/Test_with_shale_tiles/TestWithShaleTiles-jazn-data.xml file=C:\jdevstudio10133\jdev\mywork\Test_Tiles\Test_with_shale_tiles\TestWithShaleTiles-jazn-data.xml
    Jun 13, 2008 10:18:26 AM oracle.security.jazn.util.Misc findOracleHome
    FINE: JAAS: ORACLE_HOME=C:\jdevstudio10133
    Jun 13, 2008 10:18:26 AM oracle.security.jazn.util.Misc fileExists
    FINE: JAAS: Verify file=C:\jdevstudio10133\j2ee\home\config\jazn.xml
    Jun 13, 2008 10:18:26 AM oracle.security.jazn.util.Misc getJ2eeHomeJAZNConfigFilePath
    FINE: JAAS: Bootstrap jazn.xml @C:\jdevstudio10133\j2ee\home\config\jazn.xml
    Jun 13, 2008 10:18:26 AM oracle.security.jazn.JAZNConfig <init>
    FINE: JAAS: Configuration file=C:\jdevstudio10133\j2ee\home\config\jazn.xml
    Jun 13, 2008 10:18:26 AM oracle.security.jazn.JAZNConfig getJAZNProperties
    FINE: JAAS: Configuration file=C:\jdevstudio10133\j2ee\home\config\jazn.xml
    Jun 13, 2008 10:18:26 AM oracle.security.jazn.JAZNConfig parseJAZNConfig
    FINE: JAAS: Configuration properties: { idm.token.type = HTTP_COOKIE, custom.sso.key.alias = ssoSymmetricKey, idm.token.asserter.class = oracle.security.jazn.sso.SSOCookieTokenAsserter, realm.default = jazn.com, custom.sso.url.login = /jsso/SSOLogin, provider.type = XML, custom.sso.url.logout = /jsso/SSOLogout, idm.token.collector.class = oracle.security.jazn.sso.SSOCookieTokenCollector, location = ./system-jazn-data.xml, idm.authentication.name = JavaSSO, idm.token.collector.cookie.1 = ORA_OC4J_SSO }
    Jun 13, 2008 10:18:26 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: Configuration properties: { idm.token.type = HTTP_COOKIE, custom.sso.key.alias = ssoSymmetricKey, idm.token.asserter.class = oracle.security.jazn.sso.SSOCookieTokenAsserter, realm.default = jazn.com, deployment.url = file:/C:/jdevstudio10133/j2ee/home/config/jazn.xml, custom.sso.url.login = /jsso/SSOLogin, provider.type = XML, custom.sso.url.logout = /jsso/SSOLogout, idm.token.collector.class = oracle.security.jazn.sso.SSOCookieTokenCollector, location = ./system-jazn-data.xml, idm.authentication.name = JavaSSO, idm.token.collector.cookie.1 = ORA_OC4J_SSO }
    Jun 13, 2008 10:18:26 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): deployment URL=file:/C:/jdevstudio10133/j2ee/home/config/jazn.xml
    Jun 13, 2008 10:18:26 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): classpath=null
    Jun 13, 2008 10:18:26 AM oracle.security.jazn.JAZNConfig init
    FINE: JAAS: JAZNConfig.init(): this=[JAZNConfig file:/C:/jdevstudio10133/j2ee/home/config/jazn.xml]
    Jun 13, 2008 10:18:26 AM oracle.security.jazn.util.Misc initJ2eeHomeJAZNConfig
    FINE: JAAS: default jazn.xml @ C:\jdevstudio10133\j2ee\home\config\jazn.xml : [JAZNConfig file:/C:/jdevstudio10133/j2ee/home/config/jazn.xml]
    Jun 13, 2008 10:18:26 AM oracle.security.jazn.util.Misc getIASPropertiesFilePath
    FINE: JAAS: XML Provider
    Jun 13, 2008 10:18:27 AM oracle.security.jazn.util.Misc getIASPropertiesFilePath
    FINE: JAAS: XML Provider
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 9375 ms.
    Target URL -- http://10.21.31.170:8988/Test-ViewController-context-root/faces/systemLogon.jsp
    08/06/13 10:18:28 Oracle Containers for J2EE 10g (10.1.3.3.0) initialized
    Jun 13, 2008 10:18:29 AM oracle.security.jazn.util.Misc getIASPropertiesFilePath
    FINE: JAAS: XML Provider
    Thanks for your help,
    Ambika

  • "Page cannot be displayed" when opening DatabaseControl in Oracle 11g

    Hi,
    This is a new installation of Oracle 11.2.0.3 on Win 2003 32bit. The install was successful (at least no errors) but I am having a problem with Enterprise Manager. When I go to the web page (https://servername:1158/em) then I receive the error "Page cannot be displayed"
    I get this whether I use the servername/localhost/IP in the url.
    I ran emctl status dbconsole and it indicated that the service was up and running.
    Also tried starting the service through cmd prompt rather than services window and this also shows the service starting up correctly.
    I can connect without issue through SQLPLus too.
    I would appreciate any guidance on what else to try and what logs to check in order to determine why this is happening.
    Thanks

    Hi;
    For your issue i suggest close your thread here as changing thread status to answered and move it to Forum Home » Enterprise Management » Enterprise Manager which is OEM dedicated forum site.
    Regard
    Helios

  • Download BLOB column giving page cannot be displayed

    I have a table with a blob column on a page. The record gets saved fine and I can open the blob up in a report using:
    DOWNLOAD:REPORT_SCHEDULER_JOB_OUTPUT:REPORT_OUTPUT:PK_ID::MIMETYPE:FILENAME:::attachment:[Open]
    For some reson it doesn't work on a form page. The BLOB column is set to 'File Browse'. When I click on the 'Download' link (next to the file browse button), I get page cannot be displayed. Is there soemthing else I need to do?
    Edited by: bobmagan on Jul 8, 2009 4:57 AM

    Bob,
    You'll need to add the process. Just set the condition to Never.
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen
    http://sourceforge.net/projects/plrecur
    You can reward this reply by marking it as either Helpful or Correct ;-)

  • Error: "The page cannot be displayed"  when trying to login to portal

    Hi All;
    I can not login to portal, when I click login in portal home page
    http:<server_name>/pls/portal , the sso login screen will never come up, producing an error The page cannot be displayed
    http://:<server_name>/pls/portal/PORTAL.wwsec_app_priv.login?p_requested_url=PORTAL.home&p_cancel_url=PORTAL.home
    BI Components:
    Portal:portal is up and running.
    Http Server is up and running.
    OC4J_Portal is up and running
    Any one has an idea ?
    Thanks.

    Try the troubleshooting documentation:
    - http://download.oracle.com/docs/cd/B14099_19/portal.1014/b19305/cg_app_k.htm#sthref2513
    Mick.

  • Error: Page cannot be displayed when testing BSP application from SE80

    Hi:
    I am new to SAP 4.7. I need help in running BSP application from SE80. When I run, I am geting error the page cannot be displayed. Can some suggests/advice what are the neccessary steps ahould follow to run BSP application.
    Thanks,
    Venkat.

    Welcome to the forums and welcome to BSP. There are a few things we kindly ask
    Take a look at this weblog: <a href="/people/brian.mckellar/blog/2004/06/11/bsp-trouble-shooting-getting-help">BSP Trouble Shooting: Getting Help</a>
    That will help you jump several of the hurdles you'll come across as you get started.
    As for your problem if you are receiving the message "Service is not active" then you need to go into the transaction SICF in your system and follow the tree (take a look at the path in your browser /sap/bc/...) and select each until you get down to the one you are trying to look at and active it.
    If you are getting errors about other ones not activated then do the same for those.
    If you are not getting those errors and your browser is simply telling you "Can't find it or something" then in "Internet Options" in your browser advanced tab uncheck the "Show Friendly HTTP Errors".
    You can also check transaction ST22 to see if there is a short dump in which case that will help analyze the problem.
    Otherwise you'll need to give us more info including your SP level (recommend you jump up to at least 43 on ABA and BASIS)
    Message was edited by: Craig Cmehil
    OK so Brian was faster...

  • 'The page cannot be displayed' when I use IE to open Web Dynpro demo

    In the package 'SWDP_DEMO_TUTORIALS' .
    Folder Web Dynpro Applicat. -> WDT_ALV ==> URL = 'http://abcdev.:8000/sap/bc/webdynpro/sap/wdt_alv'
    then Right click and choose Test.
    IE is open but 'The page cannot be displayed'. (http://abcdev.:8000/sap/bc/webdynpro/sap/wdt_alv?sap-client=210&sap-language=EN)
    1. I actived neccessary service in SICF already. (http://forum.consolut.net/viewtopic.php?f=8&t=1313)
    2. C:\WINDOWS\system32\drivers\etc -> hosts file has 2 record.
    127.0.0.1       localhost
    HP002264446493 HP002264446493
    I think I have to add the SAP server IP
    So I click at menu bar -> System -> Status and press Other Kernel info. (Green)
    ==>> I get Host = abcdev and IP address = 10.74.XX.YY
    After that, I add the 10.74.XX.YY  abcdev to be the last line.
    Is it correct?
    3. No data in table HTTPURLLOC.
    4. ECC 6  and I never installed Netweaver.
    PS.  I create my own web dynpro but the layout is not working  'The page cannot be displayed' .
    Thank you very much.

    I change host file to 'abcdev.' but it does not work.
    If I use command 'ping -t 10.74.XX.YY' , it's ok.
    If I use ping -t abcdev.:8000, it's not working.
    PS. IE version 6 and  Connection -> Lan settings ==> Not set anything.
    Help me please!!!
    Edited by: marshi on Feb 8, 2011 2:34 PM

  • Portal throws "page can't be displayed" when accessed through IE

    Hi ,
    We have a peculiar case where in EP7 portal is  throwing "page can't be displayed" error when accesed through IE 6 but is opening through firefox. This shows no network issue nor with the host file.
    Can you pls advice on this as this is a prod portal.
    regards
    Bharat

    Have look in the deployment folder and sub folders;     
    ... /usr/sap/<SID>/<instance>/j2ee/cluster/server<N>/apps/          
    sap.com/irj/servlet_jsp/irj/root/web-inf/deployment/pcd                                                                               
    ... /usr/sap/<SID>/<instance>/j2ee/cluster/server<N>/apps/          
    sap.com/irj/servlet_jsp/irj/root/web-inf/deployment/temp                                                                               
    and check if there are any files here with the extension ".err". If 
    there are any please rename those files removing the ".err" extension
    and restart the J2EE engine. So they will get redeployed;           
    Please remember to evaluate my reply,
    Best Regards,
    Fabio Sarmento

  • SSRS Report inserted in Performance Point Dashboard fails to display when accessing through https.

    Hi,
    I have a annoying issue : I created a SSRS 2008 R2 (SP Integrated) Report using report builder, I inserted it in a performance point dashboard and everything runs fine, on the SP Server. It means, when i'm accessing everything using local adress and
    http protocol, it works fine. But once i'm accessing from my machine using SSL, the report is not displayed. I get first a warning asking me if I allow IE to display unsecure content, then the web part stays empty for a few second and finaly IE throws an "Internet
    Explorer cannot display the webpage" in the webpart. I've been trying to put the https URL of the report in the PP Dashboard Designer but I get an unable to connect error. What is suprising me is that I do not have this issue with the report
    itself, it works perfectly on the server and on clients.
    Knowing that it is forbidden to connect to the server with designer tools from the clients, I'm in a dead end...
    Anyone had this kind of issue?
    Thanks!
    Maxime

    Do you generate a GUID error message with this error?  I suspect the problem will be more on the access than the item itself.
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • 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...

  • I cannot access facebook on my MacBook Pro.  I am able to access every other website.  When trying to access facebook it says that page cannot be displayed as safari cannot establish a connection.

    I cannot access facebook on my MacBook Pro.  I am able to access every other website.  When trying to access facebook it says that page cannot be displayed as safari cannot establish a connection.  I was able to access it just fine few weeks ago....
    Please help!

    Hi Justysiag,
    If you are having issues opening a particular web site in Safari on your MacBook Pro, you may want to follow the steps in this article to see if you can resolve the issue -
    Safari 7 (Mavericks): If Safari can’t open a website
    http://support.apple.com/kb/PH17169
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • 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

  • Page cannot be displayed error while accessing links on DAS page

    Hi,
    I have installed SSO server along with DAS on a single m/c. While installing i gave OID instance hostname and password. After installation when i access the DAS homepage and click on Login or Myprofile url is is throwing Page cannot be displayed error page
    i found following in the Apache\logs\error.log
    [Wed Nov 23 10:28:26 2005] [error] [client 198.186.43.113] [ecid: 1132759706:198.186.43.113:2408:2136:6,0] MOD_OC4J_0376: Request initial processing failed in ac worker with HTTP status code 1. This status will be passed back to the listener for error handling.
    I checked OC4J_SECURITY and HTTP_Server status. They are up and running. OID is also running.
    Any solution for this problem?

    Hi,
    I once faced a similar problem - I am not sure if the issues are related, but here goes :
    I figured out that DAS uses mod_osso to connect to the SSO Server. I hadn't configured mod_osso to correctly talk to the SSO Server. I used the ssoreg.sh script in the $ORACLE_HOME/sso/bin to make the mod_osso " talk " to the SSO Server.
    After this, the DAS started working properly.
    BTW, what's your AS instance version ?

Maybe you are looking for

  • Credit Note Creation for Invoice of previous sytem

    Hi to everyone, An invoice was created on the previous system (Pastel) and now the client is returning the goods. How would I account for this return? A service credit Note? How to re integrate the stock (goods are coming back in stock) Thanks Kentis

  • PO change me22n

    My requirement is that i want to make the standard NETPR and MENGE field in PO (ME22n) display only when the GR of that line item is done that is, You won't be able to make changes to PO fields netprice and quantity once GR has been done.Is there any

  • SSN value in Screen header

    Hi All, We have a requirement where we have to call SSN number field with *value ******** instead of orginal value* in PA30 screen header. Is it possible? Kind regards. Subhash

  • Page title in header jsp

    Hi group, Does anyone know if it is possible to retrieve information about the current page outside the page (i.e. in the framework)? I want to retrieve the title of the page that are about to be active so I can use this information in my header! My

  • Where is SaveAsProjectTemplate script? (RH 10 only)

    According to this document http://help.adobe.com/en_US/robohelp/scripting/robohelp_10_scripting.pdf Robohelp provides SaveAsProjectTemplate script stating: Use this script to save a RoboHelp project as a template for creating similar RoboHelp project