New to java can somebody please help me?

I'm using jdk1.3.1_01
and apache tomcat 4.0.
the jdk works fine now thanks to much help from members on here.
Now i have a problem with my apache tomcat server.
When ever i try to start it i get the error which i've copied and pasted below.
Can anyone please help me?
It's extremely important that i get the apache tomcat server to work so i can practice servlet programming at home.
Your assistance will be greatly appreciated.
Following are the error messages:
I'm using windows 2000 Pro; jdk1.3.1_01; and apache tomcat 4.0.
But whenever i try to start apache tomcat i get a number of errors.
I have copied these errors from the command windows and pasted them below because i don't know where to begin.Does anyone think i should reinstall apache tomcat 4.0
Please take a look, here below are the error messages i'm getting.
A nonfatal internal JIT (3.10.107(x)) error 'Relocation error: NULL relocation target' has occurred in :
'org/apache/crimson/parser/Parser2.maybeComment (Z)Z': Interpreting method.
Please report this error in detail to http://java.sun.com/cgi-bin/bugreport.cgi
Catalina.start: LifecycleException: null.open: java.net.BindException: Address in use: bind
LifecycleException: null.open: java.net.BindException: Address in use: bind
at org.apache.catalina.connector.http.HttpConnector.initialize(HttpConnector.java:1116)
at org.apache.catalina.core.StandardService.initialize(StandardService.java, Compiled Code)
at org.apache.catalina.core.StandardServer.initialize(StandardServer.java, Compiled Code)
at org.apache.catalina.startup.Catalina.start(Catalina.java:775)
at org.apache.catalina.startup.Catalina.execute(Catalina.java:681)
at org.apache.catalina.startup.Catalina.process(Catalina.java:179)
at java.lang.reflect.Method.invoke(Native Method)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java, Compiled Code)
----- Root Cause -----
java.net.BindException: Address in use: bind
at java.net.PlainSocketImpl.socketBind(Native Method)
at java.net.PlainSocketImpl.bind(Unknown Source)
at java.net.ServerSocket.<init>(Unknown Source)
at java.net.ServerSocket.<init>(Unknown Source)
at org.apache.catalina.net.DefaultServerSocketFactory.createSocket(DefaultServerSocketFactory.java:118)
at org.apache.catalina.connector.http.HttpConnector.open(HttpConnector.java:946)
at org.apache.catalina.connector.http.HttpConnector.initialize(HttpConnector.java:1114)
at org.apache.catalina.core.StandardService.initialize(StandardService.java, Compiled Code)
at org.apache.catalina.core.StandardServer.initialize(StandardServer.java, Compiled Code)
at org.apache.catalina.startup.Catalina.start(Catalina.java:775)
at org.apache.catalina.startup.Catalina.execute(Catalina.java:681)
at org.apache.catalina.startup.Catalina.process(Catalina.java:179)
at java.lang.reflect.Method.invoke(Native Method)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java, Compiled Code)

In this particular case, you cannot start Tomcat because you have another web server or some other program already listening to the same port that Tomcat wants to use.
(If you don't know what a port is in this context, write back and we will go into more detail.)
I would guess that you may have Microsoft IIS running, particularly if you're on a corporate machine. You may have to look at the services running on your system and see if any of them are using the port - either check out start->control panel->administrative tools->services or do a "netstat -a" at the command prompt.
Alternatively you may configure Tomcat to use a different port. The instructions that came with Tomcat will tell you what you will need to do - it's usually just changing one line in the httpd.conf file or whatever the latest Tomcat uses now (I'm not certain anymore).

