Getting error "outside VM" when using updateRow();

Hi guys,
I've been posting alot about resultset problems lately, but I can't seam to get the hang of it. But I guess that will come in time.
This time it seams like i've really manage to mess things up. Im getting an error "outside the VM", check the snippet at the end of the message. First take a look at my code; I'm trying to update a ResultSet with values from a TableModel:
try{
            for(int i =1; i <= aModel.getRowCount(); i++) {
                    rs.absolute(i);                   
                    Vector modelData = aModel.getDataVector();                                    
                    int modelValue = Integer.parseInt((
                                            (Vector)modelData.elementAt(i-1)).elementAt(4).toString());                  
                    Integer currentInteger = new Integer(modelValue);
                    rs.updateString("Artnamn", (((Vector)modelData.elementAt(i-1)).elementAt(1)).toString() );
                    rs.updateString("Utpris", (((Vector)modelData.elementAt(i-1)).elementAt(2)).toString() );
                    rs.updateString("Info", (((Vector)modelData.elementAt(i-1)).elementAt(3)).toString() );
                    rs.updateString("Ilager", currentInteger.toString() ); 
                    rs.updateRow();
                    theGui.setStatus("Lagerstatus Sparade");
        } catch(SQLException e) {
            System.out.println("Uppdateraknappen:" + e);
        }And here is the error im getting. I occors when i do rs.updateRow();
An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x6D261419
Function=Java_sun_jdbc_odbc_JdbcOdbc_bindColBinary+0x112
Library=C:\j2sdk1.4.1_02\jre\bin\JdbcOdbc.dll
Current Java thread:
     at sun.jdbc.odbc.JdbcOdbc.bindColBinary(Native Method)
     at sun.jdbc.odbc.JdbcOdbc.SQLBindColBinary(JdbcOdbc.java:238)
     at sun.jdbc.odbc.JdbcOdbcResultSet.bindBinaryCol(JdbcOdbcResultSet.java:5017)
     at sun.jdbc.odbc.JdbcOdbcResultSet.bindCol(JdbcOdbcResultSet.java:4761)
     at sun.jdbc.odbc.JdbcOdbcResultSet.updateRow(JdbcOdbcResultSet.java:4074)
     at LagerPanel.uppdateraKnappActionPerformed(LagerPanel.java:107)
     at LagerPanel.access$000(LagerPanel.java:17)
     at LagerPanel$1.actionPerformed(LagerPanel.java:75)
     at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1764)
     at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1817)
     at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:419)
     at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:257)
     at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
     at java.awt.Component.processMouseEvent(Component.java:5134)
     at java.awt.Component.processEvent(Component.java:4931)
     at java.awt.Container.processEvent(Container.java:1566)
     at java.awt.Component.dispatchEventImpl(Component.java:3639)
     at java.awt.Container.dispatchEventImpl(Container.java:1623)
     at java.awt.Component.dispatchEvent(Component.java:3480)
     at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3450)
     at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3165)
     at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3095)
     at java.awt.Container.dispatchEventImpl(Container.java:1609)
     at java.awt.Window.dispatchEventImpl(Window.java:1590)
     at java.awt.Component.dispatchEvent(Component.java:3480)
     at java.awt.EventQueue.dispatchEvent(EventQueue.java:450)
     at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
     at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
     at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
