Please don't get angry...

Hi all,
This question is gonna make some of you mad but I just can't manage to help myself (I've really tried).
I'm trying to create and manipulate executable jar files using command prompt (C:\WINDOWS\system32\cmd.exe) but everytime I enter the[b] jar it gives me the error "'jar' is not recognized as an internal or external command, operable program or batch file." What is wrong with me?
Apologies...

You have to add the directory that contains jar.exe to your path.
Go here: http://java.sun.com/javase/6/webnotes/install/jdk/install-windows.html
And scroll down to the part about updating the path variable. The directory you add to your PATH must have jar.exe in it. If you have no such directory, then you didn't install the JDK, so go here: http://java.sun.com/javase/downloads/index.jsp and download JDK 5.0 Update 9.

Similar Messages

  • I hope you don't get angry! :)

    Im trying to send a mail to a Yahoo address.
    I have searched through the forum and I saw plenty of replies on this
    subject. But they just can't help me!
    This is my code:
    import java.io.*;
    import java.net.InetAddress;
    import java.util.Properties;
    import java.util.Date;
    import javax.mail.*;
    import javax.mail.internet.*;
    * Demo app that shows how to construct and send an RFC822
    * (singlepart) message.
    * XXX - allow more than one recipient on the command line
    * @author Max Spivak
    * @author Bill Shannon
    public class Msg_send {
        public static void main(String[] argv) {
         new Msg_send(argv);
        public Msg_send(String[] argv) {
         String  to, subject = null, from = null,
              cc = null, bcc = null, url = null;
         String mailhost = null;
         String mailer = "Msg_send";
         String protocol = null, host = null, user = null, password = null;
         String record = null;     // name of folder in which to record mail
         boolean debug = false;
         BufferedReader in =
                   new BufferedReader(new InputStreamReader(System.in));
         int optind;
         for (optind = 0; optind < argv.length; optind++) {
             if (argv[optind].equals("-T")) {
              protocol = argv[++optind];
             } else if (argv[optind].equals("-H")) {
              host = argv[++optind];
             } else if (argv[optind].equals("-U")) {
              user = argv[++optind];
             } else if (argv[optind].equals("-P")) {
              password = argv[++optind];
             } else if (argv[optind].equals("-M")) {
              mailhost = argv[++optind];
             } else if (argv[optind].equals("-f")) {
              record = argv[++optind];
             } else if (argv[optind].equals("-s")) {
              subject = argv[++optind];
             } else if (argv[optind].equals("-o")) { // originator
              from = argv[++optind];
             } else if (argv[optind].equals("-c")) {
              cc = argv[++optind];
             } else if (argv[optind].equals("-b")) {
              bcc = argv[++optind];
             } else if (argv[optind].equals("-L")) {
              url = argv[++optind];
             } else if (argv[optind].equals("-d")) {
              debug = true;
             } else if (argv[optind].equals("--")) {
              optind++;
              break;
             } else if (argv[optind].startsWith("-")) {
              System.out.println(
    "Usage: Msg_send [[-L store-url] | [-T prot] [-H host] [-U user] [-P passwd]]");
              System.out.println(
    "\t[-s subject] [-o from-address] [-c cc-addresses] [-b bcc-addresses]");
              System.out.println(
    "\t[-f record-mailbox] [-M transport-host] [-d] [address]");
              System.exit(1);
             } else {
              break;
         try {
             if (optind < argv.length) {
              // XXX - concatenate all remaining arguments
              to = argv[optind];
              System.out.println("To: " + to);
             } else {
              System.out.print("To: ");
              System.out.flush();
              to = in.readLine();
             if (subject == null) {
              System.out.print("Subject: ");
              System.out.flush();
              subject = in.readLine();
             } else {
              System.out.println("Subject: " + subject);
             Properties props = System.getProperties();
             // XXX - could use Session.getTransport() and Transport.connect()
             // XXX - assume we're using SMTP
           if (mailhost != null) {
              props.put("mail.smtp.host", mailhost);
              props.put("mail.smtp.auth", "true");
             // Get a Session object
             Session session = Session.getDefaultInstance(props, new SAuth() );
             if (debug)
              session.setDebug(true);
             // construct the message
             Message msg = new MimeMessage(session);
             if (from != null)
              msg.setFrom(new InternetAddress(from));
             else
              msg.setFrom();
             msg.setRecipients(Message.RecipientType.TO,
                             InternetAddress.parse(to, false));
             if (cc != null)
              msg.setRecipients(Message.RecipientType.CC,
                             InternetAddress.parse(cc, false));
             if (bcc != null)
              msg.setRecipients(Message.RecipientType.BCC,
                             InternetAddress.parse(bcc, false));
             msg.setSubject(subject);
             collect(in, msg);
             msg.setHeader("X-Mailer", mailer);
             msg.setSentDate(new Date());
             // send the thing off
           //Transport transport = session.getTransport();
             Transport.send(msg);
             System.out.println("\nMail was sent successfully.");
             // Keep a copy, if requested.
             if (record != null) {
              // Get a Store object
              Store store = null;
              if (url != null) {
                  URLName urln = new URLName(url);
                  store = session.getStore(urln);
                  store.connect();
              } else {
                  if (protocol != null)          
                   store = session.getStore(protocol);
                  else
                   store = session.getStore();
                  // Connect
                  if (host != null || user != null || password != null)
                   store.connect(host, user, password);
                  else
                   store.connect();
              // Get record Folder.  Create if it does not exist.
              Folder folder = store.getFolder(record);
              if (folder == null) {
                  System.err.println("Can't get record folder.");
                  System.exit(1);
              if (!folder.exists())
                  folder.create(Folder.HOLDS_MESSAGES);
              Message[] msgs = new Message[1];
              msgs[0] = msg;
              folder.appendMessages(msgs);
              System.out.println("Mail was recorded successfully.");
         } catch (Exception e) {
             e.printStackTrace();
        public void collect(BufferedReader in, Message msg)
                             throws MessagingException, IOException {
         String line;
         StringBuffer sb = new StringBuffer();
         while ((line = in.readLine()) != null) {
             sb.append(line);
             sb.append("\n");
         // If the desired charset is known, you can use
         // setText(text, charset)
         msg.setText(sb.toString());
    }And this is the way I use it:
    java Msg_send -M ismb.edu.ro -o [email protected] -U sarmisb -P qwerty
    But I get the next exception:
    javax.mail.SendFailedException: Sending failed;
      nested exception is:
            class javax.mail.SendFailedException: Invalid Addresses;
      nested exception is:
            class javax.mail.SendFailedException: 550 5.7.1 <[email protected]>...
    Relaying denied. IP name possibly forged [213.233.110.144]
            at javax.mail.Transport.send0(Transport.java:218)
            at javax.mail.Transport.send(Transport.java:80)
            at Msg_send.<init>(Msg_send.java:173)
            at Msg_send.main(Msg_send.java:60)Is it something wrong with my smpt host ismb.edu.ro ?!
    Please, someone help me! :)

    Yahoo requires you to authenicate before you can send email...
    Example:
       /** This is the authenticator for SMTP session */
       public static class MyPasswordAuthenticator extends Authenticator {
          private String username = null;
          private String password = null;
          public MyPasswordAuthenticator(String username, String password) {
             super();
             this.username = username;
             this.password = password;
          public PasswordAuthentication getPasswordAuthentication() {
             return new PasswordAuthentication(username, password);
       Properties props = System.getProperties();
    Session session =
    Session.getInstance(props, new MyPasswordAuthenticator(username, password));
      

  • FormsCentral provides an elegant solution. Please don't get rid of it.

    As long as you are making some money off of it, why not keep it going? As time goes by more people may discover its advantages.

    Silkrooster wrote:
    From what I can see they are looking for ways to trim the fat. Which is probably why it appears that they are heading toward doing a way with flash builder. This is the conclusion that I came to when reading their mission statement. Before anyone panics, read it first just incase I mis-interpreted it. I think this has to do with html 5 and javascripts role.
    I spent some time making space on my 250Gb SSD while waiting for CC to go live.  I'd already got most things caching etc. to other drives (I have 14Tb over 11 drives), but with the aid of Windirstat - which is an excellent free download - I was able to find another 40Gb.  There's another 10 or so Gb of space to win back if I can make iTunes relocate some of its information, like device backups, but I have tried following the Googled instructions and it wouldn't take.
    Anyway, I ended up with 90Gb free, which has dropped to 80Gb after installing the 12 CC apps I need.  I still have a few CS5 and CS6 apps, and will probably keep them, but I was still kind of shocked when I used Windirstat and found that Adobe apps are using 38Gb of my C drive:
    Program files               18.6Gb
    Program files (86)        9.9Gb
    AppData/Roaming       9.4Gb
    That's kind of scary.  Harm Millaard mentioned trimming 2Gb of extraneous files from his CC installations by deleting the Language and Legal folders, but they are barely a few Mb per folder, so it would take you ages to hunt them down, (unless you were brave enough to use a search and delete method (I just made myself shudder)

  • I payed in game " clash of clans " but I don't get the gems please help me '14000 gems'

    HI
    i payed gems many times from clash of clans but today I payed '14000' gems and the said 'successful' but i don't get the gems.
    what I can do?

    Hello abdullatif119,
    If you do not see a consumable in-app purchase you made, then please contact the developer of the app you made the purchase in.
    If you don’t see your in-app purchases - Apple Support
    Thanks for using the Apple Support Communities!
    Cheers,
    Alex H.

  • What bit of "Please don't phone me" doesn't BT get...

    What bit of "Please don't phone me" doesn't BT get?
     I have experienced a cataloge of corrosponce with BT dealing with the bad broadband speed issues that I have had on my connection since last november. Too long to list here see the link below
    Terrible broadband speed
     Its fair to say that individual BT operators and advisors have been courtious and have tried to be helpfull most of the time but...BT have failed to find a long term fix for my issues.
    The last month up until yesterday I was lucky enough to experience a wopping and reasonable steady 1.5 mbps...wow! Seriously it was fantasic! Compared to a miserable 0.3mbps or worse. I felt I was getting what I was paying for! Then the bill came in (and was wrong yet again!)! and coincidently? the speed returned to its former low!
     Without baffling the humble user with scientific terminology, it turns out the problem is caused by line noise - not of my own making! Well, I noticed that incoming calls on the landline telephone were knocking my broadband out, after a while I made the desision to dissconnect the phone because of the issues with calls knocking my speed down. I imformed as many of my familly and friends not to call me on my phone and use my cell instead. However I can't stop random incoming calls, which sends the blue lights on my hub to flickering orange. This in turn equates to the stupid adsl2 software that BT use, knocking down my profile and hence speed!
     When are BT going to get to grips with their stiffling system that takes up to ten days to recallibrate itself?
     Their old system used to work fine at this rural address, quickly reasserting itself if there was a line knockout or interference - which is common in rural locations. Now it seems in order for BT to advertise super fast speeds to most that can benefit from it who live within a couple miles of the exchange. The rest of us that don't, have to suffer for the sake of this new adsl2 system. Its a shambles and at times heartbreaking and BT still expect us to pay the same as anyone else!
     Dont be fooled. If you live in a rural location or more than two miles from the exchange, the chances are that if you are experiencing loss of BB speeds recently, whence before you had a reasonable service. Its down to the new BT adsl2 system they have brought in. Its not your fault, don't let the customer support advisors tell you otherwise! At least thats my experience!
     The new system is more sensitive to noise, true it may be marginally faster, but as it turns out at what cost?
     I have had a dozen engineers who have come round and each remarkably have "found and fixed the problem" then I get a reasonable speed for a few days before it drops again as of yet I have not had a pernament fix!
     The loss of speed issues have led to a series of 'knock on effects' including my wireless BB BT mobile going beserk leading to a £260.00 bill for one month!
    #Being charged £40.00 for Broadband phone calls I did not make - I had to call in the police for the theft of phone calls made before BT would take me seriously - they said there was no record and that it was impossible to hack BT broadband phones! In the end they found a 'mistake' but it was a **bleep** of a fight to get them to admit that!
    Even after that, they cut me off (for non payment of these calls) and are now trying to charge me a reconnection fee!
    Also I am paying for an 'unlimited' broadband package and broadband anywhere - which is a complete joke because I am lucky if I can get broadband anywhere at all!I know I really need to sort this out - but there is no one dpartment it seems that can deal with it all
    After my BT Broadband Anywhere phone freaked out (Down to issues related to my BT hub losing connections - I ended up asking BT Mobile to dissconect my gprs for fear of it happening again - even though I was paying for the 'unlimited 'gprs service) and the 'stolen' BB phone issues, I dissconected my wireless completely!
    So NO BB on my BT mobile, on average I am lucky if I get a week a month on maybe 1mbps, the other three weeks on 0.3mpps on my home broadband.
     The trouble is that I am so sick and tired of being pushed from department to department and repeating myself on a weekly or even daily basis. I can never get one individual who can deal with all my problems in one go, #I am absolutely fatigued with it all.
    Going somewhere else is not an option I am imformed where I live.
    I have written letters to the customer service department and they have phoned me back and said things often at times when I am off-guard , so its hard to remember the details.
    Now my policy is to have everything put in writing.
    Despite using BT's 'contact us' form to report the latest speed issues and ticking the box that says
    "respond by email" and stating "Please don't phone me" as well on my message body....I get a series of phone calls! Both on my mobile number and on my landline!
    No comprehensible message returned as requested by email but phone calls from polite and friendly Indian help advisors...and guess what?   The calls the BT staff have made on my landline, has knocked my profile down even further!
    Even though I headed my message with "Please do not phone me on my landline phone number"
    How ignorant is that?
    I have even asked for my landline calls to be diverted, but that costs £5.00 pm - I don't see why I should have to pay for this.
    What I would like is for one BT person who can sort out All of these problems for me
    (That'l be technical department, security department, billing department, sales department, customer service department and more and then back again - I hav'nt got the stomach or time for being pushed from pillar to post!)
    - but from BT that is probablly asking too much!
    I fell I have had so many problems with the BT Broadband service, with the time I have spent trying to get things sorted, BT should be paying me! And  they should take a good hard look at how their system works!
     Bt have a **bleep** cheek to charge me £150.00 per quarter for all this!
    My father pays £96.00 for this same service, gets 8.00mbpsm, can use his landline and hubphone, can use his wireless, plus BT vision as well - How fair is this?
    I think its time for Ofcom

    It would be Otello and not Ofcom but in my experience they are very much in the pocket of BT (not least since they are funded by the telcom companies).
    I suggest you try contacting the mods here and see if they can help
    If my post was helpful then please click on the Ratings star on the left-hand side If the the reply answers your question fully then please select ’Mark as Accepted Solution’

  • I want to check the main diffrence in Pop up block enabled and disabled.But,i don't get any difference.Would u please help me to understand the difference using one practical example of website

    I want to check the main diffrence in Pop up block enabled and disabled.But,i don't get any difference.Would u please help me to understand the difference using one practical example of website

    Here's two popup test sites.
    http://www.kephyr.com/popupkillertest/test/index.html
    http://www.popuptest.com/

  • HT5622 When I was update free OS update I was charged 60 INR four times, I don't how to claim my money back. Could you please help to get my money back?

    When I was update free OS update I was charged 60 INR four times, I don't how to claim my money back. Could you please help to get my money back?

    Did you add or change your credit card details on your iTunes account when downloading them ? If you have then each time that you do so a small temporary store holding charge may be applied to check that the card details are correct and valid and that it's registered to exactly the same name and address as on your iTunes account - it should disappear off your account within a few days or so.
    Store holding charge : http://support.apple.com/kb/HT3702

  • TS1702 On my Page Tool Bar I don't get the icons for info and insert. Please help

    When I open my Pages Program I don't get the icons for 'info' and 'insert'. Please help

    I'm having the exact same issue.  Any help is appreciated!
    Thanks!

  • HT1296 Im not able to download movies and music purchased from my iTunes on my iPad iOS 6.1. The download begings to show and once the dowload appears 100% done, I get a message "unable to download". please help

    Im not able to download movies and music purchased from my iTunes on my iPad iOS 6.1. The download begings to show and once the dowload appears 100% done, I get a message "unable to download". please help

    You have to have an internet connection, either wireless or through a computer with iTunes.  When you choose Software Update you can only update to the latest version for your iPod Touch, iOS 6.1.6

  • How can i get some help to cancel my single app month to month and/or upgrade to full creative cloud membership? please don't tell me to follow the guidelines because i've tried several times but the options to 'switch plan' or cancel plan' are not availa

    how can i get some help to cancel my single app month to month and/or upgrade to full creative cloud membership? please don't tell me to follow the guidelines because i've tried several times but the options to 'switch plan' or cancel plan' are not available on my screen

    Keensy I have requested a member of our support team contact you directly via telephone.  Once I was able to review the correct account it appears our support team has tried multiple times to contact you.  I would recommend checking your SPAM filtering in case you need to receive additional messages from our support team.
    I did request that you be contacted via telephone. I am sorry for all of the difficulties which you have faced.
    For future viewers of this discussion when contacting our support team at Contact Customer Care it is imperative that you be logged in under the account tied to your membership/subscription.  While there is cancelation options available you will have an increased chance of being offered an opportunity to contact our support team if your account entitlement can be verified.  For this to be done you will need to be signed into the same account as your membership/subscription/registered software title.

  • I have just deleted Macintosh HD. Now I have reset my computer and there is just a flashing glider with a question mark. I don't know what to do, I'm really worried about this so please May you get back to me as soon as possible?

    I have just deleted Macintosh HD. Now I have reset my computer and there is just a flashing folder with a question mark. I don't know what to do, I'm really worried about this so please May you get back to me as soon as possible?

    Why did you delete the hard drive?   If you delete the contents of the Macintosh HD you have no system to boot into.  That's what the flashing folder/? means.  What system were you using before deleting everyting.
    You're going to have to install a system on the HD before you can boot.
    OT

  • I have the new iPad and I don't get any sound when I load games such as angry birds or monkey island. Any suggestions.

    I have the new iPad a n I don't get any sound when I load games such as angry birds or monkey island. Any suggestions?

    Have you got notifications muted ? Only notifications (including games) get muted, so the Music and Videos apps, and headphones, still get sound.
    Depending on what you've got Settings > General > Use Side Switch To set to (mute or rotation lock), then you can mute notifications by the switch on the right hand side of the iPad, or via the taskbar : double-click the home button; slide from the left; and it's the icon far left; press home again to exit the taskbar. The function that isn't on the side switch is set via the taskbar instead : http://support.apple.com/kb/HT4085

  • Hey guys I need to delete photos from the very first  IPad sold on the market, how I do it, when I bring the photos to be view I don't get the little garbage can to trash them. Help please!

    Hey guys! How you delete photos from the very first IPad when you don't get the little garbage can on the screen.

    The links below have instructions for deleting photos.
    iOS and iPod: Syncing photos using iTunes
    http://support.apple.com/kb/HT4236
    iPad Tip: How to Delete Photos from Your iPad in the Photos App
    http://ipadacademy.com/2011/08/ipad-tip-how-to-delete-photos-from-your-ipad-in-t he-photos-app
    Another Way to Quickly Delete Photos from Your iPad (Mac Only)
    http://ipadacademy.com/2011/09/another-way-to-quickly-delete-photos-from-your-ip ad-mac-only
    How to Delete Photos from iPad
    http://www.wondershare.com/apple-idevice/how-to-delete-photos-from-ipad.html
    iPhoto for iOS (iPad): Delete photos from iPhoto
    http://support.apple.com/kb/ph3137
    How to: Batch Delete Photos on the iPad
    http://www.lifeisaprayer.com/blog/2010/how-batch-delete-photos-ipad
    How to Delete Photos from iCloud’s Photo Stream
    http://www.cultofmac.com/124235/how-to-delete-photos-from-iclouds-photo-stream/
    The Fastest Way to Remove All the Photos from the iPad Camera Roll
    http://ipadinsight.com/ipad-tips-tricks/the-fastest-way-to-remove-all-the-photos -from-the-ipad-camera-roll/
    Delete Pictures from Your iPad
    http://www.dummies.com/how-to/content/delete-pictures-from-your-ipad.html
     Cheers, Tom

  • TS1702 Unable to get angry birds space danger zone to download. Everything else will download and I have a receipt for it but can't play it. Also says unable to connect to the iTunes store. Need help in normal English not tech talk please. Thank u

    I can't get angry birds space danger zone to download. I have a receipt but it won't download. I bought angry birds space and music just fine but this game won't download. Also says can not connect to iTunes store.

    try contacting the app developer and see if they can resolve your issue.

  • To SONY management not Sony ericsson Management, please don't do the same mistakes.

    Please Don’t Make Same Sony-Ericsson Mistakes
    by USER-986393 » Thu Oct 27, 2011 3:40 pm
    Congratulations on your Erricsson's share acquire, I must say i have been Sony phone holder from the day SONY CDM-Z1 was created, forced my self to stick with SE... and now happy to come back to SONY again. I would like to talk about couple of things...
    Response:
    The major fall of SE is the fact that they did not listen to fans and most importantly customers. we complained so much over Xperia X1 and Xperia X10 until SE forced us to purchase other brands due to lack of response. so please, responding to complaints is critical when there are so many better phone makers out there.
    Lack of future vision:
    Look at the Galaxy S, Galaxy Sii, Iphone... you know what they have in common? light years technology for the same price as Caved in SE phones. Arc vs Sii?... SE was against technology for some reason, for instance. who ever was against dual processor and how much it would attract customers, needs to find another company to put down. Lack of LTE?, how can someone not find that as something a cell phone can use in the future? Market share in USA? why would someone not give the US attention, no one buys a full priced phone these days, that only worked when there was no contracts. these days i don't mind a contract as long as i am getting a phone a i can not afford. also i never understood this frequency difference, why did SE wait until iPhone 4s marketed the idea a "world phone" that works anywhere? why did SE insist on making an American version and an international version? example ARC LT15A and ARC LT15i is it SO HARD to make a phone that has all the frequencies LT15Ai? really? who ever was against that idea needs to go as well.
    I will assume who ever is reading the example i mentioned above is grasping the importance of it... it's as simple as this SE would have been more successful had more people bought SE phones, i am interested in the ARC LT18A, well there is only LT18I that wont work 3g on At&t. here are the problems that you will face... 1 - a happy innocent customer that did not know that, purchased a LT18I (international) and realized SE customers service in Canada or USA that it won't work in the U.S. on 3g...   2 - a frustrated customer like me who knew about the difference from previous mistakes and decided to buy an iphone instead just bc of the being neglected or carelessness from SE towards people in the U.S.  either way, wither those two two points were shocking to you as a SE manager, or a common fact that is not important enough... that manager needs to go.  with a tahnk you note for loosing market share in the U.S. deserves an excelence in that actually.
    Wrong Focus, right focus was a little too late:
    SE phones especially in 2011 was way behind any other company in smart phones, yes the ARC S was maybe a nice attempt but simply not enough... the world is advancing really fast, if you dont catch the train, then your about to bankrupt. it took forever to jump on really powerful phones and instead there so many variations. you can get a cyber-shot but not a Walkman.. you can get a walkman phone but not as smart as the p900 you can get the p900 but not as slim as the p600. SE was competing with its own self ... lets FOCUS, get your stuff together and make a Quality phone not Quantity phone. (GOOD JOB ON THE TABLET) the variations are based on needs not confusing differences. The ARC was a great phone, but SE had missed the train.
    THE UPDATES:
    The most frustrating customer service i have ever experienced, and when updates come out, they come out first in Nordic places then in middle east country by country... giving every day more fuel to angry customers wondering when they will be lucky to get an update ... why can't there be one global update for all phones and different updates to phone carriers for each country. make it easier, it does not take a company purchase to do so.
    Announcements:
    it was frustrating, just like it is right now, i still don't know when ARC S comes out. oh wait i am in the U.S. it comes out "WHENEVER" does it look like i am happy? i need a new phone, how SE expect me to purchase an ARC S when i don't know how long i am waiting for it and there is GALAXY and Iphones released in the markets hovering around me every day?
    USA, USA, CHINA, USA:
    Why was the U.S. not a focus, please someone answer!
    Creativity:
    androids are awesome operating systems, they are simply great and simply work every single time you use them. i believe, i gave SE so many ideas, non of them were integrated. to be able to distinguish your self from the rest of the pack; you need to be the alpha. simply having the most powerful phone is one factor, Xmore R is another, crazy led designs. look at the Tablet S, it's not the thinnest, it's not the cheapest, it's not the most powerful, yet it's unique in design. and for the market with the dull flat tablets, who ever designed it should design your new phones. the ARC design was AMAZING but lacked the items that are enough to give it a competitive edge in the market.
    Charging:
    Why is it only micro USB is the main charger, Why can't it be that and another EASY WAY OF CHARGING, why do we have to wait tell apple go to conductive charging? SONY come up with two ways of charging, micro usb is great cause every one has either a BB or an android somewhere. but imagine just placing your phone on something without me connecting... I AM BUYING.
    Pricing:
    SE charges an arm and a leg, when Galaxy Sii and iphone 4s are $200.00... do you not thing there is something wrong here?
    Accessories:
    I have suggested times and times, make more accessories, lets compare phones covers for the Iphone and the Any SE phones... the amusing aspect is, why did not SE see what I see?
    Cool names PLEASE:
    the ARC is a way to start after 10 years of naming products like fax machines... I need to see Jima, president, awesome... less chemical equations of fax machine names. LT18a, imagine I tell my friends have you seen the LT18a or have you seen the Sony ARC?
    FM:
    Really?  your research says in 2011 people won't buy a phone without FM?  and the customers would also do the twist dance from the joy of knowing the phone has FM.  it's 2011, perhaps you need to look in your research again.
    SonyEricsson does not see the need for a dual processor for an android that won't support it yet:
    that right there shows the difference between a company with a long vision and another with a short one.  my answer to that statement, please set down get some popcorn as you are just about to watch S ii and iphone 4S a chance to be light years ahead of you, and sell millions of more phones than you.  just because someone that works at SE has a very short vision ruining a whole company. president of Syria bashar alasad, believes that his country is under control.  the achievements of democratic countries did not impress him and the fall of Lebian, Egyptian, and Algerian presidents did not get him to even think twice about what is happening.  it amazes me how people can be so selfish and short visioned.
    Waterproof: 
    Great idea, where is the phone, i am in the U.S. while you are at it, let me suggest accessories.  a helmet accessory that would station that phone on my helmet while i am racing... right there i can buy a phone that is weather proof records 720 p and when i am done from my athletic even i can use it as a phone.  knowing SE, don't even think about that idea, and i will get an email saying we only have a shoulder accessory for now thank you for inquiring.
    Closing fan websites?
    xperiablog.net, um........ ? 
    now there are people at SE that need to be promoted,
    Updates had gotten faster and better, but they still need more work
    unlocking the boot loader is a great i dea
    designs started becoming extra beautiful
    SE website is beautiful
    facebook page is great
    xmor r, phone screen size EXCELENT
    forum support is getting better
    there many many things I can bring to the table, question is, SONY are you going to do the same Mistakes? or am i going to changes? perhaps you need to hire me, so I can get something done. how open are you to changes? how open are you to listen to your customers and fans? how open are you to realize the completion and take actions to be ahead of the curve? how open are you to realize that the Video games on cell phones are only fun the first 5 minutes but after that iphone 4s is better?
    LTE, Gorilla Glass, conductive charging, Unique design, unified phone, focus on 1 - 3 phones for the whole year, interactive customer service, New logo, Battery performance, UNIQUE DESIGN, top notch camera, waterproof, why dual when you can go Quad... go in to the market with a bang and bigger bang with it's prices. Start cranking AT&T and Tmobile, Verizon and Sprint from now in the U.S. chop chop you have work to do...
    I wish you the best of luck SONY and hope to see interesting phones coming from your end.
    Solved!
    Go to Solution.

    lov2bugu, you said things the exact way I wanted to express them! It was like watching me talking to a SONY’s CEO.
    I don’t really think they are not aware of the problems. SONY used to be the 27th largest company in the world, according to Forbes. They are now at the 456th place!!
    They are aware of their problems and I think, the move to buy the remaining stocks from Ericsson, is a move to bounce back into the market. They found the right time, where the stock is too low and the economics around the globe don’t  look promising enough. I have to recognize them, all the bad phases they went into this year … hacking attack, loss of their factory in London, global economic climate etc.
    But these are not excuses good enough not to produce quality, reliable and technologically advanced goods. I think that SONY is not to blame for the bad course SE has had. I think this is what SONY wants to revert. They want to “embody” all their technology … BRAVIA engines (TV Tech), Walkman and Cybershot tech (using Carl Zeiss lenses), VAIO (Comp tech) and finally PS3. Ericsson tried to integrate them, unsuccessfully.
    Overall, I thing SONY, did not have or did not attempt to have the control of SE, hence, the answer you got back from SONY “… anything related to SE must be posted on the website of SE”. I think they will bounce. Just give ‘em some time. I’m willing to give them time, but not too much though. Just because I’ve always loved this brand!

Maybe you are looking for

  • Migrate script to Smartforms

    Hello , <b>Background :</b> 1) After I migrate Script to smartforms . I get around 200 windows . As 200 windows have been defined in a script .( 1 window per box). 2) The layouts are pretty complex and it would take around 2-3 days to create a new sm

  • Digital Signature Vendors?

    Hello, We are building an application that our sales agents will use to fill in fields that will generate a pdf contract that we need to send to new customers. Has anyone used a digital signature vendor such as DocuSign or EchoSign to handle this pro

  • Parallel Processing In Interaction Center Account Identification

    Hi Experts, Can you please tell me how to process the multiple account idetification in Interaction Center. i.e An Agent is handling a call and Identified an account and again can he process or handle the different customer at the same time as first

  • Easy way to print websites?

    When I'm using Firefox I'm not able to print like on the computer, why is this not working? (/Menu/Print) Is there an easy way to print with the Z2? I mean without extra apps and transporting websites to pdf then to priter and that kind of weird stuf

  • 5D Mark III Video Problem -- Help Needed!

    Hello, Been using my 5D Mark III for video for about a month now. I noticed a problem occurring in the middle of certain shots where the color seems to shift. The problem is so slight that it will take full screen, full HD and a high level of concent