How to retrieve the image back from the running CSS

how to retrieve the image back from the running CSS

Gilles,
Thank for your response.
But the version we use is sg0740107s and can not download from the Cisco Web site any more.
Does cisco have a archive site for all the image so that the user can download it?
sctorcss1# sh ver
Version: sg0740107s (07.40.1.07s)
Flash (Locked): 07.20.2.06
Flash (Operational): 07.40.1.03
Type: PRIMARY
Licensed Cmd Set(s): Standard Feature Set

Similar Messages

  • Pass the data back from the jsp page to the java code

    Hi,
    I have written an iView that receives an event using EPCF and extracts data from the client data bag.
    I need this iView to pass the data back from the jsp page to the java code.
    I am trying to do this using a hidden input field, but I cannot get the code to work.
    Here is the code on the jsp page.
    <%@ taglib uri="tagLib" prefix="hbj" %>
    <hbj:content id="myContext" >
      <hbj:page title="PageTitle">
       <hbj:form id="myFormId">
    <hbj:inputField id="myInputField" type="string" maxlength="100" value="" jsObjectNeeded="true">
    <% myInputField.setVisible(false);%>
    </hbj:inputField>      
       </hbj:form>
      </hbj:page>
    </hbj:content>
    <script language=JavaScript>
    EPCM.subscribeEvent("urn:com.peter", "namedata", window, "eventReceiver");
    function eventReceiver(eventObj) {
         var url = eventObj.dataObject;
         var funcName = htmlb_formid+"_getHtmlbElementId";
         func = window[funcName];
         var ipField = eval(func("myInputField"));
         ipField.setValue(url);
         var form = document.all(htmlb_formid);
         form.submit();
    </script> 
    Here is my java code
    package com.sap.training.portal;
    import com.sapportals.htmlb.InputField;
    import com.sapportals.htmlb.page.DynPage;
    import com.sapportals.htmlb.page.PageException;
    import com.sapportals.portal.htmlb.page.JSPDynPage;
    import com.sapportals.portal.htmlb.page.PageProcessorComponent;
    public class ListSalesOrder extends PageProcessorComponent {
      public DynPage getPage(){
        return new ListSalesOrderDynPage();
      public static class ListSalesOrderDynPage extends JSPDynPage{
         private String merong;
        public void doInitialization(){
        public void doProcessAfterInput() throws PageException {
              InputField reportfld = (InputField) getComponentByName("myInputField");
              if (reportfld != null)      merong = reportfld.getValueAsDataType().toString();
        public void doProcessBeforeOutput() throws PageException {
              if ( merong != null ) setJspName("merong.jsp");
              else setJspName("ListSalesOrder.jsp");
    Here is DD
    <?xml version="1.0" encoding="utf-8"?>
    <application>
      <application-config>
        <property name="SharingReference" value="com.sap.portal.htmlb"/>
        <property name="PrivateSharingReference" value="com.sap.portal.htmlb"/>
      </application-config>
      <components>
        <component name="SearchSalesOrder">
          <component-config>
            <property name="ComponentType" value="jspnative"/>
            <property name="JSP" value="/pagelet/SearchSalesOrder.jsp"/>
          </component-config>
          <component-profile>
            <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>
          </component-profile>
        </component>
        <component name="ListSalesOrder">
          <component-config>
            <property name="ClassName" value="com.sap.training.portal.ListSalesOrder"/>
          </component-config>
          <component-profile>
            <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>
          </component-profile>
        </component>
      </components>
      <services/>
    </application>
    After receive event, then call java script function "eventReceiver" and call "form.submit()".
    But .. PAI Logic in Java code doesn't called ...
    Where is my problme ?
    Help me ...
    Regards, Arnold.

    Hi Arnold,
    you should not do a form.submit yourself. Instead you can put a component called ExternalSubmit to your page:
    ExternalSubmit exSubmit = new ExternalSubmit("EX_SUBMIT"));
    exSubmit.setServerEventName("MyEvent");
    This results in a java script funtion on the page which is called "_htmlb_external_submit_". If you call this function the the form gets submitted and your event handler is called.
    regards,
    Martin

  • How to retrieve query string value from the URL in my portlet

    Hi,
    When user clicks on "Advance Search", i am redirecting to page in the community. At the same i am adding some more values to the query string (to the URL).
    My URL will look like this.
    http://ctp-mc0149/portal/server.pt?space=CommunityPage&parentname=CommunityPage&parentid=0&in_hi_userid=200&cached=true&control=SetCommunity&PageID=202&CommunityID=200&searchType=2
    Now in one of my portlet in that page, i want to retrieve the query string values from the URL.
    Please help me regarding this.
    Thanks in advance.
    Thanks,
    sreekanth.

    Hi,
    Look at the following threads,
    For programmatically getting the iview properties,
    Programmatically getting iView Properties
    Also,
    Get Properties of IView Programmatically
    Permanent change of iView property programmatically
    Hope these threads help u.
    Regards
    Srinivasan T

  • How do I save images downloaded from the Internet?

    I have the URL to an image stored on the Internet. Is it possible to open a connection and store the image on my computer? I'm not totally new to this, I've written a small program that could read text files from an ftp server, but it's my first try at downloadning images. Here's the code I'm using
    String wwwfile = ....;
                   System.out.println(protocol+host+wwwfile);
                        URL url = new URL(protocol+host+wwwfile);
                        URLConnection urlc = url.openConnection();
                        InputStreamReader reader = new InputStreamReader(urlc.getInputStream());
                        File file = new File(path,fileName);
                        OutputStreamWriter writer = new OutputStreamWriter(new FileOutputStream(file));
                        int c;
                        while((c = reader.read())!=-1)
                        writer.write(c);
                        reader.close();
                        writer.flush();
                        writer.close();
    When I read text files, I used BufferedReader/PrintWriter instead of InputStreamReader/OutputStreamReader. The picture I want to download seems to be downloaded, it's stored on the computer, but upon viewing the picture, the browser displays the icon telling me the picture is abscent.
    What is it that I'm doing wrong?
    regards
    simon

    Ah, this might be the problem. You're using an InputStreamReader and OutputStreamWriter to wrap the streams with reader/writers. This is bad. This will corrupt binary data.
    Try this:
            System.out.println(protocol + host + wwwfile);
            URL url = new URL(protocol + host + wwwfile);
            URLConnection urlc = url.openConnection();
            // Use InputStream/OutputStreams instead of Reader/Writers for binary data.
            // Otherwise it will get corrupted.
            InputStream in = urlc.getInputStream();
            File file = new File(path, fileName);
            OutputStream out = new BufferedOutputStream(new FileOutputStream(file));
            int c;
            while ((c = in.read()) != -1) {
                out.write(c);
            in.close();
            // You don't have to flush the file if you're
            // closing it right after.
            out.close();

  • ABAP proxy client sending to XI   and Receive the data back from the DB

    Hi
    I am new to XI need a clarification on the following scenario
    I have a scenarion where ABAP Proxy (Clinet) from ECC will be sending the data to Data base server via XI,  and needs to return the values back to ECC
    ECC -
    > XI/PI -
    > Remote server  (Database)
          <-- XI/PI <--
    Can anyone give idea how can I develop this scenario.
    I am sure I would be using the Proxy BADI to send the data from ECC to XI in Asyscrounous mode,
    Thanks
    PR

    Hi,
    As you said the data will be sent asynchronously from BAPI to XI which means you will have to split up the scenario into two.
    First One -
    Sender Proxy - XI - Receiver JDBC.
    Second -
    Sender JDBC - XI - Receiver Proxy.
    You can set a flag to"1" when you insert data into table. the run a query on the database which will fetch record whose flay is set to "1" and also simultaneously rest the flag to "0" to indicate that this record is already send to SAP.You can make use of stored procedures too.
    Please award points if the reply is useful.
    Regards,
    Pragati

  • Where is the "put back" from the trash command

    Control click, etc does not reveal it.Is it still available in 10.9?

    Unfortunately there is no put back on the contextual menu with control click, right click or command return. I am mostly returning plist files.
    My startup disk wants me to enter all kinds of things.
    Time machine backup does not restore!
    How did the files get into the Trash? Why did you move them there? What problem did you trouble shoot?
    Do you remember where you removed the preferences from? Then move them back by dragging them from the Trash to the folder were tehy belong.

  • A7000 | The images taken from the front facing camera(FFS) (5MP) are mirrored. Is this an issue?

    Hello Team,
    I just took an image from the FFS off my new A7000 and i noticed that the images are mirrored. Is this a software issue?
    I even owned a A6000 but the images from that were proper.
    As far as i know mirrored image should be displayed while taking the picture but  proper un-mirrored image should be saved. 
    Please look into this issue.
    Here is an image(re-sized) i took from FFS which is reversed/mirrored.
    Admin note; picture >100K converted to link.  About posting pictures in the forums.

    Yes i have updated to the latest firmware S141. And yes i am using the default camera app but still the issue exists. Is this a software issue or is it a hardware issue? If its a software issue, then is it possible to fix through future firmware updates? Anyhow i'll take the phone to nearest service center. Can you give me the address for service center in Bangalore(India). Thank you for the reply.   

  • How do I get events back from the trash? 10.0.3

    Trying to move some of my older projects and events to a backup drive.  I created a new library on the drive, but I could not move anything to the new project. So I copied events by dragging thme into the new library.  Then I moved the events to the trash.  However, I cannot move projects. How? (See a recent question about this.)  I then found that my projects (which I cannot move) have no content (because I have put the events on the trash.  But there is nothing about the trash, except putting things in it.  I can't even see how to empty it, let alone retrieve from it. 

    Well, I've found out how to delete the trash - close iMovie. Ouch!

  • How to get your $200 back from the price drop.

    Many of you likely paid with a credit card and many of the credit card companies have a price protection policy. I know american express and some mastercards do. Basically if you buy a product and the price goes down within 60 or 90 days depending on the credit card company, you get back the price difference. I know for mastercard they will refund up to $250. Try that out.

    I just got off the phone with my credit card company (ATT Universal) and they have confirmed that they do indeed honor "retail purchase protection." If you have purchased an item and the merchant drops the price within 60 days, then you can obtain a refund of up to $250.
    To all of us jilted Apple-lovers, I would suggest this course of action to resolve if possible. It's one thing to have a lone customer whining to an assistant manager of an Apple store, it's another thing to have a room full of lawyers for credit card companies in an Apple board room asking Apple how it plans to resolve the large numbers of refunds that the credit card companies were forced to pay out.
    Good luck, all!

  • How to retrieve linked records effciently from the database

    Hi,
    I have some records in database related to supply chain.
    e.g. N1 supplies item I1 to Node N2 is represented as N1 I1 N2.
    Now I want to find all parent nodes or say chain of nodes supplying to particular node in an efficient way.
    Can you please tell me how I can do it with efficient query. Currently it needs multiple queries & performance drops considerably.
    Regards,
    Veena

    please check the link
    http://wiki.oracle.com/thread/1246329/findrecentmostrowsaddedinatable?t=anon
    Here you can find the new inserted data/ modified data from a table.

  • I tried to download yosemite but the download failed because of poor wifi connections and I tried again but I did not have enough disk space how do I get the space back from the failed download?

    The failed download of Yosemite used up disk space and I can't find away to delete that because it is taking up 4 GB of space that I need to download Yosemite.

    Check that your computer is compatible with Mountain Lion/Mavericks/Yosemite.
    To check the model number hold down the option/alt key, go to the Apple menu and select System Information.
    iMac (Mid 2007 or newer) model number 7,1 or higher
    Your Mac needs:
    OS X v10.6.8 or OS X Lion already installed
    2 GB or more of memory (More is better - 4 GB minimum seems to be the consensus)
    8 GB or more of available space
    Check to make sure your applications are compatible. PowerPC applications are no longer supported after 10.6.      
    Application Compatibility
    Applications Compatibility (2)
    Do a backup before installing.
    If you can/do upgrade, I recommend you make a copy of the installer and move it out of your Applications folder. The installer self-destructs. The copy will keep you from having to download the installer again.  You can make a bootable USB stick to install using this free program.
    Bootable USB Flash Drive – Diskmaker X

  • After starting a new account. How do I get my old music back from the first account?

    After starting a new account because I was unable to get my old id and password, I would like to know how to get my music back from the first account?

    Click here and request assistance.
    (79128)

  • Downloading images/videos from the phone - again.....

    Hi
    I had setup nokia pc suite to download images to an USB drive which is dead now.
    luckily I have not deleted the images/videos from the phone yet.  
    I want to re-download everything from the phone to a new disk, but pc-suite claims
    no-new photos/videos in the photos.
    how can I RE-DOWNLOAD everything from the phone to my PC?
    thanks a bunch
    prd
    Solved!
    Go to Solution.

    I found a way:
    a) Win XP and PC Suite 7
    -> close Nokia Image Store
    -> go to the folder C:\Documents and settings\%sername%\Application Data\Nokia\Image Store
    -> delete search for a file called TransferLog.xml and delete all results
    -> open Nokia Image Store, it will say that you have new pictures and/or videos (it will consider all images an videos as if you connected the phone for the very first time, although the setting for the transfer will remain, so review them also in the wizard)
    b) Win Vista and PC Suite 7
    -> close Nokia Image Store
    -> go to the folder C:\d:\users\%username%\appdata\roaming\Nokia\Image Store
    -> delete search for a file called TransferLog.xml and delete all results
    -> open Nokia Image Store, it will say that you have new pictures and/or videos (it will consider all images an videos as if you connected the phone for the very first time, although the setting for the transfer will remain, so review them also in the wizard)
    Note: You may have to enable to see hidden folders and files and to clear the checkbox before the Hide protected operating system files in the folder view settings.
    Message Edited by panderson on 02-Mar-2009 09:47 PM

  • How can I transfer music back from iPod to MacBook and iMac after a MacBook

    My MacBook Pro (2 years old) recently suffered a harddrive failure. I had all my music on this computer and of course on my iPod 80GB. Now I have a new drive in the MacBook with no music and all the music on the iPod. How can I transfer the music back from the iPod to the MacBook? I also have an iMac and would like to doubly back up my music on this unit (in case - or rather "when" there is another drive failure). Connecting the iPod doesn't work as it just asks me to erase and resync. There HAS to be some way around this, I couldn't possibly be the only person in the world with a drive failure!

    1). Connect your iPod to your computer. If it is set to update automatically you'll get a message that it is linked to a different library and asking if you want to link to this one and replace all your songs etc, press "Cancel". Pressing "Erase and Sync" will irretrievably remove all the songs from your iPod.
    2). When your iPod appears in the iTunes source list change the update setting to manual, that will let you use your iPod without the risk of accidentally erasing it. Check the "manually manage music and videos" box in Summary then press the Apply button. Also when using most of the utilities listed below your iPod needs to be enabled for disc use, changing to manual update will do this by default: Managing content manually on iPod and iPhone
    3). Once you are safely connected there are a few things you can do to restore your iTunes from the iPod. If you only want to copy your purchases to the computer that can be done using iTunes, you'll find details in this article: Copying iTunes Store purchases from your iPod or iPhone to a computer
    For everything else (including purchases) there are a number of third party utilities that you can use to retrieve the music files and playlists from your iPod. I use Senuti but have a look at the web pages and documentation for the others too. You can read reviews and comparisons of some of them here (you'll find that they have varying degrees of functionality and some will transfer movies, videos, photos and games as well):
    Wired News - Rescue Your Stranded Tunes
    Comparison of iPod managers
    A selection of iPod to iTunes utilities:
    Senuti Mac Only (iPod Touch & iPhone compatible)
    PodView Mac Only
    PodWorks Mac Only
    iPodDisk PPC Mac Only (experimental version available for Intel Macs)
    TuneAid Mac only (iPhone and iPod Touch compatible)
    iPodRip Mac & Windows
    YamiPod Mac & Windows
    iPod Music Liberator Mac & Windows
    iGadget Mac & Windows (iPhone and iPod Touch compatible)
    Floola Mac & Windows
    Music Rescue Mac & Windows (iPhone and iPod Touch compatible)
    iRepo Mac & Windows (iPhone and iPod Touch compatible)
    iPod Access Mac & Windows (iPhone and iPod Touch compatible)
    TouchCopy Mac & Windows (iPhone and iPod Touch compatible)
    There's also a manual method of copying songs from your iPod to a Mac or PC. The procedure is a bit involved and won't recover playlists but if you're interested it's available on page 2 at this link: Copying Content from your iPod to your Computer - The Definitive Guide
    4). Keep your iPod in manual mode until you have reloaded your iTunes and you are happy with your playlists etc then it will be safe to return it auto-sync.
    5). I would also advise that you get yourself an external hard drive and back your stuff up, relying on an iPod as your sole backup is not a good idea and external drives are comparatively inexpensive these days, you can get loads of storage for a reasonable outlay: Back up your iTunes library by copying to an external hard drive

  • I have an image that I removed from its back ground and I would like to scale the bottom portion of the image because its to wide but not have that effect the top portion of the image which is the correct with. but also keep the aspect ratio correct? how

    I have an image that I removed from its back ground and I would like to scale the bottom portion of the image because its to wide but not have that effect the top portion of the image which is the correct width. but also keep the aspect ratio correct, keep it looking as natural as possible (its a piece of jewlery) ? how can I begin to do this.

    The area circled in red is to wide (the width) the necklace's width is as wide as the models entire chest. And also the length of the necklace it's to long it should come down to the clevage area on the model/woman.

Maybe you are looking for

  • Cannot Upload a file from local system

    Hi, I am trying to send an email with an attachment from an JSP form using javamail in a STRUTS action class. I uploaded the JSP form and action class to my web server (Unix with JBOSS) and now the email is not sent and I receive the following error

  • Run time error while saving the production order in CO02

    HI Experts, While i am releasing and saving the production order the system is giving the runtime error. Please help. Runtime Errors         UNCAUGHT_EXCEPTION Exception              CX_SLD_API_EXCEPTION Error analysis is An exception occurred that i

  • Scheduling in XI 3.0

    Does XI 3.0 have scheduling capability?? Example : every hour display all the messages not sent or processed with errors?? Thanks a lot for help. Olhub

  • PHP with JAVA

    I was working on one of the most common examples of getting system date, system property etc by calling Date and System classes of java from a PHP script. I have set up apache as the webserver on RedHat linux 7.2. Compiled PHP for java and i believe

  • Sql developer is freezing and many errors come up when you first launch it.

    These are just the few that have appeared this time when I launch Sql....... How can I solve these Problems As i am a first time user of SQL developer so im not sure how i shud go about it. SEVERE     36     0     oracle.ideimpl.extension.AddinManage