How to i get the connect to database with OLAP API 9.2.0.0

hi all,
when i use the OLAP API (9.2.0..0) to connect the database,i gained the message of the following:
java.lang.NoClassDefFoundError: com/sun/java/util/collections/HashMap
void oracle.express.olapi.transaction.ExpressTransactionProvider.<init>()          ExpressTransactionProvider.java:40
     void mypackage3.APPEX.init()
          APPEX.java:51
     void sun.applet.AppletPanel.run()
          AppletPanel.java:344
     void java.lang.Thread.run()
          Thread.java:484
JDev=9.0.3
OLAP API=9.2.0.0
Oracle 9i 9.2.0.1
and how can i get the OLAP API 9.2.0.4.1?
anyone can help me !
thanks!!!

Hi, yes, there are at least two known ways:
1. if you happen to have a UCCX premium, you can create an HTTP application that serves up the prompt file,
2. you can try to access the prompt file like this: http://<uccxip>:9080/prompts/dirname/promptfilename.wav
G.

Similar Messages

  • TS2771 How do I get the connect to iTunes display off so I can use iPod again?

    How do I get the connect iTunes connection display off so I can use iPod again?

    By connecting the iPod to your computer and restoring via iTunes.
    iTunes 10 for Windows: Update and restore software on iPod, iPhone, or iPad

  • HT2967 I have an iPhone and keep my calendar into it.  I have synced all photos. How do I get the calendar to sync with my MacBook Pro?

    I have an iPhone and keep my calendar into it.  I have synced all photos. How do I get the calendar to sync with my MacBook Pro?

    Enable iCloud on both, and Calendars on the iPhone should sync with iCal on the Mac wirelessly.

  • When I select a title in the iTunes Store and click on Play in iTunes I am sent to the download page for iTunes 10 which I have already. The selected title cannot be found anywhere in my iTunes. How can I get the title in iTunes with possibility to buy it

    When I select a title in the iTunes Store and click on Play in iTunes I am sent to the download page for iTunes 10 which I have already. The selected title cannot be found anywhere in my iTunes. How can I get the title in iTunes with possibility to buy it?

    The issue is that your credit or debit card credentials must be associated with the same country where you reside in order to purchase iTunes content.
    "Although you can browse the iTunes Store in any country without being signed in, you can only purchase content from the iTunes Store for your own country. This is enforced via the billing address associated with your credit card or other payment method that you use with the iTunes Store, rather than your actual geographic location. You can use the iTunes Store in all countries of which you’re a resident, but you’ll either need a separate iTunes Store account for each one, or you’ll need to continually be switching the billing information on your single account. Generally, it’s simpler just to set up an alternative account for these situations, although it’s worth nothing that features like iTunes in the CLoud and iTunes Match are designed to work best when using a single iTunes Store account, as you can only switch accounts with these services every 90 days."
    From here >  The Complete Guide to Using the iTunes Store | iLounge Article

  • How can I get the digital booklet included with the albums I am purchasing from iTunes directly on my iPad?

    How can I get the digital booklet included with the albums I am purchasing from iTunes directly on my iPad?  My MacBook died about 6 months ago, so now I just have an iPhone and iPad.  I would like to be able to see the Digital Booklet in my iPad when I download the album.  I do not have any other computer to download the booklet to and sync to my iPad.

    Apparently, you have to download the booklet to iTunes on a computer first, fiddle with the file type, then sync it as a book to your iPad. See http://support.apple.com/kb/HT4194 for details.

  • How can I get the time in Microsecond with JNI ?

    How can I get the time in Microsecond with JNI ?

    JNIEXPORT jdouble JNICALL Java_Win32Native_queryPerformanceFrequency (JNIEnv *env, jobject obj) {
         LARGE_INTEGER lFrequency;
         ::QueryPerformanceFrequency(&lFrequency);
         return (jdouble)lFrequency.QuadPart;
    JNIEXPORT jdouble JNICALL Java_Win32Native_queryPerformanceCounter (JNIEnv *env, jobject obj) {
         LARGE_INTEGER lpCounter;
         ::QueryPerformanceCounter(&lpCounter);
         return (jdouble)lpCounter.QuadPart;

  • How do you get the album pictures displayed with the right songs on my iphone 5

    how do you get the album pictures displayed with the right songs on my i phone 5?

    I have the same problem but i only have iphone 4s its only jsut started in the last 2 weeks or so

  • HT4623 iPad 3 how can l gets the SIM card works With iPad 3

    As all we know its christmas time l just received the gift for iPad 3 &amp; l notice that it need SIM card for me to use as the phone &amp; data,how can l gets the SIM card works With iPad 3

    Remember am in South Africa &amp; we got few carrier nets am in MTN provide &amp; I c my sim looks so big to fit on my iPad

  • How can I get the connection code for the magic track pad?

    I want to use my magic trackpad and I scrapped the box with the connection code. How can I get it again? I don't need it for Mac, but yes for windows...

    user570667 wrote:
    Hi 2 all,
    How can i get the source code from java concurrent program in R12? like , "AP Turnover Report" is java concurrent program, i need to get its source code to know its logic. how can i get its source code not the XML template?
    Regards,
    ZulqarnainDid you see old threads for similar topic/discussion? -- https://forums.oracle.com/forums/search.jspa?threadID=&q=Java+AND+Concurrent+AND+Source+AND+Code&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • How can i get the content of JTextArea with out loosing Indentation.

    I am developing one mail sending application. I am getting mailid , from address, mail body from one Swing. In one JTextArea i am typing i have typed some matter. When i call the content of JTextArea using
    jtx.getText() method, i am getting all the content as one paragraph. That means there is no indentation which was there in TextArea.
    Please provide me some solution how can i get the content of JTextArea wiht out loosing indentation.

    And it was you who asked the question!

  • How can i get the h:selectOneRadio value with javascript

    Hi all.
    I have this code
    <h:selectOneRadio id="color" style="font-family: Arial;font-weight:lighter;font-size: 12px" onclick="showColor()" >
    <f:selectItem itemLabel="RED" itemValue="1" />
    <f:selectItem itemLabel="BLUE" itemValue="2" />
    </h:selectOneRadio>
    And javascript function is
    function showColor()
    var tipoRelacion = document.getElementById("form:color").value;
    alert("color" + tipoRelacion);
    And what i get is that color is undefined. How can i get the value of the selected radio?
    Thanks a lot

    you just need to pass this while calling javascript function
    check this-
    <h:selectOneRadio id="color" style="font-family: Arial;font-weight:lighter;font-size: 12px" onclick="showColor(this)" >
    <f:selectItem itemLabel="RED" itemValue="1" />
    <f:selectItem itemLabel="BLUE" itemValue="2" />
    </h:selectOneRadio>
    And javascript function is
    function showColor(obj)
    var val = obj.value
    alert("color" +val);
    }

  • How can i get the data from database & add them as a link

    Hi,
    how can i get a data from a database(DB2) and that data will be having a file so i should make them as a link.i tried it in jsp .
    <%
    Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
    Class.forName("COM.ibm.db2.jdbc.net.DB2Driver");     
    response.setContentType("text/html");
    Connection conn = null;
    conn = DriverManager.getConnection("jdbc:db2:spintran");
    Statement stmt = conn.createStatement();
    stmt.executeQuery("set current schema tut");
    ResultSet rs = stmt.executeQuery("select * from tutorial");     
    %>
    Type Of the Category : &nbsp&nbsp&nbsp
    <%
         while (rs.next())
         String desc = rs.getString(1);     
         out.println(desc);
    %>
         <A HREF = "<%=desc%>"><%=desc%> </A>
         <%
         %>
    but it is not working.how can i link.
    thank you.

    what is desc? is it the file name ? whats the data type of desc in db? INFILE?
    if desc is just the name of the file, then make sure that such a file exists in the proper folder.only then the link works..
    that is, if desc is 'a.jpg' then a.jpg should be existing in the same folder as your html is.

  • BC4J HOW Can I GET the CONNECTION String

    hi everyone
    I'm using Jdev 3.2. In my BC4J prooject I want to get the current connection String used by the application module to connect to database.
    can some one help me please.
    Ghassen

    I don't know what's really the problem, but I recomplie the same code and I receive the same error.
    I added also the import statement: import oracle.dacf.dataset.connections.NamedConnection.
    and I receive the same error message.
    can that be a mising library problem?
    ghassen
    null

  • How do i get the connect to itunes screen off my phone

    i tried to update my software to ios 6. and now my phone will not do anything and has a screen that says connect to itunes. what do i do? i connected it to itunes and tried downloading the software twice.. but didnt work.

    You need to do we hat the Connect to iTunes screen is telling you to do. connect your device to your computer runningitunes and restore the device.

  • How do I get the app to install with Configurator?

    Trying to set up a few iPads with all the same apps etc.  Have a VPP account (just started in Canada, whoot!), have purchased the apps, have the spreadsheets.
    Instructions for Configurator say to import the app, and then later when installing the app import the VPP spreadsheet to authorize installation.  So I have to have the actual app on my computer in order to add it to configurator.
    So how am I supposed to get the app?  I don't get a copy when I pay for the codes in the VPP store.  The redemption code link in the spreadsheet doesn't work with the apple id used for VPP - just says "this apple account is a vpp only account and cannot access the Apple Store" or words to that effect.
    Do I have to burn one of my redemption codes just to download the app through some other regular apple account?  Do I have to budget for one extra code for every app just to download the app so I can administer it through Configurator?  That can't be right....
    Jaso

    Hi Jaso,
    Here's how I've been doing it using the latest Apple Configurator 1.1.2.
    First, go into iTunes and authorize with an Apple ID (iTunes -> Store -> Authroize this computer). It doesn't have to be a VPP Apple ID…just an ordinary Apple ID used to associate with the app. Use one of the VPP codes to download the app. It will go to ~/Music/iTunes/Mobile Applications. These apps will be linked to the Apple ID you authorized in iTunes. Next go into Apple Configurator and add the apps on the Prepare -> Apps screen. When you try to add the app in AC (clicking on the "+" at the bottom of the screen), you should be prompted to enter an Apple ID and password (see screenshot below).
    It will say that "This Apple ID will be used to redeem VPP codes…" It is NOT the Apple ID used to purchase the VPP codes… The VPP codes can be redeemed by any Apple ID.
    You must enter the same Apple ID and password that you used to download the app in iTunes, and you should be good to go. You will receive another prompt stating that a paid app has been imported. Click OK.
    Now in the Apps screen you should see your paid app listed. On the right side of the app you will see a button with a "0" listed. That's how many VPP codes you have. Click on the "0" button. In the next window, click on Import Redemption Codes in the lower left corner. Navigate to your .xls file of VPP codes and click Open. You are now ready to use those codes on your group of iPads. You should get credited back the one VPP code you used to download it initially.
    Hope this answers your question Good luck!!!
    ~Joe

Maybe you are looking for

  • How do I use the iPhone 4 charging station on my music player to charge my new iPhone 6? Is there an adaptor I can plug in?

    Hi I had an iPhone 4 and purchased various music devices which I could use to charge the iPhone 4 and my children's iPods. The iPhone has broken and so now I have an iPhone 6 which has the new charging cable. I'd still like to use the music devices I

  • Sun Application Server 8.1 remote deplyment database connection

    I use the deploy to Remote server to deply a project to Sun Application Server 8.1. When i try to connect to the database I get connection error javax.servlet.ServletException: javax.faces.FacesException: java.sql.SQLException: Error in allocating a

  • Random windows 7 crashes

    I heard that it was a 64 bit issue so i installed 32 bit but i get random crashes with no errors just system lock up they can happen anywere from login screen to a hour and half of system up time

  • Can you zoom into a ibook image?

    Hi, is it possible to zoom into an image that is already full screen -- so that you can check out details in the photo? It seems to expand up with my fingers on my iPad, however, as soon as I let go of the image, it returns to full size, so I am not

  • DC connectivity to FSMO servers

    What are the best practices with DC's and their connectivity to the FSMO servers? PDC and RID connectivity seem to be a must but what about the other roles? I know some functionality may be hampered but is it acceptable? ...or do all DC's need to be