Some Error with Some packages on Unbreakable oracle Enteprice linux 5.2

Dear all,
when I Install Oracle EnterPrise Manager 10gR2 on Unbreakable oracle Enteprice linux 5.2 it requried fro me some packags which are nessaray for installer like the following packages
Checking operating system package requirements ...
Checking for compat-libstdc++-296-2.96-132.7.2; found Not found.     Failed <<<<
Checking for libstdc++devel-3.4.3-22.1; found Not found.     Failed <<<<
Checking for openmotif-21-2.1.30-11; found Not found.     Failed <<<<
Checking for pdksh-5.2.14-30; found Not found.     Failed <<<<
Checking for gnome-libs-1.4.1.2.90-44.1; found Not found.     Failed <<<<
Checking for xscreensaver-4.18-5.rhel4.2; found Not found.     Failed <<<<but when I install thes packages ,the fllowing message is shown
oracle@alwosaby ~]$ rpm- ivh pdksh-5.2.14-30.3.x86_64.rpm
warning: pdksh-5.2.14-30.3.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 0c98ff9d
error: Failed dependencies:
pdksh conflicts with ksh-20060214-1.7.x86_64
*[root@test Desktop]# xscreensaver-4.18-5.rhel4.14.x86_64.rpm*
bash: xscreensaver-4.18-5.rhel4.14.x86_64.rpm: command not found
*[root@test Desktop]# rpm -ivh xscreensaver-4.18-5.rhel4.14.x86_64.rpm*
warning: xscreensaver-4.18-5.rhel4.14.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1d1e034b
error: Failed dependencies:
xloadimage is needed by xscreensaver-4.18-5.rhel4.14.x86_64
*[root@test Desktop]# rpm --import /usr/share/rhn/BETA-RPM-GPG-KEY*
*[root@test Desktop]# rpm -ivh xscreensaver-4.18-5.rhel4.14.x86_64.rpm*
warning: xscreensaver-4.18-5.rhel4.14.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1d1e034b
error: Failed dependencies:
xloadimage is needed b
oracle@alwosaby ~]$ uname -a
Linux alwosaby 2.6.18-92.el5 #1 SMP Fri May 23 23:40:43 EDT 2008 x86_64 x86_64 x86_6 4 GNU/Linux
Please how i install these packages ?
If any one have exprecie about this problem , Can Help me?
Regards
alwosaby
Edited by: user2985354 on 28/01/2009 09:01 م

You are mixing redhat provided packages with OEL. Generally, it's not a good idea to mix packages of different distributions.
The media you've used to install OEL contains these packages. Use these.

