HT4301 who can assist me with a factory unlock service

I'm having some trouble contacting my carrier in Canada and I need to use my iPhone 4 in Mexico, can any Apple store or iShop do something for me?

No, aside from selling you a different iPhone. Only the carrier your iPhone is locked to can unlock it.
(98288)

Similar Messages

  • Who can help me with my IPHONE4S unlock thank you.

    I was a few years ago in the United States work in Chinese, because the marriage, so coming back to China, I back to the iphone4s verzion customization, I do not have a verzion account, but returned to find the mobile phone is locked, and can not be used, please verzion untie me in the United States the United States, I also give my labor, although iphone4s on you nothing, but for me is a luxury, if has the opportunity I will continue for the United States to provide labor, verzion call upon you to help me with this help, very grateful for that my city, <MEID and email address deleted per the Terms of Service> thank you
    Message was edited by: Verizon Moderator

    Verizon may or may not be able to unlock your phone anymore. It is a service provided to their customers. People may think they can buy an iphone at a deep discount and leave the country forever without paying any cancelation fee. Try Apple stores to see if they can help you.

  • I will pay for who can help me with this applet

    Hi!, sorry for my english, im spanish.
    I have a big problem with an applet:
    I�ve make an applet that sends files to a FTP Server with a progress bar.
    Its works fine on my IDE (JBuilder 9), but when I load into Internet Explorer (signed applet) it crash. The applet seems like blocked: it show the screen of java loading and dont show the progress bar, but it send the archives to the FTP server while shows the java loading screen.
    I will pay with a domain or with paypal to anyone who can help me with this problematic applet. I will give my code and the goal is only repair the applet. Only that.
    My email: [email protected]
    thanks in advance.
    adios!

    thaks for yours anwswers..
    harmmeijer: the applet is signed ok, I dont think that is the problem...
    itchyscratchy: the server calls are made from start() method. The applet is crashed during its sending files to FTP server, when finish, the applet look ok.
    The class I use is FtpBean: http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean/
    (I test too with apache commons-net, and the same effect...)
    The ftp is Filezilla in localhost.
    This is the code, I explain a little:
    The start() method calls iniciar() method where its is defined the array of files to upload, and connect to ftp server. The for loop on every element of array and uploads a file on subirFichero() method.
    Basicaly its this.
    The HTML code is:
    <applet
           codebase = "."
           code     = "revelado.Upload.class"
           archive  = "revelado.jar"
           name     = "Revelado"
           width    = "750"
           height   = "415"
           hspace   = "0"
           vspace   = "0"
           align    = "middle"
         >
         <PARAM NAME="usern" VALUE="username">
         </applet>
    package revelado;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import javax.swing.*;
    import java.io.*;
    import javax.swing.border.*;
    import java.net.*;
    import ftp.*;
    public class Upload
        extends Applet {
      private boolean isStandalone = false;
      JPanel jPanel1 = new JPanel();
      JLabel jLabel1 = new JLabel();
      JLabel jlmensaje = new JLabel();
      JLabel jlarchivo = new JLabel();
      TitledBorder titledBorder1;
      TitledBorder titledBorder2;
      //mis variables
      String DIRECTORIOHOME = System.getProperty("user.home");
      String[] fotos_sel = new String[1000]; //array of selected images
      int[] indice_tamano = new int[1000]; //array of sizes
      int[] indice_cantidad = new int[1000]; //array of quantitys
      int num_fotos_sel = 0; //number of selected images
      double importe = 0; //total prize
      double[] precios_tam = {
          0.12, 0.39, 0.60, 1.50};
      //prizes
      String server = "localhost";
      String username = "pepe";
      String password = "pepe01";
      String nombreusuario = null;
      JProgressBar jProgreso = new JProgressBar();
      //Obtener el valor de un par�metro
      public String getParameter(String key, String def) {
        return isStandalone ? System.getProperty(key, def) :
            (getParameter(key) != null ? getParameter(key) : def);
      //Construir el applet
      public Upload() {
      //Inicializar el applet
      public void init() {
        try {
          jbInit();
        catch (Exception e) {
          e.printStackTrace();
      //Inicializaci�n de componentes
      private void jbInit() throws Exception {
        titledBorder1 = new TitledBorder("");
        titledBorder2 = new TitledBorder("");
        this.setLayout(null);
        jPanel1.setBackground(Color.lightGray);
        jPanel1.setBorder(BorderFactory.createEtchedBorder());
        jPanel1.setBounds(new Rectangle(113, 70, 541, 151));
        jPanel1.setLayout(null);
        jLabel1.setFont(new java.awt.Font("Dialog", 1, 16));
        jLabel1.setText("Subiendo archivos al servidor");
        jLabel1.setBounds(new Rectangle(150, 26, 242, 15));
        jlmensaje.setFont(new java.awt.Font("Dialog", 0, 10));
        jlmensaje.setForeground(Color.red);
        jlmensaje.setHorizontalAlignment(SwingConstants.CENTER);
        jlmensaje.setText(
            "Por favor, no cierre esta ventana hasta que termine de subir todas " +
            "las fotos");
        jlmensaje.setBounds(new Rectangle(59, 49, 422, 30));
        jlarchivo.setBackground(Color.white);
        jlarchivo.setBorder(titledBorder2);
        jlarchivo.setHorizontalAlignment(SwingConstants.CENTER);
        jlarchivo.setBounds(new Rectangle(16, 85, 508, 24));
        jProgreso.setForeground(new Color(49, 226, 197));
        jProgreso.setBounds(new Rectangle(130, 121, 281, 18));
        jPanel1.add(jlmensaje, null);
        jPanel1.add(jlarchivo, null);
        jPanel1.add(jProgreso, null);
        jPanel1.add(jLabel1, null);
        this.add(jPanel1, null);
        nombreusuario = getParameter("usern");
      //Iniciar el applet
      public void start() {
        jlarchivo.setText("Start() method...");
        iniciar();
      public void iniciar() {
        //init images selected array
        fotos_sel[0] = "C:/fotos/05160009.JPG";
        fotos_sel[1] = "C:/fotos/05160010.JPG";
        fotos_sel[2] = "C:/fotos/05160011.JPG";
         // etc...
         num_fotos_sel=3; //number of selected images
        //conectar al ftp (instanciar clase FtpExample)
        FtpExample miftp = new FtpExample();
        miftp.connect();
        //make the directory
         subirpedido(miftp); 
        jProgreso.setMinimum(0);
        jProgreso.setMaximum(num_fotos_sel);
        for (int i = 0; i < num_fotos_sel; i++) {
          jlarchivo.setText(fotos_sel);
    jProgreso.setValue(i);
    subirFichero(miftp, fotos_sel[i]);
    try {
    Thread.sleep(1000);
    catch (InterruptedException ex) {
    //salida(ex.toString());
    jlarchivo.setText("Proceso finalizado correctamente");
    jProgreso.setValue(num_fotos_sel);
    miftp.close();
    //Detener el applet
    public void stop() {
    //Destruir el applet
    public void destroy() {
    //Obtener informaci�n del applet
    public String getAppletInfo() {
    return "Subir ficheros al server";
    //Obtener informaci�n del par�metro
    public String[][] getParameterInfo() {
    return null;
    //sube al ftp (a la carpeta del usuario) el archivo
    //pedido.txt que tiene las lineas del pedido
    public void subirpedido(FtpExample miftp) {
    jlarchivo.setText("Iniciando la conexi�n...");
    //make folder of user
    miftp.directorio("www/usuarios/" + nombreusuario);
    //uploads a file
    public void subirFichero(FtpExample miftp, String nombre) {
    //remote name:
    String nremoto = "";
    int lr = nombre.lastIndexOf("\\");
    if (lr<0){
    lr = nombre.lastIndexOf("/");
    nremoto = nombre.substring(lr + 1);
    String archivoremoto = "www/usuarios/" + nombreusuario + "/" + nremoto;
    //upload file
    miftp.subir(nombre, archivoremoto);
    class FtpExample
    implements FtpObserver {
    FtpBean ftp;
    long num_of_bytes = 0;
    public FtpExample() {
    // Create a new FtpBean object.
    ftp = new FtpBean();
    // Connect to a ftp server.
    public void connect() {
    try {
    ftp.ftpConnect("localhost", "pepe", "pepe01");
    catch (Exception e) {
    System.out.println(e);
    // Close connection
    public void close() {
    try {
    ftp.close();
    catch (Exception e) {
    System.out.println(e);
    // Go to directory pub and list its content.
    public void listDirectory() {
    FtpListResult ftplrs = null;
    try {
    // Go to directory
    ftp.setDirectory("/");
    // Get its directory content.
    ftplrs = ftp.getDirectoryContent();
    catch (Exception e) {
    System.out.println(e);
    // Print out the type and file name of each row.
    while (ftplrs.next()) {
    int type = ftplrs.getType();
    if (type == FtpListResult.DIRECTORY) {
    System.out.print("DIR\t");
    else if (type == FtpListResult.FILE) {
    System.out.print("FILE\t");
    else if (type == FtpListResult.LINK) {
    System.out.print("LINK\t");
    else if (type == FtpListResult.OTHERS) {
    System.out.print("OTHER\t");
    System.out.println(ftplrs.getName());
    // Implemented for FtpObserver interface.
    // To monitor download progress.
    public void byteRead(int bytes) {
    num_of_bytes += bytes;
    System.out.println(num_of_bytes + " of bytes read already.");
    // Needed to implements by FtpObserver interface.
    public void byteWrite(int bytes) {
    //crea un directorio
    public void directorio(String nombre) {
    try {
    ftp.makeDirectory(nombre);
    catch (Exception e) {
    System.out.println(e);
    public void subir(String local, String remoto) {
    try {
    ftp.putBinaryFile(local, remoto);
    catch (Exception e) {
    System.out.println(e);
    // Main
    public static void main(String[] args) {
    FtpExample example = new FtpExample();
    example.connect();
    example.directorio("raul");
    example.listDirectory();
    example.subir("C:/fotos/05160009.JPG", "/raul/foto1.jpg");
    //example.getFile();
    example.close();

  • Lee3 May 25, 2012 5:36 AM  I have attempted to download with Bootcamp the Windows 7 drivers but the dowload will not progress past 25%!     Is there someone that can assist me with this issue?  : /

    Lee3
            May 25, 2012 5:36 AM   
    I have attempted to download with Bootcamp the Windows 7 drivers but the dowload will not progress past 25%!
    Is there someone that can assist me with this issue?
    :>/

    How long did you wait for the download to run?  The last time I downloaded the Windows support files for Boot Camp, it was going very slowly, so I swapped away to another task.  Several minutes later I came back and it had moved a little, but not much, so I went on with other things.  When I got back to it several hours later, the download had completed.  Perhaps you just need to let it go overnight to perform the downloads...

  • I need to download ferefox 9.0 but I cannot find it anywhere. Who can help me with this?

    I need to download ferefox 9.0 but I cannot find it anywhere. Who can help me with this?

    Please note that running out of date versions of Firefox is not recommended, as you will open yourself up to known security issues, alongside bugs and other issues. Is there a specific problem you are having with Firefox that I can help you with?
    You can download Firefox 9 at [http://ftp://ftp.mozilla.org/pub/firefox/releases/9.0.1/win32/en-US/ ftp://ftp.mozilla.org/pub/firefox/releases/9.0.1/win32/en-US/]

  • I have a new PC w/ Win7 and Ipod is not recognized. I think I need to restore the Ipod but am unable to do so. thanks to any /all who can assist.

    I have a new PC w/ Win7 and Ipod is not recognized. I think I need to restore the Ipod but am unable to do so. thanks to any /all who can assist.

    Hello kevin
    Check out the article below to guide you to the proper article to get your iPod shuffle to show up. You will need to see if it shows up on your computer as a device in My Computer section in Windows Explorer. Then it will help you pick the right one.
    iPod not appearing in iTunes
    http://support.apple.com/kb/ts3716
    Regards,
    -Norm G.

  • Ever since i updated to ios 8.3, my imessage has been on "Waiting for Activation" Please who can assist? i have reset the network settings and also have restarted the phone.

    ever since i updated to ios 8.3, my imessage has been on "Waiting for Activation" Please who can assist? i have reset the network settings and also have restarted the phone.

    same problem here

  • TS3988 This product can not proceed with the activation process, service errors go I want you entered will appear this error I am a Korean. Failed to resolve service center in South Korea  Please e-mail response  iPad2 32GB Cellular Version

    This product can not proceed with the activation process, service errors go I want you entered will appear this error
    I am a Korean.
    Failed to resolve service center in South Korea
    Please e-mail response
    iPad2 32GB Cellular Version
    <Email Edited by Host>

    I'm same. Any Update or News?
    Message was edited by: koreasaram

  • Please help me!!!!!!! what can I do with the message " no service " I have already updated for 5.0.1 (9A406) and nothing happened. Please Help me!!!!! I´m thinking to came back to my nokia. It´s work at least!!!!

    Please help me!!!!!!! what can I do with the message " no service " I have already updated for 5.0.1 (9A406) and nothing happened. Please Help me!!!!! I´m thinking to came back to my nokia. It´s work at least!!!!

    Please DO go back to your Nokia.  I'm sure people on their support forums will love your whining and idle threats just as much as we do.

  • I knew the carrier for my iPhone it's SoftBank how can I contact with them to unlock my iPhone

    I knew the carrier for my iPhone it's SoftBank how can I contact with them to unlock my iphone

    Google them and either call, email or write them. But I don't believe they unlock iPhones.

  • Who can help me with this form?

    Having some problems with the form ive placed on my site.
    I cant find the problem. Is there someone who can tell me what i have done wrong.
    you can see the form on.
    http://www.salontouche.nl/explorers.htm
    and the error i get is..
    Oops! This page appears broken. DNS Error - Server cannot be found.
    hope to get some advice..
    this is the contactscript..
    <?php error_reporting(0);
        // VALUES FROM THE FORM
        $name        = $_POST['name'];
        $email        = $_POST['email'];
        $message    = $_POST['msg'];
        // ERROR & SECURITY CHECKS
        if ( ( !$email ) ||
             ( strlen($_POST['email']) > 200 ) ||
             ( !preg_match("#^[A-Za-z0-9](([_\.\-]?[a-zA-Z0-9]+)*)@([A-Za-z0-9]+)(([\.\-]?[a-zA-Z0-9]+)* )\.([A-Za-z]{2,})$#", $email) )
            print "Error: Invalid E-Mail Address";
            exit;
        if ( ( !$name ) ||
             ( strlen($name) > 100 ) ||
             ( preg_match("/[:=@\<\>]/", $name) )
            print "Error: Invalid Name";
            exit;
        if ( preg_match("#cc:#i", $message, $matches) )
            print "Error: Found Invalid Header Field";
            exit;
        if ( !$message )
            print "Error: No Message";
            exit;
    if ( strpos($email,"\r") !== false || strpos($email,"\n") !== false ){ 
            print "Error: Invalid E-Mail Address";
            exit;
        if (FALSE) {
            print "Error: You cannot send to an email address on the same domain.";
            exit;
        // CREATE THE EMAIL
        $headers    = "Content-Type: text/plain; charset=iso-8859-1\n";
        $headers    .= "From: $name <$email>\n";
        $recipient    = "[email protected]";
        $subject    = "Reactie van uw Website";
        $message    = wordwrap($message, 1024);
        // SEND THE EMAIL TO YOU
        mail($recipient, $subject, $message, $headers);
        // REDIRECT TO THE THANKS PAGE
        header("Location: http://www.salontouche.nl/thanks.php");
    ?>
    regards

    Having some problems with the form ive placed on my site.
    I cant find the problem. Is there someone who can tell me what i have done wrong.
    you can see the form on.
    http://www.salontouche.nl/explorers.htm
    and the error i get is..
    Oops! This page appears broken. DNS Error - Server cannot be found.
    hope to get some advice..
    this is the contactscript..
    <?php error_reporting(0);
        // VALUES FROM THE FORM
        $name        = $_POST['name'];
        $email        = $_POST['email'];
        $message    = $_POST['msg'];
        // ERROR & SECURITY CHECKS
        if ( ( !$email ) ||
             ( strlen($_POST['email']) > 200 ) ||
             ( !preg_match("#^[A-Za-z0-9](([_\.\-]?[a-zA-Z0-9]+)*)@([A-Za-z0-9]+)(([\.\-]?[a-zA-Z0-9]+)* )\.([A-Za-z]{2,})$#", $email) )
            print "Error: Invalid E-Mail Address";
            exit;
        if ( ( !$name ) ||
             ( strlen($name) > 100 ) ||
             ( preg_match("/[:=@\<\>]/", $name) )
            print "Error: Invalid Name";
            exit;
        if ( preg_match("#cc:#i", $message, $matches) )
            print "Error: Found Invalid Header Field";
            exit;
        if ( !$message )
            print "Error: No Message";
            exit;
    if ( strpos($email,"\r") !== false || strpos($email,"\n") !== false ){ 
            print "Error: Invalid E-Mail Address";
            exit;
        if (FALSE) {
            print "Error: You cannot send to an email address on the same domain.";
            exit;
        // CREATE THE EMAIL
        $headers    = "Content-Type: text/plain; charset=iso-8859-1\n";
        $headers    .= "From: $name <$email>\n";
        $recipient    = "[email protected]";
        $subject    = "Reactie van uw Website";
        $message    = wordwrap($message, 1024);
        // SEND THE EMAIL TO YOU
        mail($recipient, $subject, $message, $headers);
        // REDIRECT TO THE THANKS PAGE
        header("Location: http://www.salontouche.nl/thanks.php");
    ?>
    regards

  • Who can help me with my ORDER?!

    I had made an online order for my iphone 5s on 11/15 online. It showed that will be delivery by 11/19. I  had recived the email with conformation # as quickly, but it always show "being processed, check it back tomorrow" in my order status. I have checked the local store, and they have the device in stock. So, I may want to cancel the order and get it in local store.
    However, I called to the customer serving for all day. They always told me to transfer me to another department. The only time, they said it would not cancelled during the status was being processed and also do a transfer to another deparmenrt. but There is always being No Agents Avilable for each time!!
    The chat live will not help you to do anything, except provide a phone number and let you call them.
    Now, my status still not changing, and I have no idea to who i can communited with this issue.
    Who can help me ?? How can I cancel it or to know anything about my order without only waste time for waiting and calling.

    >Post deleted to remove personal info<
    MODERATOR COMMENT: This is a public peer to peer (customer to customer) Community.
    Please call 800-922-0204 concerning your order
    Sent via the Samsung Galaxy Note® II, an AT&T 4G LTE smartphone
    Message was edited by: Verizon Moderator><

  • Who can help me with spice model thx

    i have download a power mosfet spice model, then creat a new component in multisim
    i copy the model directly into multisim but it does't work
    who can tell me causation, or tell me how can i trun it to multisim model
    thanks very much
    spice model:
    * PSpice Model Editor - Version 9.2.1
    *$
    *DEVICE=IXFN36N100,NMOS
    * IXFN36N100 NMOS model
    * updated using Model Editor release 9.2.1 on 03/06/04 at 13:01
    * The Model Editor is a PSpice product hem.
    .MODEL IXFN36N100 NMOS
    + LEVEL=3
    + L=2.0000E-6
    + W=52
    + KP=1.0353E-6
    + RS=10.000E-3
    + RD=.22254
    + VTO=4.7737
    + RDS=10.000E6
    + TOX=2.0000E-6
    + CGSO=208.54E-12
    + CGDO=7.5038E-12
    + CBD=23.424E-9
    + MJ=1.5000
    + PB=3
    + RG=10.000E-3
    + IS=8.8150E-6
    + N=2.2584
    + RB=1.0000E-9
    + GAMMA=0
    + KAPPA=0
    *$

    Like I told another user I am no expert on model files. I have tried this file and Multisim will not recongnize it. I would recommend the following procedure if you can do it. Go into the component wizard and create a default Mosfet Using the Model Makers.. This will give you the correct syntax for the model file that Multsim can understand. If you know what the parameters mean from Pspice file then you can edit the model after it is created for you in Multisim and plug the numbers into it from the Pspice file. This should create a model that would work in Multisim. This procedure is theoretical on my part and you would have to try it to see if it works for you. It is possible that you don't have the Model Makers depending on your version of Multisim. If that is the case then we will have to try another approach.
    I do not know the meaning of the Pspice parameters (i.e what does the L=XXXXX  and N=XXXXX actual stand for). If you are unable to do this then maybe the NI Team can decipher this for you and post a model file that would work for you.
    I am going to have to study the various parameter on these files to find out their meaning  so I can be of better assistance when it comes to these model files. Right now I just don't have the time since I recently acquired a job that takes up a fair chunk of my days. I will contin ue looking into this as times permits for me.
    Message Edited by lacy on 11-11-2007 07:40 AM
    Kittmaster's Component Database
    http://ni.kittmaster.com
    Have a Nice Day

  • Two computers who can video chat with everyone but each other

    I don't get it, I can video chat with the apple test sites and anyone else who has left me their name on this site. My realtive in Seattle can do the same. But we can't video with each other. However, when I disconnect my cable modem and plug in my high speed wireless modem card, we connect. I have made all the setting changes to my Lyksys modem suggested on this forum with no success. Is it possible that her cable modem and mine are incompatible and just won't talk to each other? (we can text each other, just no video or voice)

    Have a look at this section on my Web page
    http://www.ralphjohnsuk.dsl.pipex.com/page15.html#CertainBuddy
    It suggest the steps Rj is talking about.
    Read the Bottom line.
    12:10 AM Friday; March 3, 2006

  • Who can i speak with to negotiate a better price?

    i don't like this nickel and dime game every time i want to add a feature.
    who can help me negotiate a better price and some LIVE support, not these forums?

    Hi roxie2014,
    You are welcome to Contact Customer Care (but note that Adobe is closed for the holidays). A Customer Care agent can help you determine what is the best option for the tasks that you need to accomplish.
    Best,
    Sara

Maybe you are looking for

  • Win 8.1 - Driver or Software problem

    ATTEMPTING to connect EOS10D to WIN 8.1... It has been connected and is working fine with WIN XP PRO... So camera is ok... it is a driver problem... please see NOTES BELOW... Please provide previous troubleshooting steps,  or information that can hel

  • Logic error in for loop

    I have a JSP form which list modules that student can take. Some of these modules have prerequisite and some do not. In order to successfully register a student, I have a number of requirements e.g. must not be already register; the registration date

  • Plasma tv

    I have a 42" plasma tv that has started changing the input on its own quite frequently. I tried pulling the batteries from the remote and the problem continues to occur. I don't know if it's a bad wire with the input button on the tv itself or someth

  • Signatures on e-mail accounts

    My signatures do not show properly when I reply to messages. The signatures go below the original text. I did check place signature above quoted text, but still the sig. goes to the bottom of the message I received instead of my reply. Any advice on

  • Few questions about iPhone vs Touch

    Okay so i'm thinking of getting an iPod Touch but since I have AT&T already I might get an iPhone instead. But a few things are keeping me undecided. I know that you need to activate your iPhone and from reading a few things on this website it says t