Error accessing Infoview and web-based Administration Console

Post Author: rsir
CA Forum: WebIntelligence Reporting
After installing Business Objects 6.5.1 with SP3 in a single server as a primary node, everything works fine, except for the InfoView (wiasp) interface and the web/based administration interface (wiadmin). We've investigated in the BusinessObjects support site and in many forums about the problem and tried every single possible solution in order to correct the problem, without success.
The system we're working on is this:
Server model: Hewlett-Packard BLADE series BL 460C
OS: Windows 2003 SP1
Web Server platform: IIS6
What happens is that when we try to log in to infoview in the welcome screen, the url changes to:
http://(servername)/wiasp/scripts/login/webiStart.asp
And it displays the "The page cannot be displayed" error.
Also, when trying to log in to the web-based administration console (the client version works fine), it displays this error:
"The system is not started (Error: ADC 00071)"
We've tryed enabling parent paths in the IIS, redeploying the cluster node throught the configuration tool, checking the web extensions to be allowed, etc. without success.
Thank you very much in advace for any help.
Roderic Sir

Post Author: sarika_us
CA Forum: WebIntelligence Reporting
Hi,
I am facing the same problem. Could you please tell me how you resolved it.

Similar Messages

  • Problem Starting the Web-Based Administrative Console

    I have Installed Application Server 7 Platform Edition. Everything runs smooth. The Application Server and the Administrative Server got started perfectly. I checked both of these Servers and they are working perfectly.
    The problem is that when trying to connect to the Web-Based Administrative Console.
    I get the prompt to enter the Admin username and the password, once I have entered, it accepts but through the following message.
    �Your Sun One Application Server License does not allow Remote Administration.
    Please go to http://www.sun.com/upgradeas7 to upgrade your license.�
    How can this happen because I am using the same machine where Application/Administrative Servers are running to get connected to Web-Based Administrative Console.

    Hi,
      May be you can put an external breakpoint in the method "_get_attribute_rtti"(of class CL_WDR_CONTEXT_NODE_INFO).
    From that you can find out which attribute is causing the dump , and try to solve the issue . May be some data dictionary object is not transported to production.(Assuming that you have permission to put breakpoints in production system..:))
    Aditya.

  • Web based administration console

    Hi,
    I know that a lot of folks have had problems running the admin server on linux, and thus can't run the administration console. As well, the administration console is not a good solution when the LDAP server(s) are on the other side of a firewall.
    Is anybody here interested in having a web based administration console that allows you to do 95% of what you can do with the regular console? As well, it could offer some additional features.
    I could develop and maintain such a system for Sun and the upcoming RH DS, if there is sufficient interest.
    Contact me by clicking my handle, and using the email address.
    podzap

    Post Author: sarika_us
    CA Forum: WebIntelligence Reporting
    Hi,
    I am facing the same problem. Could you please tell me how you resolved it.

  • Does Embedded OC4J has a web based admin console ?

    Hi
    Thank you for reading my post
    does embedded OC4J has a web based admin console ?
    i tried to open the /em context and it said that the page not found.
    if it has no Admin console , it ir t possible to install an admin console for it ?
    thanks

    Hi,
    yes, it has. You need to start embedded OC4J as stand-alone from the jdev-home\j2ee\home using the java -jar oc4j.jar command. You can then launch it and access it via port 8888 and issue
    http:://....:8888/em
    The embedded server does not use the enterprise manager screen because the configuration is kept in the JDeveloper_home\jdev\system...\j2ee...\embedded...\config directory
    Frank

  • 500 Internal error observed while accessing a Static Web based course

    Hi Experts
      When I try to start a static web-based course in portal, a 500 Internal server error comes up on the screen and the course not played at all.
      Please suggest.
    Regards
    Shaily

    Hi Shaily,
    Give some more details about product and also share screen shot for error
    Regards,
    Dhuvaraganathan M.

  • Authentication between Single Sign-On and Web based applications

    Hi everyone,
    I need to create a way in Portal 10g (10.1.2.0.2) that allow me to do the following:
    Once the user is logged on Portal (against Single Sign-On - SSO) he doesn't need to retype his username/password when he access a web based application throught the portal, in my case, an ASP application (not .NET, just ASP).
    I made a test creating a External Application in SSO and after publishing this portlet (external application) inside portal.
    It worked, BUT I was prompted to inform username/password to log on the aplication.
    So, the user end up entering his password twice.
    Does anybody know a way to acomplish this task?
    The documentation I'm researching is:
    Oracle Application Server Single Sign-On
    Administrator's Guide
    10g Release 2 (10.1.2)
    B14078-02
    Oracle Application Server Single Sign-On
    Security Guide
    10g Release 2 (10.1.2)
    B13999-03
    Thank you very much,
    Diogo Santos.

    have figured out how to secure any HTML, ASP, PHP, CFM, etc. web page again Portal / OID using the PDK toolkit.
    Using AJAX (Asynchronous JavaScript and XML) and one Oracle Stored Procedure just adding a simple Javascript call to any HTML, ASP, PHP, etc. web page can secure it via Oracle SSO (OID). Access to any secured web page will require that it to be linked from an authenticated Portal session or a page opened in an authenticated Portal session.
    This process can be easily modified to add in group security etc. This is just my starting point.
    1) Create a stored procedure
    # Make sure it has access to portal.wwctx_api.is_logged_on
    CREATE OR REPLACE PROCEDURE login_ajax_check (
    display_error IN number default NULL) AS
    BEGIN NULL;
    If portal.wwctx_api.is_logged_on = false then
    htp.prn('DENY');
    ELSE
    htp.prn('ALLOW');
    END IF;
    Exception when others then htp.p('DENY');
    END;
    2) Use this Javascript in any page you wish to secure.
    <-- Begin Paste Here -->
    <script>
    var allowgo=2
    function ajaxCallRemotePage(url)
    if (window.XMLHttpRequest)
    // Non-IE browsers
    req = new XMLHttpRequest();
    req.onreadystatechange = processStateChange;
    req.open("GET", url, false);
    req.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    req.send(null);
    else if (window.ActiveXObject)
    // IE
    req = new ActiveXObject("Msxml2.XMLHTTP");
    req.onreadystatechange = processStateChange;
    req.open("GET", url, false);
    req.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    req.send();
    else
    return; // Navigateur non compatible
    // process the return of the "ajaxCallRemotePage"
    function CheckPortal()
    ajaxCallRemotePage('[Your page calling the procedure from above]');
    function processStateChange()
    if (req.readyState == 4)
    if (req.status == 200)
    if (req.responseText.substring(0,4) == 'ALLO')
    allowgo = 0;
    else
    allowgo = 1;
    function doPage()
    if (allowgo==1)
    window.location='[Your login or error page]';
    CheckPortal();
    doPage();
    </script>
    <-- End Paste Here -->
    That's it!!! Super easy. It works great too.
    Larry Schenavar
    [email protected]

  • Cisco Secure ACS 4.2 for Windows web-based Admin Console log in problems

    To Whomever Can Assist,
          I am running two deployments of Cisco Secure ACS for Windows 4.2 and I can login into the admin web-console just fine.  However, when I create a new or test user that mirror my configuration that user cannot login to the admin web-console.  The user can login it to devices with the appropriate privileges, but can't administer his/her account within ACS.  This has proven very problematic and needs a remedy.  Thanks for the assistance.

    Bradbryant.dhs,
    Where are you creating the new admin user who should have access to ACS web gui under internal users or administration.
    Internal user and ACS administrator accounts are completely different. 
    Adding administrator account
    http://www.cisco.com/c/en/us/td/docs/net_mgmt/cisco_secure_access_control_server_for_windows/4-2/user/guide/ACS4_2UG/Admin.html
    Regards,
    Jatin Katyal
    ** Do rate helpful posts **

  • Error in router's web-based setup page (WRT54G V5)

    Hi,
    My router’s web-based setup page is unable to load fully.
    There seems to be an error with some document.setup.save file.
    I have tried to reset my router but the router’s web-based setup page is still unable to load fully.
    Please help.
    Thanks.

    Try Internet Explorer, it usually works.
    JavaScript must be enabled.
    Temporarily turn off your computer's software firewall, and see if that corrects your problem.
    Hope this helps.

  • How to administer an Access database via web-based interface?

    There are times when I need to edit a database record to do something my CMS wasn't designed to do, so I have to manually edit it. Normally I just ftp the Access mdb file to my pc, make edits, and reupload the mdb file and hope nobody updated the database in the meantime.  Does anyone know of a web-based database admin system that will allow me to edit Access data?  Sure would be nice if I could install something on the server that would allow me to edit any datasource there and not have to have a separate, customized interface for each datasource.
    Thanks for looking, Bill

    I would recommend naming that page with an extension that the web server will not serve.  Rename it to use it and then rename it back when done.
    Or just put access restrictions on it via the web server, so one needs to authenticate to the system before using it.
    Or stop using Access and use a decent DB: Access is not appropriate to be used as a DB for a web application.  But that might not be an option.
    Adam

  • Difference between ID and Role based Administration - Firefighter 5.3

    In GRC AC 5.3 Firefighter, security guide, there are two sections for role design,
    1. Firefighter Role based Administration
    2. Firefighter ID based Administration
    Can someone explain what is the difference between the two?
    I have read the documentation, but it does not have a clear description of the
    differences between the two.
    Please help.
    Thanks

    HI Prakash,
    Though both of them eventually achieve the same function, that is giving access rights to the user for a certain period under monitring these differ based on the following:
    1. Firefighter Role based Administration
    You identlfy a particular role as a firefighter role and give it to the user.
    2. Firefighter ID based Administration
    You create a separate user altogether and give the normal dialog user, the access to this user's authorization.
    For the implication that both of these have and the differences or comparisons between using 1 & 2, I would suggest you do a bit of Mock testing for both of these. Also, there are a lot of posts related to this on the forum already, which you can refer to, for getting a more detailed idea on this topic. Unlimately, it depends on organization to organization which methodology they folow as per what suits them, according to features which both have. But generally what is preferred is Number 2.
    Regards,
    Hersh.

  • Running Opera, flickr, teashark and web based apps...

    I am unable to run web based applications like opera mini flickr cellity Teashark and others.
    Whereas opera,flickr are some inbuilt apps but still unable to access internet through them.
    Internet accessing is fine via default browser but none of the web browsers like Opera mini, Teashark,etc are not working.
    Its not the problem of Network since on my other mobiles, apps run fine.
    Please reply with the solution for the problem so that i can access web via web based Java Apps.
    Message Edited by aparichit on 11-Oct-2008 12:49 PM

    m so sry my net connection was nt working so couldn't reply
    ok so here is step by step procedure:
    Menu->Settings->Configuration->Personal config. sett->Options->Add New->Access Point:
    now what you hav to do here is dat basically you need to know the access point of the setting you want to use key in the access point there. user name and password are nt needed usually.
    save that access point and go back to the configuration page nw in 'preferred access pt.' set dat access point which you created just nw.
    this process worked for me mayb this works for you all too. (i've presumed dat you all have got your internet services activated from your provider)
    if you don't knw the name of your access point then your operator's customer care centre could be of some help..
    Was this post of some help? Click 'Kudos' star on the right hand side of this post. Your gesture will be highly appreciated!

  • Urgent requirement : security error accessing url and http error: standalone flex

    Hi,
    I have a requirement to create record from standalone flex. I am using Flex builder 3.
    I used Flex-force toolkit to login  to salesforce. The swf file generated when used internal to salesforce it works great.
    But my requirement is to run it from public sites page / standalone pages. How will I configure it? I am getting error 'security error accessing url', default HTTP
    The requirement is on priority, please help me to resolve this issue.
    The login code is also furnished below. please help.
    Full error details:
    (com.salesforce.events::ApexFaultEvent)#0
      bubbles = false
      cancelable = true
      context = (null)
      currentTarget = (null)
      eventPhase = 2
      fault = (mx.rpc::Fault)#1
        content = (null)
        errorID = 0
        faultCode = "Channel.Security.Error"
        faultDetail = "Destination: DefaultHTTP"
        faultString = "Security error accessing url"
        message = "faultCode:Channel.Security.Error faultString:'Security error accessing url' faultDetail:'Destination: DefaultHTTP'"
        name = "Error"
        rootCause = (flash.events::SecurityErrorEvent)#2
          bubbles = false
          cancelable = false
          currentTarget = (flash.net::URLLoader)#3
            bytesLoaded = 0
            bytesTotal = 0
            data = (null)
            dataFormat = "text"
          eventPhase = 2
          target = (flash.net::URLLoader)#3
          text = "Error #2170: Security sandbox violation: file:///C|/Users/R/DOCUME%7E1/FLEXBU%7E1/TESTLO%7E1/BIN%2DRE%7E1/TESTLO%7E1.SWF cannot send HTTP headers to https://login.salesforce.com/services/Soap/u/14.0?1000.1153011256829."
          type = "securityError"
      headers = (null)
      message = (mx.messaging.messages::ErrorMessage)#4
        body = (null)
        clientId = "DirectHTTPChannel0"
        correlationId = "B8A1B02E-CE17-DCBA-4894-F2E4CBEB7C04"
        destination = ""
        extendedData = (null)
        faultCode = "Channel.Security.Error"
        faultDetail = "Destination: DefaultHTTP"
        faultString = "Security error accessing url"
        headers = (Object)#5
          DSStatusCode = 0
        messageId = "41F6A90D-ECAE-EA2D-7C84-F2E4DABD72F3"
        rootCause = (flash.events::SecurityErrorEvent)#2
        timestamp = 0
        timeToLive = 0
      messageId = "41F6A90D-ECAE-EA2D-7C84-F2E4DABD72F3"
      statusCode = 0
      target = (null)
      token = (mx.rpc::AsyncToken)#6
        message = (mx.messaging.messages::HTTPRequestMessage)#7
          body = "<se:Envelope xmlns:se="http://schemas.xmlsoap.org/soap/envelope/"><se:Header xmlns:sfns="urn:partner.soap.sforce.com"/><se:Body><login xmlns="urn:partner.soap.sforce.com" xmlns:ns1="sobject.partner.soap.sforce.com"><username>uname</username><password>pwdandsec token</password></login></se:Body></se:Envelope>"
          clientId = (null)
          contentType = "text/xml; charset=UTF-8"
          destination = "DefaultHTTP"
          headers = (Object)#8
            DSEndpoint = "direct_http_channel"
          httpHeaders = (Object)#9
            Accept = "text/xml"
            SOAPAction = """"
            X-Salesforce-No-500-SC = "true"
          messageId = "B8A1B02E-CE17-DCBA-4894-F2E4CBEB7C04"
          method = "POST"
          recordHeaders = false
          timestamp = 0
          timeToLive = 0
          url = "https://login.salesforce.com/services/Soap/u/14.0?1000.1153011256829"
        responders = (Array)#10
          [0] (::SalesForceResponder)#11
        result = (null)
      type = "fault"
    Login code:
    [Bindable] public var sfdc:Connection = new Connection();
    private function login():void {
    Security.loadPolicyFile("http://salesforce.com/services/crossdomain.xml");
    var lr:LoginRequest = new LoginRequest();
    lr.username = "uname";
    lr.password = "pwdtoken";
    sfdc.protocol = "https";
    sfdc.serverUrl = "https://login.salesforce.com/services/Soap/u/14.0";
    lr.callback = new AsyncResponder(loginSuccess, loginFault);
    sfdc.login(lr);

    This is resolved.
    I have copied the crossdomain.xml file to tomcat Root folder
    and the issue is resolved.

  • Drill-Through Error Smart View And Web Analysis

    Hi,
    After upgrading to Hyperion 11.1.2.1 , I get below error for drill through define from EIS. I get error when performing drill through from Smarview and Web ANalysis.
    Error :- [1033] Native: 4006 Error: Internal Essbase JAPI error: [Cannot perform cube view operation. Essbase Error]]; nested exception is:
    com.hyperion.ap.APException: [1144] Error

    Hi
    thnaks for your replay it helped me in sloving the SV issue now the Drill through is working fine ffrom SV to FDM,
    but now the problem is with FR, we are not able to do the drill through from FR to FDM,
    can you please suggest any solution for FR also it will be a grt help...
    Thanks again for your help
    Regards
    Sri..........

  • Trouble printing e-mail and web based pages

    I have a Envy 4500 all in one. Can't print body of e-mails and some web based pages from myToshiba laptop. It will print fine from my I-Phone using e-print. Do I need to enable a setting somewhere?

    Hi
    Printing from websites is sometimes tricky. Have you tried using SmartPrint?
    http://h41112.www4.hp.com/smartprint/us/en/smart.h​tml?jumpid=ex_r602_ww/en/hho/ipg/xx-mu-aw_chev/sma​...
    Although I am an HP employee, I am speaking for myself and not for HP.
    Twitter: @Ciara_B_HP

  • IE error of query and web template

    Hello experts,
    We had completed the configuration of " Integration into Portal"
    successfully.
    Query and web template can execute successfully via "Execute" button.
    After click "Execute" button, query or web template display the result
    in IE.
    And we can use right-click menu to do all of operation at beginning.
    But after we click the right menu a few times, it will occure error.
    The error information as follow:
    Line : 8914
    Char : 2
    Error: 'initMenus[...].windowHeight' is null or not an object
    Code : 0
    URL : http://jt-
    pldev.gnpjv.cgnpc.com.cn:50000/irj/servlet/prt/portal/prtroot/com.sap.ip.bi.web.portal.integration.launcher
    Is there any solution? Thank you.
    Best Regards,
    Chen Jianguo

    same here.
    Internet Explorer 7, web templates or web analyzer:
    1. open context menu with right mouse key
    2. click on a free area outside the menu, to close the menu
    3. opening the menu do not work anymore. buttons do not work anymore either.
    searched notes, sdn, ... patched all to the newest level...
    still the same error.

Maybe you are looking for

  • How do I change the default printer in the newest version of adobe reader?

    Just downloaded the newest version of adobe reader and am unable to link it to my cannon printer

  • Outlook client sends only attached duplicate emails

    Dear Sir, We are using outlook 2007/2010/2013 in our client machine when we send attached document emails file more than KB receivers got more than 5 to 8 emails. Tell me the Solution for this problem Happens only in windows8 client machine only. Not

  • How do i upgrade to BBOS6 on my 9300 ?

    I am trying to upgrade to OS6 on my BB 9300 and need some assistance, Somebody , Anybody , HELP ? Also, Kindly advise if this is a good idea or Bad Idea to move onto os6 ? Kind Regards Ziyaad Karodia Web: www.uzzipromotions.co.za

  • Integrating Skype into a small business

    Hello, I am currently looking at a new conferencing solution for our office and I have a couple of questions: 1.)  If we have unlimited calling to a specific country will we need to buy additional credit? 2.)  What is the best way to use skype with a

  • Troubleshot

    i've got CS6 Design & Web Premium install in two PCs, the main and a secondary. i've deactivated CS6 from the secondary desktop to install it on a Macbook. The deactivation was done correctly and the confirmation window came up at the end of the proc