Where to get the package?

Now I'm using JBuilder6, and want to do programming so as to play avi movies, but there is no media packages integrated in JBuilder6, where can I download? or is there such package in IBM java tool?

1. Click "Downloads" in the navigation bar at the left.
2. In the combo box under "Java2 Platform Standard Edition (J2SE)" select "- JMF 2.1.1 Sol/Win/Java platforms" and click "Go".
3. In the top combo box, select your preferred download format and away you are.
PS: In IBM VisualAge for Java you can add the packages from the JMF jars into a JMF project. Unfortunately I haven't used JBuilder a day in my life, so I wouldn't know how to import JAR files in it...

Similar Messages

  • Where to get the source code of the owa_cookie.send procedure?

    I want to know where you get the source code of the owa_cookie.send procedure? I can only get the header of this package from ...\RDBMS\ADMIN\pubcook.sql. Could you paste the whole source code here and then I can modify it to set the 'httponly' attribute? I also have a problem that after changing the package, how to use the package I changed? Does it still a system package here? Or it has been changed to an user-defined package in database and I need to execute the package on the database for the web server?
    Thank you!

    Hi Arun,
    I am unable to see the pcui_gp components in the DTR ,I require this in order to get the source code of one of its component.
    Can you please tell me the step by step procedure getting those pcui_gp components from J2ee engine to the  dtr or  NWDI.
    If there are any documents on pcui_gp components exclusively please do forward to my mail id [email protected]
    Thansk and Regards,
    Anand.

  • Where to get the BusinessObjects Enterprise SDK - Java Libraries

    Hi All,
    I have installed the Crystal Report Server XI R2 but where to get the java sdk that I will use in my client j2ee web application?
    These are the folders in my CR Server directory.
    /BusinessObjects Enterprise 11.5
    /Business Objects/common/3.5/java/lib
    It seems that I will get the jar from this folder but what are those jars?
    /Business Objects/common/3.5/java/lib
    What are the list of jars that my client web application used?
    Basically in doing my POC work I need these library imports
    <%@ page import="com.crystaldecisions.sdk.exception.*"%>
    <%@ page import="com.crystaldecisions.sdk.framework.*"%>
    <%@ page import="com.crystaldecisions.sdk.occa.infostore.*"%>
    <%@ page import="com.crystaldecisions.sdk.occa.managedreports.*"%>
    Thanks in advance.
    Regards,
    Rulix
    Edited by: Rulix Batistil on Nov 4, 2008 11:38 AM

    Hi Rulix
    From the packages that you have included ,it seems that you are using managed RAS SDK for the functionality that you want to implement.
    Here is a listing of the JAR files that you would require in your RAS application. Please note that you would require the enterprise jars and the Crystal connection jars.
    - boconfig.jar
    - cecore.jar
    - celib.jar
    - ceplugins.jar
    - cereports.jar
    - certj.jar
    - cesession.jar
    - ceutils.jar
    - cexsd.jar
    - Concurrent.jar
    - corbaidl.jar
    - CRDBJavabeansServer.jar
    - CRDBJavaServer.jar
    - CRDBJavaServerCommon.jar
    - CRDBJDBCServer.jar
    - CRDBXMLExternal.jar
    - CRDBXMLServer.jar
    - crlov.jar
    - crlovexternal.jar
    - crlovmanifest.jar
    - ebus405.jar
    - freessl201.jar
    - icu4j.jar
    - jaxrpc.jar
    - jrcadapter.jar
    - jrcerom.jar
    - jsafe.jar
    - jtools.jar
    - log4j.jar
    - MetafileRenderer.jar
    - pullparser.jar
    - rasapp.jar
    - rascore.jar
    - rpoifs.jar
    - saaj.jar
    - Serialization.jar
    - sslj.jar
    - u211java.jar
    - URIUtil.jar
    - webreporting.jar
    - xbean.jar
    - xercesImpl.jar
    - xml-apis.jar
    Hope this helps you.
    Thanks
    Soni

  • How can i get the package structure(much complex)?

    I have a oracle package, which is called SPK_A.
    its structure as below:
    SPK_A...T_A1(table)
    ..............T_A2(table)
    ..............FUN_A1(function)
    ..............FUN_A2(function)
    ..............SPK_B(package)...FUN_B1(function)
    ..........................................FUN_B2(function)
    ..........................................T_B1(table)
    ..........................................T_B2(table)
    I have tried to write the sql with data ditionary(dba_dependencies).
    but i failed finaly.
    Because it can only decribe the reference by the package,
    and i found there are 2 problems with "dba_dependencies":
    1.the relationship between them are not necessarily filiation;
    2.It doesn't describe the really package structure;
    Can anyone help me to get the package structure as above?
    Any Ideas Appreciated.
    The sample sql as below:
    create table T_A1
    empno number,
    ename varchar2(10)
    create table T_A2
    deptno number,
    dname varchar2(10)
    create table T_B1
    empno number,
    ename varchar2(10)
    create table T_B2
    deptno number,
    dname varchar2(10)
    create or replace package SPK_B is
    lv_empno T_B1.empno%type;
    lv_deptno T_B2.deptno%type;
    function FUN_B1(in_empno number) return varchar2;
    function FUN_B2(in_deptno number) return varchar2;
    end;
    create or replace package body SPK_B is
    function FUN_B1(in_empno number) return varchar2 is
    lv_ename varchar2(50);
    begin
    select ename into lv_ename from T_B1 where empno=in_empno;
    return lv_ename;
    end;
    function FUN_B2(in_deptno number) return varchar2 is
    lv_dname varchar2(50);
    begin
    select dname into lv_dname from T_B2 where deptno=in_deptno;
    return lv_dname;
    end;
    end;
    create or replace package SPK_A is
    lv_empno T_A1.empno%type;
    lv_deptno T_A2.deptno%type;
    function FUN_A1(in_empno number) return varchar2;
    function FUN_A2(in_deptno number) return varchar2;
    end;
    create or replace package body SPK_A is
    function FUN_A1(in_empno number) return varchar2 is
    lv_ename varchar2(50);
    begin
    lv_ename := SPK_B.FUN_B1(in_empno);
    return lv_ename;
    end;
    function FUN_A2(in_deptno number) return varchar2 is
    lv_dname varchar2(50);
    begin
    lv_dname := SPK_B.FUN_B2(in_deptno);
    return lv_dname;
    end;
    end;
    /

    Use DBMS_UTILITY.GET_DEPENDENCY
    http://www.psoug.org/reference/dbms_utility.html

  • Using PS CS1 & a Canon EOS Rebel T3i. Where to get the plug-in to use camera raw?

    Using PS CS1 & a Canon EOS Rebel T3i. Where to get the plug-in to use camera raw?

    Thank you.
    Windows 7 Starter
    on a Toshiba NB505
    Intel Atom CPU [email protected]
    This is my internet notebook access device.
    My primary system is MS Windows 5.1, with a flat screen crt.
    Does this help?
    Want to use RAW, can't afford to upgrade equipment just yet.
    Thanks again for any guidance offerer
    Michael
    Connected by DROID on Verizon Wireless

  • Hi! i had already received an e-invoice. however, until now i didn't upgrade my macbook since i don't know where to get the redeem code. what do i have to do?

    hi! i had already received an e-invoice. however, until now i didn't upgrade my macbook since i don't know where to get the redeem code. what do i have to do

    Sorry, I misuderstood. I thought you had the code.
    See the instructions here: http://www.apple.com/macosx/uptodate/
    If that doesn't work, try the Support link on the App Store.

  • I downloaded elements 11 and don't know where ton get the serial number?

    I downloaded elements 11 online but I don't know where to get the serial number?

    Please refer : http://helpx.adobe.com/x-productkb/global/find-serial-number.html

  • Please advise me where i get the ipad insurance

    please advise me where i get the ipad insurance

    Hello there, Sharmeen Khan.
    Apple provides "AppleCare+ for iPad" review the information on the following link so you can see what's included with that plan:
    Apple - Support - AppleCare+ - iPad
    http://www.apple.com/support/products/ipad.html
    Thanks for reaching out to Apple Support Communities for answers to your questions.
    Cheers,
    Pedro D.

  • I currently have LR 5.7 and am interested in getting upgraded to LR 6. If I get the package LR and CC what happens to my LR 5.7 and the library I have on it now??

    What happens to my LR 5.7 and it's library if I get the package LR and CC?

    Back up your music and install from the website. You probably won't need to do this, but if your library is erased, restore it from the backup.
    (59049)

  • Where to get the .SCA files to install NWDI for SAP CE 7.2. JAVA

    Hi,
         I installed SAP CE 7.2 trial version  and i want to to tried NWDI. Where Can i get the .SCA files, and please suggest me a stuff to install the .SCA files.
    Many Thanks.

    Hi Thongie,
    Please have a look at this link
    There is no .sca files for SAP CE 7.2 available in service market place, instead you can download the support Packages and Patches - Entry by Application Group" SAP NetWeaver" SAP NETWEAVER" SAP EH FOR SAP NW CE 7.1" Entry by Component" NW Development Infrastructure
    DI CHANGE MGMT. SERVER 7.11
    DICMS01_0-20002719.SCA for SP1
    DI COMPONENT BUILD SERVER 7.11
    DICBS01_0-20002718.SCA for SP1
    DI DESIGN TIME REPOSITORY 7.11
    DIDTR01_0-20002717.SCA for SP1
    downlading NWDI trail version
    Hope this helps you...
    Regards,
    Saleem Mohammad.

  • Where to get the SSO ticket for a JCO-Connection from?

    Hey All,
    The szenario is, I've got a Java application and I want to connect to a SAP System. For this I want to use SSO. In the documentation of JCO I found this phrase:
    For SSO specify the user to be $MYSAPSSO2$ and pass the base64 encoded ticket as as the passwd parameter.
    Well... Now my question... Where to get this base64 ticket from? The problem is, I'm NOT using WebDynpro, it's a custom application running on client side. Now how to get the needed information? (PSE?)
    It would be great when you could give me a clue.
    Best regards,
    Kristian

    This linksactualy leads to the same place I mentioned where
    it installs the
    player over the Internet
    Another thing is that these players are said to be different
    for different
    browsers which means they are working together with a
    browser. I am looking
    for a player which allows to play SWF file directly, without
    a browser.
    I have such a player installed together with FLASH-8 - I am
    looking for
    such a player
    "DMennenoh" <[email protected]> wrote in
    message
    news:e2qgmu$t5r$[email protected]..
    > Does this help:
    >
    http://www.macromedia.com/shockwave/download/alternates/
    >
    > --
    > Dave -
    > Adobe Community Expert
    > www.blurredistinction.com
    > www.macromedia.com/support/forums/team_macromedia/
    >
    >

  • How to get the package name of a procedure used in a process flow activity

    Hi all. I'm on OWB 11.2.0.2.0.
    When I used a packaged procedure or function in a mapping operator, I can find out the package.program_unit name by getting the operator's FUNCTION_NAME property. For example,
    OMBRETRIEVE MAPPING '$mapName' OPERATOR '$operName' GET PROPERTIES (FUNCTION_NAME)
    But when the same is used in a process flow activity, I can't find a property name that will give me the same information. I can get the BOUND_NAME, it does not tell me the package name. It must be stored in the activity properties because when you pull up the Synchronize dialog for the activity, it knows the package name.
    Is there a way to get this via an OMBRETRIEVE?
    Thanks.

    ANA, this is exactly what I needed. Thank you so much. I saw REFs also in the OMBRETRIEVE MAPPING/OPERATOR syntax, but went cross-eyed trying to figure out if I could use the same there. The closest I found was GET BOUND_OBJECT.
    Thanks again!

  • Name of the table where can get the two fields Valid-From and Valid-to for

    Hi gurus
    I want name of the table where I can get the two fields Valid-From and Valid-To and their relation ship with the header table in BOM
    Regards
    Kaisar

    You can only get the Valid from date from the table STKO.
    To get the valid to date, you have to take one day less than the valid-from date of the next record for the same BOM.
    Alternatively use the Function module:
    CSAP_MAT_BOM_READ
    It will give both valid from and valid to dates in the tables parameter: T_STKO
    Regards,
    Ravi
    Edited by: Ravi Kanth Talagana on Jul 2, 2008 4:37 PM

  • Where to get the compiled form of JTAPI 1.3 or JTAPI 1.4 specification..

    I am new to J2ME....i have the *.java files of JTAPI 1.3 and 1.4 but not able to work with them....can anybody plz help me where can i get the *.class files for the specification???

    Still no answer? May be I have posted in the wrong forum? So I have to leave it as it is...

  • Where i get the DVD for macbook pro md102 application and OSX

    Dear Sir,
    I purchased macbook pro MD102 LL/a in online, but the application and OSX DVD 's not recieved. Where i can get the DVD's
    I need the DVD for boot camp using windows 7
    Regards
    Robert

    The new Macbook Pros do not come with installation or operating system disks.
    If you are using Boot Camp Assistant to install Windows in Mountain Lion, read and follow the installation instructions. Downloading the Windows support software is one of the first options in the Boot Camp Assistant memu. There is no Mountain Lion disk containing the support software.

Maybe you are looking for

  • How to add X-authenticated header with SMTP-auth

    I have smtp-auth working here. I also have normal mail header to see what ip the message is coming from. But I'd like to add X-authenticated to signature the mail is authenticated by end user. Can I do that? What parameter i can use for message filte

  • Internal Error (-5000)

    Hi, I am getting the error message "Internal Error (-5000)"  when I select the BP in Incoming Payment.  Can anybody help me to resolve this issue ?

  • Client OS - MS Windows XP Professional SP2 with SBO 2007 B

    Dear All,      Is there any compatibility issue with the client OS - MS Windows XP Professional SP2 with SBO 2007 B?

  • Unable to install Adobe CS6, have tried everything

    I have been trying to install Adobe CS6 Master on a fresh install of Windows 7 Enterprise 64bit with updates running on a Dell OptiPlex 7010. I think I have gone through every scenario possible and cannot get it to install. Keep getting the: "Install

  • 11g database - advisor licensing

    I have a 11.1.0.6 database and we have the standard licensing package in place - basically just the database with no add-ons. I wish to make use of some of the advisors that come with 11g - my question is which of these can I safely use with infringi