Installing applications onto mobile phone.

I've just got a Sony Erricson k750i and I'm trying to install a j2me app onto the mobile phone, I've tried 2 ways but can't get either to work.
1) USB - I'm able to browse the phone's files fine via USB cable but I have no idea where to put the .jar and .jad file in order for the phone to be able to run the application.
2) Bluetooth - I set up a connection between my PC and phone, I click send file from pc-> phone, I click "accept" on the phone but then it says "downloading failed" even though on the PC end it says it was sucessful.
Please help me install this app, thanks

Thanks for the reply.
I managed to get it working via USB by placing it in the 'other' folder, which then allows me to install it into games or application.
I having a new problem though: I am able to copy over .jars from the example applications folder that came with the Sun wireless toolkit and this will install fine. The problem comes when I try and install my own projects onto the phone. They copy over fine, but when I click install, it says 'operation failed'
I'm not sure what I'm doing wrong, because the projects compile fine in the wireless toolkit, and I click project -> package and it writes the files. I copy them over, try and install and it fails.
Any ideas?
Thanks

Similar Messages

  • Using labview applications on mobile phones

    Hello,
    I am interested in using LabVIEW applications on Mobile Phones. Kindly suggest how it could be used and which type of mobile phones are suitable it.
    Thanks

    Hi Intelligent,
    National Instruments has a Mobile Module for developing applications specifically for mobile devices.  Check out this article for supported devices: LabVIEW Mobile Module Software Requirements and Supported Devices.
    In addition, if you device runs Windows XP Embedded, you should be able to install the LabVIEW Runtime Engine and then run an executable built in LabVIEW.
    Have a great day,
    Chris V
    Applications Engineer
    National Instruments

  • Is there the third way to install application onto iPhone device ?

    Hi guys,
    It seems there are 2 ways to install application onto iPhone now,right?
    The first method is download it from App store/ Ad hoc after application distribution.
    The other way is that tie the iPhone device UDID to App ID of iPhone developer, then download and add the available Development Provisioning Profiles onto iphone,then build and debug application using connected iphone device in the Xcode.
    I want to know wether there is the third way to install application onto iPhone device?
    Sf so,anybody can tell me how to do ? or give me some suggestion?
    thanks!

    The other ways would envolve jailbreaking the phone which cannot be discussed on these forums.

  • Hi... I've had my IPhone 4S since January 13, and it doesn't have the option to use it as a wifi hotspot? When all my friends iphones do. Is there a way to install in onto my phone? Or what do I need to do to get it??

    Hi... I've had my IPhone 4S since January 13, and it doesn't have the option to use it as a wifi hotspot? When all my friends iphones do. Is there a way to install in onto my phone? Or what do I need to do to get it??
    Thanks

    Whether you can use your phone in this way is entirely the responsibility of your phone company/carrier.  You need to contact them to see if you can add tethering to your phone plan.  Be warned though that it could get rather expensive, so if you don't really need it, then do without, but in any instance, you need to contact your phone carrier.

  • Send short message from Java application on mobile phone to server; http

    Hello!
    My question is: can I send short message from Java application on mobile phone to server - with the use of SMS (WMA) or http connection?
    I found this topic http://forums.sun.com/thread.jspa?threadID=5405431 about: "how to send data from midlet to servlet using doPost method".
    There is also such topic http://forums.sun.com/thread.jspa?threadID=5408046&tstart=0 about: "CLDC and MIDP - sending SMS to server -> Wireless Messaging API (WMA)".
    Please, kindly help me.
    Code from the topic mentioned above, edited by me so that it can be read easily:
    //http://forums.sun.com/thread.jspa?threadID=5405431
    //CLDC and MIDP - Re: how to send data from midlet to servlet using doPost method
    I want to know how to pass the values .
    for examples : this is what i wrote for doGet
    String url = setting.getUrl().toString()"/testProServlet/servlet/UpdateCompanyProfile?userId="+loggedInUserId"&svComp="saveCompHex;
    userId and svComp has the data which is very long so i wanted to use doPost.
    Now i dont know how to do it.
    This is what i have done in doGet (midlet)
    public void saveCompanyProfile(String saveComp,int flag,String blankFieldNm)
         System.out.println("flag===" flag);
         if (flag==1)
              displayAlert("Company Profile Edit",blankFieldNm+" field cannot be blank.",AlertType.ERROR, edCmpRecForm, true);
         else
              String saveCompHex = helper.encodeHexString(saveComp);
              // String saveCompHex =saveComp;
              HttpConnection httpConn = null;
              serverSettings setting = new serverSettings();
              System.out.println("saveCompHex===" saveCompHex);
              String url = setting.getUrl().toString()"/testProServlet/servlet/UpdateCompanyProfile?userId="loggedInUserId"&svComp="saveCompHex;
              System.out.println("url of save company profile:: "+url);
              InputStream is = null;
              OutputStream os = null;
              try {
                   // Open an HTTP Connection object
                   httpConn = (HttpConnection) Connector.open(url);
                   System.out.println("urlMidlet1 save edited company data===::" url.length());
                   // Setup HTTP Request
                   httpConn.setRequestMethod(HttpConnection.POST);
                   httpConn.setRequestProperty("User-Agent","Profile/MIDP-1.0 Confirguration/CLDC-1.0");
                   System.out.println("urlMidlet2===" url);
                   int respCode = httpConn.getResponseCode();
                   System.out.println("respCode edit company profile=====" respCode);
                   if (respCode == httpConn.HTTP_OK)
                        StringBuffer sb = new StringBuffer();
                        os = httpConn.openOutputStream();
                        is = httpConn.openDataInputStream();
                        int chr;
                        while ((chr = is.read()) != -1)
                             sb.append((char) chr);
                        String sResultSvCompanyProfile= sb.toString();
                        System.out.println("+++++++++++++Company sResult+++++++++++++==="sResultSvCompanyProfile);
                        if (resultViewCompanyProfile.trim().equals(""))
                             System.out.println("++++++++++++++If++++++++++++++SaveCompanyProfile===");
                             displayAlert("Login Incorrect","Username and Password incorrect", AlertType.ERROR, mainForm, true);
                        else
                             System.out.println("++++++++++++++Else++++++++++++++SaveCompanyProfile===");
                             //companyProfile();
                             displayAlert1("Information","Company Profile edited successfully", AlertType.INFO, profileMenuScreen, true);
                   else
                        System.out.println("Error in opening HTTP Connection. Error#" respCode);
                        //the line below divided into two lines because it was too long
                        displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                        AlertType.ERROR, mainForm, false);
              catch(IOException e)
                   e.getMessage();
              finally {
                   if(is!= null)
                        try
                             is.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
                   if(os != null)
                        try
                             os.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
                   if(httpConn != null)
                        try
                             httpConn.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
              } //end finally
         } //end else (?)
    } //end savecompany

    hi,
    SMS API(WMA) is an optional package. It is not a MIDP1.0 or MIDP2.0 api's.
    There are phones which has WMA api with MIDP1.0 support .... Nokia 3650
    Seimens has some phone with their own api's to send sms.Check out seimens site for more info
    BTW, What do you mean buy sending SMS to Server????
    If you want to send message to server you can do it with Http.
    HTH
    phani

  • How can we implement a j2me application on mobile phone

    Hello to All
    I am working on j2me and made a application that is online ticket booking for cinema hall. it is running on j2me wireless toolkit . Now i want to run this application on mobile. and how can be access this application by every the user who have java enabled mobile phone.i want to know that it may be access through internet suppose se have upload this application on our server.
    Thanks in advance
    Mukund

    I have been having problems in implementing a simple application that fetches information from a server to a mobile phone, then using OTA midlet capabilities.
    Have you got any code that you have tested on the device rather then on the emulator only?
    All the samples i have used from books and online sources didnt work with my server.
    The midlet simply asks for connection and then it gets stuck without displaying anything.
    Please gimme some hints :)

  • Deploying Oracle Applications over mobile phones

    Hallo!I am an Oracle Newbie studying for the Oracle 10g Administration course.
    I am just curious.If one wanted end users to access Oracle Applications e.g E-Business Suite,Discoverer,Siebel etc over mobile phones such that Oracle Forms and Reports could be loaded over a mobile phone,what would this entail?
    What kind of configurations would need to be done on the Application Servers plus on the mobile phones themselves to realize this?Will you need J2ME plus other s/w to do this?
    Please give me a very brief overview as to the applications needed and configurations to be done to achieve this.
    Thanks.

    1) >>>>I ftp-d my rdf file to the default demo directory
    "OraHome1/j2ee/OC4J_Demos/applications/reportsDemo/web/examples/Tools/emp.rdf"
    <<<<<
    The name of the file is "emp.rdf" and you are giving request for "employees.rdf".
    The important thing is the location of file should be in env variable "REPORTS_PATH"
    ( to be set in $OH\bin\reports.sh)
    Thanks
    The Oracle Reports Team

  • Installing application on mobile?

    Hi,
    How do you install an Java application on a mobile? One way is from the hard drive of your computer, using software delivered with your mobile. An alternative is you download it from the Internet using the Internet abilities of your mobile. But is it also possible to send the application using Bluetooth, or MMS?
    Maik

    You're correct!
    You may use BlueTooth, in fact just minutes ago, I transfered my MIDlet (compressed as a jar file) to a Motorola L6 with no problem. Just be sure to use Obex Object push, and drag your jar file into it...
    There are a lot of articles on this Subject if you google'em.
    Hope it helps.

  • I want to run the application in Mobile Phone

    hi,
    I want to load my application in the mobile and to execute .can you tell me how to do that?
    Sathaa

    Hello SIR
    fst chk ur mobile . which connection it support.
    if it Support Bluetooth/infred/Data Cable then connect ur mobile
    with PC through this connection .
    then tansfer your application to your PC
    then run the applicatian and ******** ENJOY ******* uy app
    bye bye
    Souvik

  • HT4623 My friend has an I phone & received word that she should install iOS6 onto her phone.  When I try to do this, the line where it says download & install does not light up & therefore, I am unable to install.  Why is this?

    My friend has an I phone & received word that she should install iOS6.  When I tried to do this, the line that says "download & install" isn't lit up & therefore, I am unable to do this.  Any ideas?  My phone was purchased about 3 weeks ago.

    To answer the post title FireFox save all downloads automatically in the download folder, which you can find in the Documents folder. If you want to choose where to save your downloads go to tools>options>check always ask me where to save files.
    Secondly, I am assuming you have IE 8 installed as this is the only version that supports this fix that is currently not in beta. Go to control panel>internet options>advanced tab and reset the settings at the bottom. This may or may not fix the problem but it is a good first step.

  • Loading an Australian application onto a phone sync'd to a Canadian iTunes

    I am a Canadian living in Australia. I have bank accounts in both Australia and Canada because I travel between these two countries frequently. I purchased my iPhone in australia and sync'd it to my itunes on my canadian computer so itunes treats my account as a canadian account.
    My bank in Australia (ANZ) recently released an iphone application. When I search in itunes, my canadian account cant find it because the application is apparently limited to Australian computers. When I choose "change country" in account settings and change my account to Australia, I can find the application but when I try to download it, it tells me to enter my itunes username and password and when I do, it says I can't download it from that account.
    Is there anything I can do? I don't want to sync my phone to an australian itunes account because then I would lose access to my Canadian bank application

    Is your phone jailbroken?  I haven't heard of anyone using iBoot in quite a while. There are several different things it can refer to. One is a hack to allow installation of OS X on a PC, another is a hack for the iPhone. Either way, I doubt you're going to be able to get support here.

  • Registering Previously CD-installed application onto the app store?

    Hi, My laptop has started giving me a Service Battery indication, and in preparation for a trip to the store for repairs, I have been backing up and checking the status of my applications.
    Pages (and the rest of iworks 09) was installed on my laptop before the mac app store opened, yet I cannot apparently have any other computer that I own recognize that I own this product despite having one other computer with the software having it. Is there a way to register the existence of my ownership on the app store so I could easily re-install it if the repairs force my laptop to have the HD wiped?
    P.S. I am at university, and the original CDs I used to install the application are across the country, hence my interest in getting this to work.
    Thank you,
    Sam

    it if the repairs force my laptop to have the HD wiped?
    If you have any personal information on the computer, that should be removed before giving it to ANY repair shop. A lot of people go even further, they erase the hard drive and reinstall the OS using the disks that came with the computer.
    Is there a way to register the existence of my ownership
    That's the huge advantage of purchasing software on disc, you usually don't have to register it.
    I never register software unless it is absolutely required. When I purchased an upgrade of the software (on disc) I will uninstall the old version and sell it. This is usually perfectly legal as long as you have removed the old version from your computer.
    I am at university, and the original CDs I used to install the application are across the country,
    You need to get those back. Those discs should always stay with the computer.

  • J2me midlet application needs settings on mobile phones

    I have developed j2me midlet application and the jar file can be installed in the mobile phones,
    But to run the application, i downloaded the service provider's GPRS settings on the phone, but Still i need to do some setting changes, like create access points etc. (different setting on different models)to make by midlet run. Why is this happens? is there any way to make the midlet run without any extra settings.
    Please very urgent .. suggesstions please.
    Thanks & Regards,
    Geetha

    Hi,
    If your GPRS is working without any extra settings then your midlet should also work without any extra settings. So you should ask your customers to make sure that their GPRS connection is proper.
    But this would always ask you confirmation for selecting Access Point. To remove that you have to sign your midlet with 3rd party such as Thawte or Verisign. If you dont want to do that then you change the settings of the phone in such a way that it will ask just the first time and then it will not ask for the permission. For doing that go to the Application manager -> Your MIDlet -> Settings. In that change the settings for ask only once.
    Hope this helps you out.
    Sunil

  • Installing applications on Nokia N80

    Hello,
    Does anyone know how to install applications onto the N80?
    James

    yes install the pc suite software that came with ur phone on a CD. once this is installed and the program open you will see an 'install applications' icon. very simple to use.

  • Problem in mobile phone camera Image retrieval using J2ME ...

    Hi
    I am doing video surveillance application with mobile phone ...
    but i am not able to get the images faster from my mobile phone ..
    I need atleast 2 photos /frames per second using J2ME ...
    wen i tried it , it is very slow and i am not able to get 2 frames per second ...
    can somebody help me ?

    That's quite a bunch of stuff you want to do there.
    Just a short hint for the image processing part here: You can ask any BufferedImage for it's raster (using getRaster()), and you can use the raster's getData() method to access the DataBuffer (the array storing the pixel values). It should be quite easy to split the DataBuffer into 9 tiles which you can then store as blobs. You can also use the DataBuffer to check for color values, or, if you don't want the trouble, you can always use the raster's getRBG(...) method - beware though, it's a lot slower for processing large quantities of pixels. Just another hint: you will have to cast the DataBuffer to it's real type if you want to access the pixel values, for example to DataBufferByte for most RGB images. You can use the DataBuffer's getType() method to determine which kind of buffer the image is using.

Maybe you are looking for