Problem with rssutils (rss utilities)

Hello All,
I read everything on the page http://java.sun.com/developer/technicalArticles/javaserverpages/rss_utilities/ and did it as written there.
some part of the rssutils is worked but I couldnt manage to get items or images.
I checked log files and I found following errors in the stdout.log file:
INFO: items does not exist or method signature is incorrect
java.lang.NoSuchMethodException: com.sun.cnpi.rss.elements.Channel.get�tems()
INFO: image does not exist or method signature is incorrect
java.lang.NoSuchMethodException: com.sun.cnpi.rss.elements.Channel.set�mage(com.sun.cnpi.rss.elements.Image)
Im using turkish localization setting but looks like there is a problem in these class files with some turkish alphabet like "� I i �"
I think Its possible decompile classes and compile them back but Im not sure if its works or not.
is there way to handle that problem without changing the regional settings of the computer?
Thanks.

Hello Paul,
Have a look in here...
help fixed
That should get you going again.
Cheers
Ian

Similar Messages

  • Problem with loading rss feed in flash

    I wrote the following simple code to get started with loading
    rss feed:
    var document = new XML();
    document.onload = myLoadHandler;
    document.load("
    http://www.nytimes.com/services/xml/rss/nyt/Business.xml");
    trace(document.status);
    trace(document.loaded);
    trace(success.toString());
    But the result I got is always this:
    0
    false
    undefined
    It is the same even for local xml files saved in the same
    directory as the flash file.
    Could someone please help me?
    Thanks so much~

    It's necessary to discard the white spaces.
    Set the ignoreWhite property to true.
    document.ignoreWhite = true;
    Regards,
    Erick Souza | ericksouza.com

  • A problem with Static/RSS ticker

    Hello everyone!
    I have a test lab set up (DMM 5.1 and DMP-4305G, license is OK).
    I made a few presentations with Cisco Digital Media Designer that included video, text ticker and RSS ticker.
    Video works fine.
    Static text ticker almost works perfect, only i can't change the effect of text (it's alwys fadeing even if i change it to left/fight scroll).
    RSS feeds are visible in Cisco Digital Media Designer and seems to work, but when i play it on DMP, the box with rss feed is blank.
    Please, i need some advice, i tried everything i could think of...
    Best Regards,
    Ales

    Hi Aurelio,
    Thank you for your post!
    This is the rss link i am using:
    http://www.rtvslo.si/slovenija/rss
    As i said link appears to work in  Digital Media Designer.
    When scheduling the presentation to DMP i have no result.
    I tried different links. This for instance link works perfect-> http://newsrss.bbc.co.uk/rss/newsonline_world_edition/europe/rss.xml
    i also copied the source code of bbcRSS and modified it (it is attached to this post) and put it on my web server, checked it with explorer - it works;
    on Digital Media Designer the link is not reachable, please advise.
    What could be the issue? Character coding maybe?
    ( i also noticed by using static ticker that DMP-4305 can't show slovenian special characters => š č ć ž )
    Does DMP-4305 / Digital Media Designer support different character coding?
    Thanks again for you help,
    Cheers!
    Ales

  • Problems with the RSS feed for my podcast

    Hi, am very new to this so apologies if this requires a simple solution.
    I was told that to find the RSS for my podcast, I hover my cursor over the subscribe button and this will be it. When I do this I get:
    itpc://www.jilt.org.uk/publichtml/publichtml/Podcast/rss.xml
    I have tried this with itunes and it has been rejected as not working.
    Other information that might be useful for anyone trying to help is that my url is www.jilt.org.uk.
    I have entered "jilt" as the sitename on Iweb but this doesn't seem to come up anywhere.
    Am very confused by it all and would hugely appreciate any advice.

    You seem to be uploading to a server that uses a public_html folder as the root folder.
    Inside this you have a copy of the public_html folder and, inside this is a copy of your website.
    You also appear to have your files uploaded to the public_html folder because your podcast is available here....
    http://www.jilt.org.uk/Podcast/Podcast.html
    So that you don't break the RSS feed what you need to do is this:
    Publish the site to a local folder and you should get an index.html file and a folder named "jilt".
    Upload these to the top level public_html folder. Now open the site in the browser and hover over the "Subscribe" button to get the feed's URL.

  • Problems with SDN RSS Feed - part 1

    Hi all, this is the first question I have regarding the SDN RSS Feed and it's processing. I have followed Brian's weblog  'RSS = HttpClient + XML + XSLT' (link: /people/brian.mckellar/blog/2004/06/25/bsp-programming-rss-httpclient-xml-xslt). When testing this example I run into a problem when executing the following commands:
    node = element->find_from_name( name = 'creator' ).
    <blog>-creator = node->get_value( ).
    node = element->find_from_name( name = 'date' ).
    <blog>-date = node->get_value( ).
    Both values seem to be empty resulting in a HTTP_COMMUNICATION_FAILURE. When I comment these lines out the example runs correctly. Checking the actual RSS Feed, http://weblogs.sdn.sap.com/pub/q/weblog_rss_topic?x-topic=24&x-ver=1.0, there are entries for dc:creator and dc:date, so I changed my code accordingly but no success. Any idea what is causing this issue? Thanks, Tiest

    Brian, as discussed attached a test programm that shows the first error I am unable to understand.... Hope this makes it easier for you all to help me understand what is causing this issue. Thanks in advance, Tiest.
    REPORT  ZBSP_FAQ_RSSTST                                            
      DATA: url         TYPE STRING,
            http_client TYPE REF TO IF_HTTP_CLIENT,
            return_code TYPE I,
            content     TYPE STRING.
      url = 'http://weblogs.sdn.sap.com/pub/q/weblog_rss_topic?x-topic=24&x-ver=1.0'.
    url = 'http://weblogs.sdn.sap.com/pub/q/weblogs_rss?x-ver=1.0'.
      cl_http_client=>create_by_url( EXPORTING url    = url
                                     IMPORTING client = http_client ).
      http_client->send( ).
      http_client->receive( ).
      http_client->response->get_status( IMPORTING code = return_code ).
      content = http_client->response->get_cdata( ).
      http_client->close( ).
    Parse response into XML Document
      TYPE-POOLS: ixml.
      DATA: ixml          TYPE REF TO if_ixml,
            streamFactory TYPE REF TO if_ixml_stream_factory,
            istream       TYPE REF TO if_ixml_istream,
            parser        TYPE REF TO if_ixml_parser,
            document      TYPE REF TO if_ixml_document.
      IF content CS '<!DOCTYPE' AND content CS ']>'.
        DATA dummy type string.
        SPLIT content AT '<!DOCTYPE' INTO dummy content.
        SPLIT content AT ']>'        INTO dummy content.
      ENDIF.
      ixml     = cl_ixml=>create( ).
      streamFactory = ixml->create_stream_factory( ).
      istream  = streamFactory->create_istream_cstring( content ).
      document = ixml->create_document( ).
      parser   = ixml->create_parser( stream_factory = streamFactory
                                     istream         = iStream
                                     document        = document ).
      parser->set_normalizing( ).
      parser->set_validating( mode = if_ixml_parser=>co_no_validation ).
      parser->parse( ).
    Define table for BSP Output
      TYPES: BEGIN OF t_blog,
                title          TYPE string,
                link           TYPE string,
                description    TYPE string,
                creator        TYPE string,
                date           TYPE string,
             END OF t_blog,
             t_blogs TYPE TABLE OF t_blog.
      DATA:          blogs type t_blogs.
      FIELD-SYMBOLS: <blog> type t_blog.
    - Find all the <item> tags                                           -
      DATA:  collection      TYPE REF TO if_ixml_node_collection,
             node            TYPE REF TO if_ixml_node,
             element         TYPE REF TO if_ixml_element,
             index           TYPE i.
      collection = document->get_elements_by_tag_name( name = 'item' ).
      WHILE index < collection->get_length( ).
        APPEND INITIAL LINE TO blogs ASSIGNING <blog>.
        node     = collection->get_item( index ).
        element ?= node->query_interface( ixml_iid_element ).
        index    = index + 1.
        node = element->find_from_name( name = 'title' ).
        <blog>-title = node->get_value( ).
        node = element->find_from_name( name = 'link' ).
        <blog>-link = node->get_value( ).
        node = element->find_from_name( name = 'description' ).
        <blog>-description = node->get_value( ).
    <b>- Activating these two lines results in a shortdump, no idea what is causing this problem -</b>
        node = element->find_from_name( name = 'creator' ).
        <blog>-creator = node->get_value( ).
        node = element->find_from_name( name = 'date' ).
        <blog>-date = node->get_value( ).
      ENDWHILE.
      LOOP AT blogs ASSIGNING <blog>.
        write: / 'title:',       14 <blog>-title.
        write: / 'link:',        14 <blog>-link.
        write: / 'description:', 14 <blog>-description.
        write: / 'creator:',     14 <blog>-creator.
        write: / 'date:',        14 <blog>-date.
        write: /.
      ENDLOOP.
    Message was edited by: Tiest van Gool

  • Problem with my "HELP" utilities

    any time i try to open a help box (in any app) it takes forever, sometimes 5 - 10 minutes to open. what's up with this?

    Hello Paul,
    Have a look in here...
    help fixed
    That should get you going again.
    Cheers
    Ian

  • I have read up, and am still having problems with RSS Feed

    Greetings Everyone.
    I really need some help with my RSS feed before I go insane. I would like to think I know what I am doing, but obviously there is some little (or big!) step I am overlooking.
    Ok here is my site: www.drewernst.com it is hosted by asmallorange.com
    My pocast is at www.drewenst.com/podcast
    This is the rss feed iWeb generated: feed://www.drewernst.com/podcast/The%20Jeff%20and%20Drew%20Podcast/rss.xml
    Now, from everything I have read so far - it seems that as long as you get the URL right when you are publishing to a folder, iWeb should do the rest. Also, it is important to put the whole folder containing your podcast in your root web folder otherwise it breaks the feed. Both of these things I have done. (obviously not correctly, or it would be working!)
    I read Many tutorials and topics I could find about this, but it still doesn't seem to work for me. Apple suggests taking the RSS feed an pasting it into itunes under Advanced menu "subscribe to podcast" to make sure your feed is valid before submitting to itunes.
    When I do this, I get an message saying "there was a problem downloading... An unknown error occurred (-50).
    I tried using a feed validator and it came back with so many errors. I just don't know that much about RSS, but i have been working on this for about a month and it's driving me crazy. No one I have asked at the apple store has been any more helpful than to suggest I just buy a .mac account and do it from there(honestly the nerve. wink.) I don't need .mac, I have my own website.
    Thanks in advance.
    Mr. Rss Crazy,
    Drew
    Oh, I tried to be as detailed as possible but if I left anything important out, please just ask...I will be watching this like a hawk.
    iMac 2.0ghz Core 2 Duo   Mac OS X (10.4.8)  

    So, my web-host said that it's a problem with the RSS feed, not there hosting.
    They pointed me to "Feed Validator" which I looked at before. I have a lot of errors.
    http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.drewernst.com%2Fpodcast% 2FThe%2520Jeff%2520and%2520Drew%2520Podcast%2Frss.xml
    Shouldn't Garageband and iWeb have taken care of these errors. I don't even know how I would correct them. I thought this was supposed to be a 1-2-3 process, like the documentation of both programs said.
    Sorry if I sound sarcastic, I am just frustrated.
    iMac 2.0ghz Core 2 Duo   Mac OS X (10.4.8)  

  • Problem with RSS feeds in AppleMail

    If anyone can help, I would greatly appreciate it. I have several RSS feeds that come in through AppleMail. Every so often, it stops receiving all of the feeds (I get an explanation point next to the the RSS header). After a day or so, it will start receiving feeds again. I have no problem getting e-mails... just my RSS feeds. Does anyone have any ideas?
    Thanks!

    I have just experienced the same problem with RSS feeds through AppleMail. A couple of days ago (just after I had upgraded to Aperture 3 - not sure if that's relevant) the exclamation mark appeared next to all the Mailboxes for my RSS feeds, and has not disappeared. If I click on the exclamation mark I get the message "there was an error updating the RSS feed 'Apple Hot News'. The RSS feed is temporarily unavailable because an internal error occurred".
    I have tried shutting down, and deleting the RSS plist - with no effect.
    Other details - the problem exists on a MacBook Pro, running Sno (v 10.6.2 - all updates applied) and Apple Mail v4.2. I can send / receive regular email. I also have an iMac (also running Sno 10.6.2 and Apple Mail v4.2) - RSS feeds work fine on this machine. Both machines use the same wireless broadband router.
    Grateful for any help. Thanks

  • MacBook will not start. I have restarted with original CD. I have used Utilities and "no problem" with hard drive. I have reset PRAM. I have tried safe boot. Nothing is work. Gray screen with Apple logo and rotating wheel. Thanks for any suggestions!

    MacBook will not start. I have restarted with original CD. I have used Utilities and "no problem" with hard drive. I have reset PRAM. I have tried safe boot. Nothing is work. Gray screen with Apple logo and rotating wheel. Thanks for any suggestions!

    Snow Leopard is a Mac OS X version. You say that it's the version you have in your Mac (10.6.8). Do a back up of your files, format the hard drive (using Disk Utility) and reinstall again

  • I am having problems with my 3D preferences, all I can see is "Get more content" and " 3D Print Utilities"

    I am having problems with my 3D preferences, all I can see is "Get more content" and " 3D Print Utilities"

    That means either your graphics card does not support 3D or that there is a problem with your graphics drivers. See if your GPU maker has an update.
    Error: "Graphics hardware not officially supported for 3D" | Photoshop CC, 13.1

  • Steps to troubleshoot and get past common problems with Audition

    When you encounter a problem with Audition, the following steps are often useful for getting past the problem and/or determining the cause of the problem:
    1.  Hold down SHIFT while you launch Audition
         This overrides the preference files and launches Audition using the default settings.
    2.  Manually rename or delete the preferences folder
         Step 1 only overrides certain preference files, while others such as Workspace preference files, may be the cause of the problem.  Depending on your OS, locate the "5.0" folder in the location below and rename it or delete it.
         Windows XP: C:\Document and Settings\<username>\Application Data\Adobe\Audition\5.0\
         Windows Vista/7: C:\Users\<username>\AppData\Roaming\Adobe\Audition\5.0\ *
         Mac OS X: ~\Library\Preferences\Adobe\Audition\5.0\ **
              * "AppData" may be a hidden folder.  You can type it into the location bar, or enable "Show Hidden Files" in Windows.
              ** This is your user-level Library folder, not the system-level tree.
    3. Check your Audition Log.txt file
         To enable a log file with CS 5.5, you must create an empty file in your preferences folder called "Audition Log.txt" using notepad, text edit, or any other editor.  After you create this file, launch Audition and if it fails, open and/or share the log file for more specific information about what's happening.
    4. Check the Operating System console or error log
         Both OS X and Windows can track application errors, and if the problem is occurring outside of the application code - a driver conflict, for example - then the OS error report may be more informative than what we can get from the application.
         OS X: launch /Applications/Utilities/Console.app   Clear the view, then launch Audition and note any error messages that appear.
         Windows: launch Control Panel > Administrative Tools > Event Viewer > Windows Logs > Application then launch Audition and note any error messages that appear.
    5. Re-install Audition
         If at this point, nothing has resolved the issue or the error logs are inconclusive, it's a good time to uninstall Audition, reboot, and reinstall Audition.
    6. Obtain the full crash dump and send it to the Adobe team
         So you've walked through all the above steps, you've disconnected any external hardware interfaces to rule out any device or driver conflicts, and you've exhausted the basic troubleshooting steps.  Visit http://forums.adobe.com/thread/900619 and follow the steps for your OS that Charles has documented to best obtain a full crash memory dump for Audition, and send that to [email protected] with a description of the problem and the steps you've taken, and we'll take a look. 

    Firstly yes these are common problems and secondly hopefully they will be fixed with updated software 2.1 which is due for release this coming Firday!

  • Problems with quick time and phone

    hi guys
    im having problems with my quicktime media player where if i want to open or play a movie it says it doesnt support the file but if i open it up on a different media playr such as vlc it does.
    also this problem arises as ive got a new mobile phone which is the k800i model which is only compatible and opens up movies in quicktime player only but when i download them on to my phoone they wont open saying error.
    can anybody help me out coz ive just bought a momoery card for my phone and i would like to put some vidoes on it but it wont let me.

    The printing software doesn't use Java (in any way). It does require QuickTime but version 10.2 is installed on your machine.
    Maybe it wants an older version?
    http://support.apple.com/kb/DL923?viewlocale=en_US&locale=en_US
    QuickTime Player 7 installs in the Utilities folder and you can use both versions on your machine.

  • Problems with DVD Player 3.0.1 in G4/466

    Problems with DVD Player in G4/466
    Yes, I've a g4/466 with two disks. In the first there's system 9.2.2 and the DVD player goes perfect. In the second I've system 10.2 and the 9.2, and the DVD Player (3.0.1) on the system 10 begins to jump in the dock, but stop and nothing happens, I can't open it...
    There's any way to reinstal it form system disks???
    Or any download to check the error?
    Thanks

    1. Try using Pacifist to extract it from your Mac OS X 10.2 installation disks, and then run the combo updater for your version of Mac OS X and any applicable DVD Player updates.
    2. Open the Console application in the /Applications/Utilities/ folder and look for lines relating to the DVD Player.
    (18543)

  • Problem with install TestDrive 2004 on Suse 9.1

    I have problems with try install SAP NetWeaver 04 TESTDRIVE 2004 on Suse 9.1
    The sapdb-db-files-7.5-2.i386.rpm say this.
    error: unpacking of archive failed on file /sapdb/NW4/sapdata/DISKD0001;45e6dbc9: cpio: symlink failed - Imput/output error
    The partition have 25GB free
    I hope help
    Best Regards
    Alejandro.

    Natalia
    the dbmcli -d NW4 -u control,<password> param_getvolsall not work, is possible ?
    Suse-SAP1:/ # sdbregview -l
    DB Analyzer         /sapdb/programs    7.5.00.10    32 bit    valid
    Base                /sapdb/programs    7.5.00.10    32 bit    valid
    Loader              /sapdb/programs    7.5.00.10    32 bit    valid
    PCR 7403            /sapdb/programs    7.4.03.31    32 bit    valid
    PCR 7500            /sapdb/programs    7.5.00.10    32 bit    valid
    Server Utilities    /sapdb/programs    7.5.00.10    32 bit    valid
    JDBC                /sapdb/programs    7.5.01.00              valid
    Database Kernel     /sapdb/NW4/db      7.5.00.10    32 bit    valid
    PCR 7300            /sapdb/programs    7.3.00.46              valid
    PCR 7301            /sapdb/programs    7.3.01.15              valid
    ODBC                /sapdb/programs    7.5.00.10    32 bit    valid
    Suse-SAP1:/ #
    Suse-SAP1:/ #
    Suse-SAP1:/ # dbmcli -s inst_enum
    OK
    7.5.0.10     /sapdb/NW4/db
    Suse-SAP1:/ #
    Suse-SAP1:/ # dbmcli -s db_enum
    OK
    NW4     /sapdb/NW4/db   7.5.0.10        fast    running
    NW4     /sapdb/NW4/db   7.5.0.10        quick   offline
    NW4     /sapdb/NW4/db   7.5.0.10        slow    offline
    Suse-SAP1:/ # dbmcli -d NW4 -u control, aksec param_getvolsall
    Error! Connection failed to node (local) for database NW4: ERR_USRFAIL: user authorization failed
    Suse-SAP1:/ #
    Suse-SAP1:/ # dbmcli -d NW4 -u control,param_getvolsall
    Error! Connection failed to node (local) for database NW4: ERR_USRFAIL: user authorization failed
    Suse-SAP1:/ # dbmcli -d NW4 -u control, sapstar param_getvolsall
    Error! Connection failed to node (local) for database NW4: ERR_USRFAIL: user authorization failed
    Suse-SAP1:/ #
    Suse-SAP1:/ # xinstinfo NW4
    IndepData           : /sapdb/data
    IndepPrograms       : /sapdb/programs
    InstallationPath    : /sapdb/NW4/db
    Kernelversion       : KERNEL    7.5.0    BUILD 010-121-066-665
    Rundirectory        : /sapdb/data/wrk/NW4
    Suse-SAP1:/ #
    Best Regards and thanks for helpppp
    Very sorry, but my english is not good.
    Alejandro.

  • Installation problem with Siebel8.0 on Oracle Enterprise Linux 4 system

    We are having installation problem with Siebel8.0 on Oracle Enterprise Linux 4 system.
    Using interface, when installation come up to “Installing Wizard” window where Gateway Name Server Configuration window should take place, everything just freeze up
    Using console, after installation we obtain following errors:
    Installing Siebel Enterprise Server. Please wait...
    unable to launch: "ksh export
    LD_LIBRARY_PATH=/siebel/gtwysrvr/lib;PATH=${PATH}:.;/root/istemp8058094162222/_bundledJRE_/bin/java
    -Dtemp.dir=/root -cp /siebel/gtwysrvr/bin/setup.jar run -args LANG=ENU
    MODE=LIVE MODEL_FILE=/siebel/gtwysrvr/admin/enterprise_console.scm" error code:
    "236"(SBL-STJ-00152)
    LD_LIBRARY_PATH=/siebel/siebsrvr/lib;PATH=${PATH}:.;/root/istemp8058094162222/_bundledJRE_/bin/java
    -Dtemp.dir=/root -cp /siebel/siebsrvr/bin/setup.jar run -args LANG=ENU
    REPEAT=FALSE MODE=LIVE MODEL_FILE=/siebel/siebsrvr/admin/siebel_server.scm"
    error code: "236"(SBL-STJ-00152)
    LD_LIBRARY_PATH=/siebel/siebsrvr/mgmtagent/lib;PATH=${PATH}:.;/root/istemp8058094162222/_bundledJRE_/bin/java
    -Dtemp.dir=/root -cp /siebel/siebsrvr/mgmtagent/bin/setup.jar run -args
    LANG=ENU MODE=LIVE
    MODEL_FILE=/siebel/siebsrvr/mgmtagent/admin/mgmtagent_ses.scm" error code:
    "236"(SBL-STJ-00152)
    Running command :
    ./ssincfgw -is:javaconsole -console -args LANG=ENU MODE=LIVE MODEL_FILE=/siebel/gtwysrvr/admin/enterprise_console.scm
    Infinite loop of following error pops out:
    An error occurred during wizard bean change notification:
    java.lang.NoClassDefFoundError
    at ConfigInitialize.execute(ConfigInitialize.java:21)
    at com.installshield.wizard.StandardWizardListener.execute(StandardWizardListener.java:123)
    Is there any clue how this error can be solved??
    Thanks in advance!!
    Gordon
    Message was edited by:
    user605023

    I'm facing the same error message while install Siebel 8.0 on OEL. But before I had this ksh problem, it complains about disc space first, and I actually has plenty of disk space under the directory (it needs only 0.7 G and I have 17G free). Anybody has encountered such problem before?
    /net/sdcnas05/vol/engfs01/v_sia/8.0SIA[20405|http://forums.oracle.com/forums/]/Release/Linux/Server/Siebel_Enterprise_Server
    -bash-3.00$ ./setuplinux -is:javaconsole -console
    Initializing InstallShield Wizard........
    Initializing InstallShield Wizard........
    Launching InstallShield Wizard........
    0% 25% 50% 75% 100%
    Welcome to the InstallShield Wizard for Siebel Enterprise Server
    The InstallShield Wizard will install Siebel Enterprise Server on your
    computer.
    To continue, choose Next.
    Siebel Enterprise Server
    Siebel Systems
    Press 1 for Next, 3 to Cancel or 4 to Redisplay [1]
    Siebel Enterprise Server Install Location
    Please specify a directory or press Enter to accept the default directory.
    Directory Name: [siebel] /slot/ems1115/appmgr/20405
    Press 1 for Next, 2 for Previous, 3 to Cancel or 4 to Redisplay [1]
    Please select the products you wish to install.
    [ ] 1 - Gateway Name Server
    [ ] 2 - Siebel Server
    [ ] 3 - Database Configuration Utilities
    [ ] 4 - EAI Connectors
    To select an item enter its number, or 0 when you are finished: [0]: 1
    [X] 1 - Gateway Name Server
    [ ] 2 - Siebel Server
    [ ] 3 - Database Configuration Utilities
    [ ] 4 - EAI Connectors
    To select an item enter its number, or 0 when you are finished: [0]: 2
    [X] 1 - Gateway Name Server
    [X] 2 - Siebel Server
    [ ] 3 - Database Configuration Utilities
    [ ] 4 - EAI Connectors
    To select an item enter its number, or 0 when you are finished: [0]:
    Press 1 for Next, 2 for Previous, 3 to Cancel or 4 to Redisplay [1]
    Configuring uninstallers. Please wait...
    0% 25% 50% 75% 100%
    Choose the setup type that best suits your needs.
    [X] 1 - Typical
    [ ] 2 - Compact
    [ ] 3 - Custom
    To select an item enter its number, or 0 when you are finished: [0]
    Press 1 for Next, 2 for Previous, 3 to Cancel or 4 to Redisplay [1]
    Please select the languages you wish to install.
    [X] 1 - enu - English (American)
    [ ] 2 - fin - Finnish
    [ ] 3 - kor - Korean
    [ ] 4 - cht - Chinese (Traditional)
    [ ] 5 - ita - Italian (Standard)
    [ ] 6 - esn - Spanish (Modern)
    [ ] 7 - deu - German (Standard)
    [ ] 8 - chs - Chinese (Simplified)
    [ ] 9 - tha - Thai
    [ ] 10 - dan - Danish
    [ ] 11 - heb - Hebrew
    [ ] 12 - fra - French (Standard)
    [ ] 13 - nld - Dutch (Standard)
    [ ] 14 - ptb - Portuguese (Brazilian)
    [ ] 15 - csy - Czech
    [ ] 16 - jpn - Japanese
    [ ] 17 - ptg - Portuguese (Standard)
    [ ] 18 - ara - Arabic (Sa`udi)
    [ ] 19 - sve - Swedish
    To select an item enter its number, or 0 when you are finished: [0]
    Press 1 for Next, 2 for Previous, 3 to Cancel or 4 to Redisplay [1]
    {color:#ff0000}*Drive "/slot/ems1115/appmgr/20405" does not have enough space to install the*
    selected configuration. Please free up "766446" KB on drive
    *"/slot/ems1115/appmgr/20405" before continuing.*{color}
    -bash-3.00$ pwd
    /slot/ems1115/appmgr/20405
    -bash-3.00$ df -h .
    Filesystem Size Used Avail Use% Mounted on
    sdc1002nap-vlan1:/vol/ems_39426_1115
    71G 55G 17G 77% /slot/ems1115

Maybe you are looking for

  • Music skips on Windows 8.1 64-bit with iTunes 12.1

    Okay, this is probably going to sound strange, but its true..... When I am listening to music in iTunes 12.1 and I have Google Chrome opened, the music skips. I can open any other application and not have that problem, just only when Chrome is opened

  • SPA3000 F/W 3.1.20(GW) last digit repetition within the dial plan is not working for gateway 0-4

    H/W: SPA3000 F/W: 3.1.20(GW) Problem: The last digit repetition within the dial plan is not working for gateway 0-4. Line 1 Dial Plan: (****|<#,xx.<:@gw1>|1747xxxxxxxx.<:@gw1>) Dial "17474743246#" which works for gw1. Dial "#17474743246" which also w

  • G/L account not defaulting in PO for UNBW material.

    Hi, Customer requirement is to populate a G/L account for a non-valuated material (Mat type:UNBW) in PO for account assignment category K (Cost center). There is no accounting view for the material we used in PO. Following steps were done : 1) Valuat

  • Yellow startup screen!

    ok so I just installed Windows 7 on bootcamp (on Macbook pro) , installed drivers and all good ... then I went back to my loved OS Lion and.... the starup screen turned yellowish... :S then my intener wasnt working, wireless was on but just didnt wor

  • Installing on RHEL 5.8 64-bit with Firefox

    I'm thus far unable to get a flash player plugin to work in FF 13.0 on RHEL 5.8 64 bit. I've tried the suggested YUM, rpm, and tar.gz methods, and i've placed the libflashplayer.so in just about all locations I can think of: /usr/lib/mozilla/plugins/