Warning message on Sun Enterprise E3500

Hi,
Does anyone knows what the error below means?
Feb 27 09:03:06 oracle unix: WARNING: /sbus@2,0/SUNW,socal@d,10000/sf@0,0/ssd@w2
1000004cf6850f6,0 (ssd11):^M^M
Feb 27 09:03:06 oracle unix:    Error for Command: write(10)               Error
Level: Informational
Feb 27 09:03:06 oracle unix:    Requested Block: 4345945                   Error
Block: 4345945^M
Feb 27 09:03:06 oracle unix:    Vendor: SEAGATE                            Seria
l Number: 0203P1249Q  ^M
Feb 27 09:03:06 oracle unix:    Sense Key: Soft Error^M
Feb 27 09:03:06 oracle unix:    ASC: 0x5d (drive operation marginal, service imm
ediately (failure prediction threshold exceeded)), ASCQ: 0x0, FRU: 0x43^MThank you.

The log entry explains itself:
" +drive operation marginal, service immediately+ "
" +failure prediction threshold exceeded+ "
You have a disk that is about to fail because of unwritable blocks.
Replace it.

Similar Messages

  • DropDown component warning message - please help?

    Hi,
    I am using a DropDown component on my page. The issue is that the contents of the component are set based on another selection on the page.
    So when the user makes a selection that changes the contents of the DropDown widget ( by calling defaultOptions.setOptions( options[ ]) I get the following warning message:
    "com.sun.rave.web.ui.component.DropDown::The current value of component form1:dropDown does not match any of the selections.
    Did you forget to reset the value after changing the options?"
    Anyone know a way that I can get rid of the warning? I tried disabling the component and setting the selected value to null.
    thanks,
    jj

    Microsoft Windows XP Home Edition Service Pack 2 (Build 2600)
    Dell Inc. Inspiron 6000
    iTunes 6.0.2.23
    CD Driver 2.0.4.3
    CD Driver DLL 2.0.3.2
    LowerFilters: Cdr4_xp (6.1.1.17),
    UpperFilters: Cdralw2k (6.1.1.17), pwd_2k (6.1.1.18),
    Video Driver: Mobile Intel(R) 915GM/GMS,910GML Express Chipset Family\Intel(R) 915GM/GMS,910GML Express Chipset
    IDE\DiskHTS548060M9AT00_______________________MGBOA5EA, Bus Type ATA, Bus Address [0,0]
    IDE\CdRomTSSTcorpCDRW/DVD_TSL462C_______________DE01___, Bus Type ATA, Bus Address [0,0]
    If you have multiple drives on the same IDE or SCSI bus, these drives may interfere with each other.
    Some computers need an update to the ATA or IDE bus driver, or Intel chipset. If iTunes has problems recognizing CDs or hanging or crashing while importing or burning CDs, check the support site for the manufacturer of your computer or motherboard.
    Current user is administrator.
    Failed loading CD / DVD drives, error -43. Try doing a repair install on iTunes from the "Add or Remove Programs" control panel.
    The last failed audio CD burn had error code -128(0xffffff80). It happened on drive on -128(0xffffff80) media at speed 0X.
    okay thats what i got when i hit the CD diagnostics. hope that helpss!

  • No Sun Studio 12 warning message for bitfield sizes?

    Hi,
    Does Sun Studio 12 support GCC bitfield sizes?
    The FAQ for version 11 (http://www.genunix.org/wiki/index.php/Sun_and_GCC_Compiler_Portability) specifially says Sun Studio does not support it. But I do not get any warning message, with any version I have tested (10 & 12). Am I missing some compiler flag or is the C compiler just silently ignoring those?
    Thanks!

    ok I have just found that the -Xc option gives me the following warning:
    warning: nonportable bit-field type
    Does that mean that the compiler is understanding this, but just warning me that this is not portable across different platforms? This would be acceptable in my case...
    Thanks!

  • How to suppress distibution certificate expiration warning messages?

    We have an enterprise license and distribute internal apps using a distribution provisioning profile.  We've updated the distribution certificate to be valid for 2013, but continue to get the pop-ups about the expiring certificate on the employees iPads.  
    Is there a way to prevent the pop-ups for expiring certificates?
    Thanks
    TK_digi

    Hi
    Answer is pure assumption.
    Pls check the following OSS notes
    Note 319094 - Warning message during batch classification in IM
    Note 122937 - UD: Error message M7207 when you save
    Note 399416 - Message M7207 not analyzed in background
    Note 786755 - You cannot suppress message M7 207
    Note 201196 - MIGO: Error M7207 for goods receipt for batch
    Pls take opinion from SAP / Basis before implementing the OSS note
    Regards
    Madhan D

  • Warning message #368

    I use MenuItem.enable( true ) in my source. When I compile it, the warning message shows.
    Though it said the enable method has been deprecated, I can run the application and with nothing wrong. The menu item can be enabled and disabled.
    Whether this method can use or not?
    message detail***********************************************
    "mainFrame.java": Warning #: 368 : method enable(boolean) in class java.awt.MenuItem has been deprecated at line 495, column 21
    message detail***********************************************

    It can be used but it's not recommended to use it.
    The API documentation of that method indicates gives you the recommended way.
    http://java.sun.com/j2se/1.3/docs/api/java/awt/MenuItem.html#enable()

  • Solaris 10 x86: Update Manager quit working and shows empty warning message

    All,
    A little while ago my Update Manager stopped working. When I check for updates, I am getting an empty warning message box that has literally no text but only a yellow triangle with an exclamation mark in the upper left corner and an ok button.
    Once confirmed, nothing happens. Googled the issue but so far no luck.
    Any hints?
    Thanks
    GS

    Had the same problem. Look here:
    http://forums.sun.com/thread.jspa?threadID=5348727
    Hope that helps!
    Jeremy

  • Unchecked or unsafe warning message

    Hi,
    I am getting the following warning message:
    Note: ........ uses unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details
    The following is the part of the class thats creating it, the line in bold is the line causing the warning :
    public class MyPanel extends JPanel
    //player field
    private Player player;
    //game rooms field
    private ArrayList<Room> rooms;
    * Constructor for objects of class MyPanel
    public MyPanel(Player player, ArrayList rooms)
    super();
    setBackground(Color.GRAY);
    setPreferredSize(new Dimension(240, 320));
    this.player = player;
    this.rooms = new ArrayList<Room>(rooms);
    * Paint the panel.
    public void paintComponent(Graphics g)
    //other code
    Please can anyone help.
    Thanks!

    public MyPanel(Player player, List<? extends Room> rooms)
    // etcThis code is less restrictive, increase the possibilities of the code. Using restricted wildcards you let pass as parameter a list of subclasses of a class, see how the JDK API use this, for example, look the addAll method of Collection:
    http://java.sun.com/javase/6/docs/api/java/util/Collection.html&#35;addAll&#40;java.util.Collection&#41;
    This method guarantees that objects introduced are valids, but doesn't oblige to collection container be typed as Collection type. In addiction, constructors of ArrayList, LinkedList, etc, have a constructor of this form. You can use furthermore a declaration of Collection of Iterable, but it can be dangerous, because if in the future you want to share the reference passed as parameter and the property of the class, you can't do it. You must see what use will have the class more ahead

  • Sun Enterprise Server 8 - Web application error

    If you can help, I can be satisfied. When I try to deploy a .war file I always get this error in the following.
    <--
    A "com.sun.enterprise.tools.guiframework.exception.FrameworkException" was caught. The message from the exception: "java.lang.reflect.InvocationTargetException while attempting to process a 'error' event for 'deployWebModule'."
    The root cause is "javax.management.AttributeNotFoundException: id"
    See the HTML source for more detailed (stack trace) information.
    -->
    It is also accured while enterprise application deployment.
    What does it mean or what could I do recently?

    Just try to give few step into error checking debug logs and check where the error is....
    I find it to be an mismatch or wrong declaration of attributes and calling them...

  • Why does my iMac (on occasion) not shut down, warning message comes on saying i have to switch off by pressing and holding the power button then restart,

    Why does my iMac (on occasion) not shut down, warning message comes on saying i have to switch off by pressing and holding the power button then restart, something to do with a Panic report?
    Thanks
    Brian

    Hi mende1,
    you asked me to post the Kernal panic report then next time it appears, sorry for the delay but it was fine until yesterday when it happened again so here it is, hope you can make sense of this, thank you for your help.
    Regards
    Brian
    Interval Since Last Panic Report:  97797 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    17D8F909-09A9-4BC6-A153-A12F75529506
    Sun Jan 27 09:32:57 2013
    panic(cpu 0 caller 0xffffff80002c4794): Kernel trap at 0xffffff80002b4b31, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x00000000800a9118, CR3: 0x0000000000100000, CR4: 0x0000000000000660
    RAX: 0xffffff80008c2028, RBX: 0x00000000800a9100, RCX: 0xffffff800ae5bf00, RDX: 0x0000000000000080
    RSP: 0xffffff8078713e68, RBP: 0xffffff8078713eb0, RSI: 0x000000005aefd876, RDI: 0x00000000800a9118
    R8:  0x0000000000000010, R9:  0x0000000000000000, R10: 0xfffffe802662d000, R11: 0x00080000000263f3
    R12: 0xffffff8078713f60, R13: 0xffffff8078713f78, R14: 0x0000000000000000, R15: 0x00000000800a9118
    RFL: 0x0000000000010002, RIP: 0xffffff80002b4b31, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0x00000000800a9118, Error code: 0x0000000000000000, Faulting CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff8078713b10 : 0xffffff8000220792
    0xffffff8078713b90 : 0xffffff80002c4794
    0xffffff8078713d40 : 0xffffff80002da55d
    0xffffff8078713d60 : 0xffffff80002b4b31
    0xffffff8078713eb0 : 0xffffff80002352a5
    0xffffff8078713ec0 : 0xffffff800036489d
    0xffffff8078713ee0 : 0xffffff8000345031
    0xffffff8078713fb0 : 0xffffff8000820057
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    11G63
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
    Kernel UUID: FF3BB088-60A4-349C-92EA-CA649C698CE5
    System model name: iMac10,1 (Mac-F2268CC8)
    System uptime in nanoseconds: 1750251829240
    last loaded kext at 51464252613: com.apple.filesystems.msdosfs          1.7.1 (addr 0xffffff7f815c7000, size 57344)
    last unloaded kext at 215848970782: com.apple.driver.AppleFileSystemDriver          13 (addr 0xffffff7f825c2000, size 12288)
    loaded kexts:
    com.vmware.kext.vmnet          3.0.0
    com.vmware.kext.vmioplug          3.0.0
    com.vmware.kext.vmci          3.0.0
    com.vmware.kext.vmx86          3.0.0
    com.apple.filesystems.msdosfs          1.7.1
    com.apple.driver.AppleBluetoothMultitouch          70.12
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.iokit.IOBluetoothSerialManager          4.0.8f17
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.GeForce          7.3.2
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleHDA          2.2.5a5
    com.apple.driver.AppleMikeyDriver          2.2.5a5
    com.apple.driver.AGPM          100.12.75
    com.apple.driver.AppleBacklight          170.2.2
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.3
    com.apple.driver.ApplePolicyControl          3.1.33
    com.apple.driver.ACPI_SMC_PlatformPlugin          5.0.0d8
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.8f17
    com.apple.driver.AppleIRController          312
    com.apple.driver.AppleUSBCardReader          3.0.6
    com.apple.iokit.SCSITaskUserClient          3.2.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCISerialATAPI          2.0.3
    com.apple.iokit.IOAHCIBlockStorage          2.1.0
    com.apple.driver.AppleAHCIPort          2.3.1
    com.apple.nvenet          2.0.17
    com.apple.driver.AppleUSBHub          5.1.0
    com.apple.driver.AirPort.Atheros40          505.67.1
    com.apple.driver.AppleUSBEHCI          5.1.0
    com.apple.driver.AppleUSBOHCI          5.1.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleFWOHCI          4.9.0
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleACPIButtons          1.5
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.5
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          195.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1.4
    com.apple.security.TMSafetyNet          8
    com.apple.driver.AppleIntelCPUPowerManagement          195.0.0
    com.apple.driver.AppleBluetoothHIDKeyboard          160.7
    com.apple.driver.AppleHIDKeyboard          160.7
    com.apple.driver.AppleMultitouchDriver          231.4
    com.apple.driver.IOBluetoothHIDDriver          4.0.8f17
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.nvidia.nv50hal          7.3.2
    com.apple.NVDAResman          7.3.2
    com.apple.driver.DspFuncLib          2.2.5a5
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.AppleHDAController          2.2.5a5
    com.apple.iokit.IOHDAFamily          2.2.5a5
    com.apple.iokit.IOSurface          80.0.2
    com.apple.iokit.IOAudioFamily          1.8.6fc18
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleGraphicsControl          3.1.33
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.driver.AppleSMC          3.1.3d10
    com.apple.driver.IOPlatformPluginLegacy          5.0.0d8
    com.apple.driver.IOPlatformPluginFamily          5.1.1d6
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.8f17
    com.apple.iokit.IOBluetoothFamily          4.0.8f17
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.2.1
    com.apple.iokit.IOUSBMassStorageClass          3.0.3
    com.apple.driver.AppleUSBMergeNub          5.1.0
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.2.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.2.1
    com.apple.iokit.IOAHCIFamily          2.0.8
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.iokit.IO80211Family          420.3
    com.apple.iokit.IONetworkingFamily          2.1
    com.apple.iokit.IOUSBFamily          5.1.0
    com.apple.driver.NVSMU          2.2.9
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOFireWireFamily          4.4.8
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          177.8
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          331.7
    com.apple.iokit.IOStorageFamily          1.7.2
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.5
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4
    Model: iMac10,1, BootROM IM101.00CC.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.52f9
    Graphics: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB
    Memory Module: BANK 0/DIMM1, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    Memory Module: BANK 1/DIMM1, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.67.5-P2P
    Bluetooth: Version 4.0.8f17, 2 service, 18 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST3500418ASQ, 500.11 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: Ext HDD 1021, 0x1058  (Western Digital Technologies, Inc.), 0x1021, 0x24300000 / 3
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0x24400000 / 2
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0x26500000 / 3
    USB Device: hub_device, 0x0409  (NEC Corporation), 0x0059, 0x26400000 / 2
    USB Device: Tablet, 0x172f, 0x0037, 0x26410000 / 6
    USB Device: Mass Storage Device, 0x058f  (Alcor Micro, Corp.), 0x6362, 0x26430000 / 5
    USB Device: USB 2.0 Hub [MTT], 0x1a40  (TERMINUS TECHNOLOGY INC.), 0x0101, 0x26440000 / 4
    USB Device: JumpDrive, 0x05dc  (Lexar Media, Inc.), 0xa205, 0x26441000 / 7
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0x06110000 / 4

  • Specific warning messages per compensation plan

    Hello,
    We ahve recently installed EHP5. We are now re-implementing Enterprise Compensation Management (ECM) with the new WebDynpro ABAP MSS iViews.
    The warning messages are displayed on the top of the compensation planing iViews. Even our own messagesare displayed. The problem ist that all messages are displayed regardless of the compensation plan the manager is in. Let me give you an example:
    The Manager performs a salary increase. When an employee is already over his targeted salary, a message will be displayed "Employee is over targeted salary". This is correct.
    The problem ist when the Manager gives a bonus to this employee, the message will also be displayed. This not correct since the fact that the employee is over targedted salary is not relevant for a bonus.
    Therefore we would like to be able to categorize Messages in the portal based on which Compensation plan the manger works on.
    Any one having a solution?
    Many thanks
    Lucas

    When did you activate your iPhone?
    Depending on when you activated your iPhone within the current billing cycle, the 200 SMS messages are prorated for that period of time remaining in the billing cycle. If you activated during the 3rd week of the billing cycle for example, you don't get 200 SMS for the final week of the billing cycle. The limit would be 50 or so and if you sent/received over whatever the prorated number is for the time remaining in the billing cycle, you will be charged extra for the number of SMS over the prorated amount.
    Were you charged for each SMS or beginning after a certain number of SMS was reached?

  • Is there a way to change the Pending warning message

    I am working on an enterprise wiki site collection, and for the versioning setting i defined that the content requires approval, and any user can see the pending pages. so when users add/edit a wiki page they will get the following message at the top of
    the page:-
    so my question is how i can modify the message text, because i defined that any user can read the pending pages, so the default warning text become misleading "Visitiors can not see this page until it is approved.."?.
    so is there a way to modify the warning message ?

    Changing that message would change it everywhere in the farm, which is probably not what you want.  I would suggest creating a short JQuery script that executes on page load and swaps out the message in the DOM to what you want the message
    to say.  That way you can do it only within the context of your Enterprise WIKI.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.
    so is there any helping links to write such a jQuery ? as seems this is a bug in sharePoint , as the warning message will not be consistent with the versioning settings (if we specify to allow all users to see pending contents!!)

  • Warning message in 10g related to timestamp

    select * from v$version;
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
    PL/SQL Release 10.2.0.1.0 - Production
    create table jtime(jtime timestamp with time zone);
    create or replace procedure jtimePro as
    begin
    insert into jtime values(systimestamp);
    end jtimePro;
    Assuming I compile it via SQL Developer I get a message of
    Warning(3,28): PLW-07202: bind type would result in conversion away from column type
    I did check the return type on systimestamp it is a timestamp with time zone.
    I also different column type of just timestamp with the same warning message. Any ideas how to use a timestamp or timestamp with time zone datatype and not get a warning message?
    Also how do I see the warning messages in sql+ there is no 'show warnings'
    Thanks

    SQL> alter session set PLSQL_WARNINGS = 'enable:ALL' ;
    Session altered.
    SQL> create table jtime(jtime timestamp with time zone);
    Table created.
    SQL> create or replace procedure jtimePro as
      2  begin
      3  insert into jtime values(systimestamp);
      4  end jtimePro;
      5  /
    SP2-0804: Procedure created with compilation warnings
    SQL> show errors
    Errors for PROCEDURE JTIMEPRO:
    LINE/COL ERROR
    3/26     PLW-07202: bind type would result in conversion away from column
             type
    SQL> create or replace procedure jtimePro as
      2      dt_tz timestamp with time zone ;
      3  begin
      4      dt_tz := systimestamp ;
      5  insert into jtime values(dt_tz);
      6  end jtimePro;
      7  /
    Procedure created.
    SQL> show errors
    No errors.
    SQL>

  • To set a warning message in Sales Order for Shipping condition

    Deliveries over the weekend - if Shipping condition is the next business day, then we potentially fail.
    We need the system to warn/advise next business day to be selected since it is not going to get dispatched on that day. so whenever the delivery date is getting in any saturday & sunday as per the shipping condition, then system should give a warning message stating that Delivery is due on weekend.
    Please guide how we can implement this.

    Dear Amit,
    As i understood from your requirement is that you do not want to deliver on say saturday and sunday ( week end ) and how to control this?
    Go to SPRO -- Enterprise Structure -- Definition --  Logistics Execution -- Define, copy, delete, check shipping point -- double click on 'Define shipping point  ' -- select your shipping point -- click on details -- change your factory calender as '01'.
    Please revert , if not solved.
    saravanan

  • Failed to save deployment descriptor - cause: com.sun.enterprise.deploymen

    I have a CMP EJB that will not deploy. I've been able to compile, run the capture-schema, complete the EJBC, but then I get a failure with the message below. I have used the ASMT to migrate from Weblogic 6.1 to Sun One 7. Any help would be userful.
    ERROR:
    Deployment Error -- Error while running ejbc -- Fatal Error from EJB Compiler -- -- Failed to save deployment descriptor for: Tracker-EJB cause: com.sun.enterprise.deployment.EjbExternalDescriptor
    The exception in the admin log file really doesn't help me.
    Thanks in advance.

    Please check the xml files by running verifier. It seems like there is some problem with the sun-ejb-jar file. Check the packaging of the EJB. Set the log level to fine or above and give the log to know more details about the error.

  • GUI warning messages

    I ran a java graphic interface (developed under Sun platform)using java runtime environment versiion 1.4.0 with no runtime error, but when I ran the GUI under 1.4.1 version I got the following warning messages:
    Name: HorScrollBar
    Class: XmScrollBar
    The specified scrollbar value is greater than the maximum
    scrollbar value minus the scrollbar slider size.
    Could someone explain the warning and what the solution could be.

    This is a warning message from the X windows system. As far as I've every read or heard, it can be safely ignored.

Maybe you are looking for

  • Stale data error while submitting the form(before that opening the popup )

    I am using OAURL to open a pop-up in my oaf page passing my page to this class.And at the time of loading the base page the pop up window url is like this OA.jsp?page=/myfolder/webui/NumberColumnsPG&retainAM=Y&"+"fndOAJSPinEmbeddedMode=Y&addBreadCrum

  • Error while building development component project

    Hi all, I have created one webdynpro application in which i am importing javabean model using jars in my build path.I am able to execute that application successfully but when i try to import that application in a new development component project, i

  • Resolution issue on Panasonic Plasma HD 1080p with ATV

    With my ATV2 set to Auto resolution or 720pHD, I lose picture on the left and right of my 58" Panasonic plasma HD 1080p TV.  If I reset the resolution to 640x480, I regain the full image, but of course at lower resolution.  Apple Genius was of no hel

  • Phonetic and case insensitive searches in Oracle

    Hi, Do you know if Oracle 9i allows phonetic searches ? I've found several solutions for case insensitive searches, but I'd need phonetic searches too (like 'había' vs. 'havia' vs. 'habia', etc) Any comment would be really welcome. Thanks in advance,

  • Cannot start embedded oc4j

    I just installed oracle 9.0.2 on rh linux 8.0 - no problems. I installed jdev 9.03 and seems to work. However I cannot start the embedded oc4j server to test a quick jsp page. I get the following error: IllegalArgumentException: Signal already used b