How do I integrate Adobe Flex into Oracles Webcenter Interaction portal

We currently use Oracle Webcenter Interaction portal 10gr3 (ALUI Portal)... Does anyone know how or can provide documentation on how to integrate adobe flex into this portal.. Our portal is on windows but it is the java installation of the portal. Any help would be greatly appreciated...
thanks
Laura

While I'd still like others to chime in with anything they may know (or think), I've gleaned the following:
1)
"Oracle will support ALUI for the next 9 years and no customer will be forced to migrate off of ALUI. The long term direction is to migrate key features of ALUI into Web Center. "
2)
"Web Center will be the strategic portal offering. Customers looking to move to Web Center may get credit for their ALUI cost.
We are currently selling Web Center and ALUI as one single suite. So customers buying the suite don’t have to choose between one or the other and get both automatically.
If you are happy with the functionality in ALUI then it would make sense to stick with it till we have more details on migration path, etc."
4)
Publisher : the next release should come out (eventually). The long term direction is Oracle’s UCM (Stellent) product.

Similar Messages

  • How can i integrate adobe flex into muse?

    Working with Flex and changing the skins is just not my thing, so please tell me how can i create a website thru Muse and still use flex developers applications running on the site?

    Since flex publishes SWF files. Muse support SWF (Flash) files. Embed the codes generated in flash builder (Not the entire HTML but the codes starting from the flash embed stuff, you should be familiar with those codes) that would be found in the HTML as arbitrary HTML into Muse and your Flex application will run smoothly. (Except their is a bug in Muse, it should work).

  • Does Oracle WebCenter Interaction portal version 10gR3 support IE8?

    Does Oracle WebCenter Interaction portal version 10gR3 support IE8?

    Does Oracle WebCenter Interaction portal version 10gR3 support IE8?

  • Job:  Aqualogic / Oracle WebCenter Interaction administrator in Wash DC

    We have an immediate direct hire opening for an AquaLogic/Plumtree/Oracle WebCenter Interaction Portal Administrator in the Washington DC area. If interested, please contact me at [email protected]
    Senior administrator will provide portal administration and database administration support to the Systems Development Lifecycle (SDLC) tasks of an enterprise portal. Applicants should be able to perform the daily activities of configuration and operation of systems. Perform optimization and tuning of system operation and resource utilization.
    Experience must include enterprise portal administration:
    - BEA AquaLogic/Plumtree Portal Version 6.5 / Oracle WebCenter Interaction
    - Solaris UNIX
    - Oracle 10g database administration (PL/SQL, performance tuning, migrations, backups, etc..)
    - Should be versed in administration of the portal including Active Directories, Collaboration modules (Communities, Studio, Publisher, portlets).
    Successful candidate must be able to pass minimum public trust security clearance requirement.
    Application must have at least 2 years of (non-educational) experience with database administration and at least 2 years experience with enterprise portal administration. A Bachelor's degree or commensurate experience is preferred.
    CTAC's development team enjoys a casual, flexible close-knit working environment fostering technological creativity and successful solutions innovation.
    www.ctacorp.com

    did you do this part:
    Launch Configuration Manager      Launch the Configuration Manager.
    The Configuration Manager is located at:
    https://host:port/
    Where host is the host you are installing on and port is the port you specified.
    Log in to the Configuration Manager using the user name administrator and the password you specified on the Configuration Manager – Port and Password page.
    The Configuration Manager displays a list of all recently installed components. Clicking the link next to each component leads you through the settings you need to configure to complete the installation. For information on the settings in the Configuration Manager, refer to the Configuration Manager online help or to the Administrator Guide for Oracle WebCenter Interaction.
    When you have completed all Configuration Manager tasks, return to the installer and click Done.
    http://download-llnw.oracle.com/docs/cd/E13158_01/alui/wci/docs103/map_wci_unix_installguide_10-3/ref_unix_installerwizardpages.html
    in the configuration manager, you'll have to type in your imageserver settings.

  • Integrate javascript event into Oracle ADF Components

    Can someone show me how to use javascript attribute, for instance onclick, in CoreCommandButton? How do we normally integrate javascript event into Oracle ADF Components?

    Hi,
    you already have a link. Its not an Oracle project but a project of Wilfred from Eurotransplant. Feel free to ping him directly on this or ask this question on the Forms forum, if you haven't already, where he most likely is signed up for.
    Frank

  • How to insert a image file into oracle database

    hi all
    can anyone guide me how to insert a image file into oracle database now
    i have created table using
    create table imagestore(image blob);
    but when inserting i totally lost don't know what to do how to write query to insert image file

    Hi I don't have time to explain really, I did have to do this a while ago though so I will post a code snippet. This is using the commons file upload framework.
    Firstly you need a multi part form data (if you are using a web page). If you are not using a web page ignore this bit.
    out.println("<form name=\"imgFrm\" method=\"post\" enctype=\"multipart/form-data\" action=\"FileUploadServlet?thisPageAction=reloaded\" onSubmit=\"return submitForm();\"><input type=\"FILE\" name=\"imgSource\" size='60' class='smalltext' onKeyPress='return stopUserInput();' onKeyUp='stopUserInput();' onKeyDown='stopUserInput();' onMouseDown='noMouseDown(event);'>");
    out.println("   <input type='submit' name='submit' value='Submit' class='smalltext'>");
    out.println("</form>"); Import this once you have the jar file:
    import org.apache.commons.fileupload.*;Now a method I wrote to upload the file. I am not saying that this is correct, or its the best way to do this. I am just saying it works for me.
    private boolean uploadFile(HttpServletRequest request, HttpSession session) throws Exception {
            boolean result = true;
            String fileName = null;
            byte fileData[] = null;
            String fileUploadError = null;
            String imageType = "";
            String error = "";
            DiskFileUpload fb = new DiskFileUpload();
            List fileItems = fb.parseRequest(request);
            Iterator it = fileItems.iterator();
            while(it.hasNext()){
                FileItem fileItem = (FileItem)it.next();
                if (!fileItem.isFormField()) {
                    fileName = fileItem.getName();
                    fileData = fileItem.get();
                    // Get the imageType from the filename extension
                    if (fileName != null) {
                        int dotPos = fileName.indexOf('.');
                        if (dotPos >= 0 && dotPos != fileName.length()-1) {
                            imageType = fileName.substring(dotPos+1).toLowerCase();
                            if (imageType.equals("jpg")) {
                                imageType = "jpeg";
            String filePath = request.getParameter("FILE_PATH");
            session.setAttribute("filePath", filePath);
            session.setAttribute("fileData", fileData);
            session.setAttribute("fileName", fileName);
            session.setAttribute("imageType", imageType);
            return result;  
         } And now finally the method to actually write the file to the database:
    private int writeImageFile(byte[] fileData, String fileName, String imageType, String mode, Integer signatureIDIn, HttpServletRequest request) throws Exception {
            //If the previous code found a file that can be uploaded then
            //save it into the database via a pstmt
            String sql = "";
            UtilDBquery udbq = getUser(request).connectToDatabase();
            Connection con = null;
            int signatureID = 0;
            PreparedStatement pstmt = null;
            try {
                udbq.setUsePreparedStatements(true);
                con = udbq.getPooledConnection();
                con.setAutoCommit(false);
                if((!mode.equals("U")) || (mode.equals("U") && signatureIDIn == 0)) {
                    sql = "SELECT SEQ_SIGNATURE_ID.nextval FROM DUAL";
                    pstmt = con.prepareStatement(sql);
                    ResultSet rs = pstmt.executeQuery();
                    while(rs.next()) {
                       signatureID = rs.getInt(1);
                    if (fileName != null && imageType != null) {
                        sql = "INSERT INTO T_SIGNATURE (SIGNATURE_ID, SIGNATURE) values (?,?)";
                        InputStream is2 = new ByteArrayInputStream(fileData);
                        pstmt = con.prepareStatement(sql);
                        pstmt.setInt(1, signatureID);
                        pstmt.setBinaryStream(2, is2, (int)(fileData.length));
                        pstmt.executeUpdate();
                        pstmt.close();
                        con.commit();
                        con = null;
                if(mode.equals("U") && signatureIDIn != 0) {
                    signatureID = signatureIDIn.intValue();
                    if (fileName != null && imageType != null) {
                        sql = "UPDATE T_SIGNATURE SET SIGNATURE = ? WHERE SIGNATURE_ID = ?";
                        InputStream is2 = new ByteArrayInputStream(fileData);
                        pstmt = con.prepareStatement(sql);
                        pstmt.setBinaryStream(1, is2, (int)(fileData.length));
                        pstmt.setInt(2, signatureID);
                        pstmt.executeUpdate();
                        pstmt.close();
                        con.commit();
                        con = null;
            } catch (Exception e) {
                con = null;
                throw new Exception(e.toString());
            return signatureID;
       }

  • Integrate Adobe Flex and JBOSS using BlazeDS

    I using this link http://simplyolaf.blogspot.com/2009/07/integrate-adobe-flex-and-jboss-using.html to create Flex Project for Blaze DS. I added the following arguments to the flex compiler: -services "F:/java_WS/iASCUE/WebContent/WEB-INF/flex/services-config.xml" . Can I define relate path? when I put my project on other server it don't work

    Does anybody something know?

  • How to export sql server 2000 into oracle intergrally?

    1.environment:
    sql server 200 - character set: CHINESE_PRC_CI_AS
    tables :include ntext field (I think it equals clob)
    support english,simple chinese character.
    oracle 9i - character set :NLS_LANG=AMERICAN_AMERICA.US7ASCII
    2. aim
    export sql server objects(main is tables) into oracle intergrally
    3.question:
    3.1 the field which includes chinese data,after exporting,displays "????" code.
    3.2 how to export sql ntext field into oracle?
    thanks a lot

    You need to setup your Oracle Database use character set that support Chinesre Character. For example a unicode character set AL16UTF16.
    More information her
    http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14225/ch6unicode.htm#i1006691
    Also consider use Oracle Migration Workbench to transfer SQL Server Data
    http://www.oracle.com/technology/tech/migration/workbench/files/mig_rel10104.html

  • How to conver this sqlserver code into Oracle

    Hi,
    Any one can help me how to covert below sqlserver code into Oracle?
    DECLARE @t1 DATETIME;
    DECLARE @t2 DATETIME;
    SET @t1 = GETDATE();
    select * from table;
    SET @t2 = GETDATE();
    SELECT DATEDIFF(millisecond,@t1,@t2) AS elapsed_ms;

    Hi,
    Do Like This ,
    This is The function going to calculate elapsed time ,execute this before the second script,
    CREATE function DATEDIFF
      startTime in timestamp with time zone,
      endTime in timestamp with time zone
    return number
    as
      interval_ interval day (9) to second (3);
    begin
      interval_ := endTime - startTime;
      return (extract(day from (interval_)) * 86400 +
             extract(hour from (interval_)) * 3600 +
             extract(minute from (interval_)) * 60 +
             extract(second from (interval_))) * 1000;
    end;And this Is the Script that i converted to oracle,
    SET server out put on;
    DECLARE
       v_t1         TIMESTAMP;
       v_t2         TIMESTAMP;
       lv_cur       sys_refcursor;
       lv_elapsed   VARCHAR2 (30);
    BEGIN
       v_t1 := SYSTIMESTAMP;
       OPEN lv_cur FOR
          SELECT *
            FROM emp;
       v_t2 := SYSTIMESTAMP;
       SELECT datediff (v_t1, v_t2) elapsed_ms
         INTO lv_elapsed
         FROM DUAL;
       DBMS_OUTPUT.put_line (v_t1);
       DBMS_OUTPUT.put_line (v_t2);
    END;Thanks & Rgds
    BCV.

  • Can I integrate Lotus database into Oracle with ODI

    I would like to know is it possible to integrate Lotus into Oracle with ODI.
    I know that Lotus database (file extension .nsf) is not an relational database, but it is possible to extract the data from Lotus database into XML and ODI supports XML
    so one solution would be to convert Lotus database to XML and then integrate the data into Oracle with ODI (Am I wrong?)
    Is there another solution, where I could directly integrate data from Lotus into Oracle with ODI

    IBM do provide JDBC access to Lotus Notes data. This is likely to be the best way. Google "LOTUS NOTES JDBC DRIVER" and you find links to IBM's info.

  • Integrate Adobe from into Webdynpro

    Hi All
        I like to integrate adobe form into WEB Dynpro and need to open PDF form on broser it self.
        Please help me inthis. I am new to Adobe forms.
    Thanks
    Rama.

    Hi,
    see the [documentation|http://help.sap.com/saphelp_nw70/helpdata/en/2c/241a427ff6db2ce10000000a1550b0/frameset.htm]
    Regards, Heidi

  • How to inetgrate BPM workspces into oracle webcenter ?

    Hi All,
    can any one please give me some guidelines to following:
    1.oracle bpm into oracle web-center
    2.worklist application into oracle webcenter.
    regards
    shankar

    I went through the same links, Here we are developing again webcenter portal application.Is There any out of box integration of the same.Did you look at 'Process spaces' ?
    http://docs.oracle.com/cd/E23943_01/user.1111/e15175/bpmug_pp_gt_strt.htm#BEHIGHJH
    How 'out of the box' do you expect it to be for your specific usecase?
    Here's another example that how the re-usable taskflows from BPM workspace can be reused in your standalone ADF application or a WebCenter application..
    http://andrejusb.blogspot.co.uk/2012/07/lightweight-adf-task-flow-for-bpm-human.html
    Jang-Vijay Singh

  • Oracle Webcenter Interaction and ADF

    Hi,
    Could someone please confirm if Oracle Ensemble is required for ADF to be used in Oracle Webcenter Interaction? I have looked a documentation how Oracle Ensemble can be used to integrate ADF and Webcenter Interaction. I would like to know what are the benefits to use Ensemble to be able to use ADF in WCI.
    Also, have one more question - is it true that using ADF makes it easier for the WCI Portlets to be migrated to Webcenter ? How does using ADF helps as compared to for example using Spring based Java Portlets in WCI?
    Thanks !
    Edited by: user610066 on Aug 22, 2011 1:40 PM

    Hi,
    Could someone please confirm if Oracle Ensemble is required for ADF to be used in Oracle Webcenter Interaction? I have looked a documentation how Oracle Ensemble can be used to integrate ADF and Webcenter Interaction. I would like to know what are the benefits to use Ensemble to be able to use ADF in WCI.
    Also, have one more question - is it true that using ADF makes it easier for the WCI Portlets to be migrated to Webcenter ? How does using ADF helps as compared to for example using Spring based Java Portlets in WCI?
    Thanks !
    Edited by: user610066 on Aug 22, 2011 1:40 PM

  • Deploy Oracle Webcenter Interaction on Weblogic 10.3 ( Oracle Linux 5)

    Dear All ,
    am trying to deploy Oracle Webcenter Interaction on Oracle Linux Weblogic every thing goes fine with installation but after finishing when we stop on deploy stage on Weblogic what's parameters need to be provided to succcfully deploy the application cause once we go throw default setting its deployed fine then we try to access the portal on http://<IP.Address>:7001/portal/server.pt it give us error " Contact your Portal Administrator " we ran the diagnostics and all works fine with no error . we try it on Windows and Linux with same error and nothing written in documents about deploy Webcenter interaction on weblogic
    regards
    Ahmad K. Haddad

    did you do this part:
    Launch Configuration Manager      Launch the Configuration Manager.
    The Configuration Manager is located at:
    https://host:port/
    Where host is the host you are installing on and port is the port you specified.
    Log in to the Configuration Manager using the user name administrator and the password you specified on the Configuration Manager – Port and Password page.
    The Configuration Manager displays a list of all recently installed components. Clicking the link next to each component leads you through the settings you need to configure to complete the installation. For information on the settings in the Configuration Manager, refer to the Configuration Manager online help or to the Administrator Guide for Oracle WebCenter Interaction.
    When you have completed all Configuration Manager tasks, return to the installer and click Done.
    http://download-llnw.oracle.com/docs/cd/E13158_01/alui/wci/docs103/map_wci_unix_installguide_10-3/ref_unix_installerwizardpages.html
    in the configuration manager, you'll have to type in your imageserver settings.

  • How can I integrate add-ons into a PDF (Use Adobe Acrobat (in Firefox), such as Babylon English Dictionary?

    How can I integrate the Fox add-ons into a PDF (Use Adobe Acrobat (in Firefox), such as Babylon English Dictionary? Many PDF do support my add-ons. BTW, the PDF in question is one that I have uploaded to my web site.

    Babylon would need to support Adobe Acrobat for that to happen.

Maybe you are looking for

  • Cannot connect to DB post installation

    Hi All, I have a home PC on which i have installed CentOS 6 Linux. In this i have installed oracle 11gR2. After installation i am trying to connect to that server from my windows laptop. when i am trying to connect from SQL developer. when i trying t

  • Safari bookmarks sync out of step

    Hello all, Recently upgraded to Mountain Lion, set up on iCloud etc and all is well bar one problem - my Safari bookmarks on my desktop (MacBook Pro), keep getting removed. My guess is that the bookmark list on my iPhone is being taken as the most up

  • Keychain Issue...no idea what I'm doing. Help!

    Hey All.. I am having a little trouble with my passwords. I have 2 mail accounts on my MBP. One is my .Mac mail and the other is my POP3 mail. For the past year or so everything has been fine (and the previous 2 years on my PB) But, yesterday I was m

  • Ring of dark pixels

    For the past couple of months I've noticed a ring of dark pixels on my screen. http://img141.imageshack.us/img141/9826/dsc007521mh9.jpg I'm not sure if this is a problem with the actual display or if the back of the glass is just dirty. Anyone have a

  • PCI-DIO-32HS output high level

    I am only getting 2.4 volts out of this board when thwe states are set to a logic High. This is true whether the line is loaded or unloaded. I am using it right out of the box connected to an SCB-68 connector block. I know it should be around 5 volts