HT201269 I have 2 iPhones- one is for work and the other one is personal.

I want to transfer all my work phone contacts to my personal phone, but not sure how to do it. Can anyone help?

Thanks for your help, but i cannot borrow a noral sim card now, my family has all up graded to iPhone 4s's, i have done this before, but one of my family had the same type of iphone so i could use theirs. Now i am the only one who still holds on to their old phone... I am not sure about buying an adapter...

Similar Messages

  • Have pc with 2 nic cards. One is for network and the other is for testing hardware communication.

    As the unit communicates with test software it generate data output that needs to go back to pc hard drive then the program copies the program over the other nic to a server shared folder.
    But as of recently if test unti is off then the network is fine and see all mapped drives.
    But once I turn on the test unit then the mapping is gone and will not be able to map drives at all.
    Must then turn off test unit then reboot to get mappings back.
    What has happend?  Why does this now happen after visiting windows update?   It makes testing the hardware impossible.

    Hi,
    It maybe something causes the mapping drives lost, you can use net use command to map your drives with persistent parameter.
    If this doesn’t work, I would recommend  to use process monitor to check what’s happened during your operation.
    Alex Zhao
    TechNet Community Support

  • Can someone explain why one code works and the other one doesn't?

    Hi,
    I have been doing a little work with XML today and I wrote the following code which did not function properly. In short, it was as if there were elements in the NodeList that disappeared after the initial call to NodeList.getElementsByTagName("span"); The code completely drops through the for loop when I make a call to getTextContent, even though it is not a controlling variable and it does not throw an exception! I'm befuddled. The second portion of code works. For what it is worth, tidy is the HTML cleaner that's been ported to java (JTidy) and parseDOM(InputStream, OutputStream) is supposed to return a Document, which it does! So why I have to call a DocumentBuilderFactory and then get a DocumentBuilder is beyond me. If I don't call Node.getTextContent() the list is processed properly and calls to toString() indicate that the class nodes are in the list! Any help would be appreciated!
    import com.boeing.ict.pdemo.io.NullOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.PrintWriter;
    import java.util.Properties;
    import org.w3c.dom.Document;
    import org.w3c.dom.NodeList;
    import org.w3c.tidy.Tidy;
    public class HTMLDocumentProcessor {
        // class fields
        private Properties tidyProperties   = null;
        private final String tidyConfigFile =
                "com/boeing/ict/pdemo/resources/TidyConfiguration.properties";
         * Creates a new instance of HTMLDocumentProcessor
        public HTMLDocumentProcessor() {
            initComponents();
        private void initComponents() {
            try {
                tidyProperties = new Properties();
                tidyProperties.load(ClassLoader.getSystemResourceAsStream(tidyConfigFile));
            } catch (IOException ignore) {
        public Document cleanPage(InputStream docStream) throws IOException {
            Document doc = null;
            NullOutputStream nos = new NullOutputStream(); // A NullOutputStream is
                                                           // is used to keep all the
                                                           // error output from printing
            // check to see if we were successful at loading properties
            if (tidyProperties.isEmpty()) {
                System.err.println("Unable to load configuration file for Tidy");
                System.err.println("Proceeding with default configuration");
            Tidy tidy = new Tidy();
            // set some local, non-destructive settings
            tidy.setQuiet(true);
            tidy.setErrout(new PrintWriter(nos));
            tidy.setConfigurationFromProps(tidyProperties);
            doc = tidy.parseDOM(docStream, nos);
            // assuming everything has gone ok, we return the root element
            return doc;
        public static void main(String[] args) {
            try {
                String fileName = "C:/tmp/metars-search.htm";
                File htmlFile = new File(fileName);
                if (!htmlFile.exists()) {
                    System.err.println("File : " + fileName + " does not exist for reading");
                    System.exit(0);
                FileInputStream fis = new FileInputStream(htmlFile);
                HTMLDocumentProcessor processor = new HTMLDocumentProcessor();
                Document doc = processor.cleanPage(fis);
                if (doc == null) {
                   System.out.println("cleanPage(InputStream) returned null Document");
                   System.exit(0);
                NodeList spanTags = doc.getElementsByTagName("span");
                int numSpanTags = spanTags.getLength();
                System.out.println("Number of <span> tags = " + numSpanTags);
                for (int i = 0; i < numSpanTags; i++) { // Loop falls through here!
                    System.out.println("Span tag (" + i + ") = " +
                                        spanTags.item(i).getTextContent());
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                System.exit(0);
    }This segment of code works!
    import com.boeing.ict.pdemo.io.NullOutputStream;
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.PrintWriter;
    import java.util.Properties;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import org.w3c.dom.Document;
    import org.w3c.dom.NodeList;
    import org.w3c.tidy.Tidy;
    import org.xml.sax.SAXException;
    * Class designed to remove specific notam entries from the
    * HTML document returned in a request. The document will contain
    * either formatted (HTML with CSS) or raw (HTML, pre tags). The
    * Formatted HTML will extract the paragraph body information from the
    * document in it's formatted state. The raw format will extract data
    * as simple lines of text.
    * @author John M. Resler (Capt. USAF, Ret.)<br/>
    * Class : NotamExtractor<br/>
    * Compiler : Sun J2SE version 1.5.0_06<br/>
    * Date : June 15, 2006<br/>
    * Time : 11:05 AM<br/>
    public class HTMLDocumentProcessor {
        // class fields
        private Properties tidyProperties   = null;
        private final String tidyConfigFile =
                "com/boeing/ict/pdemo/resources/TidyConfiguration.properties";
         * Creates a new instance of HTMLDocumentProcessor
        public HTMLDocumentProcessor() {
            initComponents();
        private void initComponents() {
            try {
                tidyProperties = new Properties();
                tidyProperties.load(ClassLoader.getSystemResourceAsStream(tidyConfigFile));
            } catch (IOException ignore) {
        public Document cleanPage(InputStream docStream) throws IOException {
            Document doc = null;
            NullOutputStream nos = new NullOutputStream(); // A NullOutputStream is
                                                           // is used to keep all the
                                                           // error output from printing
            ByteArrayOutputStream bos = new ByteArrayOutputStream();
            // check to see if we were successful at loading properties
            if (tidyProperties.isEmpty()) {
                System.err.println("Unable to load configuration file for Tidy");
                System.err.println("Proceeding with default configuration");
            Tidy tidy = new Tidy();
            // set some local, non-destructive settings
            tidy.setQuiet(true);
            tidy.setErrout(new PrintWriter(nos));
            tidy.setConfigurationFromProps(tidyProperties);
            doc = tidy.parseDOM(docStream, bos);
            DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
            DocumentBuilder docBuilder = null;
            try {
                docBuilder = docFactory.newDocumentBuilder();
            } catch (ParserConfigurationException ex) {
                ex.printStackTrace();
            try {
                doc = docBuilder.parse(new ByteArrayInputStream(bos.toByteArray()));
            } catch (IOException ex) {
                ex.printStackTrace();
            } catch (SAXException ex) {
                ex.printStackTrace();
            // assuming everything has gone ok, we return the root element
            return doc;
        public static void main(String[] args) {
            try {
                String fileName = "C:/tmp/metars-search.htm";
                File htmlFile = new File(fileName);
                if (!htmlFile.exists()) {
                    System.err.println("File : " + fileName + " does not exist for reading");
                    System.exit(0);
                FileInputStream fis = new FileInputStream(htmlFile);
                HTMLDocumentProcessor processor = new HTMLDocumentProcessor();
                Document doc = processor.cleanPage(fis);
                if (doc == null) {
                   System.out.println("cleanPage(InputStream) returned null Document");
                   System.exit(0);
                NodeList spanTags = doc.getElementsByTagName("span");
                int numSpanTags = spanTags.getLength();
                for (int i = 0; i < numSpanTags; i++ ) {
                    System.out.println(spanTags.item(i).getTextContent().trim());
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                System.exit(0);
    }

    Thank you Dr but the following is true:
    I placed this code in the for loop before I posted the question :
    for (int i = 0; i < numSpanTags; i++) { // Loop falls through here!
          System.out.println("Span tag (" + i + ") = " + spanTags.item(i));
    }And I receive 29 (The correct number) of non-null references to objects (Node objects) in the NodeList.
    When I replace the exact same for loop with this code :
    for (int i = 0; i < numSpanTags; i++) { // Loop falls through here!
          System.out.println("Span tag (" + i + ") = " + spanTags.item(i).getTextContent());
    }Nothing prints. This discussion has never been about "clever means to suppress exceptions" it has been precisely about why a loop that has the
    exact same references, exact same indices prints one time and doesn't print the other and does not throw an exception. If you can answer
    that question then I am interested. I am not interested in pursuing avenues that are incorrect, not understood and most importantly shot from the hip without much thought.

  • One connection for Internet and the other for LAN

    Hi: I am trying to setup this:
    I have a : (Proliant DL380 G5) with Windows 2008 R2 Server .
    This server has 4 NIC's.
    In NIC #1  I would like to have all my Internet Traffic.
    In NIC #2 I would like to have just my LAN Traffic.
    Is there an easy way to accomplish that inside the server?
    thanks

    Yes Public IP address on NIC 1 and Local address in NIC 2
    The reason is simple.  I need to have some HUGE graphic files uploaded and downloaded from an internet site, on a regular basis, and I really do not want to mess around with the actual Internet Traffic I have on my Local Area Network.  I do not
    want to see any affected applications (outlook, access to my datacenter, etcc), by the size of the graphic files.
    I know I could get more bandwidth from my actual ISP, but also need it to have another different WAN connection in case of Recovery...

  • I have new iPhone 4s and music will not play I can pull my So we are totally on one water filtration system and the other one has been taken down?music up and hit the play button and it dose nothing!

    I have new iPhone 4s and music will not play I can pull my music up and hit the play button and it dose nothing!

    Have you tried resetting your device by pressing and holding the Home button and power button until the silver apple appears?
    And, just out of curiosity, what doe water filtration systems have to do with this?
    Best of luck.

  • How to use one NIC for everything and the other to allow ssh from

    Hello,
    I have two internet connexion at home:
    - a cable connection (CABLEBOX) that i use for all of my devices as it's the fastest. All my computers are connected to it using ethernet or wifi.
    - an adsl connection (ADSLBOX) that is connect to the second network card of one of my computers (MEDIABOX) only and that i want to use only to ssh that same device from the outside
    I want that specific computer to use its:
    - NIC1 to connect to the LAN and to the internet. Routing is enabled on CABLEBOX.
    - NIC2 to connect to that device from the outside using ssh. ssh-D should also work through NIC2 as i need to be able to use that computer as a proxy on some occasions. Routing is enabled on ADSLBOX and it's set to port forward the port 22 to MEDIABOX.
    Once this will be working i'd like to also route ftp connections to specific ips by NIC2.
    No firewall is set on MEDIABOX yet, i'll do it later on.
    I know basics on how to set routing rules, how to assign a specific LAN to a network card but i have a hard time on deciding which rules i should set...
    Can someone guide me?
    Thanks in advance
    Last edited by parpagnas (2013-12-03 18:31:31)

    A possible solution might be this.
    On ADSLBOX and CABLEBOX configure different subnets for the LAN, e.g.
    ADSLBOX:    192.168.1.0/24
    CABLEBOX: 192.168.2.0/24
    The MEDIABOX gets these static IPs:
    ADSL-LAN: 192.168.1.2
    CABLE-LAN: 192.168.2.2
    On the MEDIABOX, configure the two network interfaces using two routing tables.
    The ADSL-LAN routing table
    ip route add 192.168.1.0/24 dev eth0 src 192.168.1.2 table 1
    ip route add default via 192.168.1.1 table 1
    The CABLE-LAN routing table
    ip route add 192.168.2.0/24 dev eth1 src 192.168.2.2 table 2
    ip route add default via 192.168.2.1 table 2
    The main routing table
    ip route add 192.168.1.0/24 dev eth0 src 192.168.1.2
    ip route add 192.168.2.0/24 dev eth1 src 192.168.2.2
    # use the CABLE-LAN gateway as default, so general internet traffic from MEDIABOX runs over CABLEBOX
    ip route add default via 192.168.2.1
    define the lookup rules
    ip rule add from 192.168.1.2 table 1
    ip rule add from 192.168.2.2 table 2
    To test the setup:
    ip route show
    ip route show table 1
    ip route show table 2
    I don't know how to persist something like this in ArchLinux using netctl. Might require to write a special systemd unit for it. Above is a working example from a RedHat box at my company.
    Last edited by teekay (2013-12-04 07:42:22)

  • I have two apple IDs. One I can access and the other one the email address is not in function any more.

    I would like to access the one that I no longer have a functioning email address for.

    I do not have my password and that email address is no longer in service.
    Any thoughts would be great!

  • We have 2 versions of Portuguese in our application. The problem is only for Brazilian Portuguese and the other one is working just fine. Locale for portugese-brazil (pt-BR) is not working

    We have 2 versions of Portuguese in our application. The problem is only for Brazilian Portuguese and the other one is working just fine.
    Locale for portugese-brazil (pt-BR) is not working.

    No. Something else is going on.
    Your son may be hogging all the bandwidth but your wireless network should never simply disappear. Moreover, if your son isn't doing anything the available bandwidth for other devices should remain unaffected.
    I suspect that something is miswired, and from what you describe I suspect that link is between the Extreme and the "other computer".
    The way to accomplish what you propose is
    Modem > Ethernet cable to Extreme's WAN port
    Extreme's LAN ports > wired Ethernet devices.
    There should be nothing but an Ethernet cable linking an Extreme LAN port and any other wired device. If you run out of available LAN ports on the Extreme, you need to by an "Ethernet switch" - they are not expensive, but don't call it a "splitter" or you will only confuse yourself. The switch would be connected to one of the Extreme's LAN ports, and you would connect additional devices to it. You can also use one of your Expresses for that purpose, assuming it is the current generation model with two Ethernet ports.

  • I have two iPhones, one is a 4s and the other is a 3g. I have not used my 3g in some time now. I recently restored it but I cannot use it without a sim card, it says i have to "activate it."

    I have two iPhones, one is a 4s and the other is a 3g. I have not used my 3g in some time now. I recently restored it but I cannot use it without a sim card, it says i have to "activate it." I cannot place my iPhone 4s sim card in it (too small), and i do not want to get a new contract or sim card for an iPhone that i do not ues very much.

    Thanks for your help, but i cannot borrow a noral sim card now, my family has all up graded to iPhone 4s's, i have done this before, but one of my family had the same type of iphone so i could use theirs. Now i am the only one who still holds on to their old phone... I am not sure about buying an adapter...

  • My iphone is a week old and the other day it was run over by a car? would i be able to have it replaced for $180?

    my iphone is a week old and the other day it was run over by a car? would i be able to have it replaced for $180?

    Certain damage is ineligible for out-of-warranty service, including catastrophic damage, such as the device separating into multiple pieces, and inoperability caused by unauthorized modifications. However, an iPhone that has failed due to contact with liquid may be eligible for out-of-warranty service.
    you can exchange a 4S for $199
    http://support.apple.com/kb/index?page=servicefaq&geo=United_Kingdom&product=iph one
    chose US from dropdown country menu

  • I have 2 ipods,one for music and the other for old time radio shows.Each had their own file.My computer crashed and I had to buy a new one.Now both ipod files are merged into one.How do I seperate them.

    I have 2 ipods,one for music and the other for old time radio shows.Each had their own file.My computer crashed and I had to buy a new one.Now both ipod files are merged into one.How do I seperate them on the computer?

    Hi Craig
    Unfortunately, in your case, there isn't really a way to separate them as far as I can think.
    You could try restoring from a backup, and choosing an older backup perhaps
    Cheers

  • I have a mac pro for work and they made it log on windows at start up.  how can i switch back to Mac as well so i will use the i cloud fetures ?

    I have a mac pro for work and they made it log on windows at start up.  how can i switch back to Mac as well so i will use the i cloud fetures ?

    Is a version of Mac OS running on this Mac? Reboot and hold down the option key.

  • I am new to apple products and have just received notice that 2 updates are available.  one for garageband and the other for iPhoto.  it is my understanding that updates are free. why is credit card info requested for these two updates?  help appreciated

    i am new to apple products and have just received notice that 2 updates are available.  one for garageband and the other for iPhoto.  it is my understanding that updates are free. why is credit card info requested for these two updates?  help is appreciated.  thanks, lloyd.

    Have you gone through the process of accepting the iLife apps into your iTunes/Mac App Store account before updating the apps?

  • I just got an IPad and it seems to be interfering with my Iphone.   Facetime doesnt work unless the other device is shut off.   apps aren't syned.  email doesn't some in quickly on the phone

    i just got an IPad and it seems to be interfering with my Iphone.   Facetime doesnt work unless the other device is shut off.   apps aren't syned.  email doesn't some in quickly on the phone

    The machine could be repaired by a company that does circuit board re-soldering, since it is possible a heat-flex solder break on the main board may have caused either the processor or graphics chips to lose connection and that could manifest itself in a few somewhat documented ways.
    There is an on-board RAM chip that may also have something to do with a kernel panic, if it no longer is functioning correctly; that is the non-removable one soldered on the board you never usually worry about.
    Companies such as powerbookmedic, wegenermedia, and others can take in portable macs of vintage or newer (contact them for details on what they do, and how they accept work orders) for repair and can fix most anything; and have a parts inventory. Modern repair workstations allow the equipped service company to fix complex issues and they do troubleshooting. Sometimes the cost is less than a replacement logic board.
    The links above may help isolate the general cause of a kernel panic. There are other articles in Support database including a deeper look into them.
    •Technical Note TN2063: Understanding & Debugging Kernel Panics
    https://developer.apple.com/library/mac/technotes/tn2063/_index.html
    •Resolving Kernel Panics - The X Lab:
    http://www.thexlab.com/faqs/kernelpanics.html
    •Troubleshooting Kernel Panics:
    http://www.thexlab.com/faqs/kernelpanics.html#Anchor-Troubleshooting-49575
    Usually the issue is caused by hardware, especially if there is an indication of machine failure in the crash log or other screen image text.
    A working last model MacBook (mid-2010) would be a better 'first mac' to have.
    Hopefully you can sort it out.
    If not, there likely are fair parts in it.
    Good luck & happy computing!

  • HI JUST COPYED CALL OF DUTY FROM ONE OF MY MACS TO OTHER IT WILL NOT WORK ON THE OTHER ONE?

    HI JUST COPYED CALL OF DUTY FROM ONE OF MY MACS TO OTHER IT WILL NOT WORK ON THE OTHER ONE?

    Are you saying that you bought the game from the App store and made another copy onto a dvd so you can play it on another computer too?  If so, you can not do that, you have to buy it again for the other computer.

Maybe you are looking for

  • Need help with email transfers of large files WRT160nl

    This is a new router for my home based business network. I am using Windows XP, Vonage, cable, a Dell power connect 2708 to expand ports and the WRT160nl router. Two issues: the most important is that I can no longer email large pdf files (contracts

  • Items in sales order

    Hi, We maintained all setting of Incompleteness log for Salesd order but still sales order is getting save  without entering any material at item line. WE maintained VBAP - MATNR regards, akshay

  • How to save message into internal table?

    Hi,everyone! I have a problem when I'm coding.I want to store messages into a internal table.Can you help me? Thanks!

  • Icommand in BAM 11g

    m using BAm 11g.I am getting exception while importing the files.can u please guide me. D:\Fusion11g\Middleware_WLS\Oracle_SOA1\bam\bin>icommand -cmd import -file "D:\ BAM-ExportedFile\SLA_Endtime_dataobject.xml" -username system Oracle BAM Command U

  • How to create a 2 digit (gigabyte) file system to be used for 3 digit tiny size files and not running out of inodes

    I have a 83Gb file system that apparently is not full, but its actually full, because I have run out of inodes, and I have 10 million files in there, so I want to create another that will cater for this inode issue. My question is if I use the newfs