Send image from movile device

hello all,
I know take an image from movile device with midp2.0 but is it posible to send this image to an apliccation server with midp2.0?
Thanks in advance,
Ra�l

Hi, I ma trying to solve the problem - which you have already solved - that of taking an image. Can you point me at an information source? Any help much appreciated.

Similar Messages

  • "Cannot send email from this device"?

    I recently purchased the Easy Release App from the ITunes store and when I try to email the release to my email address it says "Cannot send email from this device". Is it the app that is preventing the sending or is it something to do with the iPod? I've tried sending an email from the iPod to see and it is sent fine from the iPod but the app still won't send from the iPod.
    Has this ever happened to someone else? Do I have to change settings on my iPod?
    I have the IPod 4th generation if that helps

    I had the same problem. You have to go into Settings in your ipod touch, scroll down and find "mail, contacts, calendars." Set up your email in there. It will give you a list I.e. yahoo, hotmail, gmail. After you've dont that you'll be able to sent the model release.

  • TS2755 Hi all, I bought one iphone and 3 ipads, i set up all on one apple ID. Now i have a problem when using messages: when sending message from one device it appears again on screen from the other 3 devices. I need help of how to set up messages on each

    Hi all, I bought one iphone and 3 ipads, i set up all on one apple ID. Now i have a problem when using messages: when sending message from one device it appears again on screen from the other 3 devices. I need help on how to set up messages on each device separately and to start using messages app on each device independently. Thanks

    search google for "iphone remove picture from contact"

  • Sending images from lightroom 5 to elements 12 for panorama.

    Hello. I have elements 12 and lightroom 5 installed. I go to send 5 images from lightroom to send to elements to do the pano. When I select the 5 images I want I click go to edit and then select merge in panorama. It then opens up elements 12 but after waiting for some time the images font show up. It used to work but now it don't. In lightroom 5 I have it set in the presences right so my external editor is elements 12. After a while I looked in my pictures section in windows and lo and behold all my images that I have sent to elements to do psn os with are in pictures section as raw files. So lightroom is sending them but not to my external editor.
    Can someone please help me this is very frustrating.
    thanks for any help you can offer me.

    Which version of Lightroom 5 do you have?
    Which version of camera raw are you using in photoshop elements 12?
    In Lightroom what are the preferences at the top of the External Editing tab set to?
    I realize that yours may be different, because you don't have photoshop installed, but here even though photoshop cc 2014 is on this machine, as long as i have pse 12 and not cc 2014 open before
    choosing Photo>Edit in>Merge to Panorama in Photoshop, it does work for pse 12 with nikon nef files (camera raw files), but it uses the preferences at the top of the external editing tab instead of the ones below.
    So if the Bit Depth is not set to to 8 bits/channel then photomerge doesn't work.

  • Upload image from Mobile device using SAP ui5 controls

    Hello Team ,
    Can we use SAP UI5 controls to upload image from photo gallery of the mobile device, the idea is to use simple sap UI5 codding and not SMP.
    please do let me know if you guys have idea on same.
    Armaan 

    Hi Armaanjit,
    Please have a look at my post
    File upload using SAPUI5 Control

  • Problem in sending image from applet to servlet

    dear friends,
    i have a need to send an image from applet to servlet via HttpConnection and getting back that image from applet.
    i am struggling with this sice many hours and got tired by searching any post that would help me but haven't got yet.
    i tried using this code but it dosent make any execution sit right. i got NPE at ImageIcon.getDescription() line;
    at applet side
          jf.setContentPane(getJContentPane());
                     FileDialog fd=new FileDialog(jf,"hi");
                     fd.setMode(FileDialog.LOAD);
                     fd.setVisible(true);   
                     v=new Vector();
                     try{                                                
                               FileInputStream fis=new FileInputStream(new File(fd.getDirectory()+fd.getFile()));      
                               byte[] imgbuffer=new byte[fis.available()];
                               fis.read(imgbuffer);
                               ImageIcon imgdata=new ImageIcon(imgbuffer);
                               v.add(0,imgicon);
                                String strwp ="/UASProject/Storeimage";              
                                URL servletURL = new URL(getCodeBase(),strwp);             
                                HttpURLConnection servletCon = (HttpURLConnection)servletURL.openConnection();       
                                servletCon.setDoInput(true); 
                                servletCon.setDoOutput(true);
                                servletCon.setUseCaches(false);
                                servletCon.setDefaultUseCaches(false);   
                                servletCon.setRequestMethod("POST");     
                                servletCon.setRequestProperty("Content-Type", "application/octet-stream");   
                                servletCon.connect();            
                                ObjectOutputStream oboutStream = new ObjectOutputStream(servletCon.getOutputStream());                     
                                oboutStream.writeObject(v);
                                v.remove(0);
                                oboutStream.flush();      
                                oboutStream.close();  
                                //read back from servlet
                                ObjectInputStream inputStream = new ObjectInputStream(servletCon.getInputStream());
                                 v= (Vector)inputStream.readObject();                     
                                 imgicon=(ImageIcon)v.get(1);
                                 showimg.setIcon(imgicon);
                                 this.getContentPane().validate();
                                 this.validate();  
                                inputStream.close();                                                        
                             //  repaint();
                     }catch(Exception e){e.printStackTrace();}  and this is at servlet side
            try {       
                         Vector v=new Vector();                    
                         ObjectInputStream inputFromjsp = new ObjectInputStream(request.getInputStream());                                      
                          v = (Vector)inputFromjsp.readObject();                                                                                                          
                          imgicon=(ImageIcon)v.get(0);                     
                          inputFromjsp.close();            
                          System.out.println(imgicon.getDescription());                                      
                          v.remove(0);
                          v.add(1,imgicon);
    //sending back to applet
                           response.setContentType("application/octet-stream");
                          ObjectOutputStream oboutstream=new ObjectOutputStream(response.getOutputStream());            
                          oboutstream.writeObject(v);
                          oboutstream.flush();
                          oboutstream.close();
                   } catch (Exception e) {e.printStackTrace();}  i really need your help. please let me out of this headche
    thanks
    Edited by: san_4u on Nov 24, 2007 1:00 PM

    BalusC wrote:
    san_4u wrote:
    how can i made a HttpClient PostMethod using java applets? as i have experience making request using HttpURLConnection.POST method. ok first of all i am going make a search of this only after i will tell. please be onlineOnce again, see link [3] in my first reply of your former topic.
    yeah! i got the related topic at http://www.theserverside.com/tt/articles/article.tss?l=HttpClient_FileUpload. please look it, i am reading it right now and expecting to be reliable for me.
    well what i got, when request made by html code(stated above) then all the form fields and file data mixed as binary data and available in HttpServletRequest.getinputstream. and at servlet side we have to use a mutipart parser of DiskFileItemFactory class that automatically parse the file data and return a FileItem object cotaing the actual file data,right?.You can also setup the MultipartFilter in your environment and don't >care about it further. Uploaded files will be available as request attributes in the servlet.is the multipartfilter class file available in jar files(that u suggested to add in yours article) so that i can use it directly? one more thing the import org.apache.commons.httpclient package is not available in these jar files, so where can got it from?
    one mere question..
    i looked somewhere that when we request for a file from webserver using web browser then there is a server that process our request and after retrieving that file from database it sends back as response.
    now i confused that, wheather these webservers are like apache tomcat, IBM's webspher etc those processes these request or there is a unique server that always turned on and process all the request?
    because, suppose in an orgnisation made it's website using its own server then, in fact, all the time it will not turned on its server or yes it will? and a user can make a search for kind of information about this orgnisation at any time.
    hopes, you will have understand my quary, then please let me know the actual process
    thanks
    Edited by: san_4u on Nov 25, 2007 11:25 AM

  • Send Images from CVS-1450 to host

    How is the better way to retrieve the acquired images from CVS when I realize an host application?
    Is the VI-Server the better solution?
    Anyone has some examples?
    Thanks

    Have a look at the following example on www.ni.com :
    Compress IMAQ Images to JPEG Streams for Faster Transfer
    http://sine.ni.com/apps/we/niepd_web_display.DISPLAY_EPD4?p_guid=B45EACE3E88
    D56A4E034080020E74861&p_node=DZ52507&p_submitted=N&p_rank=&p_answer=&p_sourc
    e=External
    CVS side :
    You acquire the images, compress the images, then use a TCP server in order
    to send images to the host.
    Host side:
    Use a TCP client to retrieve the images.
    Jean-Christophe BENOIT
    Alliance Vision
    "FABIOSIEMENS" wrote in message
    news:[email protected]..
    > How is the better way to retrieve the acquired images from CVS when I
    > realize an host application?
    > Is the VI-Server the better solution?
    > Anyone has some exam
    ples?
    > Thanks

  • Sending Images from Mail to Aperture

    Hey all,
    I'm sure people have asked this, but I haven't found any satisfactory responses, so here we go again...
    I want a simple way to send images I receive via email to Aperture rather than iPhoto.
    How can I do this?
    Is it simple?
    If not, why haven't Apple sorted this out? Given even cameraphones are now snapping at 6 - 10 mpixels, images sent via email can no longer be considered 'amateur'.
    Thanks
    Sam

    Please ask Apple to add this feature. It's there for iPhoto, we'd like it for Aperture.
    http://www.apple.com/feedback/aperture.html
    Until then, use Frank's Automater action. It works great.

  • How to send image from web start application to my servlet

    Hi all,
    I have uploaded image in my web start application and now i want to send that image to my servlet. I have created URL connection and using output stream i am able to send data in String as well as numeric format but i have to send image also.
    please help.
    thanks in advance.

    I have done it. contact [email protected]

  • Cannot send email from mobile devices in 2013

    We recently implemented our new Exchange 2013 server,everything ok except for mobile devices. In mobiles i can receive emails, but cant send or reply to any emails. I tried in both android and iphone, not working. Can anyone help to solve this problem.

    Hi,
    Check if you have the Accepted domain settings are correct.
    ECP->Mail Flow->Accepted Domains. Make sure that your default domain is the domain which is having the AD name (eg.domain.local)
    Regards from ExchangeOnline.in|Windows Administrator Area | Skype:[email protected]

  • Upload image from mobile device by using J2ME

    Dear all.
    I would like to upload the png image to the server.. but I don't know how to do. Is it possible to do so? what should I do?? anyone can help me????
    thanks all experts..~~!

    From Example using POST with HttpConnection in javax.microedition.io.HttpConnection:
        void postViaHttpConnection(String url) throws IOException {
            HttpConnection c = null;
            InputStream is = null;
            OutputStream os = null;
            int rc;
            try {
                c = (HttpConnection)Connector.open(url);
                // Set the request method and headers
                c.setRequestMethod(HttpConnection.POST);
                c.setRequestProperty("If-Modified-Since",
                    "29 Oct 1999 19:43:31 GMT");
                c.setRequestProperty("User-Agent",
                    "Profile/MIDP-2.0 Configuration/CLDC-1.0");
                c.setRequestProperty("Content-Language", "en-US");
                // Getting the output stream may flush the headers
                os = c.openOutputStream();
                os.write("LIST games\n".getBytes()); // Replace with PNG bytes
                os.flush();           // Optional, getResponseCode will flush
                // Getting the response code will open the connection,
                // send the request, and read the HTTP response headers.
                // The headers are stored until requested.
                rc = c.getResponseCode();
                if (rc != HttpConnection.HTTP_OK) {
                    throw new IOException("HTTP response code: " + rc);
                is = c.openInputStream();
                // Get the ContentType
                String type = c.getType();
                processType(type);
                // Get the length and process the data
                int len = (int)c.getLength();
                if (len > 0) {
                     int actual = 0;
                     int bytesread = 0 ;
                     byte[] data = new byte[len];
                     while ((bytesread != len) && (actual != -1)) {
                        actual = is.read(data, bytesread, len - bytesread);
                        bytesread += actual;
                    process(data);
                } else {
                    int ch;
                    while ((ch = is.read()) != -1) {
                        process((byte)ch);
            } catch (ClassCastException e) {
                throw new IllegalArgumentException("Not an HTTP URL");
            } finally {
                if (is != null)
                    is.close();
                if (os != null)
                    os.close();
                if (c != null)
                    c.close();
        }

  • I am unable to send images from Lightroom to PSCC2014 using the edit in command.

    Since the latest update to CC2014, my LR edit in menu is not working; PS opens however no image appears.
    I cannot send a single image to CC2014.
    The merge to panorama is not working.
    The open as smart object is working.
    Open as layers is not working.
    Merge to HDR Pro is not working - PC doesn't even open!

    Ok, now, typically, it's mysteriously working. No idea if what I was doing caused it. Set up the account as a POP one using my work outgoing server instead of mail.me.com, discovered that the phone automatically removed all my outgoing mail servers, right after I'd activated them all, so went back and reactivated. Sent email successfully. Created another account as IMAP but everything else the same, and now it suddenly works.
    This has happened to me several times in the past.

  • How to send Images from FCP to Color

    Hey guys, so I've pulled some images off the web and slapped them into my timeline. Trouble is when I send them to Color, they don't work. Why is this, is there a work around
    Image of items inside color.
    http://img251.imageshack.us/img251/3504/upshotfptbt283.png

    Sorry, I should have searched the forum.
    Question answered.

  • How can I simply re-send SMS from N-device (N70)?

    I'm not sure but situation looks quite stupid. I have SMS in "Sent" box and need to re-send it, i.e. send same text to same recipient, but I cannot find any "civilized" way of doing that.
    Am I blind or Nokia made this monkey design of SMS options?
    I compared with my backup phone (cheap model of Sony-Ericsson) and there I can press Forward - Insert Recepient and then list of phones pops up, including number of original recepient of the message.
    Nothing like that is possible in Nokia so-called "smartphone" - I cannot even copy number of recepient to clipboard from SMS message located in "Sent" box. Nokia even does not allow me to move message e.g. to "Drafts" where I could edit it.
    Did I miss some simple step? Feel myself confused...
    If there are really no way to extract number from Sent SMS and use it in new SMS, may be Nokia engineers could make small pocket on backside of the phone - you know, for small pencil and piece of paper, because it seems the only way to re-use the number.Message Edited by sidream on 31-Jul-200705:04 PM

    No problem I can explain if you like:
    1) many messages are sent in hurry - somobody dictates you a number and you think what to send - there's simply no time to enter number in address book
    2) in general I don't like to enter ANY numbers on telephone in address book at all, Nokia has terrible PIM and calendar (and two-way PC sync), so I prefer to enter all data directly on PC in Outlook, and later sync it to Nokia (but not vice versa). That's separate issue, but also deserves to be mentioned here.
    3) there are some service messages with my GSM provider, that have to be sent sometimes - to reset daily limits on incoming web-originated SMS, etc. It would be much easier just to "resend" this message.
    4) sometimes my close people whom I ask something by SMS just forget to do what I'm asking, so it's easy just to resend SMS with same content to the same person, just to remind her/him I'm missing reply or action on their side.
    More ideas? Enough for me....

  • Cost to Send Image from Phone to Online Album

    I was under the impression that it was supposed to be free to send photos I took with the camera on my cell phone to the online album.
    So why was the bill about a $100 this month? I can't afford that. How am I supposed to get the photos off of my LG VX5500 for free?
    I'm only a part of a family plan but with things like they are now I won't be going with verizon when I can get my own plan.

    hi Elistariel -
    With no texting plan, it is 25 cents per picture message. The LG VX5500 (same phone my daughter has) does not use a memory card, so you can try two different programs on your computer (both free) and see if either one will get the pics off and saved on your computer; from there you can upload to your online album without a per picture charge.
    You can try Verizon's VCast media manager - download and install it on your computer, then use the USB cable to link the phone to the computer and transfer the pics with VCast.
    Here's a link
    A third party program called BitPim will also work, but it's more technical and does a lot more than just transfer your media. It can also brick your phone if you don't know what you are doing, so it's "use at your own risk", as Verizon won't cover any losses due to using BitPim. It does work though--I have used it, very cautiously!

Maybe you are looking for