Upgrading 1310 image file through ROMMON

I have to upgrade 1310 bridge IOS image through ROMMON (bridge), as I made my life miserable by deleting previous image, before upgrading it through browser.
I believe I've set environmental variables correct, but when I try copying from tftp server, I constantly receive "tftp: permission denied" message.
Any help with this would be very appreciated.

IN the mean time, I have found the answer searching this forum.

Similar Messages

  • How to send image file through mail without   any attachment

    Plz tell  me how to send image file through mail without any attachment  ( i mean not converting  that image into pdf or any format )  i want to send that text or image  through mail .

    Hi Sandeep,
    I think you can setup the type of email in Shared office Settings in transaction S016.
    There is an option called <Preset document classes>
    You choose this pushbutton to branch to the maintenance screen for the document classes that are directly displayed to users in the Business Workplace for selection when they use the Create function. The name under which the documents are displayed can also be maintained.
    http://help.sap.com/saphelp_nw70/helpdata/en/6c/69c30f418d11d1896e0000e8322d00/content.htm
    Haven't tried it though.
    Regards,
    Siddhesh

  • How can I upload a (image) file through an applet ?

    How can I upload a (image) file through an applet ?

    have a look at http://www.haller-systemservice.net/jupload/
    i'm using Apache Jakarta HTTPClient to create a new HTTP connection to the webserver and sending a new POST request, which holds the image file. (So it's RFC1867 conform)
    there is also an open source implementation of such an applet on sourceforge. it's also called JUpload, but i think it's not maintained any more.

  • How to transfer an Image file through SOAP

    can i transfer image(.bmp, .jpg etc), MS word (.doc) or any other files through SOAP
    if yes then how come
    please let me know the steps of it

    Hi,
    You can transfer files such as the types you mention as SOAP attachments.
    Try reading the JWSDP (v1.1) tutorial for a starter ( http://java.sun.com/webservices/docs/1.1/tutorial/doc/ ). Also, the SAAJ (SOAP with Attachments API for Java) chapter of the new book "Java Web services In a Nutshell" by O'Reilly is available free from their web site ( http://www.oreilly.com/catalog/javawsian/ )- this discusses attachments in some detail.
    Simon

  • How can I read a image file through URI?

    I have a image file store in my computer's Image directory on drive E. I name the pathname as:
    file:////MyComputerName/e:/image/
    the image filename is MyImage.JPG
    so I create a ImageIcon use:
    String uri  = "file:///MyComputerName/e:/image/";
    String imagefilename = "MyImage.JPG";
    ImageIcon ii = new ImageIcon( uri+imagefilename);
    Image myimage = ii.getImage();but I can not get the image.
    Does anyone know what's wrong?
    Thank you

    Read the documentation for ImageIcon(String path) -- the String is a file path,
    not a URL. If you want to pass a URL to ImageIcon, use ImageIcon(URL url).
    So, either of the following works:
    URL url = new URL("file:///e:/image/MyImage.JPG");
    ImageIcon imageIcon1 = new ImageIcon(url);
    String path = "e:/image/MyImage.JPG";
    ImageIcon imageIcon2 = new ImageIcon(path);In case you even need it, to convert a file into a URL, you can write:
    URL url = file.toURI().toURL();And finally, you may want to check out BufferedImage and ImageIO.
    You can read in a BufferedImage in one line:
    BufferedImage image = ImageIO.read(file_or_url_etc);and a BufferedImage offers may advantages over a plain old image.

  • How to get and display image file through servlet

    If I've got a jpg file on the server..
    How can I use servlet to return that image via the following calling method
    /displayfile?filename=image.jpg
    the image.jpg in the server will return
    I know that I need to set the content type to image/jpeg
    after that, how can I return the image file to browser?

    - Get the "file" Parameter from the URL QueryString
    - check if the File specified exists on your filesystem
    - read in the jpg from the file (best would be binary)
    - set the right Mime Type (as you already wrote)
    - write the filecontent to the ServletOutput as you would do with any other content
    - that's it.

  • Can't move image files within Bridge

    I recently bought an iMac and got the CS5 license transferred over to the Mac platform. Got CS5 loaded and everything works except for one critical thing: I can no longer move image files within Bridge. When I do the right click on an image file to select that command, the command is "grey" and won't let me to choose it.  So I am forced to rearrange my image files through the Mac's Finder/Pictures feature.  Drag and drop doesn't work either.  I have looked everywhere for a setting that would allow movement of files to different folders and rearrangement within Bridge, and can't find one.  I have Bridge set as my default for photos and not the lame iPhoto program on Macs.  I previously was to be able to freely use Bridge for organizing my photos on a PC and now sorely disappointed that I can't do this with my new iMac.

    I previously was to be able to freely use Bridge for organizing my photos on a PC and now sorely disappointed that I can't do this with my new iMac.
    No need for disappointment because you can move all files freely within Bridge.
    First check if you have read and write permissions for your files/folders/disk (try move the files using finder) If Finder allows you to drag the files to the location you previously wanted in Bridge then the problem lies in Bridge.
    First select a file and with right mouse click menu choose purge cache for selection. If the problem is gone you could do so for the whole folder using menu tools/cache/purge cache for folder while having Bridge pointed to that folder.
    If not restart bridge holding down option key and choose reset preferences.
    could you report back?

  • Image transfer through *socket*

    hi.
    can anyone plz show how to send a PNG image file through a raw socket outputStream (from a j2se server to a midlet) ???
    thanks

    You will have to take care of indentation.
    midlet code:
    //SOCKET ---------------------------------------------------------------
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import java.io.*;
    import javax.microedition.io.*;
    public class Main extends MIDlet implements Runnable
         private Thread t;
         private Display display;
         private Form form;
         private Command exitCommand, getCommand;
         private String connectionDetails "socket://10.10.100.109:1500";
         private InputConnection ic;
         private DataInputStream dis;
         public Main()
              //create the backCommand, okCommand and the exitCommand
              exitCommand = new Command("Exit", Command.EXIT, 1);
              //creating the form
              form = new Form("CONNECTING......");
              form.addCommand(exitCommand);
              System.out.println("exit command and get command were appended to the form");
              //instantiating the listener
              CommandListener listener = new CommandListener()
                   public void commandAction(Command c,Displayable d)
                        if(c==exitCommand)
                             System.out.println("exitCommand as pressed");
                             exit();
                   public void exit()
                        destroyApp(true);
                        notifyDestroyed();
              //setting the listeners
              form.setCommandListener(listener);
              //getting the display object
              display = Display.getDisplay(this);
         public void startApp()
              display.setCurrent(form);
              System.out.println("form was set as the currentscreen");
              t = new Thread(this);
    t.start();
         public void pauseApp()
         public void destroyApp(boolean cond)
              display = null;
              form = null;
              exitCommand = null;
    public void run()
         while(true)
                                  try
                                       //establishing a connection with the remote server
                                       System.out.println("about to get a stream connection");
                                       ic = (InputConnection)Connector.open(connectionDetails,Connector.READ);
                                       System.out.println("input connection was created");
                                       //input stream is created on top
                                       //of the stream connection object
                                       dis = ic.openDataInputStream();
                                       System.out.println("input stream was created");
                                       //receiving data
                                       byte []ib = new byte[10000];
                                       int length = dis.read(ib);
         System.out.println("BYTES RECEIVED "+length);
         /*for(int k= 0;k<length;k++)
              System.out.println("byte["+k+"]="+ib[k]);
                                       //displaying the received data
                                       if(form.size()!=0)
                                            form.delete(0);
                                       form.append(Image.createImage(ib,0,length));
                                       //form.append(new StringItem("DOLLAR NIS exchange rate is ", sb.toString()));
                                  catch(Exception e)
                                       if(form.size()!=0)
                                            form.delete(0);
                                       form.append(new StringItem("problem:",e.getMessage()));
                                  finally
                                       //releasing resources that were allocated
                                       try
                                            if(dis!=null)
                                                 dis.close();
                                       catch(IOException e)
                                            e.printStackTrace();
                                       try
                                            if(ic!=null)
                                                 ic.close();
                                       catch(IOException e)
                                            e.printStackTrace();
                   try{Thread.sleep(1000);}catch(Exception e){e.printStackTrace();}
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Server code:
    // tcpServer.java by fpont 3/2000
    // usage : java tcpServer <port number>.
    // default port is 1500.
    // connection to be closed by client.
    // this server handles only 1 connection.
    package sock;
    import java.net.*;
    import java.io.*;
    public class ImageServer {
         public static int counter = 0;
         public static final int counter_end = 4;
    public static void main(String args[]) {
         int port;
         ServerSocket server_socket;
         BufferedReader input;
         OutputStream output;
         try {
         port = Integer.parseInt(args[0]);
         catch (Exception e) {
         System.out.println("port = 1500 (default)");
         port = 1500;
         try {
         server_socket = new ServerSocket(port);
         System.out.println("Server waiting for client on port " +
                   server_socket.getLocalPort());
         // server infinite loop
         while(true) {
              Socket socket = server_socket.accept();
              System.out.println("New connection accepted " +
                        socket.getInetAddress() +
                        ":" + socket.getPort());
              //input = new BufferedReader(new InputStreamReader(socket.getInputStream()));
    output = socket.getOutputStream();
              // print received data
              try
    byte []ib=getCurrentFileBytes();
    System.out.println("BYTES TO SEND "+ ib.length);
    output.write(ib);
    output.flush();
    output.close();
              catch (IOException e) {
              System.out.println(e);
              // connection closed by client
              try {
              socket.close();
              System.out.println("Connection closed by client");
              catch (IOException e) {
              System.out.println(e);
         catch (IOException e) {
         System.out.println(e);
    private static byte[] getCurrentFileBytes() throws IOException
              byte []ret = getFileBytes("c:/temp/ts"+counter+".png");
              if(counter == counter_end)counter = 0;
              else counter++;
              return ret;
    private static byte[] getFileBytes(String FileName) throws IOException
              byte[] lReturn = null;
              try
                   FileInputStream fis = new FileInputStream(FileName);
                   lReturn = getBytes(fis);
                   fis.close();
              catch(Exception e)
                   e.printStackTrace();
                   throw new IOException();
              return lReturn;
    private static byte[] getBytes(InputStream inputStream)
    byte finalBuffer[] = null;
    int receiveBufferSize = 1000;
    byte receiveBuffer[] = new byte[receiveBufferSize];
    int offset = 0;
    int length = 0;
    int bytesRead = 0;
    try
    while(inputStream.available() > 0)
    bytesRead = inputStream.read(receiveBuffer,offset,
    receiveBufferSize);
    byte temp[] = new byte[length + bytesRead];
    if(length>0)System.arraycopy(finalBuffer,0,temp,0,length);
    System.arraycopy(receiveBuffer,0,temp,length,bytesRead);
    finalBuffer = temp;
    length = length + bytesRead;
    catch(IOException ioe)
    ioe.printStackTrace();
    finalBuffer = new byte[0];
    return finalBuffer;

  • Decoded The Image File

    Dear,
    Actually I just wanna know how to sent a image file through Internet to recipients. Am doing a project regards the " Java electronic greeting card" And i use socket programming in the Sent module.
    thank you
    from
    vaniceberry

    An efficient way to do this, is to encode your BufferedImages as JPEG's before sending it over a socket connection.
    Assuming that "os" is the OutputStream of your socket connection, this would be the sender code:
    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(os);
    encoder.encode(screenShot);
    The receiver side has to decode the received image ("in" is InputStream of the socket connection):
    JPEGImageDecoder decoder = JPEGCodec.createJPEGDecoder(in);
    BufferedImage img = decoder.decodeAsBufferedImage();
    To use JPEG encoding/decoging features, you have to import com.sun.image.codec.jpeg.*

  • By using XI shall we send any image files ?

    By using XI shall we send any image files ?

    Hi,
    Its possible to send the image file with XI
    please find here with you the link for step by step procedure
    Sending an Image File Through Exchange Infrastructure in a File-to-Mail Scenario
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6d967fbc-0a01-0010-4fb4-91c6d38c5816
    Exchange Infrastructure Binary Conversion Simplified: A Step-by-Step Image File to Image File Mapping and Conversion Using Java Mapping
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10dd67dd-a42b-2a10-2785-91c40ee56c0b
    Thanks
    Swarup

  • Creating siebel image file for Siebel Patch 7.8.2.16 to upgrade from Siebel 7.8.2.14

    I new to installing Siebel Patch 7.8.2.16 for Microsoft Windows 2003 Servers, Mobile Web Client. We are currently running Siebel version : 7.8.2.14 on 7.8.2.14 SIA [19251] ENU patch applied. We need to install upgrade to Siebel 7.8.2.16 to install QF0E26 for an issue with MVG popup. What is the best practice to create Siebel image file from Siebel CD which has multiple JAR files on CD media for Siebel CD Media pack sent to me. Let me know if you need additional details.  Thanks JollyRoger

    Hello Jolly,
    Thanks for using Oracle communities.
    You need to download installables for 7.8.2.16 SIA. Follow below instructions to download:
    1) Login to My oracle support through your credentials
    2) Go to tab 'Patches & Updates'
    3) Enter patch number as '11687049' in 'Patch Name or Number' field and click on search.
    4) Download patch for Windows.
    Once you download, you need to use Image Creator Utility to generate an Installation image.
    Please follow below online bookshelf link on how to create Image.
    http://docs.oracle.com/cd/B31104_02/books/SiebInstWIN/SiebInstCOM_Image5.html#wp1594731
    I hope it helps.
    Best Regards,
    Chetan

  • I am deleting files through my trash in my macbook pro (2010) and then emptying the trash can, but my hard disk space is not increasing! i recently upgraded to lion and the problem is new, wasn't the same with snow leopard! HELP!!!!!

    i am deleting files through my trash in my macbook pro (2010) and then emptying the trash can, but my hard disk space is not increasing! i recently upgraded to lion and the problem is new, wasn't the same with snow leopard! HELP!!!!!
    When i press command+I (Get Info) i see that there is 140 GB "Available Space" on my hard disk but when i click on my hard disk icon on the desktop, and then press "space" i only see 102 GB free!! What the f*???
    Please HELP!!!!!! Getting second thoughts on Lion!!!!

    Hi b,
    Have you restarted yet?

  • Attempting to upgrade to Firefox 3.6 (using an ancient Mac OS 10.3), but received an error message (corrupt image file) when downloading - any way to correct this with my current OS?

    I'm currently trying to update a few programs on my good old (VERY old) Mac Powerbook, but I ran into an error when downloading Firefox version 3.6...I'm currently running Mac OS X 10.3.9, which isn't compatible with the most recent versions of Firefox (or anything, for that matter), but it should still allow an upgrade of version 3.6; however, once the file finished downloading, an error message popped up indicating there's a corrupt image file. Is there any way to work around/correct this problem, or am I stuck with my old version of Firefox until I bite the bullet and upgrade my OS??? Any help is greatly appreciated!!

    Firefox 3.6 requires at least OS X 10.4, the last version of Firefox that runs on OS X 10.3.9 is Firefox 2.0.0.20 available from https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/mac/en-US/

  • How to flip through multiple image files in a folder using Preview?

    On windows a default image viewing program similar to preview allows a user to press the arrow keys to flip through images within the same folder as the image file originally opened with a Preview-like application.
    How can a person filp through images in the same folder with a few keystrokes using Preview?
    thanks

    hmm...you mean there isn't a way to simply skim
    through images in a folder using an arrow or page-up
    key?? That's kind of disappointing...especially
    being forced to pre-select images...
    oceanbluesky,
    There's no reason you can't use Preview to do what you're trying to do. And there's no need to pre-select images.
    The trick is to open Preview first, and then choose Open from the File menu (or Command + O on the keyboard). When Preview's Open dialog window appears, navigate to the folder which contains your pictures. Highlight the entire folder and then press the Open button. Once the folder is open in Preview you should be able to use your arrow keys to flip through...
    Note: To avoid a storm of images from opening on your desktop, go to Preview > Preferences > Images and make sure that the "Open each image in its own window" radio button is not selected.
    Good luck!
    Andrew99
    iMac 1 GHz Flat Panel 15" PPC 768 MB RAM   Mac OS X (10.4.10)  

  • Open a File Dialog Box to browse through image files

    Hi all
    I need to develop a code to open a File Dialog Box to browse through Image Files in Oracle 10g.
    Once the Image File is selected i need to save the file in a Table Column in the Backend Table.
    Please help me.
    Thanks
    Nakul Venkatraman

    Hi
    Thanks for your prompt response on this.
    I came across a Sample Form File which would allow the User to browse through files from local PC.
    Following is the code :
    declare
    dirname varchar2(255);
    v_filename varchar2(255);
    begin
         message('1');
    tool_env.getvar('E:\', dirname);
    message('2');
    dirname := dirname || '\project';
    message('3');
    v_filename := get_file_name(dirname,NULL,
    'All Files (*.*)|*.*|' ||
    'JPEG Files (*.jpg)|*.jpg|' ||
    'Bitmap Files (*.bmp)|*.bmp|' ||
    'TIFF Files (*.tif)|*.tif|' ||
    'CompuServe Files (*.gif)|*.gif|' ||
    'PC Paintbrush Files (*.pcx)|*.pcx|' );
    message('4');
    if v_filename is not null then
    read_image_file(v_filename,'ANY','pp_foto.foto');
    end if;
    end;
    The code is written inside WHEN-BUTTON-PRESSED Trigger.
    When i run the form it is not opening the dialog box.
    Please help.
    Regards
    Nakul

Maybe you are looking for

  • Error: 0xc05d0281 ink system failed

    Hi, I have an HP 3310 all-in-one which until last weekend performed flawlessly. I then received the above error message. I have tried pulling out the ink cartridges, per other post suggestions without any success. I am running it on a wireless networ

  • PS CS4 and 64 bit Win7, RAW problem???  Help!

    My old system up and died last week, so I ended up with a new computer.  I have the fastest AMD Phenom processor, 4mg fast RAM, an ATI video card with 1mg RAM, and a complete new install of Windows 7 64-Bit.  I installed PS Elements 8 and PS CS4 this

  • Displaying an RTF document that contains images

    Hello, I am trying to display styled text that contains images. I thought the simplest way to do this was to save my documents as RTF documents, and display them through the JEditorPane. But, when the JEditorPane display the documents, the text is st

  • 5800 can't sync-system error

    Hi there, I've just signed up for Ovi and have received and saved the settings for sync'ing from the Ovi message. I browse to the sync app and each time I try to sync, i get a 'system error' message. Do I need to do anything else? The help page on Ov

  • Find last word in String

    I know a way to do this but it is very unsemantic I would think. Is there some sort of method?