The Document Information Panel Was unable to load. Please Help

Hello all,
I just recently created my own custom Document Panel in InfoPath. I uploaded it into a custom content type. I applied this to a document library and it is the standard document panel for creating a new document within that document library. When I click
"New document" I get this error..
The Document Information Panel was unable to load. THe document will continue to open. For more information, contact your system administrator.
Details:
Document Information Panel cannot open a new form.
The form cannot be opened. To fix this problem, contact the form designer.
Form template: http://Mysite/_cts/DIPTestContentType/Myfirstform.xsn
The SOAP response indicates that an error occurred on the server:
Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thrown.
<detail><errorstring xmlns="http://schemas.microsoft.com/sharepoint/soap/">No item exists at http://Mysite/My DIP Test.docx.  It may have been deleted or renamed by another user.</errorstring><errorcode xmlns="(html
for the error code..had to delete it because my body text cannot contain images or links until my account is verified but it is a link to Microsoft support)
...It appears that it is not locating the custom Document Panel.
Could anyone point me in the right direction?
Thanks

Hi Alex,
According to your description, my understanding is that the error occurred when opening a document from SharePoint.
Is this document information panel customized?
I recommend to re-edit the document information panel template to see if the issue still occurs.
Please go to the Library setting > click the corresponding content type(need to enable managed of content types in Advanced settings) > click Document Information Panel settings.
If the issue still occurs, please check if the command below can help(change the site URL and the library name in the code):
Apply-Fix -siteUrl "http://your site URL "
function Apply-Fix($siteUrl)
clear
Add-PSSnapin "Microsoft.SharePoint.Powershell" -ErrorAction SilentlyContinue # -EA 0
[Environment]::CurrentDirectory=(Get-Location -PSProvider FileSystem).ProviderPath
foreach ($spwTarget in (Get-SPSite $siteUrl).RootWeb.Webs) {
Write-Host "Checking Web: " $spwTarget.Url
$list = $spwTarget.Lists["your library name"]
$fields = $list.fields
foreach($field in $fields)
if($field.SourceId -eq '{$ListId:your library name;}')
$schemaxml = $field.SchemaXML
$schemaxmldata = [xml]$schemaxml
$schemaxmldata.Field.SetAttribute("SourceID", $list.ID)
$schemaxml = $schemaxmldata.get_InnerXml()
$field.SchemaXML = $schemaxml
$field.Update()
Write-Host "Fixed" $field.Title "field in the library"
Write-Host "Done."
Best regards.
Thanks
Victoria Xia
TechNet Community Support

Similar Messages

  • The Document Information Panel was unable to load. The document will continue to open ?

    I am using Sharepoint 2010; DIP in microsoft word all the while is working fine, not sure why suddenly it came out the following error when save word doc  into sharepoint.
    ERROR MESSAGE
    ===========
    "The Document Information Panel was unable to load. The document will continue to open.
    The form contains schema validation errors.
    Content for element 'documentManagement' is incomplete according to the DTD/Schema. "
    How to troubleshoot? Recently I added lookup column and a workflow into the library, but I did the same thing in another library which never appear to have any issue on it.

    The lookup column is creating the problem , you can find powerscript solution to fix this issue , please check this -
    Fix through Powershell
    http://blogs.msdn.com/b/tehnoonr/archive/2012/05/17/sharepoint-2010-document-information-panel-fails-to-load-when-office-documents-are-opened-in-a-library-that-contains-lookup-columns.aspx
    Fix through Code
    https://social.msdn.microsoft.com/Forums/office/en-US/2a4d6d10-d1d5-4d6a-a22b-62dfb6b60685/lookup-field-creation-and-document-information-panel?forum=sharepointdevelopmentlegacy
    or try this -
    https://social.technet.microsoft.com/Forums/office/en-US/2552fbc8-da24-4d2b-84f6-d39c4d58b137/the-document-information-panel-was-unable-to-load-the-document-will-continue-to-open-for-more?forum=sharepointgeneralprevious
    1. Open this location- C:\Program
    Files\Microsoft Web Designer Tools\Office12\1033\IPEDINTL.DLL
    2. copy IPEDINTL.DLL
    3. paste it here- C:\Program Files\Microsoft
    Office\Office12\1033\IPEDINTL.DLL
    4. Close all the applications that are presently
    open as well as all the browsers
    5. Open the sharepoint site in a new browser
    and check the results !!
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • The document information panel was unable to load. the document will continue to open. For more information, contact your system adminsitrator.

    Hi Guys,
    I am creating the library using object model with custom content type.  When i am opening document from custom content type, the meta data fields are not displaying in the document and throwing below error.
    The document information panel was unable to load. the document will continue to open. For more information, contact your system adminsitrator.
    Document Information Panel cannot open a new form.
    The form contains schema validation errors.
    Content for element '{http://schemas.microsoft.com/office/2006/metadata/propertiesRoot}properties' is incomplete according to the DTD/Schema.
    Expecting: {http://schemas.microsoft.com/office/2006/metadata/properties}properties.
    But after saving the document, then meta data is enabled.
    Thanks in advance for suggested solutions.
    thanks
    Santhosh G

    Hi,
    For a better troubleshooting, I suggest to do as follows:
    1. Please try to update the Location column's schema by following the steps below.
     1) Go to Site Settings -> "Site Columns"
     2) Click on "Location", after the page is opened. Don't modify any settings, click "OK"  to forcibly update the field's schema.
    2. Re-edit the document information panel template to see if the issue still occurs.
    Please go to the Library setting > click the corresponding content type(need to enable managed of content types in Advanced settings) > click Document Information Panel settings.
    3. Here are some similar links about your issue, please take some time to look at them:
    http://social.msdn.microsoft.com/Forums/en-US/sharepointcustomizationlegacy/thread/243b4852-3f17-4a3a-b6d7-187d65a5f088/
    http://blogs.msdn.com/b/raresm/archive/2010/03/30/document-information-panel-cannot-open-the-form.aspx
    https://joranmarkx.wordpress.com/2012/02/10/sharepoint-document-information-panel-cannot-create-a-new-blank-form/
    If the issue still occurs, please check if the command below can help(change the site URL and the library name in the code):
    Apply-Fix -siteUrl "http://your site URL "
    function Apply-Fix($siteUrl)
    clear
    Add-PSSnapin "Microsoft.SharePoint.Powershell" -ErrorAction SilentlyContinue # -EA 0
    [Environment]::CurrentDirectory=(Get-Location -PSProvider FileSystem).ProviderPath
    foreach ($spwTarget in (Get-SPSite $siteUrl).RootWeb.Webs) {
    Write-Host "Checking Web: " $spwTarget.Url
    $list = $spwTarget.Lists["your library name"]
    $fields = $list.fields
    foreach($field in $fields)
    if($field.SourceId -eq '{$ListId:your library name;}')
    $schemaxml = $field.SchemaXML
    $schemaxmldata = [xml]$schemaxml
    $schemaxmldata.Field.SetAttribute("SourceID", $list.ID)
    $schemaxml = $schemaxmldata.get_InnerXml()
    $field.SchemaXML = $schemaxml
    $field.Update()
    Write-Host "Fixed" $field.Title "field in the library"
    Write-Host "Done."
    More information:
    SharePoint 2010: Creating a Custom Content Type using Visual Studio
    http://www.codeproject.com/Articles/410880/SharePoint-Creating-a-Custom-Content-Type-usi
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected].
    Dennis Guo
    TechNet Community Support

  • Error: "The document information panel was unable to load"

    Hello,
    I have created a custom document content type that uses a specified word template for a sharepoint document library for contracts and offers, and added a few custom columns in the document library as well. The word template launches succesfully when creating a new item in the document library, but the problem arises when I add custom columns to the word template content type. When the document loads in Word, I get the following error: "The Document Information Panel was unable to load. The document will continue to open. For more information, contact your system administrator." And in details:
    "Document Information Panel cannot create a new, blank form.
    Document Information Panel cannot open the form. To fix this problem, contact your system administrator.
    Form template: http://servername/sitename/proppanel.xsn
    The following DataObject either cannot be created or cannot be initialized: list_033AA217-8906-447E-A604-A300F51D4030
    Document Information Panel cannot add the following object to the DataObjects collection: list_033AA217-8906-447E-A604-A300F51D4030
    list_033AA217-8906-447E-A604-A300F51D4030 could not be added to the DataObjects collection.
    The following item already exists in the collection: list_033AA217-8906-447E-A604-A300F51D4030"
    Interestingly enough, I have two web applications running on the same server that I have tried to implement this on, and on the other it works flawlessly, meaning that the Document Information Panel launches successfully and I can edit the columns associated with that content type and store the values in a document library. I have also tried to save the DIP template from the working web application and use it as the default DIP template on the other application, but that doesn't work either.
    I have also tried to browse through all options and configurations in the application settings in CA and SSP, but to no avail. Any suggestions about what might be causing this problem or how to fix it would be greatly appreciated.
    - Sebastian Eriksson

    Hi All,
    I have the same problem with my DIP in already two of my document libraries. Please see below:
    Document Information Panel cannot create a new, blank form.
    Document Information Panel cannot open the form. To fix this problem, contact your system administrator.
    Form template: http://servername/sitename/proppanel.xsn
    The following DataObject either cannot be created or cannot be initialized: list_295E77CD-1C08-4DDC-A188-F86107F9BF60
    Document Information Panel cannot add the following object to the DataObjects collection: list_295E77CD-1C08-4DDC-A188-F86107F9BF60
    list_295E77CD-1C08-4DDC-A188-F86107F9BF60 could not be added to the DataObjects collection.
    The following item already exists in the collection: list_295E77CD-1C08-4DDC-A188-F86107F9BF60
    I have made the same thing that Kirikou has suggested and I was able to recreate the broken library. The problem is that Kirikou's way has failed on my Share Point staging installation:
    [COMException (0x80020009): Exception occurred. (Exception from HRESULT: 0x80020009 (DISP_E_EXCEPTION))]
       Microsoft.SharePoint.Library.SPRequestInternalClass.RenderViewAsHtml(String bstrUrl, String bstrListName, String bstrViewID, String bstrViewXml, String bstrQualifier, ISPDataCallback pDataCallback, Boolean& pbSharedList) +0
       Microsoft.SharePoint.Library.SPRequest.RenderViewAsHtml(String bstrUrl, String bstrListName, String bstrViewID, String bstrViewXml, String bstrQualifier, ISPDataCallback pDataCallback, Boolean& pbSharedList) +125
    [SPException: Exception occurred. (Exception from HRESULT: 0x80020009 (DISP_E_EXCEPTION))]
       Microsoft.SharePoint.Library.SPRequest.RenderViewAsHtml(String bstrUrl, String bstrListName, String bstrViewID, String bstrViewXml, String bstrQualifier, ISPDataCallback pDataCallback, Boolean& pbSharedList) +166
       Microsoft.SharePoint.WebPartPages.ListViewWebPart.RenderView() +4239
       Microsoft.SharePoint.WebPartPages.ListViewWebPart.EnsureData(Int32 token) +658
       Microsoft.SharePoint.WebPartPages.SharePointDataProvider.Execute() +254
       Microsoft.SharePoint.WebPartPages.SPWebPartManager.ActivateV2ConnectionsAndSharePointDataFetch() +139
       Microsoft.SharePoint.WebPartPages.SPWebPartManager.ActivateConnections() +85
       System.Web.UI.WebControls.WebParts.WebPartManager.OnPageLoadComplete(Object sender, EventArgs e) +52
       System.EventHandler.Invoke(Object sender, EventArgs e) +0
       System.Web.UI.Page.OnLoadComplete(EventArgs e) +2063076
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1875
    I will be very appreciated if somebody knows what is the reason for this problem.
    Best regards,
    Yordan Nikolov

  • The Document Information Panel was unable to load.

    Platform: SharePoint 2013, Office 2013.
    Background: When you open an Office document from SharePoint users get this error:
    The Document Information Panel was unable to load. The document will continue to load. For more information, contact your system administrator."
    "The form cannot be opened. To fix this problem, contact the form designer. Form template:
    http://<site address>/../proppanel.xsn. The XML Schema for the form template has an invalid value for the following attribute: location." 
    I tried running this fix: http://www.cb-net.co.uk/microsoft-articles/2063-sharepoint-2010-templates-and-document-information-panel-errors, but it kept saying that it couldn’t see the url that
    I specified (I did check this carefully); think it might only apply to SharePoint 2010 – perhaps the shell syntax is different in 2013.
    Can anyone help me out?

    Hi Alex,
    According to your description, my understanding is that the error occurred when opening a document from SharePoint.
    Is this document information panel customized?
    I recommend to re-edit the document information panel template to see if the issue still occurs.
    Please go to the Library setting > click the corresponding content type(need to enable managed of content types in Advanced settings) > click Document Information Panel settings.
    If the issue still occurs, please check if the command below can help(change the site URL and the library name in the code):
    Apply-Fix -siteUrl "http://your site URL "
    function Apply-Fix($siteUrl)
    clear
    Add-PSSnapin "Microsoft.SharePoint.Powershell" -ErrorAction SilentlyContinue # -EA 0
    [Environment]::CurrentDirectory=(Get-Location -PSProvider FileSystem).ProviderPath
    foreach ($spwTarget in (Get-SPSite $siteUrl).RootWeb.Webs) {
    Write-Host "Checking Web: " $spwTarget.Url
    $list = $spwTarget.Lists["your library name"]
    $fields = $list.fields
    foreach($field in $fields)
    if($field.SourceId -eq '{$ListId:your library name;}')
    $schemaxml = $field.SchemaXML
    $schemaxmldata = [xml]$schemaxml
    $schemaxmldata.Field.SetAttribute("SourceID", $list.ID)
    $schemaxml = $schemaxmldata.get_InnerXml()
    $field.SchemaXML = $schemaxml
    $field.Update()
    Write-Host "Fixed" $field.Title "field in the library"
    Write-Host "Done."
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Catastrophic failure -- The Document Information Panel was unable to load

    I have a content type that has a document template and a custom document information panel associstaed with it. For most users, these work without issues.
    Some users are reporting, however, that they receive the following series of messages when trying to create a new document from the content type:
    You are currently working offline.
    Here, the user can choose either Try to Connect or Stay Offline.
    If the user clicks Try to Connect, the following error message is displayed:
    Clicking OK results in the document loading. The DIP loads, but two fields that pull values from a SharePoint list are blank.
    Again, this happens for only a handful of users, so it seems like it's an issue with either their local PC or their connection to SharePoint.
    So far, I have tried the following:
    Repair Office 2010 installation
    Removed all locally cached versions of both the document template (.dotx) and the custom DIP (.xsn)
    Verified user permissions for the SharePoint site and the SharePoint lookup list
    Based on some other posts I've seen, checked to make sure that InfoPath is installed and that IPEDINTL.DLL
    is present at
    C:\Program Files\Microsoft Office\Office14\1033

    Hi,
    According to your post, my understanding is that the Document Information Panel was unable to load.
    I recommend to go to the
    Document Type Advanced Settings, click Edit template, go to
    File, click on Inspect, click on Remove All behind
    Custom XML Data.
    Here is a similar blog for your reference:
    Document Information Panel | Joran Markx
    If your list contains lookup columns, you can refer to:
    SharePoint:
    Document Information Panel fails to load when office documents are opened in a library that contains lookup columns
    Document Information Panel cannot open the form
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Cannot sync devices. Get the following message, "iTunes was unable to load data class information from Sync Services..." Any help?

    Can anyone help me with syncing my devices?
    I'm on a PC that I had to recover, but forgot to save my iTunes data for post recovery.
    Now I get the following message, "iTunes was unable to load data class information from Sync Services..."
    Thanks!

    Sync Your iOS Device with a New Computer Without Losing Data
    http://www.howtogeek.com/104298/sync-your-ios-device-with-a-new-computer-without -losing-data/
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive
    https://discussions.apple.com/docs/DOC-3141
     Cheers, Tom

  • HT1369 hey, when I connect either my ipod or ipad to itunes I get the promt ' i tunes was unable to load data class information from sync services. Reconnect or try again later'. Can anyone help me with syncing my devices?? Thanks in advance

    Hey, when I connect either my ipod or ipad to itunes I get the prompt 'itunes was unable to load data class information from sync services. Reconnect or try again later. Can anyone help me with syncing my devices?? Thanks in advance

    I am having the same issue, anyone else ?

  • Why am I getting the following message - itunes was unable to load data class information from sync services

    Has anybody received this message when trying to sync? - itunes was unable to load data class information from sync services.  All purchased apps were lost.  Do you know how to recover them?

    Sync Your iOS Device with a New Computer Without Losing Data
    http://www.howtogeek.com/104298/sync-your-ios-device-with-a-new-computer-without -losing-data/
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive
    https://discussions.apple.com/docs/DOC-3141
     Cheers, Tom

  • Is it possible to have two Excel workbooks open at the same time but only have one show the Document Information Panel?

    We are using SharePoint 2010 and Excel 2010. In SharePoint, we have created a custom content type that uses an Excel workbook template along with a Document Information Panel (DIP -- an InfoPath form) that always displays when a workbook of this custom
    content type is opened.  That's all working fine.  However, if one of those Workbooks is open with the DIP displayed and the user opens another Excel workbook, a DIP displays for the 2nd workbook even if it's just a regular workbook,
    i.e. not one of the custom content type.  If the user closes one of the DIPs, both close.  And if the user displays one of the DIPs again, both display. 
    Is there any way to separate out the DIP display for specific workbooks during the same Excel instance so that it shows in one but not in the other?  Or is this just something we have to live with (and train our users on)? 
    Thanks in advance.  Carol.

    Whether the DIP shows or not is a client side toggle, not something tied to an individual workbook.  So if you are using the same client instance then the DIP will display or hide based on what you did in the other workbook.  YOu might be able
    to create a macro that would display or hide it, but that's a lot of work for little advantage.  I would train the users and live with it.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • I can not use CanoScan N670U with my Macbook pro. I download canoscan toolbox 4.1 from Cannon website. It keep saying "the scanner plug-in was not found". Please help

    I can not use CanaScan N670U with my Macbook Pro. I download Canoscan toolbox 4.1 from Cannon websit. It still keep saying "The scanner plug-in was not found". Please help

    There is a solution (I'm running Snow Leopard on a Core2Duo iMac, but this problem arose when I was running Leopard on a G4 PowerBook too).
    Problem:
    You download the OS X driver for the scanner from Canon's site. I already had the CanoScan Toolbox (4.1) stored on an external drive.
    You unzip the driver and run the VISE installer. After a search it finds your copy of Photoshop (and maybe even the CanoScan Toolbox), and you click to install on that/those location(s).
    You get a couple of error messages, which you click through.
    You restart your computer and try to run the scanner but you get an error that the driver is wrong or missing and the process will abort.
    Solution:
    BEFORE you restart, and with the installer package still open -
    1. Copy the Into_CFMSupport_Login & Into_CMPrefs folders to
    Applications : Canon Utilities
    Applications : Canoscan Toolbox
    and remove the prefix Into_ from each folder
    2. Check whether the installer placed N067U_Library.shlb into the top level (not User level)
    Library : CFMSupport
    and if it didn't, move it there yourself
    THEN restart, and try again. It worked for me (via Photoshop), but whether it will work for everyone, I don't know.

  • CRM order giving the document could not be saved exception! Please help!

    Hi Experts,
       I am changing the status of a order using CRM_STATUS_CHANGE_EXTERN and CRM_STATUS_CHANGE_INTERN.
       After this I call CRM_ORDER_INITIALIZE and the BAPI_BUSPROCESSND_SAVE.
       Finally commit.
               CALL FUNCTION 'CRM_ORDER_INITIALIZE'
                  EXPORTING
                    it_guids_to_init  = lt_crmd_guids
                    iv_init_frame_log = 'X'
                    iv_keep_lock      = 'X'
                  EXCEPTIONS
                    error_occurred    = 1
                    OTHERS            = 2.
                ls_obj_save-guid = v_header_guid.
                append ls_obj_save TO lt_obj_save.
                CALL FUNCTION 'BAPI_BUSPROCESSND_SAVE'
                   EXPORTING
                    UPDATE_TASK_LOCAL       = 'X'  "commented. Taking default
                     SAVE_FRAME_LOG          = 'X'
                   IMPORTING
                     LOG_HANDLE              = lv_log_handle
                    TABLES
                      OBJECTS_TO_SAVE         =  lt_obj_save
                      SAVED_OBJECTS           =  lt_obj_saved
                      RETURN                  =  lt_return.
        The function BAPI_BUSPROCESSND_SAVE is returning error: The document could not be saved in it_return. I am not getting any other details. What am I doing wrong? Please help!
    Thanks & Regards
    Gopal

    Hi Robert,
       The SPRO settings seems to be fine.
       The problem is that the order is not getting saved whenever there is backward status change. However if I see the item status via tcode "crmd_order" then it actually shows the new status. In other words status is changing but still order is not getting saved.
       When I debugged the code I found that first It has successfully executed the FM CRM_STATUS_CHANGE_EXTERN and then when CRM_ORDER SAVE is called the parameter et_saved_objects is empty. I am passing header Guid in  it_objects_to_save. If order is saved properly then et_saved_objects should be filled with order guid.
    CALL FUNCTION 'CRM_ORDER_SAVE'
                   EXPORTING
                     it_objects_to_save = lt_save
                   IMPORTING
                     et_saved_objects   = lt_saved_obj
                   EXCEPTIONS
                     document_not_saved = 1
                     OTHERS             = 2.
    On further debugging inside CRM_ORDER SAVE I found that the FM CRM_EVENT_PASS_INFO_EXE_OW returns lt_events empty. That means the given guid  is not registered for saving. Why is this so?
      are there objects registered for saving
        call function 'CRM_EVENT_PASS_INFO_EXE_OW'
          exporting
            iv_exetime     = gc_event_exec_time-save_order
            iv_order_guid  = ls_object_to_save
            iv_obj_kind    = gc_object_kind-orderadm_h
          importing
            et_event_calls = lt_events
          exceptions
            others         = 99.
        if lt_events is initial.
          delete ct_objects_to_save.
          continue.
        endif.
       The problem is when the order is not getting saved the status change is not getting transferred to BW or BI.
       What could be the issue?
    Thanks
    Gopal
    Edited by: gopalkrishna baliga on Apr 7, 2011 5:59 AM
    Edited by: gopalkrishna baliga on Apr 7, 2011 6:09 AM

  • ITunes was unable to load data class information from sync services.

    I get the error message "iTunes was unable to load data class information from sync services. Reconnect or try again later" after reinstalling iTunes. I cancel the message and iTunes proceeds to sync with my iPhone 4. The phone and iTunes software are the latest releases. My PC is running Windows 8.1, which had to be reinstalled after the system crashed, requiring a total reinstall of all software.

    Doublechecking. You've tried the following document?
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert

  • "itunes was unable to load data class information..."

    Hi everyone,
    When I connect the iphone to my computer, the itunes recognize the iphone but it is thinking and after a few minutes the itunes drop me the following message:
    "itunes was unable to load data class information from sync services reconnect and try again later".
    I tried the following article: http://support.apple.com/kb/TS2690 , but still the problem occur.
    What I can do?
    (note: it's happen after I format the computer and before and after I update the IOS from 5.1.1 to 6 in the iphone)

    Try this.
    1. Windows Control Panel > Programs > Programs and Features
    2. Remove "iTunes"
    3. Remove "Apple Mobile Device Support" (this is mandatory!)
    4. Reinstall iTunes
    I have tried several methods and resolved the problem using the upper method.
    I hope this will be helpful.

  • I am having problems syncing my ipod touch. I keep getting this message. iTunes was unable to load data class information from sync services. Reconnect or try again later

    When I try to sync my ipod touch 5. I get the following message. iTunes was unable to load data class information from sync services. Reconnect or try again later.
    I get the same message when I try to sync my iPhone 4s
    Should I uninstall/reinstall itunes and if so should it be all the programmes associated with Apple or just iTunes

    See this thread for more people having the same issue.
    http://discussions.apple.com/thread/6500271

Maybe you are looking for

  • WHEN TO USE LOGGER IN CREATE INDEX?

    HI ALL, WHEN TO USE LOGGER IN CREATE INDEX STATEMENT? AND WHEN TO USE NOLOGGING? HOW IS INDEX PHYSICALLY STORED IN DATABASE? THANKS IN ADVANCE. SANDESH

  • Error in synchronous proxy to soap

    Hi Experts, I am doing synchronus proxy to synchronous soap I am gettin the below error while i am testing. java stack(RWB) SOAP: response message contains an error XIAdapter/PARSING/ADAPTER.SOAP_EXCEPTION - soap fault: ErrorCode:104 - updatePerson o

  • GTX 680 - Windows - AECS6 Not Supported?

    Looking at the list of supported cards, I should have no trouble using my GPU in AE for the Raytracing engine... However, my program is telling me that I have an incompatible device/driver. I have the most updated AECS6 (11.0.4) And Nvidia's most rec

  • Submit Form Button

    I have a form in one of my pages and I want to set up a submit button that emails the information entered into the form back to me. How do I set that up in Dreamweaver MX? Thanks for your help, this is driving me crazy!

  • I3 WM Copy and Paste VMWare

    Hi. I've just installed the i3 window manager on Arch, running from a Virtual Machine (VMWare) on a Windows 7 system. And I can't get the copy/paste working between W7 and i3 on Arch. Copy and Paste works fine between the host and guest when I'm runn