Servicegen:  unable to load type library from classloader weblogic.utils.cl

Hi,
I am new to weblogic. I am encountering an error on trying to run the 'servicegen' command from my ant build scripts, on weblogic 9.2.
Please find the build.xml snapshot, and the stack trace given below.
Please help me out with this.
Points to be noted are:-
1) The ejb-jar.xml specifies the bean class, which is very much present in the classpath. The ejb-jar.xml is generated by xdoclet. Snapshot is given below:-
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN" "http://java.sun.com/dtd/ejb-jar_2_0.dtd">
<ejb-jar >
<description><![CDATA[No Description.]]></description>
<display-name>Generated by XDoclet</display-name>
<enterprise-beans>
<!-- Session Beans -->
<session >
<description><![CDATA[NorthBound Interface]]></description>
<ejb-name>ArcorNBIService</ejb-name>
<home>com.alcatel.hdm.arcoril.webservice.ejb.ArcorNBIServiceHome</home>
<remote>com.alcatel.hdm.arcoril.webservice.ejb.ArcorNBIService</remote>
<local-home>com.alcatel.hdm.arcoril.webservice.ejb.ArcorNBIServiceLocalHome</local-home>
<local>com.alcatel.hdm.arcoril.webservice.ejb.ArcorNBIServiceLocal</local>
<ejb-class>com.alcatel.hdm.arcoril.webservice.ejb.ArcorNBIServiceBean</ejb-class>
<session-type>Stateless</session-type>
<transaction-type>Container</transaction-type>
</session>
</enterprise-beans>
</ejb-jar>
2) When I replace the "ejbJar" attribute in the 'service' command with "javaClassComponents" attribute, I am able to run the servicegen command successfully. Not sure why the ejbJar is creating problems.
3) Build.xml snapshot:-
     <target name="gen-webservice" depends="init">
          <copy todir="${work.dir}" file="${export.dir}/lib/arcor-il-service-ejb.jar"/>
          <autotype javatypes="${javatypes}" targetNamespace="${targetNamespace}" destDir="${work.dir}/classes" keepGenerated="${keepGenerated}" classpathref="webservice.client.classpath"/>
          <autotype javaComponents="com.alcatel.hdm.arcoril.webservice.ejb.ArcorNBIService" targetNamespace="com.alcatel.hdm.service.nbi.dto.holders" destDir="${work.dir}/classes" keepGenerated="true" classpathref="webservice.client.classpath"/>
          <servicegen destEar="${earfile}" warName="${warname}" contextURI="${contextURI}" keepGenerated="${keepGenerated}" classpathref="webservice.client.classpath">
               <service ejbJar="${ejbLocation}" targetNamespace="${targetNamespace}" serviceName="${serviceName}" serviceURI="/${serviceName}" generateTypes="false" expandMethods="${expandMethods}" ignoreAuthHeader="false" protocol="https" style="rpc" useSOAP12="${useSOAP12}" typeMappingFile="${work.dir}/classes/types.xml">
                    <security enablePasswordAuth="true"/>
               </service>
          </servicegen>
     </target>