Similar Messages

  • I want to uninstall the new iOS update. can somebody please help?

    I have a son that is disabled and he LOVES youtube. He has learned a lot navigating through the app. The new iOS update does not support that app. Why?? i dont know but I wish I never updated. I have no idea how to uninstall the update. Can somebody PLEASE help me??!!! Thank you so much!!

    Just go to YouTube.com in safari and view the content that way. Create a shortcut on the home screen so you do not bleed to type in the address.

  • Im new to java can someone please help me with external method calls

    I have only been doing java for a couple of months using bluej, I really dont understand external method calls, this is for an assignment and i have managed the bulk of the code, ineed to make external calls to the other classes to return and input data.
    this is the code i have writen so far.
    class CD
    // The fields.
    public Artist performer;
    private String album;
    private String genre;
    private int numberOfTracks;
    private int yearReleased;
    *Please enter CD details, text entry requires quote marks "Greatest Hits"
    public CD (String album_Name){
    album = album_Name;
    numberOfTracks = 0;
    yearReleased = 0;
    performer = new Artist();
    /**blank constructor*/
    public CD ()
    {album = "";
                genre = "";
                numberOfTracks = 0;
                yearReleased = 0;
                performer = new Artist();}
    * accessor methods
    /** method to return album details to the output window*/
    public void print_albumDetails(){
    System.out.println("Album: " + album);
    System.out.println("Genre: " + genre);
    System.out.println("Number of Tracks: " + numberOfTracks);}
    /** accessor method to return the name of the album*/
    public String show_album(){
    return album;}
    /** accessor method to show artist details from artist class*/
    public void print_details(){
    performer.print_details();}
    * mutator methods
    /** mutator method to change album name please enter name with quotes*/
    public void change_album(String newAlbum){
    album = newAlbum;}
    /**mutator method for adding the album year and checking it correct
    * please enter a year between 1900 and 2005*/
    public void album_year (int year){
    if ((year < 1900) || (year > 2005))
    System.out.println("sorry the year is incorrect please enter a year between 1900 and 2005");
    else yearReleased = year;}
    /** mutator method to alter the number of tracks and check if the ammount is greater
    * than zero*/
    public void change_Number_Of_Tracks(int no_Of_Tracks){
    if (no_Of_Tracks > 0)
    numberOfTracks = no_Of_Tracks;
    else System.out.println("you have not entered a correct number");}
    /** mutator method to change the genre and check it has been entered correctly
    * Please enter 1 for Soul
    * 2 for Blues
    * 3 for Jazz*/
    public void change_Genre(int Change_Genre){
    if ((Change_Genre <= 0) || (Change_Genre > 3)){
    System.out.println("You have not entered the correct available genres");
    System.out.println("which are 1 for Soul,2 for Blues or 3 for Jazz");}
    else if (Change_Genre == 1)
    genre = "Soul";
    else if (Change_Genre == 2)
    genre = "Blues";
    else if (Change_Genre == 3)
    genre = "Jazz";
    to this i need to add an external call to the class Artist to be able to enter firstname and second name, I know that external calls use dot notation
    and the instance of Artist is called performer but i cant get the call to these methods in the Artist class to work
    Artist class
    /** mutator method to change or add artist first name, remember to add quotes*/
    public void cName(String name){
    firstname = name;}
    /** mutator method to change or add artist surname remember to add quotes*/
    public void csurName(String surname){
    lastname = surname;}
    can some please give me some help

    Also, if you can't get them to work, what is the error message you are getting?
    Baron Samedi

  • Pretty new to Java can someone please help with an addObject() problem?

    Hi I'm pretty knew to programming and I have an assignment which I've been working on but I am stuck
    I have to create a 'space invaders' style game, and I've got some basics working. I wanted to add a boss enemy, which appears when all other enemies have been destroyed. It kind of works, only the program spawns a seemingly infinite amount of the boss which then creates a 'wipe' effect across the top of the screen.
    Here is my code:
    import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
    import java.util.List;
    public class Space extends World
    * Constructor for objects of class Space.
    public Space()
    // Create a new world with 200x250 cells with a cell size of 3x3 pixels.
    super(200, 250, 3);
    //add class with starstreaks
    addObject(new EmptyBox(),1,1);
    //add player character
    addObject(new Player(), 100, 228);
    //add 4 romulan enemies row 1
    for(int i=0; i<4; i++){
    addObject(new Romulan(), (25 + 50 * i), 15);
    //add 3 klingon enemies row 2
    for(int i=0; i<3; i++){
    addObject(new Klingon(), (50 + 50 * i), 40);
    //add 4 romulan enemies row 3
    for(int i=0; i<4; i++){
    addObject(new Romulan(), (25 + 50 * i), 65);
    //add 3 klingon enemies row 4
    for(int i=0; i<3; i++){
    addObject(new Klingon(), (50 + 50 * i), 90);
    //add 3 shields
    for(int i=0; i<3; i++){
    addObject(new Shield(), (30 + 70 * i), 180);
    *public void act(){*
    List<Enemy> enemies = getObjects(Enemy.class);
    *if(enemies.size()==0 ){*
    addObject(new Borg(), 100, 30 );
    I believe the part in bold is the problem, but I dont know why. Klingon and Romulan are subclasses of the Enemy class. The Borg class is it's own seperate class, but with the exact same functions as Enemy. I made it seperate as I figured it would keep respawning if it was a subclass of Enemy.
    Any ideas?

    Its ok, after more than an hour I've got it.
    I simply added private int bossValue = 0; at the beginning and then changed act to this:
    public void act(){
    List<Enemy> enemies = getObjects(Enemy.class);
    if(enemies.size()==0 && bossValue==0 ){
    //for(int i=0; i<1; i++){
    addObject(new Borg(), 100, 30 );
    bossValue =1;
    }

  • I need some help with my java game using applets, CAN SOMEBODY PLEASE HELP

    Hi,
    I am in the process of creating a RPG program using Java. I am not very experienced with java, however the problem i am currently facing is something i can't seem to figure out. I would like to draw a simple grid where a character (indicated by a filled circle) moves around this grid collecting items (indicated by a red rectangle). When the character moves on top of the grid with the item, i would like it to disappear. Right now i am not worrying about the fact that the item will reappear after the character moves away again, because sometimes, when the character moves over the item, nothing happens/another item disappears. i have been at this for 4 days and still cannot figure out what is goign on. can somebody please help me? it would be most appreciated.
    Thanks
    PS if i needed to send you my code, how do i do it?

    Thank you for replying.
    The thing is, I am taking java as a course, and it is necessary for me to start off this way (this is for my summative evaluation). i agree with you on the fact, however, that i should go in small steps. i have been doing that until this point, and my frustration caused me to jump around randomly for an answer. I also think that it may just be a bug, but i have no clue as to how to fix it, as i need to show my teacher at least a part of what i was doing by sometime next week. Here is my code for anybody willing to go through it:
    // The "Keys3" class.
    import java.applet.*;
    import java.awt.*;
    import java.awt.Event;
    import java.awt.Font;
    import java.awt.Color;
    import java.applet.AudioClip;
    public class Keys3 extends java.applet.Applet
        char currkey;
        int currx, curry, yint, xint;
        int itmval [] = new int [5],
            locval [] = new int [5],
            tempx [] = new int [5], tempy [] = new int [5],
            tot = 0, score = 0;
        boolean check = true;
        AudioClip bgSound, bgSound2;
        AudioClip hit;
        private Image offscreenImage;
        private Graphics offscreen;     //initializing variables for double buffering
        public void init ()  //DONE
            bgSound = getAudioClip (getCodeBase (), "sound2_works.au");
            hit = getAudioClip (getCodeBase (), "ah_works.au");
            if (bgSound != null)
                bgSound.loop ();
            currx = 162;
            curry = 68;
            setBackground (Color.white);
            for (int count = 0 ; count < 5 ; count++)
                itmval [count] = (int) (Math.random () * 5) + 1;
                locval [count] = (int) (Math.random () * 25) + 1;
            requestFocus ();
        public void paint (Graphics g)  //DONE
            resize (350, 270);
            drawgrid (g);
            if (check = true)
                pickitems (g);
                drawitems (g);
            g.setColor (Color.darkGray);
            g.fillOval (currx, curry, 25, 25);
            if (currkey != 0)
                g.setColor (Color.darkGray);
                g.fillOval (currx, curry, 25, 25);
            if (collcheck () != true)
                collision (g);
            else
                drawitems (g);
        } // paint method
        public void update (Graphics g)  //uses the double buffering method to overwrite the original
                                         //screen with another copy to reduce flickering
            if (offscreenImage == null)
                offscreenImage = createImage (this.getSize ().width, this.getSize ().height);
                offscreen = offscreenImage.getGraphics ();
            } //what to do if there is no offscreenImage copy of the original screen
            //draws the backgroudn colour of the offscreen
            offscreen.setColor (getBackground ());
            offscreen.fillRect (0, 0, this.getSize ().width, this.getSize ().height);
            //draws the foreground colour of the offscreen
            offscreen.setColor (getForeground ());
            paint (offscreen);
            //draws the offscreen image onto the main screen
            g.drawImage (offscreenImage, 0, 0, this);
        public boolean keyDown (Event evt, int key)  //DONE
            switch (key)
                case Event.DOWN:
                    curry += 46;
                    if (curry >= 252)
                        curry -= 46;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.UP:
                    curry -= 46;
                    if (curry <= 0)
                        curry += 46;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.LEFT:
                    currx -= 66;
                    if (currx <= 0)
                        currx += 66;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.RIGHT:
                    currx += 66;
                    if (currx >= 360)
                        currx -= 66;
                        if (hit != null)
                            hit.play ();
                    break;
                default:
                    currkey = (char) key;
            repaint ();
            return true;
        public boolean collcheck ()  //DONE
            if (((currx == tempx [0]) && (curry == tempy [0])) || ((currx == tempx [1]) && (curry == tempy [1])) || ((currx == tempx [2]) && (curry == tempy [2])) || ((currx == tempx [3]) && (curry == tempy [3])) || ((currx == tempx [4]) && (curry == tempy [4])))
                return false;
            else
                return true;
        public void collision (Graphics g)
            drawgrid (g);
            for (int count = 0 ; count < 5 ; count++)
                if ((currx == tempx [count]) && (curry == tempy [count]))
                    g.setColor (Color.darkGray);
                    g.fillOval (currx, curry, 25, 25);
                else if ((currx != tempx [count]) && (curry != tempy [count]))
                    g.setColor (Color.red);
                    g.fillRect (tempx [count], tempy [count], 25, 25);
        public void drawitems (Graphics g)
            for (int count = 0 ; count < 5 ; count++)
                g.setColor (Color.red);
                g.fillRect (tempx [count], tempy [count], 25, 25);
        public void pickitems (Graphics g)
            check = false;
            for (int count = 0 ; count < 5 ; count++)
                if (locval [count] <= 5)
                    tempy [count] = 22;
                else if (locval [count] <= 10)
                    tempy [count] = 68;
                else if (locval [count] <= 15)
                    tempy [count] = 114;
                else if (locval [count] <= 20)
                    tempy [count] = 160;
                else if (locval [count] <= 25)
                    tempy [count] = 206; //this determines the y-position of the item to be placed
                if (locval [count] % 5 == 0)
                    tempx [count] = 294;
                else if ((locval [count] == 1) || (locval [count] == 6) || (locval [count] == 11) || (locval [count] == 16) || (locval [count] == 21))
                    tempx [count] = 30;
                else if ((locval [count] == 2) || (locval [count] == 7) || (locval [count] == 12) || (locval [count] == 17) || (locval [count] == 22))
                    tempx [count] = 96;
                else if ((locval [count] == 3) || (locval [count] == 8) || (locval [count] == 13) || (locval [count] == 18) || (locval [count] == 23))
                    tempx [count] = 162;
                else if ((locval [count] == 4) || (locval [count] == 9) || (locval [count] == 14) || (locval [count] == 19) || (locval [count] == 24))
                    tempx [count] = 228;
        public void drawgrid (Graphics g)  //DONE
            g.drawRect (10, 10, 330, 230); //draws the outer rectangular border
            int wi = 10; //width of one square on the board
            int hi = 10; //height of one square on the board
            for (int height = 1 ; height <= 5 ; height++)
                for (int row = 1 ; row <= 5 ; row++)
                    if (((height % 2 == 1) && (row % 2 == 1)) || ((height % 2 == 0) && (row % 2 == 0)))
                        g.setColor (Color.gray);
                        g.fillRect (wi, hi, 66, 46);
                    else /*if (((height % 2 == 0) && (row % 2 == 1)) || ((height % 2 == 0) && (row % 2 == 0)))*/
                        g.setColor (Color.lightGray);
                        g.drawRect (wi, hi, 66, 46);
                        g.setColor (Color.lightGray);
                        g.drawRect (wi, hi, 66, 46); //drawn twice to make a shadow effect
                    wi += 66;
                wi = 10;
                hi += 46;
            } //this draws the basic outline of the game screen
    } // Keys3 class

  • I just exchanged a faulty iPhone 4 for a new one, when I got home to restore it, iCloud says "cannot restore backup". Can somebody please help provide much needed advice? Thanks in advance!

    I just exchanged a faulty iPhone 4 for a new one, when I got home to restore it, iCloud says "cannot restore backup". Can somebody please help provide much needed advice? Thanks in advance!

    Yep, that's the only message that popped out. Nothing else. Yes, it's running on the latest ios and I still can't restore it. I called apple and they told me it's probably something wrong with their servers. Anyway thanks for the advice.

  • I have a new hp windows 7 64bit computer and I can't download itunes at all.  It will get to 6%, 78% etc and just freeze! Can somebody please help me?

    I have a new hp windows 7 64bit computer and I can't download itunes. It gets to 11%, 63% etc. and just freezes! Can somebody please help???

    Try using Migration Assistant following this guide:
    http://support.apple.com/kb/HT4413#3
    There is advice in this document for using Migration Assistant from Time Machine or other hard drive.

  • I have a ram problem, can somebody please help me?

    Hello
    This is the first time I've put a computer together from scratch (I got some help from a friend though). What I wonder is if there is a manual for the MSI mothercards somewhere on the net because I didn't get any good description  in the package, and I can't find the spot for audi and USB inputs. I also would like to know how many memorysticks i can use, because if i put in 3 of them the computer starts to beep. Can somebody please help me?
    My specs are:
    Q-tec midi Tower
    MSI K8N Neo2-FX, nForce3
    AMD Athlon 64 3200+ 2.0GHz socket 939
    Zalman P4 CNPS-7700-CU
    XFX Geforce FX5500 128MB DDR
    Samsung Spinpoint P120 200GB
    Sony DVD burner DL
    Sony floppydisk
    Cosair Value S. PC3200 DDR-dimm 512MB unbuffered non-Parity, 64Meg x 64, CL2.5
    (I have 3 of these but I can only have 2 at a time or the computer wont work)
    // TheGamecritic

    Quote from: TheGamecritic on 15-September-05, 18:42:56
    Hello
    This is the first time I've put a computer together from scratch (I got some help from a friend though). What I wonder is if there is a manual for the MSI mothercards somewhere on the net because I didn't get any good description  in the package, and I can't find the spot for audi and USB inputs. I also would like to know how many memorysticks i can use, because if i put in 3 of them the computer starts to beep. Can somebody please help me? 
    My specs are:
    Q-tec midi Tower
    MSI K8N Neo2-FX, nForce3
    AMD Athlon 64 3200+ 2.0GHz socket 939
    Zalman P4 CNPS-7700-CU
    XFX Geforce FX5500 128MB DDR
    Samsung Spinpoint P120 200GB
    Sony DVD burner DL
    Sony floppydisk
    Cosair Value S. PC3200 DDR-dimm 512MB unbuffered non-Parity, 64Meg x 64, CL2.5
    (I have 3 of these but I can only have 2 at a time or the computer wont work)
    // TheGamecritic
    Congrats on 'Rolling your Own' for the first time.  I'm certainly no expert although I have sucessfully built a few.  Actually, my specs are almost identical except I'm using Kingston Value Ram instead of Cosair.  As far as your first question, I assume you mean the internal USB/MB connectors and the MB audio connector(s).  The information is in the MSI Neo2 Plat manual although you have to look closely and move back and forth between the MB schemaic and the section(s) describing the connections to get a clear fix.  The MB USB connectors are on the side of the MB furthest from the RAM slots and about in the center, (JUSB1 or JUSB2).  The audio connector (JAUD1 is located on the same side of the MB as the USB connectors only near the rear panel end, (close to the orange PCI slot).  As you, I found that that I could not use three ram sticks as I could in my old K7 board and when I bought two sets of matched ram I found that it didn't like 4 sticks either.  Three:  Would'nt post  Four:  Instability and an initial  hit in performance;  although I was able to finally coax it to 200mhz Dual Channel it wasn't worth it because of the random crashes n Windows I was getting. I have also discovered the hard way that for some reason my board at least is hypersensitive to IDE  cables, (Would not recognize any secondary IDE device on Channel 1 until I found the right cable) and it does not like Sound Blaster audio cards prior to Audigy 2 ZS.  Actually, it only tolerates a ZS and I had problems and it didn't like my new X-Fi at all until I moved it to the PCI slot closest to my video card.  I was getting random BSODS and crashes, (one that took out my OS).  Since I move the card things appear to be more stable, so far.  Anyway good luck.

  • When i open iphoto i see my photo's for 1 second and then they are gone .The photo's are still there but i can see them only on the bottom or top of my screen when i try to open them i get a sign that it is not possible.Can somebody please  help me?

    when i open iphoto i see my photo's for 1 second and then they are gone .The photo's are still there but i can see them only on the bottom or top of my screen when i try to open them i get a sign that it is not possible.Can somebody please  help me?

    Have you upgraded to iPhoto 9.6 for compatibility with Yosemite? If not, try that first.
    It looks like iPhoto has lost the connection between the thumbnails and the original image files.
    This can be caused by a corrupted iPhoto library, or the originals have been deleted or moved.
    Try first to rebuild your iPhoto Library:
    If you do not have a current backup of the iPhoto library, make a copy of the library, but do not overwrite any previous backup.
    Launch iPhoto with the ⌥⌘-key combination (option-command) held down.
    Select "rebuild" from the first aid panel.  This may take a while for a large library.
    Can you now see your photos again?
    If not, rebuild the library with iPhoto Library manager as described by Old Toad:            Re: iphoto crashed

  • I am unable to update, uninstall, or reinstall iTunes on my laptop.  Windows 7 Ultimate 32 bits.  Error code is 2330.  Can somebody please help me?

    I am unable to update, uninstall, or reinstall iTunes on my laptop.  Everything was working fine until recently when there was an update available for iTunes, and when I tried to update this, I got the message, "The installer has encountered an unexpected error installing this package.  This may indicate a problem with this package. Error code is 2330."  Can somebody please help me?
    System configuration:
    Windows 7 Ultimate 32 bits.
    Version:  6.1.7601 Service Pack 1 Build 7601
    System Directory:  C:\Windows\system32
    RAM:  1.00 GB.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • I just want to know that if I buy an iphone 4S here in melbourne can i use it in china? i don`t know whether it`s locked or not and i don`t know what`s the network in china as well. Can somebody please help?I am really in a hurry to know it. Thanks a lot.

    I just want to know that if I buy an iphone 4S here in melbourne can i use it in china?
    i don`t know whether it`s locked or not and i don`t know what`s the network in china as well.
    Can somebody please help?
    I am really in a hurry to know it.
    Thanks a lot.
    P.S: For the iphone 4S. is there any difference for the one from online shop or the actual store?

    iPhones purchased from the online Apple Store in Australia will be unlocked. To the best of my knowledge, unlocked iPhone are not available from the physical Apple Stores at this time, though you can call the Apple Store in Melbourne and inquire.
    Note that the warranty on iPhones is not international, so if you purchase an iPhone in Australia and it needs service, you would have to ship the iPhone to someone in Australia to take or send to Apple for service and then ship it back to you.
    Regards.
    (Note for any readers: this is an old thread and I posted before noticing the date, but decided to leave my reply in case anyone else finds the thread and has the same question).

  • HT204053 Need A Solution With An iCloud Problem So Can Somebody Please Help Me?

    Can somebody please help me find a solution to my problem? 
    When I enter my username and password and hit enter I get this message, "The Apple ID is valid but is not an iCloud account" is the error message I receive implying that I do not have an iCloud account. I have searched and looked at the troubleshooting contents and I haven't found anything even close to this issue so I have come here for help. I appreciate any tips or tricks to fix my problem.    Thank you for reading and look forward to hearing your answers. 
    Thank You,
    Lisa W. 

    Hey Lisa_AW!
    If you want to make this Apple ID an iCloud account, try referencing the information here:
    Creating an iCloud account: Frequently Asked Questions
    http://support.apple.com/kb/ht4436
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • HT4211 I'm not able to download apps from App Store. It never downloads and it shows waiting status.can somebody please help me resolve this issue

    I'm not able to download apps from App Store. It never downloads and it shows waiting status.can somebody please help me resolve this issue

    I really do not think it is the iPad or your network connection. Other users have reported this very same issue. Try this and see if it works for you - it may not work - but it's easy to try - harmless - and it has worked in the past for others.
    Try signing out of your account and restart your iPad.
    Go to Settings>Store>Apple ID and tap the ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button. Go back to Settings>Store> Apple ID and sign in again.

  • Hi can somebody please help me to get Apple phone support stop calling me to tell me that i NOT awnsering the phone!!!!

    Hi can somebody please help me to get Apple phone support stop calling me to tell me that i NOT awnsering the phone!!!!

    The battery capacity on a 5S is a little better but be sure to read the special notes on conserving battery power on these phones.   Here are two in particular.
    17 Tips to Extend iPhone Battery Life (Updated for iOS 7)
    How to improve iPhone battery life, what to do if your iPhone battery is running low - How to - Macworld UK
    Regards,  71

  • While trying to update Adobe Reader XI 10.0.06 to 10.0.07 on my laptop running W7 Home Premium x 64, I get error message 2203. The same occurs if I try to uninstall before manually install the new version. Can you please help?

    Hello,
    While trying to update Adobe Reader XI 10.0.06 to 10.0.07 on my laptop running W7 Home Premium x 64, I get error message 2203. The same occurs if I try to uninstall before manually install the new version. Can you please help?
    PS.- Thank you very much for your Support in trying to solve a problem created by yourselves.
    Message was edited by: Juan Verano

    Is there anything else beside the number 2203?
    Try removing the current Reader using http://labs.adobe.com/downloads/acrobatcleaner.html, then install 11.0.07 from http://get.adobe.com/reader/enterprise/

Maybe you are looking for

  • Install CS2 on Windows 7 32bit and 64bit, please help!

    I own a legitmate CS2 Creative Suite and my old Windows XP computer must be retired. Is there any way for a non-technical person like me to install CS2 on Windows 7 64bit? I saw some instructions but they seem geared to very computer knowledgable peo

  • Hotswapping external VGA monitor?

    I've got a PC tower with dual monitors. I've just bought this http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=390147809245 and this cheap gadget http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=200528634351#ht1952wt1141 to allow me to use on

  • How do I get my program to run at a faster frequency?

    I am using the PCI-DIO-32HS (6533) board. A portion of the program writes a pattern of various handshaking signals. The other clocks in a bit of data and formats the data into arrays. The spec. sheets say this board can do pattern I/O at 13Mbytes/s o

  • Copy a User from one infrastructure to another

    Hello there, We have a user in the development infrastructure.He is belonging to many groups in the infrastructure. We have another infrastructure environment.All the groups available in develoment environment are existing here too. I want to create

  • Need help recovering photos on iCloud!!

    I traded in my Iphone... I was unable to transfer my photos before factory reset.... I was told that I could somehow recover the photos from my iCloud. I logged into my iCloud; but there were not any pictures... There is NOTES, APPOINTMENTS, CALENDAR