HT6029 I get error 3194  with Apple Configurator when trying to prepare my ipad

Hi,
I am testing out Apple Configurator 1.4.2 (iTunes is up to date, as is Mac OS, at 10.8) for deploying profiles to an upcoming iPad fleet. I have run into two issues:
- With an iPad2 running iOS7, and the "Supervision" option set to "ON", the Configurator downloaded iOS 6.1.3 successfully and tried to apply it, failing with the error 3194
- With an iPad2 running iOS6.1.3 with the same options as above, it failed also with error 3194 and bricked the iPad. Restore also fails
Does anyone know what is causing the error 3194? I have run through Google and all it says is that the system cannot contact the Apple Server, but if I downloaded the updates successfully this can't be the issue, can it?

iPad: Basic troubleshooting
http://support.apple.com/kb/TS3274
Update and restore alert messages on iPhone, iPad, and iPod touch
http://www.buybuyla.com/tech/view/012953a0d412000e.shtml
iOS: Resolving update and restore alert messages
http://support.apple.com/kb/TS1275
iPad: Unable to update or restore
http://support.apple.com/kb/ht4097
iTunes: Specific update-and-restore error messages and advanced troubleshooting
http://support.apple.com/kb/TS3694
Error 3194
http://support.apple.com/kb/TS4451
 Cheers, Tom