Similar Messages

  • I have some error with my iphone 5 in black screen nothing shown

    i have some error with my iphone 5 in black screen nothing shown nothing do no restart and when i have restore my iphone it say error 4014????????????

    is this the original iPhone 5, or 5s? If it's the 5s do you have Apple Care still? If so calling Apple iPhone support is where to start, hopefully they can help, if not, setting up an appointment at the Genius Bar at an apple retail store is a good option too, Call the store first though and ask what your options are in terms of warranty and service. If you are having problems with the regular iPhone 5, still call Apple Care or an Apple store and see what they can do.
    good luck!
    K?

  • Error with the Package Request while uploading epub package onto ACS4.

    Hi,
    Error with the Package Request while uploading epub package onto ACS4.
    There was an error with the Package Request::<error xmlns="http://ns.adobe.com/adept" data="E_PACK_DATABASE http://localhost/packaging/Package Incorrect%20string%20value:%20'\x92Apran...'%20for%20column%20'creato r'%20at%20row%201"/>
    Cheers
    Vikas

    See http://forums.adobe.com/thread/771689?tstart=0

  • HT1391 How can I get a full history of our purchases?  We had some problems with some downloads since 5/25/12.We were charged for items that said "Free"? Help

    How can I get a full history of our purchases?  We had some problems with some downloads since 5/25/12.We were charged for items that said "Free"? Help

    iTunes Store menu > View My Account...
    Sign in and select "See All" in Purchase History.
    You can only see them in "batches" of ten. As far as I know there is no way to obtain a comprehensive summary.
    The prices are tabulated in that list. If they were supposed to be free, and they show that you were charged, then click the arrow next to the suspect purchases and click "report a problem".

  • ICWCinternal server error:with some BP records I am getting the below error

    Hi
    When I am searching for some BP records(in ICWC) I am getting the below error
    500 SAP Internal Server Error
    Error message: Type group was changed at runtime. ( type of termination: RABAX_STATE )
    but with some records search is working successfully(some times I'm not getting the above error)
    Have any idea, regarding the above problem
    Thanks in advance
    Warm regards
    bms

    Duplicate thread :
    Re: I am getting the attached error while bringing up the Prcs Scheduler
    Nicolas.

  • Some error with owbr2 deploy a cube

    When I try to deploy a cube with rolap using "Deploy to catalog only"
    some error view
    ORA-06510: PL/SQL: exception defined by user not handled
    ORA-06512: in "OLAPSYS.CWM2_OLAP_UTILITY", line 1660
    ORA-01403: no data found
    ORA-06512: in "OLAPSYS.CWM2_OLAP_CUBE", line 33
    ORA-06512: in "OLAPSYS.CWM2_OLAP_CUBE", line 55
    ORA-06512: in "OLAPSYS.CWM2_OLAP_CUBE", line 386
    ORA-06512: in line 7
    but If I use "Deploy Data Objects only" it deploy's successfully.
    Anyone know what is the problem,how can i correct it
    Thanks

    Been there, done that. Wish they'd set the default to "deploy all"...Frustrating to use the wizard, and then have to go back in and manually edit everything to set it to "deploy all".
    Scott

  • Some errors with the code

    hello all!
    i am trying to write simple code but have some errors.
    DECLARE
    id NUMBER;
    BEGIN
    id:=SELECT id from technician where salary=(select MIN(salary) from technician);
    DBMS_OUTPUT.put_line(id);
    END;

    Your simple program becomes complex! As pointed out, it will blow up if your query returns more than one row. If you're just doodling with your code, you can add "and rownum=1" to your where clause. That will prevent the "too many rows returned" exception. Of course, it is basically randomly picking one of several values in the DB, so it's not good for production code.
    For real code, there are at least two common options:
    (1) Use your select to create a cursor, which lets you loop through each matching row. Good when multiple rows are normal and you really want to use them all.
    (2) Create an integer variable, such as row_count. Select count(*) into row_count ... from technician t where salary....
    If row_count = 1 then use the assignment you were going to do. Otherwise, stop processing and log an error (too many or too few rows returned...).
    This is good when you expect EXACTLY one technician to have that salary, and anything else is an error.
    Andy

  • Unknown Error with some exception message in BAM

    Hi all
    I'm trying to deploy orderbooking tutorial in (SOA 10.1.3.1)of BAM guide. whereas message says
    A problem occured while connecting to server "localhost" using port "8888": bpel_OrderBooking_1.0.jar failed to deploy. Exception message is: javax.transaction.RollbackException: Timed out
    i'm not able to fingd out whats the error.kindly someone revert back what may be the exception and also in pre-build.xml getting some error in ant dir saying
    Basedir C:\bb\CreditRatingService does not exist
    Kindly someone revert for this issue. Not able to complete a sample tutorial also.
    thanks in advance

    Hello- This looks like a problem deploying the BPEL side of OrderBooking tutorial. Please post your question on the BPEL email alias/forum. Your errors will be in bpel llog directory.

  • New to Solaris administration - Need some help with some issues

    Hello all,
    I am a new to Solaris administration and need some assistance with a few things. I was going to make separate posts but decided it would be easy to keep track of in one. I really do not know much about the OS but I do have a little Linux background so that might help me out. I am going to number my problems to keep them sorted, so here we go.
    The machine:
    Sunfire V880
    4x 73GB HDs
    PCI dual fiber channel host adapter
    Attached RAID array:
    Sun StorEdge T3 Array with 9x 73GB HDs
    Sun DDS4 Tape Drive in a Unipack
    OS: Solaris 5.10
    Updates: Updated everything except 2 patches (Updating is a real pain isn't it? At least it seems that way to me.)
    1. So I might as well start with the update issues! These 2 updates will not install:
    -PostgreSQL 8.2 source code, (137004-02)
    Utility used to install the update failed with exit code {0}.
    -Patch for mediaLib in solaris, (121620-03)
    Install of update failed. Utility used to install the update is not able to save files. Utility used to install the update failed with exit code 4.
    No idea why the PostgreSQL update is not working, but the medialib patch seems to not have enough hard drive space.
    2. Where are all the drives? I don't know how to find the RAID box or the other 3 internal hard drives. When I installed the OS, I think I installed it on only one hard drive and that might be part of the reason why the medialibe update above says that I don't have enough space.
    3. I probably need more space for the OS and updates, is there a way to "add" space onto the hard drive that currently is running the OS?
    3. Once I see the other hard drives I wish to combine them to make a RAID 0 and RAID 5 array, how do I go about doing that?
    4. How can I find/see the tape drive?
    5. Does my swap space really need to be 64GB? I know the book I have read suggests it, but I only made it 5GB because it didn't seem to make sense to make it 64GB.
    Thank you in advance for the help. I know these are a lot of questions to ask but please go easy on me :)
    rjbanker
    Edited by: rjbanker on Mar 7, 2008 8:21 AM

    SolarisSAinPA*
    1.
    -PostgreSQL 8.2 source code, (137004-02)
    Utility used to install the update failed with exit code {0}.
    Exit code 0 means there were no errors. When you run showrev -p 137004-02, does your system show that the patch is installed? You can check the log for a particular patch add attempt in /var/sadm/patch/+patch_num_rev+1- A bunch of stuff shows up, here is a portion (I am not entirely sure what it means, there must be a least a page of stuff like this):
    Patch: 121081-08 Obsoletes: Requires: 121453-02 Incompatibles: Packages: SUNWc cccrr, SUNWccccr, SUNWccfw, SUNWccsign, SUNWcctpx, SUNWccinv, SUNWccccfg, SUNWcc fwctrl
    Patch: 122231-01 Obsoletes: Requires: 121453-02 Incompatibles: Packages: SUNWc ctpx
    Patch: 120932-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcctpx
    Patch: 123123-02 Obsoletes: Requires: Incompatibles: Packages: SUNWccinv
    Patch: 121118-12 Obsoletes: Requires: 121453-02 Incompatibles: Packages: SUNWc smauth, SUNWppror, SUNWpprou, SUNWupdatemgru, SUNWupdatemgrr, SUNWppro-plugin-su nos-base
    2.
    Where are all the drives? I don't know how to find the RAID box or the other 3 internal hard drives. When I >installed the OS, I think I installed it on only one hard drive and that might be part of the reason why the >medialibe update above says that I don't have enough space.
    When you run format command, how many drives are listed? Identify your root drive (compare with output of df command you ran earlier) Please post here.2. Output of df-hk, looks like I ran out of room. Should I just go ahead and reinstall the OS?
    Filesystem size used avail capacity Mounted on
    /dev/dsk/c1t0d0s0 5.9G 5.4G 378M 94% /
    /devices 0K 0K 0K 0% /devices
    ctfs 0K 0K 0K 0% /system/contract
    proc 0K 0K 0K 0% /proc
    mnttab 0K 0K 0K 0% /etc/mnttab
    swap 42G 1.3M 42G 1% /etc/svc/volatile
    objfs 0K 0K 0K 0% /system/object
    /platform/sun4u-us3/lib/libc_psr/libc_psr_hwcap1.so.1
    5.9G 5.4G 378M 94% /platform/sun4u-us3/lib/libc_psr.so.1
    /platform/sun4u-us3/lib/sparcv9/libc_psr/libc_psr_hwcap1.so.1
    5.9G 5.4G 378M 94% /platform/sun4u-us3/lib/sparcv9/libc_psr.so.1
    fd 0K 0K 0K 0% /dev/fd
    swap 42G 1.1M 42G 1% /tmp
    swap 42G 32K 42G 1% /var/run
    /dev/dsk/c1t0d0s7 46G 47M 46G 1% /export/home
    3. So I guess the general consensus is to reinstall the OS, is that correct?
    4. There is nothing in \dev\rmt, and unfortunately I don't have a tape to test it with!
    5. I guess 5GB will be ok for what we do.
    Alan.pae*
    1. I think the above text might explain why it failed, although I don't know how to correct it.
    2. Output of format:
    # mount
    / on /dev/dsk/c1t0d0s0 read/write/setuid/devices/intr/largefiles/logging/xattr/onerror=panic/dev=1d80008 on Mon Mar 10 10:56:51 2008
    /devices on /devices read/write/setuid/devices/dev=4dc0000 on Mon Mar 10 10:56:19 2008
    /system/contract on ctfs read/write/setuid/devices/dev=4e00001 on Mon Mar 10 10:56:19 2008
    /proc on proc read/write/setuid/devices/dev=4e40000 on Mon Mar 10 10:56:19 2008
    /etc/mnttab on mnttab read/write/setuid/devices/dev=4e80001 on Mon Mar 10 10:56:19 2008
    /etc/svc/volatile on swap read/write/setuid/devices/xattr/dev=4ec0001 on Mon Mar 10 10:56:19 2008
    /system/object on objfs read/write/setuid/devices/dev=4f00001 on Mon Mar 10 10:56:19 2008
    /platform/sun4u-us3/lib/libc_psr.so.1 on /platform/sun4u-us3/lib/libc_psr/libc_psr_hwcap1.so.1 read/write/setuid/devices/dev=1d80008 on Mon Mar 10 10:56:50 2008
    /platform/sun4u-us3/lib/sparcv9/libc_psr.so.1 on /platform/sun4u-us3/lib/sparcv9/libc_psr/libc_psr_hwcap1.so.1 read/write/setuid/devices/dev=1d80008 on Mon Mar 10 10:56:50 2008
    /dev/fd on fd read/write/setuid/devices/dev=50c0001 on Mon Mar 10 10:56:51 2008
    /tmp on swap read/write/setuid/devices/xattr/dev=4ec0002 on Mon Mar 10 10:56:52 2008
    /var/run on swap read/write/setuid/devices/xattr/dev=4ec0003 on Mon Mar 10 10:56:52 2008
    /export/home on /dev/dsk/c1t0d0s7 read/write/setuid/devices/intr/largefiles/logging/xattr/onerror=panic/dev=1d8000f on Mon Mar 10 10:56:57 2008
    3. Judging by the above text I will be doing a reinstall huh?
    4. Actually I am not familiar with tape backups let alone solaris backup apps! Any suggestions? (Preferably free, have to cut down on costs.)
    5. No comment
    Thanks for the help, hope to hear from you again!
    rjbanker

  • [Solved]Error with installing package: /usr/lib64 exists in filesystem

    So i know there are other posts about this and i have read them and I have also read the wiki https://wiki.archlinux.org/index.php/De … _in_.2Flib and also this forum post https://bbs.archlinux.org/viewtopic.php?id=156942
    the error i get when trying to install a package from the AUR
    error: failed to commit transaction (conflicting files)
    hp-health: /usr/lib64 exists in filesystem
    Errors occurred, no packages were upgraded.
    I tried to find who owned the files/package in the /lib by the following commands
    $ grep '^lib/' /var/lib/pacman/local/*/files
    $ find /lib -exec pacman -Qo -- {} +
    the output was
    /lib is owned by filesystem 2015.02-1
    Im confused what to do at this point as the wiki that I linked above says
    If any package apart from glibc is listed as owning a file, that package needs to be updated to install its files in /usr/lib
    Last edited by PigsInSpace (2015-03-01 02:25:24)

    You are following directions for a file conflict with /lib for a very specific one-time manual intervention, but you don't have that file conflict according to the error message you posted and it is not for that intervention.  See this instead: https://wiki.archlinux.org/index.php/Pa … 9.22_error then report the error on the aur page for that package.
    This fixes it:
    package() {
    cd "$srcdir"
    + mv usr/lib64 usr/lib
    cp -a opt usr var "$pkgdir"

  • Still receiving errors with CC packager

    I'm still receiving the following: "An error has occured during download. Please try again later." message when attempting to download apps for a package.
    Am using version 1.1.

    Every time I log in CCdesktop and I try open new app (acrobat or IDCC or illus) AAM appear on desktop saying to accept condition, after that ask me again log in and finally the message below forces me to exit...
    Error
    There was an error with this action. Try again later.
    0a9b7a44-f310-410e-bf68-32915b0f43d7
    It's very a big problem this upadte!

  • An error with the 7.7 ODBC on the Linux

    Dear Gentlmen,
    I have some problems with a new version (7.7.06.09) of the MaxDB database.
    My application is a web application on the ExtJSApachePHPZendFrameWorkMaxDB platform.
    The MaxDB and other parts are installed on the  Fedora Core Linux  server.
    The PHP is connecting to the MaxDB via ADO+unixODBC interfaces (unixODBC 2.2.14).
    I had no problems with the 7.6 version of the database.
    But, the problems are appear then I was install the 7.7 version.
    A sample query for  selecting all children for the current parent have an error now.
    In my PHP application I have no answer from the database. If I execute this query
    via isql program (DSN with 7.7 ODBC) (from unixODBC) then I see a segmentation fault error.
    But, if I connect to the MaxDB 7.7 via  ODBC 7.6 driver (from Version = 7.6.06 Build 003-121-202-135)
    I have no problem in my PHP application and isql too.
    If I execute this query from another computer with Database Studio and Winodws, I have no error too.
    Install info:
    INSTALLER_INFO: Version = 7.7.06 Build 009-121-202-944
    INSTALLER_INFO: Changelist = 202944
    INSTALLER_INFO: MakeId = 360684
    INSTALLER_INFO: Type = kit
    SYS_INFO: Host name = myhost.com
    SYS_INFO: System = Linux
    SYS_INFO: Architecture = I386
    SYS_INFO: Version = 2.6.15
    SYS_INFO: Subversion = 1.2054_FC5smp
    SYS_INFO: C Runtime = GLIBC 2.4
    /root/.odbc.ini
    [DSN6]                                                                               
    ServerDB=NTL                                                                               
    ServerNode=127.0.0.1                                                                               
    Driver=/opt/sdb/interfaces/odbc/lib/libsqlod.so                                                                               
    [DSN7]                                                                               
    ServerDB=NTL                                                                               
    ServerNode=127.0.0.1                                                                               
    Driver=/opt/sdb/programs/lib/libsdbodbc.so  
    table fr_form
    create table "NADMIN"."FR_FORM"(
         "ID" FIXED (10) not null default SERIAL (1),
         "ID_TYPE" INTEGER not null,
         "ID_GROUP" INTEGER,
         "ID_USER" INTEGER not null,
         "ID_PARENT" INTEGER,
         "SORTORDER" INTEGER default          10,
         "PNAME" VARCHAR (36) ASCII,
         "NAME" VARCHAR (512) ASCII,
         "REMARK" VARCHAR (1024) ASCII,
         "RVALUE" VARCHAR (1024) ASCII,
         "ISARCH" INTEGER default           0,
         "ISCPAQ" INTEGER,
         "RCOUNT" INTEGER,
         "ISSUBACCESS" INTEGER,
         "SUBTYPE" INTEGER default           0,
         "ISNUMBER" INTEGER default           0,
         "IS_HAVE_CHILD" SMALLINT default      0,
    constraint SYSPRIMARYKEY primary key ("ID"),
         foreign key "SYS_USER_FR_FORM" ("ID_USER") references "NADMIN"."SYS_USER" ("ID") on delete restrict,
         foreign key "FR_FORM_FR_FORM" ("ID_PARENT") references "NADMIN"."FR_FORM" ("ID") on delete restrict,
         foreign key "FR_GROUP_FR_FORM" ("ID_GROUP") references "NADMIN"."FR_GROUP" ("ID") on delete restrict,
         foreign key "FR_TYPE_FR_FORM" ("ID_TYPE") references "NADMIN"."FR_TYPE" ("ID") on delete restrict)
    The query for selecting all children for the current parent with id = 1244
    declare c cursor for with recursive tree (node_name, node_id, node_id_parent, node_level)
    as ( select name, id, id_parent, 0
    from fr_form where id = 1244
    union all select name, id, id_parent, node_level+1
    from fr_form, tree where tree.node_id = fr_form.id_parent)
    select node_id from tree order by node_level desc
    The ODBC trace file
    SQLGetFunctions 2009-03-17 13:35:55.322085                                                                               
    ConnectionHandle [in]    : 0x92b8e7a                                                                               
    FunctionId       [in]    : unknown function id: 23                                                                               
    SupportedPtr     [out]   : 1                                                                               
    SQLRETURN                : SQL_SUCCESS                                                                               
    SQLGetFunctions 2009-03-17 13:35:55.322111                                                                               
    ConnectionHandle [in]    : 0x92b8e7a                                                                               
    FunctionId       [in]    : SQL_API_SQLGETDIAGREC                                                                               
    SupportedPtr     [out]   : 0                                                                               
    SQLRETURN                : SQL_SUCCESS                                                                               
    SQLGetInfo 2009-03-17 13:35:55.322147                                                                               
    ConnectionHandle [in]    : 0x92b8e7a                                                                               
    InfoType         [in]    : SQL_DRIVER_ODBC_VER                                                                               
    BufferLength     [in]    : 20                                                                               
    enc                      : ASCII                                                                               
    InfoValuePtr     [out]   : 03.51                                                                               
    StringLengthPtr  [out]   : (null)                                                                               
    SQLRETURN                : SQL_SUCCESS                                                                               
    SQLGetDiagRec 2009-03-17 13:35:55.322215                                                                               
    HandleType       [in]    : SQL_HANDLE_DBC                                                                               
    Handle           [in]    : 0x92b8e7a                                                                               
    RecNumber        [in]    : 1                                                                               
    BufferLength     [in]    : 512                                                                               
    enc                      : ASCII                                                                               
    SQLRETURN                : SQL_NO_DATA                                                                               
    SQLRETURN                : SQL_NO_DATA                                                                               
    SQLAllocHandle 2009-03-17 13:36:09.768751                                                                               
    HandleType       [in]    : SQL_HANDLE_STMT                                                                               
    InputHandle      [in]    : 0x92b8e7a                                                                               
    OutputHandlePtr  [out]   : &(0x92c0290)                                                                               
    SQLRETURN                : SQL_SUCCESS                                                                               
    SQLPrepare 2009-03-17 13:36:09.768863                                                                               
    StatementHandle  [in]    : 0x92c0290                                                                               
    StatementText    [in]    : 'declare c cursor for with recursive tree (node_name, node_id, node_id_parent, node_level) as ( select na
    m fr_form where id = 1244 union all select name, id, id_parent, node_level+1 from fr_form, tree where tree.node_id = fr_form.id_\  
    parent) select node_id from tree order by node_level desc '                                                                        
    TextLength       [in]    : SQL_NTS                                                                               
    enc                      : ASCII                                                                               
    ::PARSE 'SQLCURS_2' 2009-03-17 13:36:09.769094 [0x0x92da5f8]                                                                       
    SQL COMMAND:'declare c cursor for with recursive tree (node_name, node_id, node_id_parent, node_level) as ( select name, id, id_pare
    m fr_form where id = 1244 union all select name, id, id_parent, node_level+1 from fr_form, tree where tree.node_id = fr_form.id_\  
    parent) select node_id from tree order by node_level desc '                                                                        
    ^                                                                               
    <CURRENT WRITE POSITION>.
    Pavel

    SQL Studio 7.6.0.21, Windows XP, mode Internal.
    1) If not empty result set - result OK
    2) If empty result set (condition with ID is not in table) - result OK (null)
    SAP MaxDB Database Studio7.7.06.09, Build: 009-123-202-944
    1) If not empty result set - result error: Error Executing 'declare c cursor for with recursive tree (node_name, node_id, node_id_parent, node_level) as ( ...' [-4000]: Unknown result table.
    2) If empty result set (condition with ID it not in table) - result: Statement 'declare c cursor for with recursive tree (node_name, node_id, node_id_parent, node_level) as ( ...' successfully executed in 0 ms.  - No result
    BUT, if I set the SQL mode to the Oracle mode, then the query is executed OK:
    Statement 'declare c cursor for with recursive tree (node_name, node_id, node_id_parent, node_level) as ( ...' successfully executed in 0 ms.
    Regards Pavel

  • PPR error with some components

    Hi I am doing some custum validation in my backing bean using PPR and when trying to refresh my message component I get the following error:
    [STDERR] Nov 30, 2006 9:07:58 AM oracle.adfinternal.view.faces.renderkit.core.ppr.PPRResponseWriter$PPRTag finish
    WARNING: No PPR-capable id found for elements of CorePanelLabelAndMessage[UIXFacesBeanImpl, id=mesL2]
    this is what I do:
    <af:panelLabelAndMessage for="prueba" label="Prueba2" id="mesL2" binding="#{validation.mesL2}" partialTriggers="prueba" messageType="error">
    <af:inputText required="true" id="prueba" autoSubmit="true" valueChangeListener="#{validation.valueChanged}" />
    </af:panelLabelAndMessage>
    I also tried this way:
    <af:inputText id="prueba3" autoSubmit="true" valueChangeListener="#{validation.valueChanged}" />
    <af:message id="mes2" binding="#{validation.mes2}" for="prueba3" partialTriggers="prueba3"/>
    My backing bean:
    public class ValidationBean implements Serializable {
    private CoreMessage mes2 = new CoreMessage();
    private CorePanelLabelAndMessage mesL2 = new CorePanelLabelAndMessage();
    public void valueChanged(ValueChangeEvent vce) {
         UIComponent component = vce.getComponent();
         Map<String, Object> attributes = new HashMap();
         attributes = component.getAttributes();
         mes2.setMessage("mensaje 2");
         mesL2.setMessage("mensaje Lbl2");
    When I use an OutputText instead of the message component I get the desired result... So I can't use PPR with messages???
    thanks for ur help!
    T.

    Hi I am doing some custum validation in my backing bean using PPR and when trying to refresh my message component I get the following error:
    [STDERR] Nov 30, 2006 9:07:58 AM oracle.adfinternal.view.faces.renderkit.core.ppr.PPRResponseWriter$PPRTag finish
    WARNING: No PPR-capable id found for elements of CorePanelLabelAndMessage[UIXFacesBeanImpl, id=mesL2]
    this is what I do:
    <af:panelLabelAndMessage for="prueba" label="Prueba2" id="mesL2" binding="#{validation.mesL2}" partialTriggers="prueba" messageType="error">
    <af:inputText required="true" id="prueba" autoSubmit="true" valueChangeListener="#{validation.valueChanged}" />
    </af:panelLabelAndMessage>
    I also tried this way:
    <af:inputText id="prueba3" autoSubmit="true" valueChangeListener="#{validation.valueChanged}" />
    <af:message id="mes2" binding="#{validation.mes2}" for="prueba3" partialTriggers="prueba3"/>
    My backing bean:
    public class ValidationBean implements Serializable {
    private CoreMessage mes2 = new CoreMessage();
    private CorePanelLabelAndMessage mesL2 = new CorePanelLabelAndMessage();
    public void valueChanged(ValueChangeEvent vce) {
         UIComponent component = vce.getComponent();
         Map<String, Object> attributes = new HashMap();
         attributes = component.getAttributes();
         mes2.setMessage("mensaje 2");
         mesL2.setMessage("mensaje Lbl2");
    When I use an OutputText instead of the message component I get the desired result... So I can't use PPR with messages???
    thanks for ur help!
    T.

  • I have some problems with keyword "package"...

    I am studing Java, and studing package now. I created 2 files to try the package concept, but I met some runtime errors, although I don't think that it has anything wrong. Does anyone can pointed out where is wrong in my code?
    //============== file 1: Mainfun.java which is at com/dancefires/c05/q2/ directory =========
    package com.dancefires.c05.q2;
    public class Mainfun{
         //friendly function
         void state(){
              System.out.println("This the Mainfunction");
         public static void main(String[] args){
              System.out.println("Main function begin:");
              Subfun sf = new Subfun();
              sf.state();
    //========= File 2: Subfun.java at the same directory ========
    package com.dancefires.c05.q2;
    public class Subfun{
         //friendly function
         void state(){
              System.out.println("This is Subfun.");
         public static void main(String[] args){
              Mainfun mf = new Mainfun();
              mf.state();
    If i run any of them, I will get the error strings:
    Exception in thread "main" java.lang.NoClassDefFoundError: Mainfun (wrong name:
    com/dancefires/c05/q2/Mainfun)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:502)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:12
    3)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:250)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:54)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:193)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:186)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:265)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:315)
    If I remove the first line, which is "package com.dancefires.c05.q2", the 2 file will run well. But why I can't use package to state that they are in the same package? or I have something wrong with these 2 program?

    I found what is the problem. There is nothing wrong with my code, but something wrong with my way of running command of "java".
    I run it in command line by command "java" as:
    java Mainfun
    and
    java Subfun
    This is ok for class file without package statement. But if I put keyword "package" at the top of the file, I must run it change its way. I should run it as:
    java com.dancefires.c05.q2.Mainfun
    and
    java com.dancefires.c05.q2.Subfun
    and I found that I can run these classes at any where no matter which directory my current directory is.
    Thanks for everyone.

  • Whay am I having script errors with some of my websites only on Firefox, not other browsers, causing the computer to freeze for a bit at a time.

    I keep getting "script" errors and my computer locking up while using Mozilla Firefox on some of my websites. I don't have this problem while using Internet Explorer. Why has this just started and how can I resolve this? I like Firefox, but will have to start using a different browser if this doesn't get resolved.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

Maybe you are looking for