I have an "unexpected error" on my iPad for my VPN.

I have an "unexpected error" on my iPad for my VPN. I removed my old certificate because it said "not trusted" and received and installed a new certificate (now it shows trusted) but get the same message. Worked find before I installed iOS7.

Could be a "bug".
Send feedback to Apple.
http://www.apple.com/feedback/ipad.html
 Cheers, Tom

Similar Messages

  • If connect iPad to my TV every time the clip is finished I have to disconnect and reconnect the iPad for new clip playing.

    If connect iPad to my TV every time the clip is finished I have to disconnect and reconnect the iPad for new clip playing.

    1. Why don't you purchase it from Apple? I'd be wary with eBay sellers - and, after all, Apple posts their stuff everywhere, even if you live in a country without a localized Apple store webpage or local (physical) Apple stores.
    2. when it comes to adapters / cables like these, NEVER purchase ANYTHING non-Apple-manufactured! Most of the cheap(er) knock-offs don't work! That is, don't try to save on going for a cheaper alternative - it most likely won't work.
    Here are the links:
    http://store.apple.com/us/product/MD098ZM/A
    http://store.apple.com/us/product/MC552ZM/B

  • I have been using yahoo mails from iPad for several months. Today I am unable to access my mails even though I logged in to yahoo....the signin screen is keep coming when I tried to access mail.....is it due to iPad or yahoo?

    I have been using yahoo mails from iPad for several months. Today I am unable to access my mails even though I logged in to yahoo....the signin screen is keep coming when I tried to access mail.....is it due to iPad or yahoo?

    It sounds like you might need to contact Yahoo! if you aren't able to setup your email account as a new account after deleting it. 
    I found some links on the Yahoo! website that might help:
    http://help.yahoo.com/kb/index?page=content&id=SLN4138&locale=en_US&y=PROD_MOBIL E
    http://help.yahoo.com/kb/index?locale=en_US&y=PROD_MOBILE&page=content&id=SLN261 7

  • I have an unexpected error setting up iCloud desktop with my Outlook Celandar

    Setting up iCloud desktop on my Windows 7 computer, I encounter an "unexpected error" when trying to set up the Outlook Calandar & Contacts. I don't see any indication on how to fix this issue.

    Done. Same result. Tried re-installing the iCloud Desktop as well. Same result.

  • TS4124 How do I reverse DOWN LOAD ALL done in error on my iPad for my iTunes Match just setup with some 22,000 songs.   There is no way I can download that onto the tiny memory of my IPad . Thank you for your help

    How do I reverse DOWN LOAD ALL done in error on my iPad with my newly set of ITUNES MATCH that has some 22,000 tunes.   I have not found away of stopping it; every time I play a song it automatically downloads onto my iPad. Help!

    Thank you so much for the response. This half sorts out my issue, as turning off Musicmatch means I can load music onto my iPad, but the minute I turn it back on to access my library whilst travelling I will lose what I have loaded as it comes up saying " all music will be erased".
    I really apprecaite your time, so will just have to live with what I load. Seems weird that Apple wouldn't consider people want to listen to music on planes or in Non - wifi zones??
    Thanks again!

  • Variable might not have been initialized error in an assignment for school

    Hello All... I am very new to Java (started class about 2 weeks ago) and my current assignment has me a bit stumped on what I am doing wrong. I have put the code in this message for everyone to take a look at and offer advice or point me in the right direction on what I missed a step on. I appreciate any help you can offer.
    The error is coming on line 39:
    * Program: MathProgramExtra
    * Author: Michael Stewart
    * Date: August 22, 2010
    * Program Purpose: This program is intended to display selection and iterative statements.
    import javax.swing.*;
    public class MathProgramExtra
        public static void main (String[] args)
            Object[] mathPossibilities = {"+", "-", "*", "/", "%"};
            Object[] firstintegerPossibilities = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10"};
            Object[] secondintegerPossibilities = {"1", "2", "3", "4", "5", "6", "7", "8", "9", "10"};
            Object[] options = {"Yes, Please", "No, Thank You"};
            String m;
            String f;
            String s;
            int firstint;
            int secondint;
            int answer;
            char ans = 'Y';
            while(ans !='N')
                System.out.println("ans in beginning of loop is :"+ans);
                m = mathOp(mathPossibilities);
                f = firstNum(firstintegerPossibilities);
                s = secondNum(secondintegerPossibilities);
                firstint = firstNumConversion(f);
                secondint = secondNumConversion(s);
                performMath(m, firstint, secondint);
                add(m, firstint, secondint);
                subtract(m, firstint, secondint);
                multiply(m, firstint, secondint);
                divide(m, firstint, secondint);
                modulus(m, firstint, secondint);
                printMath(answer);
                ans = verifyAnswer(options);
                System.out.println("ans in end of loop is :"+ans);
                if (ans == 'Y')
                    continue;
                else
                    break;
            System.exit(0);
        public static String mathOp(Object[] possibilities)
            String sentence = "Please select a mathematical operation";
            String m = (String)JOptionPane.showInputDialog(null, sentence, "Operation Question",
            JOptionPane.PLAIN_MESSAGE, null, possibilities, "+");
            return m;
        public static String firstNum(Object[] possibilities)
            String sentence = "Please select an integer";
            String f = (String)JOptionPane.showInputDialog(null, sentence, "First Integer",
            JOptionPane.PLAIN_MESSAGE, null, possibilities, "0");
            return f;
        public static String secondNum(Object[] possibilities)
            String sentence = "Please select another integer";
            String s = (String)JOptionPane.showInputDialog(null, sentence, "Second Integer",
            JOptionPane.PLAIN_MESSAGE, null, possibilities, "1");
            return s;
        public static int firstNumConversion(String f)
            int firstint = 0;
            if(f.equals ("0"))
                firstint = 0;
            else if(f.equals("1"))
                firstint = 1;
            else if(f.equals("2"))
                firstint = 2;
            else if(f.equals("3"))
                firstint = 3;
            else if(f.equals("4"))
                firstint = 4;
            else if(f.equals("5"))
                firstint = 5;
            else if(f.equals("6"))
                firstint = 6;
            else if(f.equals("7"))
                firstint =7;
            else if(f.equals("8"))
                firstint = 8;
            else if(f.equals("9"))
                firstint = 9;
            else if(f.equals("10"))
                firstint = 10;
            return firstint;
        public static int secondNumConversion(String s)
            int secondint = 0;
            if(s.equals("1"))
                secondint = 1;
            else if(s.equals("2"))
                secondint = 2;
            else if(s.equals("3"))
                secondint = 3;
            else if(s.equals("4"))
                secondint = 4;
            else if(s.equals("5"))
                secondint = 5;
            else if(s.equals("6"))
                secondint = 6;
            else if(s.equals("7"))
                secondint =7;
            else if(s.equals("8"))
                secondint = 8;
            else if(s.equals("9"))
                secondint = 9;
            else if(s.equals("10"))
                secondint = 10;
            return secondint;
        public static int performMath(String m, int firstint, int secondint)
            int answer = 0;
            if (m.equals("+"))
            answer = add(m,firstint, secondint);
            if (m.equals("-"))
            answer = subtract(m,firstint, secondint);
            if (m.equals("*"))
            answer = multiply(m,firstint, secondint);
            if (m.equals ("/"))
            answer = divide(m,firstint, secondint);
            if (m.equals ("%"))
            answer = modulus(m, firstint, secondint);
            return answer;
        public static int add(String m, int firstint, int secondint)
            int answer;
            answer = (firstint + secondint);
            return answer;
        public static int subtract(String m, int firstint, int secondint)
            int answer;
            answer = (firstint - secondint);
            return answer;
        public static int multiply(String m, int firstint, int secondint)
            int answer;
            answer = (firstint * secondint);
            return answer;
        public static int divide(String m, int firstint, int secondint)
            int answer;
            answer = (firstint / secondint);
            return answer;
        public static int modulus (String m, int firstint, int secondint)
            int answer;
            answer = (firstint % secondint);
            return answer;
        public static void printMath(int answer)
            String message = "Your answer is:" + answer;
            JOptionPane.showMessageDialog(null, message, "Alert", JOptionPane.INFORMATION_MESSAGE);
        public static char verifyAnswer(Object[] options)
            char ans = 'N';
            int n = JOptionPane.showOptionDialog(null, "Would you like to enter another problem, Yes or No?", "Another Problem?", JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE, null, options, options[1]);
            switch(n)
                case 0:
                    ans = 'Y'; break;
                case 1:
                    ans = 'N'; break;
            return ans;
       

    mstew1979 wrote:
    Thank you! I actually just got it working :)Cool. Here's a bit of advice, just in case you "fixed" it by making a common mistake: Don't just initialize a variable to a dummy value to make the compiler happy. Those "not initialized" errors usually point to a logic error. But just initializing the variable to 0, null, etc. at declaration, usually you're just masking the logic error so the compiler doesn't see it. You haven't fixed anything.
    public String signum (int x) {
      String result;
      if (x > 0) {
        result = "positive";
      else if (x < 0) {
        result = "negative";
      return result;
    }Here we have a compiler error, brought on by my logic error of forgetting to account for x being 0. The wrong way to fix it would be to blindly change the declaration of result to String result = ""; or == null;. The logic error is still there, but now it's hidden from the compiler. So we have an error at runtime instead--we don't get a valid response if we pass in 0. Runtime errors are much harder to debug than compile-time errors.
    The correct response to the compiler's "not initialized" error is to look at our code more carefully and see what we might have missed. In this case, we would add and else clause that returns "zero".

  • I have been taking photos with my Ipad for several months and sending them via email and Facebook.  Now it will transfer photos to FB but not email addresses.   What could be the problem?          email an

    Have been taking photos with my Ipad and sending them to email address and FB.  For some reason it will now send photos to FB but not my email address.  What could be the problem?

    Does your email provider have a limit on the total file size allowed on their server? It could be that emails with photos send in the past are still on your email server. They might even be in the servers trash folder. If the total MB of those emails exceeds the amount allowed then no additional emails can be received. Try using a web mail page to check and edit what's on the email server.

  • I have a unexpected error code -50. I can't make any more changes to a newly MacOS (journaled) formatted Calvary External hard drive.

    I added files already, now I can't even make a new folder. I had time machine backing it up, then I excluded the hard drive. I do have Media encoder that's reading files from it currently, but that shouldn't be the issue. So confused. This error code is nowhere on the internet...

    Your post is a little confusing, please describe when you see the error. If it's while you are running Time Machine then please look over Pondini's Time Machine Troubleshooting & Time Machine FAQs.

  • HT3728 I have "An unexpected error occurred.  Try again" despite I tried to use hard reset, soft reset or back to factory default

    I can only create a new network but never able to extend the original wireless network which I have been using for 2 weeks which suddently rendered unusable on my Time Capsule.

    You need to download the utility that is a verb.. not the inbuilt utility which is a noun.. but fails as a verb.
    http://support.apple.com/kb/DL1482

  • Download error message on ipad for all itunes purchases

    I am unable to download any of my purchases from itunes, music, movies, and tv shows on my ipad. When I click the download icon and the movie, for example, shows up in the downloads section of itunes with an error message "Download error: tap to retry". I have deleted the download using the swipe left & touching the Delete button. I have triede the multiple tapping of the down arrow, and even had to try an play the movies touching the play icon until the download cloud reappears and then the movie dissappears from the video window. No movie trailers will play either. The window opens up for a split second and that's it.
    I have rest the ipad back to new and tried all of the above. Nothing works.I was not having this problem prior to yesterday. I had music, movies and tv shows downloaded prior to the reset.
    What is the problem and what is the fix?

    Hello donada6240,
    That definitely sounds frustrating. We have two potential fixes:
    A) The issue may be isolated to your Wi-Fi network. Simply trying again on a different network will give us more insight into where the problem lies.
    B) If the issue does not occur on your computer with iTunes, you may be able to download the purchases there, then sync to your iPad.
    I highly recommend trying a different good-known network. And if it is indeed isolated to your network, see the following articles:
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398
    iOS and OS X: Recommended settings for Wi-Fi routers and access points
    http://support.apple.com/kb/HT4199
    Thanks,
    Matt M.

  • HT3819 I am a teacher. I have an iPhone and iPad for personal use.  I also have an iPod and now an iPad for school use.  Would it be best for me to use home sharing on all 4 devices, or should I split my account and have separate accounts for home & schoo

    My first i device was an iPod touch that I was given for use in my classroom.  Then I got an iPhone for personal use.  Both items are listed under the same username and account.  Since then I now have 2 iPads, one for home and one for work.  I have many apps that are only for work like Math Zombie and Science Facts, and many that are for personal use, like Facebook and YouVersion.  I know that I can synch each device and tell iTunes which apps go on which device.  However at home I use a Mac, and my school computer is a PC.  I am wondering if I should split my account and keep personal separate from work.  Then I can synch all school related devices on the PC and home devices on the Mac.  I realize that there maybe the rare occaision that I might want one app for both accounts.  That's the chance I take on splitting my account.  Are there ay benefits one way or the other?

    Will you be the person paying for apps on both accounts?
    Are you the only person that will use both of the iPads?
    Is there a chance students will be using the work iPad and if so, do you want personal data stored on it?
    If you're the only one using it I'd keep the same account just to have the flexibility of having access to everything on all devices. If your students will be using it or if the school is paying for the school apps I'd keep separate accounts. It all depends on how often you will use school apps from home, and home apps at school. Just some things to consider...

  • HT204266 I have used apple products, phones, apps, iPads for 5 yrs. now, 1 iBook said I had to switch back from a U.K store? I've never been! Now I can't even update my apps I've used for years  

    This is my 1st time   so I can't tell if you all could see my entire question:
    Basically, I've been kind of an apple junkie since my first 1phone 3G approx 6 years ago then on to the iPads.  I've been really lucky with the apps, iTunes,etc. and finally decided to try a couple books and Instant nightmare.  Every time I open my apps or I books it s me I have to switch to the U.S Store.  I've never, switched out of U.S???  Now it's infiltrated my Netflix.  I go under settings and it it's all cool.  I'm in the right time zone.
    Please help me!! I'm healing from a surg and this is my only entertainment while waiting to get back to work.
    Thank you much!!

    Reboot your iPad and then try changing the store again.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    Using iCloud has absolutely no bearing in this issue whatsoever.

  • What should I do to have continuity between my iPhone and iPad for gaming applications

    I would like to have the same content on my IPhone and on my new Ipad, especially for the games. I would like to start an activity on my IPhone and continue on my Ipad. Now, I don't find the way to upload the content of my IPhone  on my Ipad and to synchronize them.
    Thank you if you can help

    To to http://iforgot.apple.com and sign in with your iCloud ID. A new password will be sent to the associated email address.
    It this doesn't work, go to https://getsupport.apple.com ; click 'More Products and Services, then 'Apple ID', then 'Other Apple ID Topics' then 'Lost or forgotten Apple ID password'.

  • I have been taking notes on my ipad for 2 hours. Accidently copied

    I have lost a doc i typed for 2 hours as notes when accidentally copied and cut all. But when i pressed paste an old like was pasted and my document disappeared. Can i find it in an draft/archive somewhere?

    What were you typing it on? If you we're using google docs than I know you can and there are a few other programs that you can get it back from but on most you'll have to start over sorry bro

  • Cannot download apps to iPad since iOS 5.1 update.  Get error message "An unexpected error has occurred"

    cannot download apps to iPad since iOS 5.1 update.  Get error message "An unexpected error has occurred"

    Hi mike,
    Seems like a frustrating problem! Try restarting your device, and trying again. If that doesn't work, in settings, under store, tap your apple id at the bottom of the page, and then sign out. Sign back in again, and try again.
    Also, check you have enough remaining space on your iPad for the app you want to download, you can do this in settings, then general, then usage.
    I also reccomend buying the app in iTunes on your computer, and then syncing it to your device.
    Let me know how you get on, and I'll get back to you with further help if needed,
    Nathan

