Questions about activation locks? Help?

Okay so I bought an iphone 5 off kijiji and everything is fine so far but I have a few questions. It says "SIM required" and I don't have a SIM card yet as I'm getting one next week. I'm not sure if it's activation locked. My questions is Does the activation lock alert pop up before it asks for SIM? Or after when I've put in my SIM?
Hopefully that makes sense because I don't have a SIM yet and I don't know how else to check if its activation locked. Please reply.

It checks for activation lock when you attempt to activate the phone with a SIM card in it.

Similar Messages

  • Question about activating iPhone

    I'm getting a iPhone soon, and have a question about activation. Is a credit card or debit card required during activation?

    The credit card is used to setup an iTunes Store account, Small tip. Set one up before activation to cut down on activation setup time.
    You can remove the credit card info off your iTunes account after it is setup. It is simply used for when you want to purchase music, videos, etc. off the iTunes Store.
    If you do not have a credit or debit card, Try going down to your local Walmart or Drug store, Some of these places sell Fillable Credit cards. You can buy the cheapest one they have and use it for Setup of the account. And simply refill it if you need more money for any purchases.

  • I hava a question about RMI,please help me!

    Ladys and Gentleman,I hava a question about RMI.I wirte four little programs in java that is about RMI on my PC.
    import java.rmi.*;
    public interface AddServerIntf extends Remote{
    double add(double d1,double d2) throws RemoteException;
    import java.rmi.*;
    import java.rmi.server.*;
    public class AddServerImpl extends UnicastRemoteObject implements AddServerIntf{
    public AddServerImpl() throws RemoteException{
    public double add(double d1,double d2)throws RemoteException{
    return d1+d2;
    import java.net.*;
    import java.rmi.*;
    public class AddServer{
    public static void main(String args[]){
    try{
    AddServerImpl addServerImpl=new AddServerImpl();
    Naming.rebind("AddServer",addServerImpl);
    }catch(Exception e){
    e.printStackTrace();
    import java.rmi.*;
    public class AddClient
         public static void main(String args[]){
         try{
         String addServerURL="rmi://"+args[0]+"/AddServer";
         AddServerIntf addServerIntf=(AddServerIntf) Naming.lookup(addServerURL);
         System.out.println("The first number is: "+args[1]);
         double d1=Double.valueOf(args[1]).doubleValue();
         System.out.println("The second number is: "+args[2]);
         double d2=Double.valueOf(args[2]).doubleValue();
         System.out.print("The sum is: "+addServerIntf.add(d1,d2));
         }catch(Exception e){
         System.out.println("Exception: "+e);
    And I compiled these files,so I got 4 class files(AddServer.class,AddServerIntf.class,AddServerImpl.class,AddServerClient.class).Then I use "rmic AddServerImpl" got another two files(AddServerImpl_Skel.class and AddServerImpl_Stub.class).Then I input command:rmiregistry,in another window,I input command:java AddServer,I got some exceptions,I was confused by these exceptions.The exception is:
    D:\MyJava\rmi_3>java AddServer
    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
    java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
    java.lang.ClassNotFoundException: AddServerImpl_Stub
    java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
    java.lang.ClassNotFoundException: AddServerImpl_Stub
    java.lang.ClassNotFoundException: AddServerImpl_Stub
    at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Unknown Source)
    at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
    at sun.rmi.server.UnicastRef.invoke(Unknown Source)
    at sun.rmi.registry.RegistryImpl_Stub.rebind(Unknown Source)
    at java.rmi.Naming.rebind(Unknown Source)
    at AddServer.main(AddServer.java:8)
    But some times this exception will not appeared.Who can give me answer or suggestion,thanks a lot.
    By the way,when I run shutdown.bat in tomcat_root\bin,I can get some exceptions:
    C:\Tomcat\bin>shutdown
    Using CATALINA_BASE: ..
    Using CATALINA_HOME: ..
    Using CATALINA_TMPDIR: ..\temp
    Using JAVA_HOME: C:\JDK
    Catalina.stop: java.net.ConnectException: Connection refused: connect
    java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:350)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:137)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:124)
    at java.net.Socket.<init>(Socket.java:268)
    at java.net.Socket.<init>(Socket.java:95)
    at org.apache.catalina.startup.Catalina.stop(Catalina.java:579)
    at org.apache.catalina.startup.Catalina.execute(Catalina.java:402)
    at org.apache.catalina.startup.Catalina.process(Catalina.java:180)
    at java.lang.reflect.Method.invoke(Native Method)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)
    I use Windows server 2000+JDK 1.3.1_04+tomcat 4.1.7

    Maybe I am off base here but it seems to me the problem is the way in which you bind your server. The server must be bound to the same address and you are looking up from, i.e. "rmi://" host "/AddServer"
    so
    Naming.rebind("AddServer",addServerImpl);should be
    Naming.rebind("rmi://127.0.0.1/AddServer", addServerImpl);to match
    String addServerURL="rmi://"+args[0]+"/AddServer";
    AddServerIntf addServerIntf=(AddServerIntf)
    Naming.lookup(addServerURL);Hopefully this will solve your problem, if not it is a problem with your classpath. An easy way to make sure it can see your files is to set the java.rmi.server.codebase to point to where your classes are, e.g.
    java -Djava.rmi.server.codebase=file:"c:\\cygwin\\home\\tweak\\keck_folder\\cmsi401\\RMIGalaxySleuth\\classes\\" AddServer
    I had to set the codebas for my rmi stuff to work no matter how much I messed with the classpath.
    Hope this helps,
    Will

  • Question about inner class - help please

    hi all
    i have a question about the inner class. i need to create some kind of object inside a process class. the reason for the creation of object is because i need to get some values from database and store them in an array:
    name, value, indexNum, flag
    i need to create an array of objects to hold those values and do some process in the process class. the object is only for the process class that contains it. i am not really certain how to create this inner class. i tried it with the following:
    public class process{
    class MyObject{}
    List l = new ArrayList();
    l.add(new MyObject(....));
    or should i create the object as static? what is the benifit of creating this way or static way? thanks for you help.

    for this case, i do need to create a new instance of
    this MyObject each time the process is running with a
    new message - xml. but i will be dealing with the case
    where i will need a static object to hold some
    property values for all the instances. so i suppose i
    will be using static inner class for that case.The two situations are not the same. You know the difference between instance variables and static variables, of course (although you make the usual sloppy error and call them static objects). But the meaning of "static" in the definition of an inner class is this: if you don't declare an inner class static, then an instance of that inner class must belong to an instance of its containing class. If you do declare the inner class static, then an instance of the inner class can exist on its own without any corresponding instance of the containing class. Obviously this has nothing to do with the meaning of "static" with respect to variables.

  • A question about openssl, pls help me

    hi,all
    I'm a student from China. Now I dowload the openssl package to study the cryptography algorithm. I have read some books such as Applied Cryptography by Bruce Schneier. But Mr. Eric Young's programs make me in sea, e.g. in CAST program package, there are CAST_ecb_encrypt , CAST_cfb64_encrypt , CAST_cbc_encrypt and CAST_ofb64_encrypt function. Which should I use ?
    I teach myself Cryptography, so none can answer my question. Can you help me?
    Thanx!

    void CAST_set_key(CAST_KEY key, int len, const unsigned char data);
    void CAST_ecb_encrypt(const unsigned char in,unsigned char out,CAST_KEY *key
              int enc);
    void CAST_encrypt(CAST_LONG data,CAST_KEY key);
    void CAST_decrypt(CAST_LONG data,CAST_KEY key);
    void CAST_cbc_encrypt(const unsigned char in, unsigned char out, long length
              CAST_KEY ks, unsigned char iv, int enc);
    void CAST_cfb64_encrypt(const unsigned char in, unsigned char out,
                   long length, CAST_KEY schedule, unsigned char ivec,
                   int *num, int enc);
    void CAST_ofb64_encrypt(const unsigned char in, unsigned char out,
                   long length, CAST_KEY schedule, unsigned char ivec,
                   int *num);

  • Questions about distributing AIR Help.

    RH 8 HTML.
    So I'm creating AIR Help in RH and am experimenting with the auto update features etc over a network for now, and then a web server in the next few days once I can get access.
    In the mean time I'm wondering a few things.
    - We have multiple clients who will all have a slightly different version of the AIR Help file depending on what content they need, so how do you manage the auto update in this sense? If a change is made in RH, I need to publish all these different version of the help file, with all the different xml files, and distribute all the seperate .air and .xml files to their locations on the webserver, correct? eg if I have 20 versions of the air help, then i will need to publish 20 air files with 20 xml files from RH and load them to each specific client location, though with the output settings an batch feature this is more or less automated right?
    - I read that the .air installer will run 'out of the box' and that clients wont need AIR installed on their machines to run it, or is it that the air installer is packaged with the help.air file?
    - Installing anything on most company computers requires admin privilages, and it seems to be the same for AIR, how do you overcome this with organisations who need the help files? Each one needs to get their admin to install it, but what about updates? can updates install without the need of admin privilages? I suppose that question is a bit more dependant on individual companys and their IT systems.
    Sorry for all the questions lately, just trying to get things straight in my mind before implementation.
    Thanks.
    Nick

    Hi Nick,
    I will try to answer your query one by one.
    1 Regarding the first query where in there are multiple clients. My assumption here is since there are multiple clients, and each client requires a different help content, then you will need to generate different AIR files for different clients. You need to keep one thing in mind, since you are generating different AIR files for different clients, you would like to keep Help ID for AIR files different as well.
    (To give a better explanation, each AIR help file generated can be uniquely identified using a combination of Help ID + digital certificate, provided at the time of AIR help file generation. This way, each client will have a different AIR help file.) Please check the RoboHTML help documentation @ http://help.adobe.com/en_US/RoboHelp/8.0/RoboHTML/WS9F3A471F-9FAC-4687-AF58-DD1F0FCADF17.h tml#WSF7726358-A147-441b-B441-0E19EB52A293
    Next you want to provide an auto update for each client, where in each client will have an update XML specific to his AIR help file. A workable solution is to create different AIR Single Source Layout (SSL) for each client, so that all the setting for that client is saved in that AIR SSL options. This way you can generate multiple AIR SSL as well, using the Batch Generate feature (or scripting). After generatiing the .air file for all the client, client need to upload the updated xml and .air file in the update URL (server or shared drive).
    2 Moving to the second query that .air installer will run 'out of the box'. AIR behaves likes any other runtime (for example JAVA, you need JRE to run java applets), you need to have AIR runtime installed on the client machine to install .air file. AIR runtime is not part of .air file and comes as a separate installer. You can check the AIR help documentation regarding the AIR installer and AIR runtime distribution. There is a page at Adobe site regarding the AIR runtime distribution as well @ http://www.adobe.com/products/air/runtime_distribution1.html
    3 Since this is an AIR application install, you need to have admin rights. There is a blog regarding the AIR installation @ http://blogs.adobe.com/simplicity/2009/04/should_air_support_non_admin_app_install.html
    Hope this clears some doubts. Do post back if you have more questions.
    -Praful

  • A very important question about the HostSample-Help needed!

    Hi,
    I'm trying to build a plugin for EM 12c ( 12.1.0.2 ) which suppose to monitor jmx mbeans .
    I encountered during the README file which was packed with the EDK .
    1. In the section where I try to use Flash builder ( ver 4.6 - that's the only release I found .. ) I folowed the instructions if how to run the example ( HostSample/HostSystem ) . When I run the example ( I installed the sdk's of Flash and everything that was written there - no problem )
    in the web browser i got the login page , and put the parameters ( username, password ) as it said in the README - the same username/password as i log in to the EM console .Than I got an error saying " ... RPC fault string ..... Logging to management server ... URL:https.. host ( my host name ) : port ( my port number ) /em..."
    Does anyone has a clue about this ? What am i doing wrong or miss something ?
    It is very important and urgent to me . please help .

    To add a bit more detail. Before you run the application from FlashBuilder, open the same browser you will use to run/debug the application in FlashBuilder and install certificate.
    Firefox:
    . when the "This Connection is Untrusted" warning appears
    . expand the "I Understand the Risks" item
    . click the "Add Exception..." button
    . on the "Add Security Exception" dialog, ensure "Permanently store this exception" is checked
    . click "Confirm Security Exception" button
    IE:
    . when the "Certificate Error: Navigation Blocked" page appears, click "Continue to this website (not recommended)"
    . click on the "Certificate Error" icon in the browser address bar
    . in the "Untrusted Certificates" popup, click "View Certificates"
    . click on the "Certification Path" tab of the "Certificate" dialog
    . select the root certificate (certificate at the root of the tree)
    . click "View Certificate..." button
    . click "Install Certificate..." on the "Certificate" dialog that appears
    . click "Next" on the "Certificate Import Wizard"
    . select "Place all certificates in the following store" button and click "Browse..."
    . select "Trusted Root Certification Authorities" on the "Select Certificate Stores" dialog and click "OK"
    . click "Next" button, and then "Finish" button
    . click "Yes" on "Security Warning" dialog that appears
    The other alternative is to enable http access using "emctl secure unlock". This is not recommended for a production site.
    .

  • A question about Flash 5 (Help appreciated)

    Many years ago I bought Macromedia Flash 5, and never got around to doing anything with it.... Lately I've gained a lot of interest in learning how to animate and develop small applications like games and I figured flash would be a good place to start...
    Now I don't currently have to the money to purchase a 600 dollar copy of Adobe CS6, and I'd feel like I wasted a lot of money if I never got to use the version I purchased even if it was like 10 years ago. So I had a few questions to ask before I invest any time into Flash 5
    1. If I learn actionscript in Flash 5, and one day I get adobe flash, will I know what I'm doing? Or will I basically be learning a brand new system of coding
    2. Is it possible to make a moderately complex interactive game with Flash 5? (One with many seperate values for score, health, etc. etc.)
    3. All in all, is it even worth me using such an old version of Flash?

    The language used in Flash 5 is Action Script 2, but the newest is Action Script 3 being the most optimal language. There are still people using Action Script 2, but will eventually have to migrate through 3.
    You want to make games, you can do and if after you get a newer version, you can continue working (in the old version of AS2 code).
    Working with an older version is not as bad, but the true power of Flash Action Script 3 explodes.
    Have you thought about using the cloud and pay only for Flash months, I think it costs 60 dollars per month

  • Question about Active Directory Configuration

    Hi All,
    Portal Version : EP7.0 SP7
    We want to configure Active directory as a Portal UME store.
    We have 7 Domain controllers in the domain xyz.com. They are spread across locations. I assume, by default domain controller will have global catalog defined.
    So in LDAP configuration, whether we to use Global Catalog (Port: 3268) to connect to ADS or LDAP connection(Port:389)?
    I am not clear, when Global Catalog connection is defined to bind ADS to Portal UME?
    Any suggestion?
    Thanks & Regards,
    Gowri

    Hi Gowri,
    It will work fine if you connect through port 389.
    Can you please explain it in detail that How you have spread your domain controllers / your forest hierarchy?
    Check if this helps.
    Thanks,
    Mittal

  • Quick question about Auto-lock settings

    Hello all,
    I recently was able to sync my office email account to my iPhone using Microsoft Exchance active sync. The problem as I understand from searching through different posts, is that I can no longer set my Auto-lock setting to "Never" because of this, only 5 minutes (sort of a security thing as far as I can tell).
    The reason I am trying to do this is that I like to use one or two of the GPS golf apps out there, and they stay dialed in if the phone doesn't "sleep" while I am playing a round, so I would like to keep it on the entire time.
    Does anyone have any ideas of how I might be able to work around this issue in any way?
    Responses are, as always, much appreciated!
    Cheers,
    Kev

    More than likely, you could not simply delete the account. The thing is that the people who came up with the security protocols already thought of that. As an employee using a company cell phone, I could delete my account, access features or information my company restricts and then readd the account, thus bypassing security protocols.
    In addition, I might have other sensitive company information (in the form of contacts, documents, notes, etc) that would still be on the phone even if I delete my exchange account. Without autolock, people would still have access to this data even if I delete the account.
    To prevent this type of abuse, when an exchange account is added, it installs a set of restrictions and protocols to the phone. Those protocols can, at the discretion of IT, be non alterable and non removable, even when the exchange account is deleted. This prevents people from abusing the loophole you are describing.
    Similarly, simply switching to another email account will not bypass them - these protocols are now part of how your phone acts and can not be changed without wiping it back to factory settings.

  • Question about activation of iPhone 3G

    hello,
    I actually have an iPhone 3G bought in the UK (Pay&Go with O2). This iPhone is sim locked on O2 Uk.
    My question is: If I buy another Pay&Go UK O2 Sim Card and restore my iPhone, will this sim card be able to activate my iPhone?
    Thanks in advance.

    The gps on the original Iphone was not actually GPS. It was just a set of maps that you could search just like yahoo maps and google maps. later on they added a find me feature which brought up your approximate location according to cell phone towers but it would not follow you as you went along. The new Iphone has true GPS that will track you as you move.

  • Question about object lock

    Hello everyone,
    I want to know which method owns the lock of a specific object (some of my methods are blocked because they can not achieve the lock of a specific object, and I am wondering which method owns the lock to solve the deadlock issue). Does anyone know how to get the information?
    Thanks in advance,
    George

    Thanks Feamar,
    U should not think of a method as having a lock,
    rather than that u should think of a piece of
    synchronized code to have the lock on an object.
    U should try and find nested synchronization
    statements in your code, those are risky and can lead
    to deadlocks.
    Good luckYour reply is very helpful. What means "nested synchronization statement" in your reply?
    regards,
    George

  • Question about "activated" status

    Hi again!
    Got another question regarding Applescript studio app. Most apps I notice if you close their window and the app allows itself to stay open, by double clicking the icon or clicking the dock icon it would reopen that window. But I notice that if you would close the window and "activate" the app by Expose or -tab that some apps will reopen the window and some won't...make sense? So I guess my question is how would I make the app reopen its main window that was closed if you would click it's icon, but not if it was reactived in Expose???
    Thanks,
    Reg

    From some quick experiments it looks to me like "will become active" and "activated" are going to get called any time your app is activated regardless of whether it's due to command-tab or clicking the dock icon. So if you're only wanting to open an new window on a dock click I don't know how you could really use either of those and be able to tell what caused your app to be actived.
    On the other hand it appears that "should open untitled" may do what you're wanting. It appears that "should open untitled" gets called if your app does not have any open windows and it gets activated by a click on the dock icon. It does not seem to get called if you switch to your app using command-tab. Nor does it get called following a dock icon click if you already have a window open.
    It also does not get called if your app does have a window and you switch to it by clicking the window in Expose. Is it even possible to switch to an app through Expose if the app does not have any windows to click on?
    I'm not sure what other circumstances could cause "should open untitled" to be called so you may have to experiment with it some more.
    Steve

  • The question about activity allocation

    business scenario:
    1, The sole purpose is to capture costs,  use KB21N for activity allocation.
    Question: in WBS or netwok activity. there is no relevant work time.
    Please explain me all the steps to be required.
    Thanks in advance

    Hi,
    I under stood as follows.
    You want to capture actual cost in PS. For this you need to have Work centers.
    Assign the same to internal actvities. Release the activity and confirm the same.
    In SAP, Standard report, you get No hours Actuals, Planed... etc. Check in CN41, CN71 and execute the Project. Check the field selection, there you get the details you required.
    Hope my understanding is correct.
    Regards
    N.Raju

  • Question about /var/lock/subsys/dbora

    Hello,
    I've been having a problem where ./dbora stop is not completely shutting down the database. I've done some debigging and discovered that this is because there is no /var/lock/subsys/dbora file. I've seen this file created in a lot of sample dbora scripts, ie
    touch /var/lock/subsys/dbora
    My question is why is this? Why does the file not get created when Oracle is started?
    I'm on Oracle 10G.
    thanks very much

    dbstart and dbshut are oracle supplied files which we use to start and stop the database. We create a small shell script which get placed in rc.d and that file called those dbstart/shut files to start and stop oracle services at boot time. "touch /var/lock/subsys/dbora" is an extra login which WE put in our shell script and it should not have any relation with starting and stopping the services. It totally depends on the shell script written by the DBA. I have this piece of code in my startup script and I can see this file on my system but even if i can't its not going to stop working.
    You first of all make sure what permission do you have on /var/lock/subsys
    Daljit Singh

Maybe you are looking for