4) Exception stacktrace:-
--- Nested Exception ---
java.lang.AssertionError: java.io.IOException
at weblogic.descriptor.DescriptorManager$DefaultMarshallerFactorySingleton.<clinit>(DescriptorManager.java:42)
at weblogic.descriptor.DescriptorManager.getDefaultMF(DescriptorManager.java:116)
at weblogic.descriptor.DescriptorManager.getMarshallerFactory(DescriptorManager.java:125)
at weblogic.descriptor.DescriptorManager.getDescriptorFactory(DescriptorManager.java:153)
at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:277)
at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:248)
at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:309)
at weblogic.descriptor.EditableDescriptorManager.createDescriptor(EditableDescriptorManager.java:99)
at weblogic.application.descriptor.AbstractDescriptorLoader.createDescriptor(AbstractDescriptorLoader.java:344)
at weblogic.application.descriptor.CachingDescriptorLoader.createDescriptor(CachingDescriptorLoader.java:188)
at weblogic.application.descriptor.AbstractDescriptorLoader.createDescriptor(AbstractDescriptorLoader.java:328)
at weblogic.application.descriptor.AbstractDescriptorLoader.getDescriptor(AbstractDescriptorLoader.java:237)
at weblogic.application.descriptor.AbstractDescriptorLoader.getRootDescriptorBean(AbstractDescriptorLoader.java:217)
at weblogic.ejb.spi.EjbJarDescriptor.getEjbJarBean(EjbJarDescriptor.java:141)
at weblogic.ejb.spi.EjbJarDescriptor.getEditableEjbJarBean(EjbJarDescriptor.java:182)
at weblogic.ejb.container.dd.xml.DDUtils.processEjbJarXMLWithSchema(DDUtils.java:519)
at weblogic.ejb.container.dd.xml.DDUtils.createDescriptorFromJarFile(DDUtils.java:182)
at weblogic.ejb.container.dd.xml.DDUtils.createDescriptorFromJarFile(DDUtils.java:126)
at weblogic.ejb.container.dd.xml.DDUtils.createDescriptorFromJarFile(DDUtils.java:154)
at weblogic.ejb.container.dd.xml.DDUtils.createDescriptorFromJarFile(DDUtils.java:147)
at weblogic.ejb.spi.DDUtils.createDescriptorFromJarFile(DDUtils.java:30)
at weblogic.webservice.dd.EJBJarIntrospector.<init>(EJBJarIntrospector.java:52)
at weblogic.ant.taskdefs.webservices.autotype.EJBAutoTyper.<init>(EJBAutoTyper.java:68)
at weblogic.ant.taskdefs.webservices.servicegen.ServiceGenTask.runAutoTyper(ServiceGenTask.java:339)
at weblogic.ant.taskdefs.webservices.servicegen.ServiceGenTask.generateService(ServiceGenTask.java:313)
at weblogic.ant.taskdefs.webservices.servicegen.ServiceGenTask.execute(ServiceGenTask.java:181)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
at org.apache.tools.ant.Task.perform(Task.java:364)
at org.apache.tools.ant.Target.execute(Target.java:341)
at org.apache.tools.ant.Target.performTasks(Target.java:369)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
at org.apache.tools.ant.Main.runBuild(Main.java:668)
at org.apache.tools.ant.Main.startAnt(Main.java:187)
at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)
Caused by: java.io.IOException
at weblogic.descriptor.internal.MarshallerFactory.<init>(MarshallerFactory.java:50)
at weblogic.descriptor.DescriptorManager$DefaultMarshallerFactorySingleton.<clinit>(DescriptorManager.java:40)
... 37 more
Caused by: com.bea.xml.XmlException: unable to load type library from classloader weblogic.utils.classloaders.ClasspathClassLoader@1cc0a7f f
inder: weblogic.utils.classloaders.CodeGenClassFinder@c52200 annotation:
at com.bea.staxb.runtime.internal.BindingContextFactoryImpl.createBindingContext(BindingContextFactoryImpl.java:50)
at weblogic.descriptor.internal.MarshallerFactory.<init>(MarshallerFactory.java:48)
... 38 more
Total time: 5 seconds

Hi,
I am new to weblogic. I am encountering an error on trying to run the 'servicegen' command from my ant build scripts, on weblogic 9.2.
Please find the build.xml snapshot, and the stack trace given below.
Please help me out with this.
Points to be noted are:-
1) The ejb-jar.xml specifies the bean class, which is very much present in the classpath. The ejb-jar.xml is generated by xdoclet. Snapshot is given below:-
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN" "http://java.sun.com/dtd/ejb-jar_2_0.dtd">
<ejb-jar >
<description><![CDATA[No Description.]]></description>
<display-name>Generated by XDoclet</display-name>
<enterprise-beans>
<!-- Session Beans -->
<session >
<description><![CDATA[NorthBound Interface]]></description>
<ejb-name>ArcorNBIService</ejb-name>
<home>com.alcatel.hdm.arcoril.webservice.ejb.ArcorNBIServiceHome</home>
<remote>com.alcatel.hdm.arcoril.webservice.ejb.ArcorNBIService</remote>
<local-home>com.alcatel.hdm.arcoril.webservice.ejb.ArcorNBIServiceLocalHome</local-home>
<local>com.alcatel.hdm.arcoril.webservice.ejb.ArcorNBIServiceLocal</local>
<ejb-class>com.alcatel.hdm.arcoril.webservice.ejb.ArcorNBIServiceBean</ejb-class>
<session-type>Stateless</session-type>
<transaction-type>Container</transaction-type>
</session>
</enterprise-beans>
</ejb-jar>
2) When I replace the "ejbJar" attribute in the 'service' command with "javaClassComponents" attribute, I am able to run the servicegen command successfully. Not sure why the ejbJar is creating problems.
3) Build.xml snapshot:-
     <target name="gen-webservice" depends="init">
          <copy todir="${work.dir}" file="${export.dir}/lib/arcor-il-service-ejb.jar"/>
          <autotype javatypes="${javatypes}" targetNamespace="${targetNamespace}" destDir="${work.dir}/classes" keepGenerated="${keepGenerated}" classpathref="webservice.client.classpath"/>
          <autotype javaComponents="com.alcatel.hdm.arcoril.webservice.ejb.ArcorNBIService" targetNamespace="com.alcatel.hdm.service.nbi.dto.holders" destDir="${work.dir}/classes" keepGenerated="true" classpathref="webservice.client.classpath"/>
          <servicegen destEar="${earfile}" warName="${warname}" contextURI="${contextURI}" keepGenerated="${keepGenerated}" classpathref="webservice.client.classpath">
               <service ejbJar="${ejbLocation}" targetNamespace="${targetNamespace}" serviceName="${serviceName}" serviceURI="/${serviceName}" generateTypes="false" expandMethods="${expandMethods}" ignoreAuthHeader="false" protocol="https" style="rpc" useSOAP12="${useSOAP12}" typeMappingFile="${work.dir}/classes/types.xml">
                    <security enablePasswordAuth="true"/>
               </service>
          </servicegen>
     </target>