Similar Messages

  • Still getting error 4310 with itunes 11 when trying to burn a disc (and my comp is new)!!

    Help downloaded itunes 11 still getting error 4310 when buring to a disc. the computer is new. 

    whydoyouneedtoknow wrote:
    .... Given the number of people having the same issue, and given that this issue has been around for several years, it's crazy that this isn't fixed.
    I concur!! Come on Apple!!!

  • TS3694 Hi Could someone help me..  I am getting error 3194 on my Iphone when trying to update software

    I have plugged my Iphone into my itunes account after trying to update to IOS 7.  Its an Iphone4s..  I have pressed home and sleep button but the error still comes up. 
    Kat

    Unable to contact the iOS software update server gs.apple.com
    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    Install the latest version of iTunes.
    Check security software and ensure that communication to gs.apple.com is allowed. Follow these stepsfor assistance with security software.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. Follow theadvanced iTunes Store troubleshooting steps to edit the hosts file or revert to a default hosts file. See "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information."
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need service.

  • How to get rid of old Apple ID when trying to activate new iPad thru restore from iCloud?

    Making me crazy: after I select ipad backup from choose backup screen, the next screen asks me for itunes password again, but it shows long expired Apple ID that is not an email address. Haven't seen this for a year or more. My iCloud and Apple ID's all show me updated. Can't figure out how to get past this screen. Help!! Please!!
    Jon.

    Icttv123 wrote:
    is there any other solution????
    Erasing the iPhone is the solution; there are at least two ways to do that, though. 
    The second one is, go to icloud.com and login with your Apple ID and password.  Go to "Find My iPhone" and click "Devices."  From there you'll be able to erase the iPhone.  All the magic will happen as soon as the iPhone has internet access.

  • I was updated my Iphone 4s from computer(ITunes).ITunes get error and update failed.(When Iphone is preparing.).And now ı can't use my IPhone.At the screen there is a USB cable and up of the screen there is ITunes' logo.PLEASE HELP!

    I was updated my Iphone 4s from computer(ITunes).ITunes get error and update failed.(When Iphone is preparing.).And now ı can't use my IPhone.At the screen there is a USB cable and up of the screen there is ITunes' logo.PLEASE HELP!

    Read what i say. Put iPhone in DFU mode. Connect with USB cable and restore.
    Read:
    http://www.apple.com/support/iphone/assistant/restore/

  • I'm in UK but am getting Errors 503, 105007 and 105002 when trying to update

    I'm in UK but am getting Errors 503, 105007 and 105002 when trying to publish updates to 2 websites. System maintenance is going on right now in US and Australia but nothing about Europe. its Sunday 1900 here ( UTC+1)
    I was getting the same errors about 20 hours ago too - surely maintenance in US won't affect Europe and wouldn't prevent publishing for 24 hours?
    Any suggestions =   I guess the Adobe help desk will be SNAFU

    From BC Blog Post:
    Partner registration, Trial site creation Muse Publish, APIs, FTP and some admin section will not be available for 4 hours on all data centers.
    If you see the errors after maintenance is complete contact BC Support.

  • Getting error message Cannot Resolve Symbol when trying to compile a class

    Hello All -
    I am getting an error message cannot resolve symbol while trying to compile a java class that calls another java class in the same package. The called class compiles fine, but the calling class generates
    the following error message:
    D:\Apache Tomcat 4.0\webapps\examples\WEB-INF\classes\cal>javac
    ConnectionPool.java
    ConnectionPool.java:158: cannot resolve symbol
    symbol : class PooledConnection
    location: class cal.ConnectionPool
    private void addConnection(PooledConnection value) {
    ^
    ConnectionPool.java:144: cannot resolve symbol
    symbol : class PooledConnection
    location: class cal.ConnectionPool
    PooledConnection pcon = new PooledConnection(con);
    ^
    ConnectionPool.java:144: cannot resolve symbol
    symbol : class PooledConnection
    location: class cal.ConnectionPool
    PooledConnection pcon = new PooledConnection(con);
    The code is listed as follows for PooledConnection.java (it compiles fine)
    package cal;
    import java.sql.*;
    public class PooledConnection {
    // Real JDBC Connection
    private Connection connection = null;
    // boolean flag used to determine if connection is in use
    private boolean inuse = false;
    // Constructor that takes the passed in JDBC Connection
    // and stores it in the connection attribute.
    public PooledConnection(Connection value) {
    if ( value != null ) {
    connection = value;
    // Returns a reference to the JDBC Connection
    public Connection getConnection() {
    // get the JDBC Connection
    return connection;
    // Set the status of the PooledConnection.
    public void setInUse(boolean value) {
    inuse = value;
    // Returns the current status of the PooledConnection.
    public boolean inUse() {
    return inuse;
    // Close the real JDBC Connection
    public void close() {
    try {
    connection.close();
    catch (SQLException sqle) {
    System.err.println(sqle.getMessage());
    Now the code for ConnectionPool.java class that gives the cannot
    resolve symbol error
    package cal;
    import java.sql.*;
    import java.util.*;
    public class ConnectionPool {
    // JDBC Driver Name
    private String driver = null;
    // URL of database
    private String url = null;
    // Initial number of connections.
    private int size = 0;
    // Username
    private String username = new String("");
    // Password
    private String password = new String("");
    // Vector of JDBC Connections
    private Vector pool = null;
    public ConnectionPool() {
    // Set the value of the JDBC Driver
    public void setDriver(String value) {
    if ( value != null ) {
    driver = value;
    // Get the value of the JDBC Driver
    public String getDriver() {
    return driver;
    // Set the URL Pointing to the Datasource
    public void setURL(String value ) {
    if ( value != null ) {
    url = value;
    // Get the URL Pointing to the Datasource
    public String getURL() {
    return url;
    // Set the initial number of connections
    public void setSize(int value) {
    if ( value > 1 ) {
    size = value;
    // Get the initial number of connections
    public int getSize() {
    return size;
    // Set the username
    public void setUsername(String value) {
    if ( value != null ) {
    username = value;
    // Get the username
    public String getUserName() {
    return username;
    // Set the password
    public void setPassword(String value) {
    if ( value != null ) {
    password = value;
    // Get the password
    public String getPassword() {
    return password;
    // Creates and returns a connection
    private Connection createConnection() throws Exception {
    Connection con = null;
    // Create a Connection
    con = DriverManager.getConnection(url,
    username, password);
    return con;
    // Initialize the pool
    public synchronized void initializePool() throws Exception {
    // Check our initial values
    if ( driver == null ) {
    throw new Exception("No Driver Name Specified!");
    if ( url == null ) {
    throw new Exception("No URL Specified!");
    if ( size < 1 ) {
    throw new Exception("Pool size is less than 1!");
    // Create the Connections
    try {
    // Load the Driver class file
    Class.forName(driver);
    // Create Connections based on the size member
    for ( int x = 0; x < size; x++ ) {
    Connection con = createConnection();
    if ( con != null ) {
    // Create a PooledConnection to encapsulate the
    // real JDBC Connection
    PooledConnection pcon = new PooledConnection(con);
    // Add the Connection to the pool.
    addConnection(pcon);
    catch (Exception e) {
    System.err.println(e.getMessage());
    throw new Exception(e.getMessage());
    // Adds the PooledConnection to the pool
    private void addConnection(PooledConnection value) {
    // If the pool is null, create a new vector
    // with the initial size of "size"
    if ( pool == null ) {
    pool = new Vector(size);
    // Add the PooledConnection Object to the vector
    pool.addElement(value);
    public synchronized void releaseConnection(Connection con) {
    // find the PooledConnection Object
    for ( int x = 0; x < pool.size(); x++ ) {
    PooledConnection pcon =
    (PooledConnection)pool.elementAt(x);
    // Check for correct Connection
    if ( pcon.getConnection() == con ) {
    System.err.println("Releasing Connection " + x);
    // Set its inuse attribute to false, which
    // releases it for use
    pcon.setInUse(false);
    break;
    // Find an available connection
    public synchronized Connection getConnection()
    throws Exception {
    PooledConnection pcon = null;
    // find a connection not in use
    for ( int x = 0; x < pool.size(); x++ ) {
    pcon = (PooledConnection)pool.elementAt(x);
    // Check to see if the Connection is in use
    if ( pcon.inUse() == false ) {
    // Mark it as in use
    pcon.setInUse(true);
    // return the JDBC Connection stored in the
    // PooledConnection object
    return pcon.getConnection();
    // Could not find a free connection,
    // create and add a new one
    try {
    // Create a new JDBC Connection
    Connection con = createConnection();
    // Create a new PooledConnection, passing it the JDBC
    // Connection
    pcon = new PooledConnection(con);
    // Mark the connection as in use
    pcon.setInUse(true);
    // Add the new PooledConnection object to the pool
    pool.addElement(pcon);
    catch (Exception e) {
    System.err.println(e.getMessage());
    throw new Exception(e.getMessage());
    // return the new Connection
    return pcon.getConnection();
    // When shutting down the pool, you need to first empty it.
    public synchronized void emptyPool() {
    // Iterate over the entire pool closing the
    // JDBC Connections.
    for ( int x = 0; x < pool.size(); x++ ) {
    System.err.println("Closing JDBC Connection " + x);
    PooledConnection pcon =
    (PooledConnection)pool.elementAt(x);
    // If the PooledConnection is not in use, close it
    if ( pcon.inUse() == false ) {
    pcon.close();
    else {
    // If it is still in use, sleep for 30 seconds and
    // force close.
    try {
    java.lang.Thread.sleep(30000);
    pcon.close();
    catch (InterruptedException ie) {
    System.err.println(ie.getMessage());
    I am using Sun JDK Version 1.3.0_02" and Apache/Tomcat 4.0. Both the calling and the called class are in the same directory.
    Any help would be greatly appreciated.
    tnx..
    addi

    Is ConnectionPool in this "cal" package as well as PooledConnection? From the directory you are compiling from it appears that it is. If it is, then you are compiling it incorrectly. To compile ConnectionPool (and PooledConnection similarly), you must change the current directory to the one that contains cal and type
    javac cal/ConnectionPool.

  • I KEEP GETTING ERROR MESSAGES 403 AND 404 WHEN TRYING TO SEARCH FROM FIREFOX..HOW COME

    when I bring up firefox it is usually to get into my mail...if I try to search for something thru google /yahoo I get error messages 403 or 404 ...

    ''SusanR62 [[#answer-722913|said]]''
    <blockquote>
    The only system I can get the video to work is Chrome.
    </blockquote>
    This is because Chrome does not use Adobe Flash Player. Chrome uses something called Pepper Flash, maintained by Google (not Adobe). The issues you are experiencing are Adobe Flash Player issues. You should be able to get assistance with these issues [https://forums.adobe.com/community/flashplayer/using_flashplayer on the Adobe forums].

  • Getting error message "Unable to Share" when trying to send pictures either by text or emai!  Is there something in my security settings that I need to change?

    I am unable to send pictures either by text or email. I will get an error message that states "Unable to Share".  Just purchased the iPhone 6 plus. Never had this issue with the 5.  Is there something that I need to change in my settings?

    I am unable to send pictures either by text or email. I will get an error message that states "Unable to Share".  Just purchased the iPhone 6 plus. Never had this issue with the 5.  Is there something that I need to change in my settings?

  • Why do I get "Error - That file is locked" when trying to save?

    Everytime I try to save a new sequence in FCP I get an error stating "Error - That file is locked" with no additional elements to determine which file is locked. I haven't changed any settings and I am the administrator of the computer. I was wondering if anyone knew how to fix this.
    Thank you!

    Everytime I try to save a new sequence in FCP I get an error stating "Error - That file is locked"
    Do you mean when you try to save the project? If so, check the project file (Get Info) and see if it is actually locked.
    -DH

  • Why do i get error 7 at new file when trying to run the calibration?

    We have installed the DAQ software/drivers and then installed the Labview calibration program all according to the user manual.  As soon as we try to start the calibration after clicking "OK" when prompted to insert the standard unit, I get a message saying "Error 7 occured at New File".  How do I change the file path manually?

    Ummm... well, that's a little more information, but it doesn't help to shed any real light. You still have not explained what LabVIEW program you're running. Is this something you wrote? Is this something you got from somewhere? Did it come with the light meters? Can you post the code?

  • I get Error Code: S7363-1266-48444350 when trying to watch Netflix

    I am unable to watch Netflix on my iMac using Safari. I get the Error Code: S7363-1266-48444350 my monitor isn't HDCP complaint. Tried Chrome but got this Malware crap I had to remove.
    Yosemite 10.10.2

    A poster named Barney - 15E posted a possible workaround in:
    HDCP error: can't play iTunes movies or netflix with yosemite
    Enable the Develop menu in Safari's preferences, Advanced.
    When using Netflix, In the Develop menu, select User Agent>Firefox - Mac.
    Or, you can just install Firefox and use that for viewing Netflix.

  • Getting error "This file was removed" when trying to use sdk/test/httpd.

    Hi, I wish to test my website using httpd.js. Now when I am trying create a add-on and use sdk/test/httpd by adding following line
    var { nsHttpServer } = require("sdk/test/httpd");
    I am getting following error:
    Message: Error: This file was removed. A copy can be obtained from:
    https://github.com/mozilla/addon-sdk/blob/master/test/lib/httpd.js
    As new to Add on development I am unable to resolve this issue.
    Thanks in advance.

    Apologies for redirecting you to a different site, but this forum primarily handles end-user support. For extension development advice, please try here: [https://forums.mozilla.org/viewforum.php?f=7 Extension Development - Mozilla Add-ons Forum].

  • Why do I keep getting error message from Digital Editions when trying to open it. Keeps telling me that it has encountered a problem and needs to close. I need this apparently to download a text book fro Proquest - need the text book for Uni work what giv

    Why do I keep getting an error message from Digital Editions saying that it has encountered a problem and needs to close. I need this programme to download a text book from Proquest for University work what gives????

    You are using ADE on Windows or Mac ? and their versions ??
    Please restart your machine and try once again.
    Thanks

  • I keep getting error message " server stopped responding" when trying to connect to internet via wifi

    My iphone works fine using cellar network, but will not connect to internet via wifi. Ive reset network setting with no diffrence.
    Any ideas?

    And you can turn the WiFi button on and off?
    If yes, then you next need to try to Restore your iPhone from your backup.

Maybe you are looking for