Dynamic libraries:
0x00400000 - 0x00406000      C:\j2sdk1.4.1_02\bin\java.exe
0x77F50000 - 0x77FF9000      C:\WINDOWS\System32\ntdll.dll
0x77E60000 - 0x77F4A000      C:\WINDOWS\system32\kernel32.dll
0x77DC0000 - 0x77E5D000      C:\WINDOWS\system32\ADVAPI32.dll
0x78000000 - 0x78086000      C:\WINDOWS\system32\RPCRT4.dll
0x77C00000 - 0x77C53000      C:\WINDOWS\system32\MSVCRT.dll
0x6D340000 - 0x6D46A000      C:\j2sdk1.4.1_02\jre\bin\client\jvm.dll
0x77D30000 - 0x77DBC000      C:\WINDOWS\system32\USER32.dll
0x77C60000 - 0x77CA0000      C:\WINDOWS\system32\GDI32.dll
0x76B30000 - 0x76B5D000      C:\WINDOWS\System32\WINMM.dll
0x6D1E0000 - 0x6D1E7000      C:\j2sdk1.4.1_02\jre\bin\hpi.dll
0x6D310000 - 0x6D31E000      C:\j2sdk1.4.1_02\jre\bin\verify.dll
0x6D220000 - 0x6D239000      C:\j2sdk1.4.1_02\jre\bin\java.dll
0x6D330000 - 0x6D33D000      C:\j2sdk1.4.1_02\jre\bin\zip.dll
0x6D270000 - 0x6D28C000      C:\j2sdk1.4.1_02\jre\bin\jdwp.dll
0x6D180000 - 0x6D185000      C:\j2sdk1.4.1_02\jre\bin\dt_socket.dll
0x71AA0000 - 0x71AB4000      C:\WINDOWS\System32\ws2_32.dll
0x71A90000 - 0x71A98000      C:\WINDOWS\System32\WS2HELP.dll
0x55600000 - 0x5561D000      C:\Program\Microsoft Firewall Client\wspwsp.dll
0x76D50000 - 0x76D66000      C:\WINDOWS\System32\iphlpapi.dll
0x71A40000 - 0x71A7C000      C:\WINDOWS\System32\mswsock.dll
0x76F10000 - 0x76F35000      C:\WINDOWS\System32\DNSAPI.dll
0x76FA0000 - 0x76FA7000      C:\WINDOWS\System32\winrnr.dll
0x76F50000 - 0x76F7D000      C:\WINDOWS\system32\WLDAP32.dll
0x71A80000 - 0x71A88000      C:\WINDOWS\System32\wshtcpip.dll
0x76FB0000 - 0x76FB5000      C:\WINDOWS\System32\rasadhlp.dll
0x6D000000 - 0x6D105000      C:\j2sdk1.4.1_02\jre\bin\awt.dll
0x72FD0000 - 0x72FF3000      C:\WINDOWS\System32\WINSPOOL.DRV
0x76370000 - 0x7638C000      C:\WINDOWS\System32\IMM32.dll
0x7CCC0000 - 0x7CDE1000      C:\WINDOWS\system32\ole32.dll
0x6D190000 - 0x6D1E0000      C:\j2sdk1.4.1_02\jre\bin\fontmanager.dll
0x51000000 - 0x51047000      C:\WINDOWS\System32\ddraw.dll
0x73B90000 - 0x73B96000      C:\WINDOWS\System32\DCIMAN32.dll
0x5C000000 - 0x5C0C8000      C:\WINDOWS\System32\D3DIM700.DLL
0x746F0000 - 0x74734000      C:\WINDOWS\System32\MSCTF.dll
0x63000000 - 0x63014000      C:\WINDOWS\System32\SynTPFcs.dll
0x77BF0000 - 0x77BF7000      C:\WINDOWS\system32\VERSION.dll
0x6D260000 - 0x6D26B000      C:\j2sdk1.4.1_02\jre\bin\JdbcOdbc.dll
0x15440000 - 0x15472000      C:\WINDOWS\System32\ODBC32.dll
0x77330000 - 0x773BB000      C:\WINDOWS\system32\COMCTL32.dll
0x773C0000 - 0x77BB4000      C:\WINDOWS\system32\SHELL32.dll
0x70A70000 - 0x70AD5000      C:\WINDOWS\system32\SHLWAPI.dll
0x76390000 - 0x763D5000      C:\WINDOWS\system32\comdlg32.dll
0x78090000 - 0x78174000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.10.0_x-ww_f7fb5805\comctl32.dll
0x1F850000 - 0x1F867000      C:\WINDOWS\System32\odbcint.dll
0x155A0000 - 0x155FE000      C:\WINDOWS\System32\SQLSRV32.dll
0x5C6B0000 - 0x5C6DD000      C:\WINDOWS\System32\SQLUNIRL.dll
0x77110000 - 0x7719B000      C:\WINDOWS\system32\OLEAUT32.dll
0x71C10000 - 0x71C5E000      C:\WINDOWS\System32\NETAPI32.dll
0x75920000 - 0x75927000      C:\WINDOWS\System32\NDDEAPI.DLL
0x1FA20000 - 0x1FA37000      C:\WINDOWS\System32\sqlsrv32.rll
0x76F80000 - 0x76F90000      C:\WINDOWS\System32\Secur32.dll
0x15600000 - 0x15619000      C:\WINDOWS\System32\odbccp32.dll
0x15620000 - 0x1562F000      C:\WINDOWS\System32\DBNETLIB.DLL
0x71AC0000 - 0x71AC9000      C:\WINDOWS\System32\WSOCK32.dll
0x71F70000 - 0x71F74000      C:\WINDOWS\System32\security.dll
0x76D00000 - 0x76D1D000      C:\WINDOWS\system32\msv1_0.dll
0x76790000 - 0x767A3000      C:\WINDOWS\System32\ntdsapi.dll
0x762A0000 - 0x76329000      C:\WINDOWS\system32\crypt32.dll
0x76280000 - 0x7628F000      C:\WINDOWS\system32\MSASN1.dll
0x15820000 - 0x15844000      D:\Program\Trillian\events.dll
0x76C80000 - 0x76CA2000      C:\WINDOWS\system32\imagehlp.dll
0x6DAA0000 - 0x6DB1D000      C:\WINDOWS\system32\DBGHELP.dll
0x76BE0000 - 0x76BEB000      C:\WINDOWS\System32\PSAPI.DLL
Local Time = Wed Jan 14 15:03:28 2004
Elapsed Time = 140
# The exception above was detected in native code outside the VM
# Java VM: Java HotSpot(TM) Client VM (1.4.1_02-b06 mixed mode)
#All help will be greatly appriciated!
- Karl XII