4) Exception stacktrace:-
--- Nested Exception ---
java.lang.AssertionError: java.io.IOException
at weblogic.descriptor.DescriptorManager$DefaultMarshallerFactorySingleton.<clinit>(DescriptorManager.java:42)
at weblogic.descriptor.DescriptorManager.getDefaultMF(DescriptorManager.java:116)
at weblogic.descriptor.DescriptorManager.getMarshallerFactory(DescriptorManager.java:125)
at weblogic.descriptor.DescriptorManager.getDescriptorFactory(DescriptorManager.java:153)
at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:277)
at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:248)
at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:309)
at weblogic.descriptor.EditableDescriptorManager.createDescriptor(EditableDescriptorManager.java:99)
at weblogic.application.descriptor.AbstractDescriptorLoader.createDescriptor(AbstractDescriptorLoader.java:344)
at weblogic.application.descriptor.CachingDescriptorLoader.createDescriptor(CachingDescriptorLoader.java:188)
at weblogic.application.descriptor.AbstractDescriptorLoader.createDescriptor(AbstractDescriptorLoader.java:328)
at weblogic.application.descriptor.AbstractDescriptorLoader.getDescriptor(AbstractDescriptorLoader.java:237)
at weblogic.application.descriptor.AbstractDescriptorLoader.getRootDescriptorBean(AbstractDescriptorLoader.java:217)
at weblogic.ejb.spi.EjbJarDescriptor.getEjbJarBean(EjbJarDescriptor.java:141)
at weblogic.ejb.spi.EjbJarDescriptor.getEditableEjbJarBean(EjbJarDescriptor.java:182)
at weblogic.ejb.container.dd.xml.DDUtils.processEjbJarXMLWithSchema(DDUtils.java:519)
at weblogic.ejb.container.dd.xml.DDUtils.createDescriptorFromJarFile(DDUtils.java:182)
at weblogic.ejb.container.dd.xml.DDUtils.createDescriptorFromJarFile(DDUtils.java:126)
at weblogic.ejb.container.dd.xml.DDUtils.createDescriptorFromJarFile(DDUtils.java:154)
at weblogic.ejb.container.dd.xml.DDUtils.createDescriptorFromJarFile(DDUtils.java:147)
at weblogic.ejb.spi.DDUtils.createDescriptorFromJarFile(DDUtils.java:30)
at weblogic.webservice.dd.EJBJarIntrospector.<init>(EJBJarIntrospector.java:52)
at weblogic.ant.taskdefs.webservices.autotype.EJBAutoTyper.<init>(EJBAutoTyper.java:68)
at weblogic.ant.taskdefs.webservices.servicegen.ServiceGenTask.runAutoTyper(ServiceGenTask.java:339)
at weblogic.ant.taskdefs.webservices.servicegen.ServiceGenTask.generateService(ServiceGenTask.java:313)
at weblogic.ant.taskdefs.webservices.servicegen.ServiceGenTask.execute(ServiceGenTask.java:181)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
at org.apache.tools.ant.Task.perform(Task.java:364)
at org.apache.tools.ant.Target.execute(Target.java:341)
at org.apache.tools.ant.Target.performTasks(Target.java:369)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
at org.apache.tools.ant.Main.runBuild(Main.java:668)
at org.apache.tools.ant.Main.startAnt(Main.java:187)
at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)
Caused by: java.io.IOException
at weblogic.descriptor.internal.MarshallerFactory.<init>(MarshallerFactory.java:50)
at weblogic.descriptor.DescriptorManager$DefaultMarshallerFactorySingleton.<clinit>(DescriptorManager.java:40)
... 37 more
Caused by: com.bea.xml.XmlException: unable to load type library from classloader weblogic.utils.classloaders.ClasspathClassLoader@1cc0a7f f
inder: weblogic.utils.classloaders.CodeGenClassFinder@c52200 annotation:
at com.bea.staxb.runtime.internal.BindingContextFactoryImpl.createBindingContext(BindingContextFactoryImpl.java:50)
at weblogic.descriptor.internal.MarshallerFactory.<init>(MarshallerFactory.java:48)
... 38 more
Total time: 5 seconds