Maybe you are looking for

  • I'm on a spam blacklist - how do I get off and can...

    Hi, In the last 24 hours, my emails to two of my regular contacts have bounced back undeliverable.  I've never previously had emails returned like this unless the recipient's server is down or the address is wrong, and this isn't the case with these

  • Please help Aironet encapsulation failed problem...

    Greetings All I have a bought a Aironet 1230 AP.. It has a default configuration ,I try to connect a  ethernet cable to the AP and computer and establish a web session to configure the AP graphically..I try to ping the PC which has the ip of 192.168.

  • Position my movieclips Flash/Air on the screen.

    How can I place my air files in the specific location on the monitor. I have 3 movieclips at my project. Let's say I want movieclip "A" to be at left bottom corner at my monitor. movieclip "B" center the monitor. movieclip "C" top right corner of the

  • [SOLVED] Apparently, I don't understand mount

    Hey there! I'm having some problems with automounting and other things, so I started working on fixing that, but first I at least want to get a few things sorted out. For example, when I want to mount a CD-ROM, what I currently do is this: 1) start t

  • Oracle designer web application: NO DATA FOUND if no record returned

    Hi, Friends: We use oracle designer 6i to generate web applicaion. Is there methods to popup message box like 'NO DATA FOUND' when click search or submit button from screen?Oracle web server generator automatically generate lots packages and function