How to use oracle Portal with JDeveloper 10.1.3 ADF JSF

Hi all
I use JDeveloper 10.1.3
I found out that the latest Portal 10.1.4 does not support JSF ADF
IF I WANT USE PORTAL ,WHAT SHALL I DO?
Thanks

OracleAS Portal 10.1.4 does not support JSF portlets.
JSF support in OracleAS Portal is in development.

Similar Messages

  • Use Oracle Reports with Jdeveloper 11

    Hi,
    My next question. How to use Oracle Reports with jdeveloper 11. I have more oracle reports (used with a existing forms application) and i need to migrate this application to web-adf application. I think that is very powerful to use this oracle definition reports but i not know ho to do it.
    thanks,
    Jordi

    Read the publishing reports manual of Oracle reports to see how to Web enabled your Oracle reports. You can then invoke them from an ADF application either by calling a URL or using a Web service interface.

  • How to use Oracle partitioning with JPA @OneToOne reference?

    Hi!
    A little bit late in the project we have realized that we need to use Oracle partitioning both for performance and admin of the data. (Partitioning by range (month) and after a year we will move the oldest month of data to an archive db)
    We have an object model with an main/root entity "Trans" with @OneToMany and @OneToOne relationships.
    How do we use Oracle partitioning on the @OneToOne relationships?
    (We'd rather not change the model as we already have millions of rows in the db.)
    On the main entity "Trans" we use: partition by range (month) on a date column.
    And on all @OneToMany we use: partition by reference (as they have a primary-foreign key relationship).
    But for the @OneToOne key for the referenced object, the key is placed in the main/source object as the example below:
    @Entity
    public class Employee {
    @Id
    @Column(name="EMP_ID")
    private long id;
    @OneToOne(fetch=FetchType.LAZY)
    @JoinColumn(name="ADDRESS_ID")
    private Address address;
    EMPLOYEE (table)
    EMP_ID FIRSTNAME LASTNAME SALARY ADDRESS_ID
    1 Bob Way 50000 6
    2 Sarah Smith 60000 7
    ADDRESS (table)
    ADDRESS_ID STREET CITY PROVINCE COUNTRY P_CODE
    6 17 Bank St Ottawa ON Canada K2H7Z5
    7 22 Main St Toronto ON Canada     L5H2D5
    From the Oracle documentation: "Reference partitioning allows the partitioning of two tables related to one another by referential constraints. The partitioning key is resolved through an existing parent-child relationship, enforced by enabled and active primary key and foreign key constraints."
    How can we use "partition by reference" on @OneToOne relationsships or are there other solutions?
    Thanks for any advice.
    /Mats

    Crospost! How to use Oracle partitioning with JPA @OneToOne reference?

  • How to Use Oracle 8i with MapX?

    I am trying to work with oracle 8i 1.6 and mapX 4.5 but un-able to do so. I tried by adding server layer but couldn't do so.
    Help !!

    Crossposted: Re: How to use Oracle partitioning with JPA @OneToOne reference?

  • How to use Oracle APEX with Oracle12c - Beginner

    Hi. I have been using for months Oracle Application Express thanks to the online workspace on https://apex.oracle.com/i/index.html.
    Now, I want to create my production environment. I have installed Oracle Database 12c on a virtual machine (Oracle Virtual Box) based on Windows Server 2008 R2 (64 bit) o.s.
    I have created a new database and, during this process, I have selected only "Oracle Application Express" as database's option. Now, I don't know how to use APEX, how to configure the Listener and whatever I need to let the users may use my APEX's applications. Thank you very much for any help. Please consider that I am a beginner and I don't know how to master the administrative-side of APEX.
    Saverio

    Hi Neruda from Italy,
    Neruda from Italy wrote:
    Thank you very much. Anyway, If I installed Oracle11g then the list of instructions to follow in order to configure Oracle Apex is the following?
    Installing and Configuring Oracle Application Express and BI Publisher in Oracle Database 11g Release 2
         By Oracle 11g, do you mean Oracle Database 11g Express Edition?
         The list of instructions are correct in a way but the OBE is somewhat old (Instead you should always go for Oracle Documentation).
         Following are the installation guides for APEX versions:
    APEX 5.0 - https://docs.oracle.com/cd/E59726_01/install.50/e39144/toc.htm
    APEX 4.2 - http://docs.oracle.com/cd/E37097_01/install.42/e35123/toc.htm
         As you are going for configuring Embedded PL/SQL Gateway (as given in the OBE above) here are the detailed steps to install APEX and configure EPG:
    APEX 5.0 - https://docs.oracle.com/cd/E59726_01/install.50/e39144/epg.htm#HTMIG386 (skip the steps for Oracle Database 12c)
    APEX 4.2 - http://docs.oracle.com/cd/E37097_01/install.42/e35123/otn_install.htm#HTMIG389
         If you deem that your question is answered, then please close the thread by marking the appropriate replies helpful/correct.
    Regards,
    Kiran

  • How to use tree tables with CRUD operation for begineers ADF 11g

    This is Friday night call for help.
    This is only few sample ressources on the web for tree table and only one with CRUD operation.
    I used this one http://jobinesh.blogspot.com/2010/05/crud-operations-on-tree-table.html because this is the only one that address CRUD.
    And it is shaky. Deletion works fine but insertion not very well. This is working using custom code provided below.
    Depending if the user selection in the tree, the code insert from the master node to the children node.
    Any other options because it is not working well.
    Also where Oracle describes how to use the row, rowset, itorator API? This is really hard to understand like almost if we should not use it.
    then if not how can I insert in tree with two nodes and insert in the parent or children depending the users selection.
    Lately I 'been posting questions on this forum with no response. This hurts. I understand developers cannot spend their time on this but People from Oracle, please help. We pay licenses...
    public void createChildren(RowIterator ri, Key selectedNodeKey) {
    final String deptViewDefName = "model.DepartmentsView";
    final String empViewDefName = "model.EmployeesView";
    if (ri != null && selectedNodeKey != null) {
    Row last = ri.last();
    Key lastRowKey = last.getKey();
    // if the select row is not the last row in the row iterator...
    Row[] found = ri.findByKey(selectedNodeKey, 1);
    if (found != null && found.length == 1) {
    Row foundRow = found[0];
    String nodeDefname =
    foundRow.getStructureDef().getDefFullName();
    if (nodeDefname.equals(deptViewDefName)) {
    RowSet parents =
    (RowSet)foundRow.getAttribute("EmployeesView");
    Row childrow = parents.createRow();
    parents.insertRow(childrow);
    } else {
    RowSet parents =
    (RowSet)foundRow.getAttribute("EmployeesView");
    Row childrow = parents.createRow();
    childrow.setAttribute("DepartmentId",
    foundRow.getAttribute("DepartmentId"));
    parents.insertRow(childrow);
    } else {
    System.out.println("Node not Found for " + selectedNodeKey);
    }

    I am looking for a sample that describe how to design a jsf page with a tree table.
    So you have Department and employees. In the tree first comes Department and if you click the node you see the employees assigned to this department.
    I need to be able to insert a new department or a new employee from the tree table by clicking on a insert button in the panel collection toolbar depending on user selection in the tree.
    I got part of it working but not good enough.
    By problem is the get insertion working
    I have a createChildren method in my AM implementation that get in input a RowIterator and selected node key.
    To goal is to create new records depending of the user selection and the input parameters get populated by the binding like this:
    #{backing_treeSampleBean.selectedNodeRowIterator} #{backing_TreeSampleBean.selectedNodeRowkey} via method binding with parameters.
    Is it the right approach?
    First to be able to insert a parent record, I select nothing in the tree and ri and selectedNodeKey comes to null
    we run this code
    ViewObjectImpl vo = getSchHolidaySchedExceptionsView1();
    //ViewObjectImpl vo = getDepartmentsView1();
    Row foundRow = vo.first();
    Row childrow = vo.createRow();
    vo.insertRow(childrow);
    A new blank entry appears in the parent node and we enter a value.
    The the problem starts when we want to add a child to this parent.
    We select the created parent and press the insert button, this code get executed
    if (nodeDefname.equals(deptViewDefName))
    //list of the children of the parent and create an new row
    RowSet childRows = (RowSet)foundRow.getAttribute("SchHolidayExceptionDatesView");
    Row childrow = childRows.createRow();
    childRows.insertRow(childrow);
    But the new entry does not appear, it is almost like it would be created for a different parent because this is a mandatory field that is not feel in yet and the interface complaints of a missing value. It is created somewhere just not a the right place... This is my guess.
    Do you see something wrong with the code?
    The full code og my create children method is there below
    I am using jdeveloper 11.1.1.3.0 any issues with tree table to know about with this version?
    Thanks for your help
    public void createChildren(RowIterator ri, Key selectedNodeKey) {
    final String deptViewDefName = "com.bcferries.app.pdfroutesched.model.SchHolidaySchedExceptionsView";
    final String empViewDefName = "com.bcferries.app.pdfroutesched.model.SchHolidayExceptionDatesView";
    if (ri != null && selectedNodeKey != null) {
    // last row
    Row last = ri.last();
    Key lastRowKey = last.getKey();
    // if the select row is not the last row in the row iterator...
    Row[] found = ri.findByKey(selectedNodeKey, 1);
    if (found != null && found.length == 1) {
    // foundRow is the row selected
    Row foundRow = found[0];
    // The row selected can be the parent node or the child node
    String nodeDefname = foundRow.getStructureDef().getDefFullName();
    // if parent row
    if (nodeDefname.equals(deptViewDefName))
    //list of the children of the parent and create an new row
    //works but we try to resolve the creation of a parent
    RowSet childRows = (RowSet)foundRow.getAttribute("SchHolidayExceptionDatesView");
    Row childrow = childRows.createRow();
    //childrow.setAttribute("HolidayDate", new java.util.Date().getDate());
    System.out.println("insert child row from master");
    childRows.insertRow(childrow);
    } else
    //RowSet ParentRow = (RowSet)foundRow.getAttribute("SchHolidaySchedExceptionsView");
    //RowSet childRows = (RowSet)ParentRow.first().getAttribute("SchHolidayExceptionDatesView");
    Row childrow = ri.createRow();
    System.out.println("insert child row from child ");
    } else {
    System.out.println("Node not Found for " + selectedNodeKey);
    } else {
    System.out.println(" param null try creating for first row : " +
    ri + " * " + selectedNodeKey);
    ViewObjectImpl vo = getSchHolidaySchedExceptionsView1();
    Row foundRow = vo.first();
    Row childrow = vo.createRow();
    vo.insertRow(childrow);
    }

  • How to Use SCM (9iDS) with JDeveloper v3.2.3

    We still have users that are required to use JDeveloper v3.2.3 (not authorized to install / upgrade applications - approval process for upgrade painfully slow)
    To support them we have systems with both 9iDS and JDeveloper v3.2.3. The repository is on a Sun Solaris box (Oracle9i Enterprise Edition Release 9.0.1.3.0). The repository is (Server) 4.0.12.88.2 and (Client) 3.0.19.0.0 with Repository Admin Utility 9.0.2.88.12.
    The help instructions in JDev v3.2.3 are not clear on how to 'force' it to recognize the availability of the source control repository 'system'. It appears to that it expects a 6i installation and then it would automatically work.
    Are there any other instructions on marrying these two components (9iDS Repository and JDev v3.2.3) that would cause the Source Control menu to appear?
    Note: Received this response on the SCM forum from David Brown (Oracle)
    James,
    JDev 3.2.3 with a 9iDS backend SCM repository is very undesirable. I am sure, after much >work, they could be made
    to cohabit, but the reason we went for the 'suite' approach is to offer certification out of >the box, rather than mismatched
    components.
    sorry,
    David

    I've been out for a while, so that's why I've delayed on this response.
    Is there a description / procedure on "downgrading your repository to 6i" ?
    Thanks.
    Hi,
    I'm afraid that Dave is correct about this - it's very hard to provide future compatibility in any product, and there is a long stretch of time between JDeveloper 3.2.3 and 9iDS. We do provide backward compatibility (you can connect to a 6i repository from a 9i version of JDeveloper), so if it's absolutely not possible to upgrade your clients to 9i JDeveloper, maybe downgrading your repository to 6i is an option.
    Thanks,
    Brian
    JDev Team (SCM)

  • How to use an infile with jdeveloper?

    I dont want to use an absolute path. Where can I put a flatfile so that jdeveloper can read it? How do I set this? I can get it work from textpad by just putting it in my jdk\bin directory.
    anyway to set what directory I want to use by default for reading from files?

    You should put it into the 'src' subdirectory of your project's directory and then add it to your project, so that everytime you compile and run it, the file will be copied to the 'classes' subdirectory.

  • How to use oracle APEX with an distant database located on a distant server

    Hi there,
    I'm a brand new user with Oracle Technologies. I've installed ORACLE 10g XE and updated APEX to 4.0 version on my laptop.
    My Manager has setup a distant server with a Linux Red Hat. He has installed on this server EBS R12 with a 11i database.
    As a training, I'd like to play with the tables located on the server with the APEX 4.0 installed on my laptop.
    As the server is on the same local network and following the description above, is it possible to plug my local APEX to the server database ?
    If not, does it mean I have to install APEX on the 11i server database and then connect to the server to play with those tables ?
    Thanks a lot for your time and support ACEs members.
    Regards,
    Ulrich

    Hi Ulrich,
    yes, you can access other database from your APEX database. The mechanism used to do this is called a "database link". You need to create such a database link in your local database, then you can access the remote database like this:
    SELECT *
      FROM databaselink@EMP
    ;If you want to use such remote objects from within APEX you need to create local views to wrap this (search the forum for apex and database links, you'll find interesting threads).
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at

  • How to use oracle crypto with RSA

    Hi,
    I found oracle crypto and we will use it http://download-uk.oracle.com/docs/cd/B25221_04/security.1013/b25372/crypto.htm#BJFIHJFH
    but it generates an errors:
    SQL> CREATE OR REPLACE AND COMPILE JAVA SOURCE NAMED "NetsafeCrypt" AS
    2 import java.lang.*;
    3 import java.io.*;
    4 import oracle.security.crypto.core.*;
    5 import oracle.security.crypto.util.*;
    6
    7 public class NetsafeCrypt {
    8 public static String RSAEncrypt(String data, String pubKeyData) {
    9 RSAPublicKey pubKey = RSAPublicKey(pubKeyData.getBytes());
    10 return "abc";
    11 }
    12 };
    13 /
    Warning: Java created with compilation errors.
    SQL> show error
    Errors for JAVA SOURCE "NetsafeCrypt":
    LINE/COL ERROR
    0/0 NetsafeCrypt:8: cannot find symbol
    0/0 symbol : class RSAPublicKey
    0/0 location: class NetsafeCrypt
    0/0 RSAPublicKey pubKey = RSAPublicKey(pubKeyData.getBytes());
    0/0 ^
    0/0 2 errors
    0/0 symbol : method RSAPublicKey(byte[])
    0/0 location: class NetsafeCrypt
    0/0 RSAPublicKey pubKey = RSAPublicKey(pubKeyData.getBytes());
    0/0 ^
    0/0 NetsafeCrypt:8: cannot find symbol
    My CLASSPATH is ok.
    echo $CLASSPATH
    /opt/app/oracle/product/11/db_1/JRE:/opt/app/oracle/product/11/db_1/jlib:/opt/app/oracle/product/11/db_1/rdbms/jlib:/opt/app/oracle/product/11/db_1/network/jlib:/opt/app/oracle/product/11/db_1/jlib/osdt_core.jar
    Regards,
    Tom

    oracle.crypto is not supported in the 10.1.x release of the oracle JVM/Database. We do support the Sun JCE encryption API's as documented by Sun. I recommend using the JCE and JSSE API's as they are the standard moving forward with later releases of Oracle.
    Setting of the client CLASSPATH has no effect on classes loaded into the database. The resolution model is explained in the Oracle Database Java Developers Guide.

  • How to use Oracle Procedures with Servlet page

    Hi all
    I'm working on Servlet pages and I need to insert and select some records from Oracle database but it has to be done by calling some already written Procedures. I've never really used them before so I'm little lost. I know where the queries are used it'll be Procedures but what is the syntax for it.Can anyone put me in right direction please.
    Thanks

    Just google it. You will find lots of examples. Here are some :
    [http://java.sun.com/docs/books/tutorial/jdbc/basics/sql.html|http://java.sun.com/docs/books/tutorial/jdbc/basics/sql.html]
    [http://onjava.com/pub/a/onjava/2003/08/13/stored_procedures.html|http://onjava.com/pub/a/onjava/2003/08/13/stored_procedures.html]

  • How to Unpivot, Crosstab, or Pivot using Oracle 9i with PL/SQL?

    How to Unpivot, Crosstab, or Pivot using Oracle 9i with PL/SQL?
    Here is a fictional sample layout of the data I have from My_Source_Query:
    Customer | VIN | Year | Make | Odometer | ... followed by 350 more columns/fields
    123 | 321XYZ | 2012 | Honda | 1900 |
    123 | 432ABC | 2012 | Toyota | 2300 |
    456 | 999PDQ | 2000 | Ford | 45586 |
    876 | 888QWE | 2010 | Mercedes | 38332 |
    ... followed by up to 25 more rows of data from this query.
    The exact number of records returned by My_Source_Query is unknown ahead of time, but should be less than 25 even under extreme situations.
    Here is how I would like the data to be:
    Column1 |Column2 |Column3 |Column4 |Column5 |
    Customer | 123 | 123 | 456 | 876 |
    VIN | 321XYZ | 432ABC | 999PDQ | 888QWE |
    Year | 2012 | 2012 | 2000 | 2010 |
    Make | Honda | Toyota | Ford | Mercedes|
    Odometer | 1900 | 2300 | 45586 | 38332 |
    ... followed by 350 more rows with the names of the columns/fields from the My_Source_Query.
    From reading and trying many, many, many of the posting on this topic I understand that the unknown number or rows in My_Source_Query can be a problem and have considered working with one row at a time until each row has been converted to a column.
    If possible I'd like to find a way of doing this conversion from rows to columns using a query instead of scripts if that is possible. I am a novice at this so any help is welcome.
    This is a repost. I originally posted this question to the wrong forum. Sorry about that.

    The permission level that I have in the Oracle environment is 'read only'. This is also be the permission level of the users of the query I am trying to build.
    As requested, here is the 'create' SQL to build a simple table that has the type of data I am working with.
    My real select query will have more than 350 columns and the rows returned will be 25 rows of less, but for now I am prototyping with just seven columns that have the different data types noted in my sample data.
    NOTE: This SQL has been written and tested in MS Access since I do not have permission to create and populate a table in the Oracle environment and ODBC connections are not allowed.
    CREATE TABLE tbl_MyDataSource
    (Customer char(50),
    VIN char(50),
    Year char(50),
    Make char(50),
    Odometer long,
    InvDate date,
    Amount currency)
    Here is the 'insert into' to populate the tbl_MyDataSource table with four sample records.
    INSERT INTO tbl_MyDataSource ( Customer, VIN, [Year], Make, Odometer, InvDate, Amount )
    SELECT "123", "321XYZ", "2012", "Honda", "1900", "2/15/2012", "987";
    INSERT INTO tbl_MyDataSource ( Customer, VIN, [Year], Make, Odometer, InvDate, Amount )
    VALUES ("123", "432ABC", "2012", "Toyota", "2300", "1/10/2012", "6546");
    INSERT INTO tbl_MyDataSource ( Customer, VIN, [Year], Make, Odometer, InvDate, Amount )
    VALUES ("456", "999PDQ", "2000", "Ford", "45586", "4/25/2002", "456");
    INSERT INTO tbl_MyDataSource ( Customer, VIN, [Year], Make, Odometer, InvDate, Amount )
    VALUES ("876", "888QWE", "2010", "Mercedes", "38332", "10/13/2010", "15973");
    Which should produce a table containing these columns with these values:
    tbl_MyDataSource:
    Customer     VIN     Year     Make     Odometer     InvDate          Amount
    123 | 321XYZ | 2012 | Honda      | 1900          | 2/15/2012     | 987.00
    123 | 432ABC | 2012 | Toyota | 2300 | 1/10/2012     | 6,546.00
    456 | 999PDQ | 2000 | Ford     | 45586          | 4/25/2002     | 456.00
    876 | 888QWE | 2010 | Mercedes | 38332          | 10/13/2010     | 15,973.00
    The desired result is to use Oracle 9i to convert the columns into rows using sql without using any scripts if possible.
    qsel_MyResults:
    Column1          Column2          Column3          Column4          Column5
    Customer | 123 | 123 | 456 | 876
    VIN | 321XYZ | 432ABC | 999PDQ | 888QWE
    Year | 2012 | 2012 | 2000 | 2010
    Make | Honda | Toyota | Ford | Mercedes
    Odometer | 1900 | 2300 | 45586 | 38332
    InvDate | 2/15/2012 | 1/10/2012 | 4/25/2002 | 10/13/2010
    Amount | 987.00 | 6,546.00 | 456.00 | 15,973.00
    The syntax in SQL is something I am not yet sure of.
    You said:
    >
    "Don't use the same name or alias for two different things. if you have a table called t, then don't use t as an alais for an in-line view. Pick a different name, like ordered_t, instead.">
    but I'm not clear on which part of the SQL you are suggesting I change. The code I posted is something I pieced together from some of the other postings and is not something I full understand the syntax of.
    Here is my latest (failed) attempt at this.
    select *
      from (select * from tbl_MyDataSource) t;
    with data as
    (select rownum rnum, t.* from (select * from t order by c1) ordered_t), -- changed 't' to 'ordered_t'
    rows_to_have as
    (select level rr from dual connect by level <= 7 -- number of columns in T
    select rnum,
           max(decode(rr, 1, c1)),
           max(decode(rr, 2, c2)),
           max(decode(rr, 3, c3)),
           max(decode(rr, 4, c3)),      
           max(decode(rr, 5, c3)),      
           max(decode(rr, 6, c3)),      
           max(decode(rr, 7, c3)),       
      from data, rows_to_have
    group by rnumIn the above code the "select * from tbl_MyDataSource" is a place holder for my select query which runs without error and has these exact number of fields and data types as order shown in the tbl_MyDataSource above.
    This code produces the error 'ORA-00936: missing expression'. The error appears to be starting with the 'with data as' line if I am reading my PL/Sql window correctly. Everything above that row runs without error.
    Thank you for your great patients and for sharing your considerable depth of knowledge. Any help is gratefully welcomed.

  • How can I use jad decompiler with Jdeveloper ?

    I want to use jad decompiler with JDeveloper .
    What should I do ?
    I also want jdeveloper can set break point in source code that decompiled for debugging .
    If Jdeveloper dose n't have Jad Extension .
    Do you have any other decompiler that can be integrated with JDeveloper ?
    thanks in advance

    In JDeveloper 10.1.2, I put the following line in jdev.conf:
    AddVMOption -Djcncmd=c:/progra~1/decomp/jad.exe -b -ff -nl -p -pi99999 -space -t2 -lnc -noinner
    Use at your own risk, though. It works nicely 9 times out of 10, but for some classes it seems to 'freeze' JDeveloper and you have to kill the jdev.exe process. I'm sure it has something to do with the command line options to jad.exe, but I've not been able to identify the problem.
    If debugging is your goal, if I'm not mistaken JAD is not able to recreate source files where every statement is on the same line number as in the original file, so step-by-step debugging is a no-no. If you know of any way to use JAD so that is does put each statement on the correct line, I'll be interested!
    Peter

  • Oracle Portal with Oracle Web Cache

    How can I configure Oracle Portal (or Web Cache) to work together?
    I have installed and started both of them. Now, Web Cache works fine with standard html pages (for example Apache docs) but after trying to reach portal the url is redirected to standard port - on which Portal runs (Web Cache works on 1100 and Portal on 7778).
    So it seems that portal pages are not cached.
    Web Cache:
    Application Web Servers:
    hpwin 7778 100 30 5 / 10
    Where can I find any information about that?
    best regards
    KJ

    Portal PM, I thought you said that this solution would not work. Everyone I have heard so far has said that you cannot configure webcache to work with Portal documents. Does this work or does it not?
    Read the messages below from the bottom up.
    It's not possible to do that today.
    In 9.0.2 (the next release) we will be using WebCache configured out of the box so you won;t need to, however, till then you cannot use webcache with Portal 3.0.x
    Thanks
    Portal PM
    Title : re:Oracle Portal with Oracle Web Cache O/S : N/A POST: REPLY (W/QUOTE)
    Author : Agus Jaelani Type : Question
    Date : Feb 4, 2002 23:11 PT
    please try using this configuration on http.conf
    Port <webcache port>
    Listen <apache listen port>
    ServerName <webcache hostname>
    you must running ssodatan script again.
    Note :
    this config only make portal work together with webcache.
    Title : re:Oracle Portal with Oracle Web Cache O/S : N/A POST: REPLY (W/QUOTE)
    Author : Krzysztof Jungowski Type : Question
    Date : Feb 5, 2002 06:58 PT
    Thanks a lot. It works.
    best regards
    Krzysztof Jungowski

  • How to implement OracleAS Portal Clustering ?

    Dear all,
    Can anybody pls point me to the docs about how to implement OracleAS Portal Cluster (version 10.1.4) ?
    Also, about deploying Portal from development server to production server (using Export Import) , do we have to deploy it to all nodes , or can we just deploy it once to the cluster ?
    Thank you,
    xtanto

    Hello Xtanto,
    The Oracle documentation provides instructions for setting up Oracle Portal in a 'cluster'. For 10.1.2.0.2 and 10.1.4 :
    [5.3|http://download.oracle.com/docs/cd/B14099_19/portal.1014/b19305/cg_advnc.htm#i1046354] Configuring Multiple Middle Tiers with a Load Balancing Router
    Oracle® Application Server Portal Configuration Guide
    10g Release 2 (10.1.4)
    B19305-03
    Alternatively you can also check the enterprise deployment guide :
    [7|http://download.oracle.com/docs/cd/B14099_19/core.1012/b13998/portal.htm#CACHEECD] Installing and Configuring the myPortalCompany Application Infrastructure
    Oracle® Application Server Enterprise Deployment Guide
    10g Release 2 (10.1.2)
    B13998-07
    For deployment from development to production, transport sets can be used :
    [10|http://download.oracle.com/docs/cd/B14099_19/portal.1014/b19305/cg_imex.htm#i1030999] Exporting and Importing Content
    Oracle® Application Server Portal Configuration Guide
    10g Release 2 (10.1.4)
    B19305-03
    Thanks,
    EJ

Maybe you are looking for

  • PDF version from BOE SDK

    Hi, We have installed BOE 4.0 and 32 bit SDK to interact with the app server. When we create PDF from crystal reports it is giving the PDF default version 1.7. Is there any way to change the PDF version to 1.5 hence our  dependent systems does not ha

  • Creaing a BA within another BA

    Hi, Whether it is possible to create a Business Area within another Business Area. If so, how can I achieve this. Thanks&Regards P.Velvadivu.

  • I cannot export to pdf from Indesign... I export and then nothing happens. Can someone please help?

    Indesign worked well for a long time.  Then recently, after I and to reset my computer to an earlier time, Indesign stopped letting me export to PDF. I get no error message.  It is just that nothing happens after I export it.  I have some major deadl

  • Showing Empty cartons in Packing

    Hi All, I have scenario in packing where business packs empty cartons physically in the pallets to fill the empty space. The information of number of empty cartons is then entered in the header text. Right now these empty cartons does not appear in S

  • LO DataSource for Goods receipt and Invoice receipt

    Hi all In LBWE, under Purchasing there are few DataSources available for Goods receipt and Invoice receipt. Is there any DataSource for both Goods receipt and Invoice receipt. What are the DataSources available for Goods receipt and Invoice receipt.