Similar Messages

  • ITunes 10.5.3, Unable to Load Class Data from Sync Services, Crashes Repeatedly

    Ever since iTunes 10.5.3 on my Windows 7 x64 box, I've been having serious problems keeping iTunes running:
    1)  Any time I connect my iPhone or iPad, or any time they attempt to sync over WiFi, I get the 'Unable to load class data from sync services' error.  It's worth mention that the iPhone or iPad do actually then proceed to sync correctly, and all media / data is synchronized successfully, as far as I've been able to tell.  I've reset sync history, restored the iPhone and iPad, manually moved the SyncServices directory, set both the iPhone and iPad up as new, completely uninstalled iTunes and the mobile device software, re-installed, and *nothing* I do fixes this issue or even seems to impact it.  Uninstalling iTunes 10.5.3 and reinstalling iTunes 10.5.2 resolves this error.
    2)  iTunes 10.5.3 has serious crashing problems on my machine, though I've searched through forums and found a lot of other people with the problem.  In my case, sporadically as iTunes access the iTunes store (for example, I can always make it happen by subscribing to the Diggnation podcast and telling it to refresh the podcast), I get a full application crash which generates the following event in the event log:
    Faulting application name: iTunes.exe, version: 10.5.3.3, time stamp: 0x4f14cc3d
    Faulting module name: KERNELBASE.dll, version: 6.1.7601.17651, time stamp: 0x4e211319
    Exception code: 0x80000003
    Fault offset: 0x0001280c
    Faulting process id: 0x564
    Faulting application start time: 0x01cce78789dc009a
    Faulting application path: D:\Program Files (x86)\iTunes\iTunes.exe
    Faulting module path: C:\Windows\syswow64\KERNELBASE.dll
    Report Id: ecc77400-537a-11e1-b809-00248c196007
    Again, uninstalling iTunes 10.5.3 and re-installing iTunes 10.5.2 fixes this issue as well, but I really shouldn't have to do that.  Is there any actual solution to these problems other than dowgrading to an older version?
    Yes, I'm running current malware protection (and my system is clean) and yes, I've already checked any other obvious culprits to make sure I don't just have a corrupt library or file somewhere that's causing it.  My Windows 7 install is completely up to date from a Windows Update perspective and also from a driver perspective (even including the motherboard and chipset drivers).  I made sure to do a system file integrity check (sfc /scannow) and it confirmed my install of Windows isn't suspect, but beyond all that I was able to reproduce these failures on a completely separate machine running Windows 7 x64, without any of my media library or data on it -- iTunes 10.5.3 just seems to be bad news on Windows 7 x64 for me, even though I know there are definitely people are using it successfully.  I don't get any other application crashes for any other applications, and I've never had an issue like this with any previous version of iTunes...
    Last but not least, in case it matters, I'm running iOS 5.0.1 on both the iPhone4 and the iPad2.  The iPhone4 is the GSM AT&T model and the iPad2 is the CDMA Verizon model.

    OK, I've given up.  Uninstalled iTunes 10.5.3 permanently.  It's a shame, 10.5.2 works perfectly but 10.5.3 is a complete and total cluster for me.
    Anyone with the same problems who hasn't done this already, just uninstall iTunes and the Apple Mobile Device Service in your Add/Remove Programs, then re-install iTunes 10.5.2.  You won't lose your library or any settings or apps, it will just go back to working again.
    I wish Apple would acknowledge this so that I'd at least know it would be fixed in the future.

  • Unable to Load JdbcOdbc library -- Linux

    I know this question has been asked a lot, but I couldn't find a helpful answer in all my searches. I'm trying to use JdbcOdbc to connect to MySQL via ODBC on Linux. I have to use ODBC as part of an assignment, which is rather annoying, since the MySQL J/Connectivity JDBC driver works perfectly. But the assignment sort of assumes I'm on Windows and using MS Access, although I did have a choice to use MySQL.
    That's the background.
    This is the error I'm getting when trying to connect to ODBC. It's loading the driver all right (ie: no problems if I comment out the lines that tries to connect to the database).
    *Driver.connect (jdbc:odbc:flightData)
    JDBC to ODBC Bridge: Checking security
    No SecurityManager present, assuming trusted application/applet
    JDBC to ODBC Bridge 2.0001
    Current Date/Time: Wed Mar 19 09:12:20 CST 2003
    Loading JdbcOdbc library
    Unable to load JdbcOdbc library
    Exception in thread "main" java.lang.NullPointerException
    at sun.jdbc.odbc.JdbcOdbcDriver.initialize(JdbcOdbcDriver.java:435)
    at sun.jdbc.odbc.JdbcOdbcDriver.connect(JdbcOdbcDriver.java:153)
    at java.sql.DriverManager.getConnection(DriverManager.java:512)
    at java.sql.DriverManager.getConnection(DriverManager.java:171)
    at testData.main(testData.java:17)
    I've tried variations on the URL and the connect pattern, but it seems almost certain that it cannot load the library, and it's not the URL that's the problem yet.
    What I've done:
    I did a search on google and on this forum. I found that the directory containing libJdbcOdbc.so should be in /etc/ld.so.conf. I added it and I ran ldconfig -v; the library is listed in the output of that command, so I think it is loaded. I don't know how to check if a particular library is loaded?
    In this forum, I found that there might be a problem with the access permissions. I read that I should set the AllPermission policy to see if that's a problem, but I'm not exactly sure how to do that. Policytool is kind of cryptic, and on top of that, its GUI window is not displaying properly for me. If somebody could tell me the contents I should put in ~/.java.policy to enable all permissions, it might help.
    In addition, I've tried using the JDBCTest tool, and it also was unable to connect to ODBC. However, if I use the tool called DataManager that is a part of the ODBC implementation, it can connect to the database easily (which indicates that the database is properly set up via ODBCConfig, I think).
    My System:
    I'm running Debian Linux 3.0 (Woody) / unstable. I'm using the Blackdown version of Jdk1.4, which I retreived via apt-get. I'm not absolutely certain what I've got running ODBC; I also got it via apt-get. As mentioned, the tools odbcinst, ODBCConfig, and DataManager are all installed on my system.
    I'm really confused by this problem, since all the advice I've been able to find has helped other people, yet I'm still lost!
    Thanks,
    Dusty

    After running ldd on libJdbcOdbc.so, I realized I had to make a couple of symlinks from odbc.so.1 in /usr/lib to odbc.so.
    Dusty

  • "Unable to load workflow actions from server. Please contact your server."

    I get the following error message when I want to create or open a workflow in SharePoint Designer 2007
    "unable to load workflow actions from server. Please contact your server
    administrator."
    I don't receive this error as a site collection administrator, but one of my contributors gets the error.

    What Chris mentioned is kind of abnormal situation described in
    http://office.microsoft.com/en-us/sharepointdesigner/HA102379121033.aspx#20.
    However, normally, you won’t be able to create SPD workflow if you only have Contribute permission level. I give the user Design permission level then he can
    create SPD workflow.
    There are other factors affecting permission to create SPD workflow:
    1.     
    According to
    http://office.microsoft.com/en-us/sharepointdesigner/HA101005871033.aspx#4
    , the SPD workflows are stored in a site-level hidden document library called Workflows. You should make sure that user have permission in this document library so that the created workflow can be saved successfully.
     http://blogs.msdn.com/sharepointdesigner/archive/2008/11/25/locking-down-sharepoint-designer.aspx
    describe the method to manage permission for this hidden Workflows document library: open the site in SharePoint Designer >> right-click the Workflows library >> click Properties >> click the Security tab >> click the link “Manage
    permissions using the browser”
    2.     
    SharePoint Designer contributor setting (http://office.microsoft.com/en-us/sharepointdesigner/HA101174691033.aspx
    ) can also block the user from being able to create workflows.

  • Itunes was unable to load provider data from sync services. Reconnect or try later

    Hi everyone
    This issue has got me stumped.
    I have a Dell Vostro desktop computer with Windows 7 SP1 64 bit edition.
    I used to be able to sync now I cannot bakup or sync.
    The device is an iphone 4s with the latest software IOS 5.1.
    Itunes is version 10.6.0.40, the latest.
    To try to fix this problem I removed itunes/quick time completely. Removed Bonjour, Apple Application Support, Apple Mobile Device Support, Apple Software Update,
    Deleted the itunes and quick time folders, the common file folders and files, deleted anything related to able under appdata local and roaming, removed apple folder under program data, scanned through registry and removed all apple entries.
    Then I rebooted the computer, re-installed itunes/quicktime and have the same error appear again.
    I have gone through this process at least 5 times , but still keep getting the same error, cannot go past it.
    I found a solution on this forum but it only applies to MACOS, could not find anything suitable for windows 7 environment.
    Also searche the web high and low and tried several different advice from people.
    This has to be a bug with Itunes! I would like to hear from Apple developers and programmers why I have to suffer so much to sync my device.
    As a last resort I am planning to rebuild windows 7 from scratch but is is a big job.
    Tried also to disable firewall, antivirus, check the apple windows services are running, nothing works to get me past this error.
    Please help someone!
    Thanks and regards
    Alfred

    Did you have a look ath this (rather) long thread about it?
    https://discussions.apple.com/message/17214161#17214161 , for example:
    danielfromkongsvinger
    Re: Unable to load provider data from Sync Services 
    16.12.2011 20:21 (in response to wisniak)
    "I then followed a tip found in PCWorld  and performed the following:
    1. Make sure iTunes isn't running.
    2. Click Start, type regedit, then press Enter.
    3. Navigate to this Registry location: HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers
    4. Look in the main pane for a key that refers to iTunes. If you find one, delete it, then exit the Registry.
    5. Start iTunes. The offending message should be gone!"
    This actually worked for me! I have struggeled with this error for years, and now it's gone. Thanks!

  • ITunes was unable to load dataclass information from Sync Services. Reconne

    I'm getting the following error on iTunes 8 when quitting:
    "iTunes was unable to load dataclass information from Sync Services. Reconnect or try again later."
    Anyone else seeing this?
    Don

    I started getting the annoying “iTunes was unable to load dataclass information from Sync Services. Reconnect or try again later.” error when i installed iPhone 3.0 beta onto my 1G iPhone. I have uninstalled iTunes (version 8.1), uninstalled Apple’s Mobile Device Support and reinstalled both of them but that did not fix the problem. I have also installed an older version of iTunes but that did not help as well. The error is not just annoying, i was not able to restore from my iPhone backups. I made a mistake in getting iPhone 3.0 beta onto my iPhone and instead of “update”, i chose “restore”. That wiped out all the App Store applications that i had installed. I could easily re-install the applications but there was no way for me to restore the saved data for some of the apps like eWallet and Gas Cubby. Until iPhone 3.0 beta is jailbroken, restoring a backup is the only way that i am aware of that can restore the app data.
    From the Console log, i noticed these errors were generated whenever an iPhone is connected to my Mac Pro:
    3/19/09 10:57:50 PM [0x0-0x17a17a].com.apple.iTunes[4049] MobileDevice: readcallback: Could not receive message
    3/19/09 10:58:02 PM [0x0-0x11011].com.apple.systemuiserver[233] DigiHub:sendChargingCommandToDevice RequestExtraPower(kUSBPowerDuringWake) returned 0
    3/19/09 10:58:02 PM [0x0-0x11011].com.apple.systemuiserver[233] DigiHub:sendChargingCommandToDevice sending command with sleep: 0, wake 0
    3/19/09 10:58:02 PM [0x0-0x11011].com.apple.systemuiserver[233] DigiHub:sendChargingCommandToDevice sending command with sleep: 0, wake 0
    3/19/09 10:58:05 PM [0x0-0x17a17a].com.apple.iTunes[4049] Parent: Can't write length for data
    3/19/09 10:58:05 PM [0x0-0x17a17a].com.apple.iTunes[4049] Parent: write to child failed, trying to create child again...
    3/19/09 10:58:05 PM [0x0-0x17a17a].com.apple.iTunes[4049] Exec of child with pid 4100 failed with error 255
    3/19/09 10:58:05 PM [0x0-0x17a17a].com.apple.iTunes[4049] Exec for child /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper failed or inexplicably returned
    3/19/09 10:58:05 PM [0x0-0x17a17a].com.apple.iTunes[4049] Parent: Can't write length for data
    3/19/09 10:58:05 PM [0x0-0x17a17a].com.apple.iTunes[4049] Parent: Can't talk to child
    So i decided to get rid of everything in /System/Library/PrivateFrameworks/MobileDevice.framework and re-installed Apple Mobile Device Support. Voila, that worked!

  • Error ocurred during initialization of VM. Unable to load native library...

    Hi,
    I´m trying to install Oracle 9i on a PC with Suse 9.2.
    when I put the first CD it comes with this error:
    Initializing Java Virtual Machine from /tmp/OraInstall2006-05-04_11-13-11PM/jre/bin/java. Please wait...
    Error occurred during initialization of VM
    Unable to load native library: /tmp/OraInstall2006-05-04_11-13-11PM/jre/lib/i386/libjava.so: symbol __libc_wait, version GLIBC_2.0 not defined in file libc.so.6 with link time reference
    I´ve seen that there was a similar issue in 2004 and I´ve trying to do what it says but it didn´t work this time.
    Unable to load native library:
    Could everyone help me to install Oracle??? I´ve been trying it for a few days and doesn´t work.
    Regards,

    I had same problems long time ago. Ok, I try to remember.
    First I read the recommandation. You need a special GLIBC-Library to support the JAVA 1.1.8 runtime environment.
    Some of the Oracle9i tools are compiled with gcc 2.95 compiler.
    You may need ”gcc_old for SLES9” for linking of those tools.
    gcc_old-2.95.3-175.2.i586.rpm is included in SLES 9 SP2 CD1
    For Suse you can obtain a package called orarun. You will get further support for installing, starting and stopping ORACLE. Please look at http://ftp.novell.com/partners/oracle/docs/9205_sles9_install.pdf.
    Good luck.

  • SharePoint Online : Unable to load type Microsoft.SharePoint.Upgrade.SPUpgradeCompatibilityException required for deserialization.

    From today's morning , We are having Issue on Our Online SharePoint Site.
    Each WebPart is not loading and displaying this Line
    Unable to load type Microsoft.SharePoint.Upgrade.SPUpgradeCompatibilityException required for deserialization.
    Please write in quick response to fix it at
    [email protected]

    Hi,
    According to your post, my understanding is that SharePoint Online Site was unable to load web part and got the “Microsoft.SharePoint.Upgrade.SPUpgradeCompatibilityException” error.
    Per my knowledge, the SPUpgradeCompatibilityException occurs during upgrade when the front-end Web server attempts to connect to an incompatible database.
    Please check whether the database is compatible.
    Regarding SharePoint Online, for quick and accurate answers to your questions, it is recommended that you initial a new thread in Office 365 forum.
    Office 365 forum
    http://community.office365.com/en-us/forums/default.aspx
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Error loading type library/DL​L?

    I am using ActiveX to call a LabView VI, compiled with the ActiveX
    Server option enabled. When I load the VI (using the CreateObject
    method) the front panel appears, but I get back this error:
    "0x80029c4a {Error loading type library/DLL.}". What is wrong, and
    how do I fix it? My program can't proceed beyond that point, because
    it doesn't have a valid handle for the VI.
    The VI is known to work (it is the "Frequency Response" example
    from 'examples\apps\freqresp.llb').
    Leslie

    When you open an instance of the application, make sure you are not opening a reference to LabVIEW, but to your stand alone application. In order to do this, you need to make sure your application is registered with the windows system. You can do this by either running the installer for it, or by running the executable with /register after it in the command line. In your code, you should create an instance of the application, then an instance of a VI pointer and use the GetVIReference method to assign a VI object reference to the pointer.

  • When I connect my iTouch to my PC (windows 7) an error message is displayed reading "iTunes was unable to load dataclass information from sync services. Reconnect or try again later".

    When I connect my iTouch to my PC (windows 7) an error message is displayed reading "iTunes was unable to load dataclass information from sync services. Reconnect or try again later". I have completely uninstalled and then reinstalled iTunes. I have also completely reset my iTouch to factory defaults. I have even followed all the advice provided previously to other forum member with the same problem. Nothing seems to work. Please help me someone.

    I'm getting the same problem with both my IPad 4 and iPhone 5
    Just started a few weeks back, Since then I have had two Itunes updates.
    Is this something Apple is aware of and trying to fix?

  • ITunes was unable to load dataclass information from Sync Services

    Hi,
    I have Iphone 3GS with the latest version 3.1.3 and iTunes 9.1. After i uograded my iPhone to the latest version i am not able to sync with the iTunes and receive the message "iTunes was unable to load dataclass information from Sync Services, Reconnect or Try later". I am using Windows XP with Symantec Endpoint protection.
    I have tried following steps to troubleshoot the problem but all my attempts have failed,
    1. Uninstall iTunes by Removing, iTunes, QuickTime, BonJour, iPhone congiguration Utility and Bonjour. Remove all the iTunes and related folder from the C:/ drive
    2. Restart the computer and intall the latest version of iTunes and Quicktime
    3. Restore the iPhone to the factory settings using iTunes
    4. Restart the system as well as hard Boot the iPhone (Hold Start and Wake/Sleep Button)before connecting again
    5. Repeat the Steps 1 and 2 after restoring the iPhone
    I am still getting the same error and now I can't even open the first page for iPhone in iTunes when I connect it to my computer. All my content is still in iTunes but everything is lost on the iPhone.
    I searched the Apple support and they talk about problem with the Symantec Endpoint. I have the latest version of Symantec endpoint way above what is mentioned on the Apple support page.
    Can someone please help me, it seems restore worked for most of the people facing this issue, but for me even restore is not working.
    With Regards,
    Ankur

    I got a present of an itouch. This is my first time back to apple after 5 years. I cant get my itouch to sync due to dataclass error on Windows XP pro. I have installed the latest version of itunes 9.2.1.
    WHAT IS THE POINT IN OWNING A DEVICE FOR PLAYING MUSIC WHEN YOU CANT LOAD THE MUSIC !!!!!
    Does anyone have a solution or alternatively (shock horror) Apple could actually get its AR*E in gear and fix the problem. I would also suggest that Apple would post a friggen solution on its website, but no that may be too much to ask.
    very frustrated. any help gratefully received otherwise the touch gets thrown out.
    thanks

  • ITunes was unable to load dataclass information from Sync Services-Solution

    Hello all. I recently upgraded to iTunes 9.1.1.12 on a laptop with Windows XP Pro and the latest iPhone OS (as of May 16,2010). Right after that, I started getting the "iTunes was unable to load dataclass information from Sync Services" error message. After I dismissed that window, it would go ahead and indicate that it was synching for a minute or two, and then indicate (in iTunes) that it was backing up the iPhone. This will run forever unless cancelled and the phone would not synch.
    After reading various solutions that worked for others (install Mobile Me, reinstall itunes, run diagnostics, all with numerous reboots in between), this is what worked for me:
    1) Open up Windows Services, and stop the Apple Mobile Device and iPod Service, and mark them as manual (as opposed to Automatic).
    2) Deinstall iTunes
    3) Delete the c:\program files\common files\apple folder (and all sub folders within). This is where the services are stored, and when I did all of these steps without doing this step, it didn't fix my problem. By deleting this folder, you insure that the iTunes install reinstalls these. You should see the services that were stopped in step 1, running again after the install is done. Note: I don't use Safari or QuickTime on my laptop, so I can't say whether or not this step would have any impact on those apps.
    4) Reinstall iTunes.
    5) Connect the iphone to your computer.
    6) At this point, I still got the dataclass error, so I immediately cancelled the synch.
    7) Run the diagnostics for the iphone (connectivity and synch).
    8) At this point, two DOS windows launched, and I did get another error about being able connect to the synch server.
    9) Closed the error message and disconnected the iphone (the phone at this point did not indicate that a synch was occurring).
    10) Reconnected the iphone and, voila, it's been working fine ever since.
    Hope this helps someone else out until Apple deals with the 9.1.1.12 (and .11) issues with synching.

    Either do Windows Control Panel → Administrative Tools and then picking "Services" or typing "Services.msc" in the Run command on Start menu.

  • ITunes was unable to load provider data from Sync Services

    Hello,
    My itunes says : "iTunes was unable to load provider data from Sync Services", when i connect my iphones.
    My iphones sync fine on my other computer.
    This problem occurred when formatting my pc from work.
    And this problem prevents me only sync tab "info" (contacts, calendar and Outlook). This does not prevent me to synchronize other tabs.
    I already tried to reinstall itunes, and the diagnostic option.
    Thanks in advance.

    This problem has been ongoing since 9.2 came out ... i.e. quite some time.
    I uninstalled and then removed all traces off Apple applications, then reinstalled back to the prior version and ran with no problems.
    When I upgraded to V4 iPhone software I had to upgrade again and ran into the same problem.
    Upgrading from Outlook 2000 to Outlook 2003 was of no benefit.
    I have purchased Sync2, set up a gmail account and sync over wireless from Outlook to gamil, then from gamil to iPhone.
    This only does calendar and contacts (haven't found a solution for notes) but waiting for Apple to sort this will probably see you old and gray.
    Good luck.

  • ITunes 9.1 was unable to load dataclass information from Sync Services.

    Everything was working perfectly fine on 9.0, then i upgraded to 9.1 version and my iPod Touch 3G stopped syncing properly (error as in subject). I tried many things, checked dll's, restarted services, everything without success. SO...
    I uninstalled every single apple program and couple non applce. Deleted every Apple related file, even all those hidden in users/common files/app data folders. Double checked everything and restarted PC. THEN I downloaded full version of iTunes 9.1 64bit and installed.
    Aaaand I restarted everything, lunched iTunes, plugged iPod in. Some Apple drivers installed themselves, then iTunes was frozen for couple minutes. Finally iPod shown in iTunes. I tried to sync and... BAM. Still broken, still same error "iTunes 9.1 was unable to load dataclass information from Sync Services. Reconnect or try again later"
    Please help, my iPod is useless. Can u release new, working iTunes?

    OK i have to say, i finally fixed it. Now its fully working without ANY problems, here is what i did (before trying this u should probably do this http://support.apple.com/kb/HT1923):
    1. Unplug every external Card Reader.
    2. Unplug every Card Reader in your PC (they are plugged into motherboard)
    3. Unplug every USB Hub.
    4. Unplug every USB Drive or USB HDD.
    5. Plug in Ipod Touch/iPhone.
    6. Go to Device Manager.
    7. Search for "USB Mass Storage Device" in Universal Serial Bus Controler.
    8. Right click on it and UNINSTALL.
    9. Search for "Scan for hardware changes", click on it and wait a bit.
    10. Turn on iTunes and check if its working.
    Now it should work like a charm.

  • "Unable to load dataclass information from Sync Services"  Any ideas?

    I upgraded to iTunes 7.7 last night and now I get an annoying constant stream of errors that read "AppleMobileDeviceHelper has stopped working". Multiple reinstalls have not stopped it.
    Against my better judgement, I upgraded my phone to 2.0. Found out that I lost everything on my phone. It is activated and will work but I cannot sync it with iTunes. All I get is a message stating, "iTunes was unable to load dataclass information from Sync Services. Reconnect or try again later."
    iTunes won't recognize my phone. I can move songs and stuff to it by drop and drag but if I click the "iPhone" in iTunes, nothing happens. I put my phone in recovery mode. iTunes linked to it and reinstalled 2.0 but I still get the same problem.
    I'm real frustrated and Apple has not posted anything about this problem.
    Does anyone have any ideas on what is the going on? Is my phone nerfed?

    Try disabling your firewall, virus SW, and if it still won't sync, I would try disabling the communications services one by one until it clears. When I'm troubleshooting this sort of problem, I first look into the system reports (MY Computer, (right-click) manage, event viewer, Windows Logs, and look into each of the sub log sections for the error. This will often point you in the right direction. If this fails, I do a clean boot with all extraneous run-times and services disabled. usually the problem will be solved. I then start turning on the various run-time routines and services until I find the culprit.
    My attitude about this is that I won't waste my time chasing problems like this unless they are critical. Paying $$$ for a 3G iPhone and then having to troubleshoot the SW is not my cup of tea. I only pursued this because my wife and both kids got 3G's but I have them running both XP and Vista. One Vista machine synced OK, but mine would not. Intellectual curiosity led to find out why.
    Lysimakus

Maybe you are looking for

  • An unknown error occurred (-50)

    There was an a Problem downloading "A 1.86 GB Movie File" An unknown error occurred (-50) Please check that the connection to the network is active and try again.  The Download is stuck at 800.1 MB of 1.86 GB. I have done the asked  troubleshooting b

  • Oracle ADF application Deploymet Guide Preparation-Needed Inputs

    Hi all , I need to prepare deployment guide for deploying Oracle ADF  11g Application in weblogic server 10.3.5  and Oracle Database 11g. Please provide your inputs for me  in preparing the deployment guide. From where should i start and what things

  • Quick Question!!! Please Read and reply.

    I have the old iTunes, and every time I try to buy music from the music store, it tells me to update to iTunes 7. I have tried to update to iTunes 7, but either nothing comes up for a download or at the end of the long update, it says invalid and clo

  • Mail will not open, nor can I select Preferences or anything else. Help.

    Mail account does nothing -- cannot open, select Preferences, etc.

  • CM patching error with patch 27

    Hi, I have a EP6 SP2 Patch 27  system. I applied CM patch 27 HF2. But when logged to the portal after the patch was finished I had the next on the first page: Portal Runtime Error An exception occurred while processing a request for : iView : pcd:por