Here is the code that creates the resultSet:
ResultSet resultset = null;
        try {
        Class.forName( "sun.jdbc.odbc.JdbcOdbcDriver");
         Connection connection2= DriverManager.getConnection(
               "jdbc:odbc:mittDSNnamn", "", ""); //Pass och userID*/
         Statement stmt = connection2.createStatement(
                                      ResultSet.TYPE_SCROLL_INSENSITIVE,
                                      ResultSet.CONCUR_UPDATABLE);
         resultset = stmt.executeQuery(sqlCommand); 
      } catch (Exception e) {
         System.out.println( "I sqlHanteraren f�r vi: " + e);  

Similar Messages

  • Error "outside VM" when using updateRow();

    Perhaps you guys are have some info that might be usefull:
    http://forum.java.sun.com/thread.jsp?forum=54&thread=482040&tstart=0&trange=15

    Well in the J2SE 1.3 docs ( http://java.sun.com/j2se/1.3/docs/guide/jdbc/getstart/bridge.doc.html ) they say "The JDBC-ODBC Bridge driver is recommended only for experimental use or when no other alternative is available".
    In the J2SE 1.4.2 docs ( http://java.sun.com/j2se/1.4.2/docs/guide/jdbc/bridge.html ) they rephrased the same thing in a more appealing way:
    "The JDBC-ODBC Bridge should be considered a transitional solution. Sun Microsystems and DataDirect Technologies are working to make the Bridge more reliable and robust, but they do not consider it a supported product. With the development of pure Java JDBC drivers, the JDBC-ODBC Bridge should become unnecessary."
    Basically what they are saying is that they know it's buggy and you'd better not use it.
    Another thing: I gave up the JDBC-ODBC bridge quite a while ago because it was crashing the VM at random moments (once a day or so it would crash and terminate Tomcat) and I was using only plain Statements and forward-only ResultSets (so nothing fancy, just JDBC 1.0 stuff). So what I'm saying here is that although you switched to regular statements you could still have problems (not necessarily, a lot of people using the JDBC-ODBC bridge say they never had such problems).
    The advantage of a type 4 driver (even if it's just as full of bugs as the JDBC-ODBC bridge) is that it will never crash your VM. It will throw an exception and maybe crash a thread, but not the VM. Which from my point of view is a huge advantage. This is why I went from the JDBC-ODBC bridge to a really buggy open source type 4 driver and joined its group of developers (and got rid of almost all the nasty issues in a month).
    Alin.

  • Getting %Error in authentication when using enable password via ACS 5.5

    Hey, I've been on a LAN that's been using ACS 4.1 and its been working fine.  Ive recently installed ACS 5.5 on a VM and Im attempting to get it to work.  I've changed the Tacacs IP to the new server and the secret key on this particular switch and Ive configured it in the Network devices in ACS.  When I log into the switch via SSH, it lets me authenticate to my username/password BUT when I go to enable it asks for a password.  I enter the password I configured in ACS and I get %Error in authentication.   I've also tried the local enable, same thing.  What else is weird is that if I enter no password, it prompts me to change my password but if I try that I get the same error (%Error in authentication).  The ACS log just simply says entered wrong password, even though I checked it multiple times and even tried a new account.  I'm no master at AAA but from what I can tell it should work.  Attaching my configuration....
    Any ideas would be great

    Can you share "show run | in aaa" from the switch?
    You should have the below listed commands on the switch:
    aaa authentication login default group CLI local
    aaa authorization exec default group CLI local
    On the ACS you should push priv-lvl=15 
    You may go through the below listed document for better understanding:
    http://www.cisco.com/c/en/us/support/docs/security/secure-access-control-system/113590-acs5-tacacs-config.html
    Regards,
    Jatin Katyal
    *Do rate helpful posts*

  • I keep getting "Error 1046" messages when using Mail.app to send Gmail

    The specific error is: MCMailErrorDomain error 1046
    I'm using an early 2013 MacBook Pro with Retina display, running the latest version of OS X Mavericks. Nothing I Google brings up anything related to this, so I thought I'd pick your brains :-).
    Any idea how to fix it? I've already removed & added the account. I'm using Postbox for right now, but I'd rather use Mail.
    Thanks!

    I removed @gmail.com after my username at
    Mail->Preference->Accounts->(Select Account)->Outgoing Mail Server (Drop Down)->Edit SMTP Server List->(Select Account)->Advanced
    And then it worked. I use Yosemite 10.10
    Thank you very much for helping me resolve this annoying problem

  • I get Error Code 1 when using the installer.  Please advise.

    When running the installer, it quits with the message:  Error Code 1.  Please advise how to resolve @this error.

    Gener7:  Good morning.  Thanks for speedy reply.  I’m running Windows 7 on a Dell Studio laptop computer.  I have CS6 installed, and it runs okay.
    I ran the CC Cleaner tool to uninstall Photoshop CC.  PCC kept crashing every time soon after I tried editing an image.  I gave up.  After the cleaning, I tried to re-install PCC.  The error code 1 showed each time I ran the installer.
    Please advise.
    Thanks.
    ==============

  • I have a 5th generation Nano. I am using a new PC with the latest Itunes.  I am getting error coe 13019 when I try to sync. I have tried the recommended fixes from diagnostics. Any ideas?                                     .

    I have a 5th generation Nano. I am using a New PC and latest Itunes. I am getting error code 13019 when I try to sync. I have no problem syncing with an Iphone 4S or an Ipad2. I have tried the procedures described in diagnostics, but without success. Any ideas?
    Thank you,
    Derek

    I have tried the procedures described in diagnostics, but without success.
    Quickly doublechecking ... that's the procedures from the following document?
    iTunes: Error 13019 during sync

  • Get ORA-01031: insufficient privileges error, but only when using dbstart.

    I am getting ORA-01031: insufficient privileges error, but only when using dbstart. the listener starts but not the database. How come I can start it from SQL prompt but not from dbstart scripts as the oracle user?
    [oracle@mallard bin]$ ./dbstart
    Processing Database instance "gf44": log file /prod/oracle/10/startup.log
    [oracle@mallard bin]$
    Log file:
    Wed Aug 20 10:15:02 CDT 2008
    SQL*Plus: Release 10.2.0.1.0 - Production on Wed Aug 20 10:15:02 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> ERROR:
    ORA-01031: insufficient privileges
    SQL> ORA-01031: insufficient privileges
    SQL>
    /prod/oracle/10/bin/dbstart: Database instance "gf44" warm started.
    >
    oratab file:
    gf44:/prod/oracle/10:Y
    dbstart file section:
    # See if it is a V6 or V7 database
    VERSION=undef
    if [ -f $ORACLE_HOME/bin/sqldba ] ; then
    SQLDBA=svrmgrl
    VERSION=`$ORACLE_HOME/bin/sqldba command=exit | awk '
    /SQL\*DBA: (Release|Version)/ {split($3, V, ".") ;
          print V[1]}'`
    case $VERSION in
    "6") ;;
    *) VERSION="internal" ;;
    esac
    else
    if [ -f $ORACLE_HOME/bin/svrmgrl ] ; then
    SQLDBA=svrmgrl
    VERSION="internal"
    else
    SQLDBA="sqlplus /nolog"
    fi
    fi
    Permissions of file:
    [oracle@mallard bin]$ ls -la dbstart
    -rwxrwxr-x 1 oracle oinstall 10407 Aug 19 12:27 dbstart
    [oracle@mallard bin]$
    User permissions:
    [root@mallard 10]# id oracle
    uid=503(oracle) gid=503(oinstall) groups=503(oinstall),504(dba)
    [root@mallard 10]#
    I can start the listener manually using "./lsnrctl start" and start the database manually from sql prompt using "SQL>startup" (as sysdba) with no problems. this only happens when using dbstart file. I am logged in as oracle user and all environment variables are set
    Thank you for any help you could provide.

    I have the same problem, but i don't want insert this string
    Connect sys/{password} as sysdbaI have deployed an Oracle 10g with os SunOS
    $ uname -a
    SunOS DB02 5.10 Generic_141444-09 sun4v sparc SUNW,Sun-Blade-T6320
    I can connect with sys/password, but I can't login with
    $ sqlplus /nolog
    SQL*Plus: Release 10.2.0.1.0 - Production on Thu Jan 7 15:19:50 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    SQL> connect / as sysdba
    ERROR:
    ORA-01031: insufficient privilegesthe the startup and dbshut don't work.
    Someone maybe help me?
    Thanks,
    Regards.
    Lain

  • Why do I get "error on page" when I try to contact anyone at apple anywhere?

    Why do I get "error on page" when I try to contact itunes billing support?

    Yes, I have NI-Watchdog  2.1.5 installed on my FP.
    In fact, I figured out what the Error-22011 problem was all about and I'm almost too embarrassed to say. I had Watchdog Configure.vi inside a while loop... so only the first iteration would be error free and for every iteration after that, the hardware would be "already in use". Hence, Error-22011.
    I've made it over that hurdle, but I'm still having problems.
    Now,I have both Watchdog Configure.vi and Watchdog Clear.vi outside the while loop and I put Watchdog Whack.vi inside the while loop (mainly to monitor the watchdog status output). I also wired the occurrence output of Watchdog Configure.vi to a second while loop in which there is a wait for occurrence.vi wired to a boolean indicator.
    If I disconnect the ethernet cable while this vi is running, the program pauses and I get a Labview generated message informing me of a lost connection however, there is no occurrence generated and the watchdog stays in "running" status.
    Apparently, I've misunderstood how to implement the watchdog vi's and I'll need someone to set me straight.
    Is there anyone who can help?
    Thanks,
    pmac

  • TS3258 I get error message -42408 when trying to download itunes update 11.0.2 and thus can not upgrade to latest version.  What should I do?

    I get error message -42408 when trying to download itunes update 11.0.2 and I therefore can not update to that latest version.  What can I do?

    Hey there davidgor2!
    I have found an article that should help you resolve this issue with updating your iTunes. The article can be found here:
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    and the specific part of the article you will want to look at first is right here:
    "Error 42023" through "Error 42408"
    These alerts might occur when trying to authorize iTunes or during launch when iTunes checks for authorization information.
    Install the latest iTunes from apple.com/itunes/download/
    Remove the SC Info folder.
    If that does not resolve the issue, see iTunes: "Error 42408" or "Error 42404" after upgrading to iTunes 9.0.3.
    Thanks for using the Apple Support Communities!
    Regards,
    Braden

  • I get error message 42032 when trying to connect an iPhone to iTunes. Any ideas how to fix it?

    I get error message 42032 when trying to connect an iPhone to iTunes. Any ideas how to fix it?

    Did you already try these suggestions?
    Check USB connections
    Related errors: 13, 14, 1600-1629, 1643-1650, 2000-2009, 4000, 4005, 4013, 4014, 4016, “invalid response,” and being prompted to restore again after a restore completes.
    If there’s an issue with the USB port, cable, dock, or hub, or if the device becomes disconnected during restore, try troubleshooting the USB connection, then troubleshooting your security software.
    To narrow down the issue, you can also change up your hardware:
    Use another USB cable.
    Plug your cable into a different USB port on your computer.
    Try a different dock connector (or no dock).
    Add (or remove) a USB hub between your device and computer.
    Connect your computer directly to your Internet source, with no routers, hubs, or switches.
    If you checked your connections and are still seeing the error message, check for hardware issues.
    copied from Resolve specific iTunes update and restore errors

  • I keep getting error code 4450 when I'm trying to burn a CD from itunes.  It keeps my CD and won't eject it and says "cancelling burn" forever then itunes locks up and my cd is ruined and NO songs on it.

    i can't burn cd's in iTunes anymore. I get error code 4450 when I'm trying to burn a playlist. Songs from my own cd's, or bought in iTunes (have not burned 7x's as I can't BURN any cd's at all!),  Then my cd gets stuck in the drive. and it says "cancelling burn" forever and then itunes freezes up. I have a Dell with Windows 7.
    -I've slowed down the burn as slow as it can go
    -I have bought 3 different brands of cd's
    -i have the latest version of iTunes.
    Can someone help me?

    I have Windows 7 on a Dell.  Open and play iTunes in the compatability mode and use Windows XP (service pack 2).  Disregard any messsages to disable the compability mode.  This has worked for me.  I have also reinstalled iTunes and played with burn speeds etc.  These ideas did not work.  Compatability mode works.

  • TS1368 Hi I'm running windows Vista premium home and i'm getting error code 1202 when attemting to log into store. how do i fix this

    i'm getting error code 1202 when i try to log on to the itunes store using windows vista

    http://support.apple.com/kb/TS1368

  • I cannot transfer my Ical on my Imac with Mavericks 10.9.2 to my iphone 4 with the latest operating system.  I get error message "403" when it attempts to upload to the cloud before transfering to the iphone.  Any advice would be greatly appreciated.

    I cannot transfer my Ical on my Imac with Mavericks 10.9.2 to my iphone 4 with the latest operating system.  I get error message "403" when it attempts to upload to the cloud before transfering to the iphone.  I've tried shutting down the computer and iphone but it has not been successful.  There is plenty of data available on the icloud as I've not used it for anything else.   Any advice would be greatly appreciated.  Thank you.
       Kevin

    Hello kmcnern3,
    Thank you for providing the details of the calendar issue you are experiencing with your iMac and iPhone.  I recommend following the steps in the section titled "Troubleshooting on OS X" in the following article to assist with syncing your calendar events between your devices:
    iCloud: Troubleshooting iCloud Calendar
    http://support.apple.com/kb/ts3999
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Loading the latest OS on my iPhone4 caused the phone to freeze. I get error message 4013 when trying to restore the phone. Any help will be appreciated

    Loading the latest OS on my Iphone 4 caused the phone to freeze and stop working. I get error message 4013 when trying to restore the phone.

    Did you already try these suggestions?
    Check USB connections
    Related errors: 13, 14, 1600-1629, 1643-1650, 2000-2009, 4000, 4005, 4013, 4014, 4016, “invalid response,” and being prompted to restore again after a restore completes.
    If there’s an issue with the USB port, cable, dock, or hub, or if the device becomes disconnected during restore, try troubleshooting the USB connection, then troubleshooting your security software.
    To narrow down the issue, you can also change up your hardware:
    Use another USB cable.
    Plug your cable into a different USB port on your computer.
    Try a different dock connector (or no dock).
    Add (or remove) a USB hub between your device and computer.
    Connect your computer directly to your Internet source, with no routers, hubs, or switches.
    If you checked your connections and are still seeing the error message, check for hardware issues.
    copied from Resolve specific iTunes update and restore errors

  • I get sound no video when using AirPlay.  Any ideas?

    I get sound no video when using AirPlay.  Any ideas?

    Do you get an "HDCP error"?
    Since the last ATV software update, I have had  problems playing You Tube content from the iPad to the ATV using airplay, yet the same content from the You Tube channel on the ATV plays fine. I get the dreaded "HDCP error" which is nonsense, as YouTube content does not have this protection. Netflix also gives the same error. (I have posted seperately about this problem.)
    I have had a couple of years of fault-free playing with my setup, the only thing that has changed is the Apple ATV software. Ergo, they need to fix whatever bug they introduced. None of the recommended "fixes" have worked.

Maybe you are looking for

  • Using 2 data (SAP Netweaver BW) connections in Xcelsius dashboard

    I have a situation when using 2 data (SAP Netweaver BW) connections in Xcelsius dashboard. Break-down of issue: I have a toggle button in our Sales dashboard which displays Top Ten Customers versus Bottom Ten Customers.  I use the value of the toggle

  • AVI Files for iDVD ((QUESTION))

    Hello, I took some digital video on my new digial camera. The video files are AVI. I am able to play them via quicktime on my mac mini with no problem. The issue I am having is when I want to burn the files into iDVD.. I get error messages. I can imp

  • Filter Request Template

    I have a problem regarding OIM11g R1 "request for others", does anyone know how to add more field filter in the step where we select the user to be provisioned? Thanks

  • [SOLVED]The Gantt Chart Component Demo/viewlet not working

    Hi, I've tried to watch the demo but I got an error message, it seems the swf file is not on the server. Thanks, Seb.

  • ORA-00202: control file: '/u01/app/oracle/product/11.2.0.2/db_1/dbs/snapcf_

    RMAN> register database; database registered in recovery catalog RMAN-00571: =========================================================== RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============== RMAN-00571: =============================