Analyzer HTML Web client problem

<p>Has anyone ever encountered this error before with the AnalyzerHTML web client:</p><p> </p><p>org.apache.xerces.util.NamespaceSupport.reset(Lorg/apache/xerces/util/SymbolTable<img src="i/expressions/face-icon-small-wink.gif" border="0">V</p><p> </p><p>Basically this line shows up in the browser screen whenever Itry to open a report. I suspect that I'm missing something in myPATH or CLASSPATH variables, but I can't seem to figure out what itis. I'm going to call Hyperion this afternoon, but I figured that Iwould try the forum first to see what you folks have to say.</p><p> </p><p>For the record, I'm using the following:</p><p>Hyperion Analyzer 7.2.5.1</p><p>Oracle 9i</p><p>Tomcat 4.1</p>

As you can see below,
ant reported �dukesbank-war\src\conf\persistence.xml�
missing
Could someone please explain why (and whether that is
the reason for my problems).
This seems significant (though I am an absolute
beginner in J2EE and may be wrong). Would it be
possible that the file
�dukesbank-war\src\conf\persistence.xml� mistakenly
was not included in the zipped source code file?You can ignore that warning message. It's part of the BluePrints build system, which checks to see if you have persistence.xml in your WAR so it can package it. The persistence unit is in in the EJB JAR for Duke's Bank:
javaeetutorial5/examples/dukesbank/dukesbank-ejb/src/conf/persistence.xml
First of all the manual says the url is
http://localhost:1189/dukesbank/main.faces
but the url that works is
http://localhost:1189/dukesbank-war/main.faces
Is that just a small inaccuracy in the manual, or
there is more to it? Actually, in "Running the Web Client" the page is:
http://localhost:8080/bank/main.faces
So in your case it should be:
http://localhost:1189/bank/main.faces
Try that URL instead, and see if you get the same error.
-ian

Similar Messages

  • How to pass parameter to Analyzer HTML Java Client

    Hi,I am working with Analyzer 6.5.0 Java Web Client and I am using the Analyzer API to pass the userid and passord from third party software.Is it posible to pass userid and password to HTML Web Client?Thanks,Grofaty

    Hi,I have tried to use your advice, but it doesn't work. I get Internet Explorer message: "Page can not be displyed". Any idea why?Hope this helps,Grofaty

  • BASIC authentication and web client problems

    I have a very simple web service that is working. Now before attempting to use
    SSL, I want to test authenticating using BASIC authentication. I’ve made the
    changes to web.xml and even though the other web service pages authenticate ok
    (ex. http://localhost:7001/fileexchange/FileExchangeFacade), I am prompted again
    for authentication for web service itself. I can never authenticate to http://localhost:7001/fileexchange/FileExchangeFacade?operation.view=helloWorld.
    Has anyone completed this and if so, how does it work? I must have missed something
    simple.
    First, I setup the security constraint as follows:
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>file-exchange-resources</web-resource-name>
    <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>Administrators</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>BASIC</auth-method>
    <realm-name>myrealm</realm-name>
    </login-config>
    <security-role>
    <description>An administrators</description>
    <role-name>Administrators</role-name>
    </security-role>
    That allows me to secure / authenticate to the JSPs in the web service test app
    provided. Then I tried working with the admin server console to setup roles /
    privileges. I couldn’t get this to work but I easily could have done something
    wrong since there are no step by step examples other than the general docs in
    the programming guide.
    Next, since the web service deploys as a web application, I figured the problem
    must be that the internal WLS servlet needs security information defined in web.xml.
    I saw the programming guide listed the servlet name and discussed servlet mapping
    so I added the normal security entries for a servlet as follows and re-jarred
    the WAR and EAR.
    <servlet>
    <servlet-name>WebServiceServlet</servlet-name>
    <servlet-class>
    weblogic.webservice.server.servlet.WebServiceServlet
    </servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>WebServiceServlet</servlet-name>
    <url-pattern>/FileExchangeFacade/*</url-pattern>
    <security-role-ref>
    <role-name>Administrators</role-name>
    <role-link>Administrators</role-link>
    </security-role-ref>
    </servlet-mapping>
    It still doesn’t work. Any idea on how to get it to authenticate?
    Thanks,
    Dave

    Ok, this looks like an issue with the test page.
    When the test page gets a request to invoke a
    web service, it creates a client proxy and call invoke
    on the proxy. This will case the client proxy to
    create a new HTTP post connection to the server.
    Test page pulls out the username/passwd from the
    GET request from the browser and pass it to the
    POST request it makes to the web service. I think,
    the test page needs to do the same for realm. I will
    file a CR for this (CR105320).
    Please contact support with the case number if you
    need a patch for this.
    http://manojc.com
    "Malcolm Robbins" <[email protected]> wrote in message
    news:[email protected]...
    "Malcolm Robbins" <[email protected]> wrote in message
    news:[email protected]...
    One more thing.
    I took out explicit realm mapping and noticed that the firstauthentication
    challenge was for the WebLogic standard realm which was fine and
    authentication was successful. (i.e. I got to the web service "homepage").
    Actually I meant it was listed as "Weblogic Server" in the 1st challenge.
    When I stepped into the web service method and pressed the Invoke buttonon
    the web service methods the realm was "default" and authenticationfailed.
    Why does the domain change and how do I cover this?Is was actually listed as "Default".
    However this is the same domain I believe because I've done a further
    experiment and set the domains explicitely
    in the deployment WAR deployment (Other tab) and in the web.xml file. The
    second challange is then asking for re-authentication in the correctdomain
    (myrealm) but it does not accept the valid user/password and just re
    challenges until 3 attempts then it displays the SOAP message and theserver
    log file has the following exception:
    java.io.FileNotFoundException: Response: '401: Unauthorized xxx' for url:
    'http://localhost:7001/webservice/TraderService?WSDL'
    at
    weblogic.net.http.HttpURLConnection.getInputStream(HttpURLConnection.java:36
    2)
    at java.net.URL.openStream(URL.java:793)
    at
    weblogic.webservice.tools.wsdlp.DefinitionFactory.createDefinition(Definitio
    nFactory.java:73)
    at
    weblogic.webservice.tools.wsdlp.WSDLParser.<init>(WSDLParser.java:63)
    at
    weblogic.webservice.WebServiceFactory.createFromWSDL(WebServiceFactory.java:
    108)
    at
    weblogic.webservice.WebServiceFactory.createFromWSDL(WebServiceFactory.java:
    84)
    at
    weblogic.webservice.server.servlet.ServletBase.invokeOperation(ServletBase.j
    ava:230)
    at
    weblogic.webservice.server.servlet.WebServiceServlet.invokeOperation(WebServ
    iceServlet.java:306)
    at
    weblogic.webservice.server.servlet.ServletBase.handleGet(ServletBase.java:19
    8)
    at
    weblogic.webservice.server.servlet.ServletBase.doGet(ServletBase.java:124)
    at
    weblogic.webservice.server.servlet.WebServiceServlet.doGet(WebServiceServlet
    .java:224)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at
    weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Servle
    tStubImpl.java:1058)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :401)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :306)
    at
    weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
    ebAppServletContext.java:5412)
    at
    weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManage
    r.java:744)
    at
    weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
    ntext.java:3086)
    at
    weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
    :2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)

  • Analyzer release 5 web client

    I have a problem deploying web client version for Analyzer release 5 on IE. Do we need any settings to make sure it works on every machine running Win2K? The error that I have found is 'wired not found...'. Anybody has experience this such thing before? Thanks in advanced.Good day!

    You shouldn't need the runtime client for Web access, in my experience. Are you trying to use the html client or the java client?Are you only having problems with Win2k machines? If so, what platform is it working on?Release 5 uses the Java Virtual Machine plugin, which can cause problems on machines with the Java Runtime Environment installed. Could that be the problem?So many possibilities for problems. Of course, you can always upgrade to version 6 or 7, and open up whole new realms of problems. :-)

  • Browser problems with IC Web Client

    I receive some errors when I try to launch Interaction Scripts in "My Scripts" section of Interaction Centre Web Client (IC WC) and nothing works after.
    One of them is "_htmlbMessageBar" - undefined.
    Then I try to check the situation in FireFox 1.5 (latest)
    All Portal works good but not IC.
    I even didn't reach the main screen!
    I examined JS-logs and found error:
    "document.frames has no properties"
    and then SAP code
    "doc=document.frames["A"].document;"
    So property "document" is not specified for object "frame"!!!
    Of course I immidiately look at W3C DOM Spec:
    http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-97790553
    There is no such property! But in DOM 2 released this one - "contentDocument". (http://www.w3.org/TR/2000/PR-DOM-Level-2-HTML-20000927/changes.html)
    How it could be that SAP uses some browser that is not W3C compatible?
    This is not only my problem. I found the same here:
    /thread/56545 [original link is broken]
    But again... No answer from SAP.
    Of course changing standart SAP content is not good - but what is the solution?! Try as many browsers as exist in the world since I find the best one?!
    Any ideas?
    With best regards, Alexander.

    I tried many Mozilla-based browsers (Mozilla, Netscape, FireFox) - all the same error with ...no properties ...;
    I even can't see any IC Web Client window to check what is the situation with _htmlbMessageBar.
    IE 6.0 SP1 and SP2 shows main screen but fails when start scripts.

  • Hyperion Analyzer 5.03 web client

    I have an problem on using Hyperion Analyzer 5.03 web client. When I connect on the hyperion via analyzer web client after analyzer newly install on web server it work OK. However, after few days I connect it again. I able to login but no option for me to create a new spreadsheet/chart.It work again when I reboot the web server. Please advise how to avoid it to happen. Do I need to schedule a reboot on every mid-night?ThanksLouis

    You can log into Analzyer still? Just no menu options? Other than still being able to log in, it sounds like the common problem with the BDE/ODBC connection needing to be re-established. I know that in the various client cases I have dealt with where the clients are using an Enterprise repository, and if the RDMS they are using is brought "down" that the bde/odbc connection that the Analyzer Analysis Server has established needs to be renewed.In the case I have described above, all you need to do is stop and re-start the Analyzer Analysis Service. (In some cases I have created a batch file that is fired off by a scheduler to do this daily) Hope that helps some.

  • Analyzer HTML client -  how to use API

    Hi,I use Analyzer HTML client 7.0.1 on Windows XP SP2 environment.One year ago I have used Analyzer web java client. This java client had support for API calls. So Analyzer could be started dynamicaly from another application.Does Analyzer HTML client supports API calls? If so, can somebody post web page to documentation.Thanks,Grofaty

    Hi,I have found out how to send commands to Analyzer HTML client. The details are described in "Administration Guide" section: "Appendix A: Customizing HTML Web Content".I found out how to:1. Login2. LoadReportNow I would like to select dimension with command "SetDim". I executed the following URL (see below) to the browser, but empty page has opened instread of report. There is no error in "WebSphere Application Server log file".URL is: http://server_name:9080/Analyzer7_Server/servlet/HTMLViewer?ACTION=SetDim&view=DataObject.0&dimension=PRODUCT&member=APPLE&mode=0Is there a mistake in URL? Is there a bug in Analyzer HTML Client?Thanks,Grofaty

  • Long time to start Java Web Client (Analyzer 6.2.1)??

    Does anyone know why Analyzer(6.2.1) takes a long time to start Java Web Client. Sometime it's even take more than 5 minutes. I think it is the Java Plug-in starting on the client computer. Any solution?

    The key to Analyzer 6.2.1 running correctly is the version of Sun Java Plugin. The ideal version (most optimal) is 1.3.0_02.Secondary to this if Analyzer performs OK once you are logged in then it could be down to the speed of your connection. The applet compiles at runtime (unlike Analyzer 5 which was a one time download). The delay in getting to the login screen could be this download.Hope this helps.Paul ArmitageAnalitica Ltd.www.analitica.co.uk

  • Drill Through in Analyzer 5.0.3 Web Client

    I have an EIS created Essbase cube with drill through reports. I can access the reports using the Excel add-in and via the Analyzer Windows client and they work as expected. In the Analyzer Web client, I see the LRO indicator, but when I click on the cell I get "Cell ___ cannot be drilled on". Does the Web client support drill through, and is there additional configuration necessary to make it work?Thanks,Jim Burnham

    I didn't have the Essbase setting of "Use Grid API" turned on for the user I was testing with.Jim

  • CS6 Bridge web gallery - HTML Gallery template problem

    In CS6 Bridge, a web gallery created with the HTML Gallery template puts the images in a directory with a path of content\bin\images. This prevents the images from being served from IIS - the bin directory is by default a "Hidden segment". There is no need for the directory hierarchy generated to use the name "bin".
    I know how to work around the issue, but it would be better if the issue was not present in the first place. I tried to report it as a problem on photoshop.com, but was unable to login.
    How do I report this problem to Adobe?

    (Me again, my previous Adobe ID broke). We don't have Dreamweaver, and the users who create and upload web galleries would not be able to use such tools (or a text editor which works on several files at the same time). My workaround is to have a directory dedicated to their web galleries using a web.config file of
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
        <system.webServer>
            <security>
                <requestFiltering>
                    <hiddenSegments>
                        <remove segment="bin" />
                    </hiddenSegments>
                </requestFiltering>
            </security>
        </system.webServer>
    </configuration>
    So that the HTML web galleries' "bin" sub-directories are accessible.

  • Problem with interaction center web client  e-mail

    hi gurus, my problem is in interaction center webclient, when i click in the e-mail link,appears the email form but i cant send any email because all the fields in the screen (subject, body , from, date, to, etc) are not enable (i cant write anything because is not possible), so i dont know how to enable this fields in the interaction center web client.
    In interaction center win client i dont have this problem.
    I post this thread in crm forums but nobody knows how to do it, so i hope maybe here any one knows thanks

    Hi.
    I ran into this problem. How is it solved?
    And another question-how to set up a mailing list Search ?

  • Problem In IC Web Client Profile

    Hi Experts,
    I m using CRM5.0 for Web Client.I m changing BuPaMoreContactView as maintained in Cook Book CR5.0.
    I m following all steps correctly as
    1. Run time profile
    2. Assign Run Time profile to my own profile
    3. Create Org'n --> Position --> User and assign my profile to organization.
    Now when i m checking profile assign to my user(By CRM_IC exicution) it is showing profile that is not exist and giving error <b>Activity clipboard profile could not be loaded</b>
    <b>Other problem</b>  when i m searching Business partner I m geting only two tab that r<b> Account <b>and</b> Address</b> .I am not geting third tab that is<b> Contact Persion</b>. How i will find that in search page.
    Please tell me what is the problem and what i need to check
    Thanks
    Gaurav

    Hi Gaurav,
                     I gor confused with CRM 5.1/5.2 and CRM 2007 profile. You are on CRM 5.0 then you do following things
    1) goto tx ppoma_crm
    2) on top left under search screen, search for Positions  " Sales" and Marketing and Service one by one.
    Now assign yourself to each of these positions. ( You might find  more than one psoition when you search by above criteria. Ideally you should be able to see position names soemthing like Sales Representative, Marketing Represetative etc . I am not sure what exactly would be the name at your system because ppl might chnage the description of positions.
    Now launch UI again and you must be able to see all modules.
    Let me know if u still have any issues

  • Analyzer 5.0.3 web client - large deployment

    Has anyone deployed Analyzer 5.0.3 web client to a large population. We have over 100 users - it could go as high as 1400 in the future. When adding a new Essbase cube (we are using Essbase 6.1 p2), we have to add the new cube to each individual user id, then click properties of the cube and type in the users essbase user id, password, and confirm password. We use option 3 in this dialog box because the Analyzer web client users do not have the Essbase client on their desktop. They initially change their Analyzer password, but their Essbase password stays the same permanently. This whole process of adding a cube is very time consuming and basically a long typing exercise. If we deploy the Analyzer web client to our entire company, it will be a nightmare to add a cube. I want to know how other companies are handling this situation.

    Try using the UsrUtil.exe. Check the docs on it, then build a text file (.cmd) containing the scripted user accounts you wish to create. I had all the users and user info entered into an oracle table first, then ran a short Java app over it to extract the user information, building the .cmd file that was run to create all the new users. for about 1000 users, it took about 10 minutes.robb

  • Problem with IR Web client

    Hi,
    I am new to Interactive Reporting here i have one doubt, i have installed the IR webclient from workspace and when i am trying to open webclient through IR console Tools-> Connection->Web Clients, when i selecte any of the radio buttons it was not opening. Could any one help on this.
    Regads
    Kumar

    Hi,
    This will not open web client.
    This change will come on effect when you open any bqy file in Web client from workspace.
    Thanks
    Dhanjit G.

  • Problem with the Inbox search of IC Web Client

    Hi Friends,
    Iam working on the Inbox search of the IC Web client.
    For the Inbox search, in the view AuiItems.htm, I have added two fields Main Reference Object and Account.
    But when I click on search, in the result list all the values except these two which I added. In the result list Iam getting the values as NULL for these two newly added fields. What could be the reason for this and how to solve this??
    Regards,
    Raju

    Hello Narayana,
    You can link user statuses to inbox status under customizing
    Interaction Center WebClient --> Agent Inbox --> Inbox Search Definitions --> Define Inbox Status.
    Here you can delete system status and add user statuses.
    After adding user status ,you need to map inbox status to element status in Customizing for Customer Relationship Management by choosing Interaction Center WebClient --> Agent Inbox --> Map Element Attributes to Inbox Attributes --> Map Element Status to Inbox Status.
    Read documentation on Map Element Status to Inbox Status customizing entry.
    You dont have make changes to the code for this customization.
    Thanks,
    Thirumala.

Maybe you are looking for

  • Cannot add user

    Just upgraded from Snow Leopard Server to Mountain Lion Server.  Running into a few issues that I can't resolve. 1.  Updated wiped out my Users.  Cannot add a User becuase the "+" is grayed out, same for groups.  All I see are my local users which I

  • Don't appear a field in a query

    Hi,   I have a problem with a query in th tr SQ00. In development system appeara all the fields but in the production system don't appear one field. Somebody can help me???

  • Unable to download PDF from Form Central

    I understand Forms Central is going away and I am unable to upgrade from the free version.  Is there anyway to download my one form?

  • Compressing Files in OS X 10.5.8

    What, are, the, best files, to, zip? If I remember, correctly (years ago) you, should, not, zip, A DVD player, is, that, correct? Does anyone, have the, do's, and, do, nots?

  • Correspondance via Email

    Hi Gurus Can you please help to answer the query raised by the user, what u201Cwould happen to remittae-mailed nces that are rejected by the recipientu2019s e-mail box?u201D   Functionally please advise what changes are required in your opinion to ca