[SOLVED]bluetooth error - sap driver initialization failed

Hello,
I have problem with bluetooth (since I installed Arch 4 years ago ). I've noticed that there are two errors (one is probably just consequence of the first). Nothing else except this is in journalctl and the same message I get when i manually restart bluetoothd through systemctl. Here is an output of status:
● bluetooth.service - Bluetooth service
Loaded: loaded (/usr/lib/systemd/system/bluetooth.service; enabled)
Active: active (running) since Tue 2014-11-11 09:41:40 CET; 2s ago
Docs: man:bluetoothd(8)
Main PID: 1495 (bluetoothd)
Status: "Running"
CGroup: /system.slice/bluetooth.service
└─1495 /usr/lib/bluetooth/bluetoothd
Nov 11 09:41:40 530uarch bluetoothd[1495]: Bluetooth daemon 5.24
Nov 11 09:41:40 530uarch bluetoothd[1495]: Starting SDP server
Nov 11 09:41:40 530uarch bluetoothd[1495]: Bluetooth management interface 1.7 initialized
Nov 11 09:41:40 530uarch bluetoothd[1495]: Sap driver initialization failed.
Nov 11 09:41:40 530uarch bluetoothd[1495]: sap-server: Operation not permitted (1)
Nov 11 09:41:40 530uarch bluetoothd[1495]: Endpoint registered: sender=:1.10 path=/MediaEndpoint/A2DPSource
Nov 11 09:41:40 530uarch bluetoothd[1495]: Endpoint registered: sender=:1.10 path=/MediaEndpoint/A2DPSink
I've found some info here but it's KDE-desktop related.
My /etc/bluetooth/main.conf is in it's default and active lines are:
[General]
# Default adaper name
# %h - substituted for hostname
# %d - substituted for adapter id
Name = %h-%d
# Default device class. Only the major and minor device class bits are
# considered.
Class = 0x000100
# How long to stay in discoverable mode before going back to non-discoverable
# The value is in seconds. Default is 180, i.e. 3 minutes.
# 0 = disable timer, i.e. stay discoverable forever
DiscoverableTimeout = 0
# How long to stay in pairable mode before going back to non-discoverable
# The value is in seconds. Default is 0.
# 0 = disable timer, i.e. stay pairable forever
PairableTimeout = 0
# Automatic connection for bonded devices driven by platform/user events.
# If a platform plugin uses this mechanism, automatic connections will be
# enabled during the interval defined below. Initially, this feature
# intends to be used to establish connections to ATT channels.
AutoConnectTimeout = 60
# What value should be assumed for the adapter Powered property when
# SetProperty(Powered, ...) hasn't been called yet. Defaults to true
InitiallyPowered = true
# Do reverse service discovery for previously unknown devices that connect to
# us. This option is really only needed for qualification since the BITE tester
# doesn't like us doing reverse SDP for some test cases (though there could in
# theory be other useful purposes for this too). Defaults to true.
ReverseServiceDiscovery = true
# Enable name resolving after inquiry. Set it to 'false' if you don't need
# remote devices name and want shorter discovery cycle. Defaults to 'true'.
NameResolving = true
# Enable runtime persistency of debug link keys. Default is false which
# makes debug link keys valid only for the duration of the connection
# that they were created for.
DebugKeys = false
Anyway - when I want to connect my keyboard, I have to go to bluetoothctl, connect, disconnect and then again connect - then it's working OK.  During that I get this errors:
Nov 11 09:53:40 530uarch bluetoothd[1495]: Can't get HIDP connection info
The keyboard also gets disconnected after cca 5 minutes of inactivity and bluetooth daemon use 100% of one core for no reason. When I type something on keyboard, it gets back to normal. And the best thing? When I hit Caps Lock on my BT keyboard, it stops working and disconnect from laptop. I have to disconnect it first in bluetoothctl and connect it again!
I guess this should be first step in making it work.
My friend with other laptop and other keyboard has exactly same problems. Thanks to lack of documentation for Bluez it's hard to find out what's going on. Really - this is one of the things that pisses me off the most in Linux.
Last edited by Kotrfa (2014-11-13 08:03:51)

Ok, solved by installing bluez4 from AUR and then use commands which I've found on wiki for BT keyboard here. And then added this to my autostarted applications:
if [[ `rfkill list bluetooth | grep Soft|awk '{print $3}i'` == 'no' ]]; then bluez-test-input connect 20:73:**:55:**:88; fi
Last edited by Kotrfa (2014-11-13 08:03:38)

Similar Messages

  • Nl80211:driver initialization failed | HOTSPOT with hostapd.

    I had no troubles setting up a hotspot for my nexus4 in ubuntu using hostapd.. But in Arch I am always getting this error:
    sudo hostapd /etc/hostapd/hostapd.conf
    Configuration file: /etc/hostapd/hostapd.conf
    nl80211: Failed to set interface wlp8s0 into AP mode
    nl80211 driver initialization failed.
    I am currently using NetworkManager. I've tried to look for a solution on the forums.. but nothing has helped.
    Also I don't get this error if I stop the NetworkManager.service but the hotspot doesn't seem to work properly then.
    My /etc/hostapd/hostapd.conf :
    ssid=YourWifiName
    wpa_passphrase=Somepassphrase
    interface=wlp8s0
    bridge=br0
    auth_algs=3
    channel=7
    driver=nl80211
    hw_mode=g
    logger_stdout=-1
    logger_stdout_level=2
    max_num_sta=5
    rsn_pairwise=CCMP
    wpa=2
    wpa_key_mgmt=WPA-PSK
    wpa_pairwise=TKIP CCMP
    Please help me. I have only one wired connection available here.

    I have started the hotspot building the hostapd myself.. my device lists the hotspot name.. but it can't connect to it.. it just saves the password and then nothing happens when I try to connect to the hotspot.
    I did this:
    After make for the hostapd.. I configured my hostapd.conf.. and then instead of  sudo hostapd /etc/hostapd/hostapd.conf in the script
    #!/bin/bash
    #Initial wifi interface configuration
    ifconfig $1 up 10.0.0.1 netmask 255.255.255.0
    sleep 2
    ###########Start dnsmasq, modify if required##########
    if [ -z "$(ps -e | grep dnsmasq)" ]
    then
    dnsmasq
    fi
    #Enable NAT
    iptables --flush
    iptables --table nat --flush
    iptables --delete-chain
    iptables --table nat --delete-chain
    iptables --table nat --append POSTROUTING --out-interface $2 -j MASQUERADE
    iptables --append FORWARD --in-interface $1 -j ACCEPT
    #Thanks to lorenzo
    #Uncomment the line below if facing problems while sharing PPPoE, see lorenzo's comment for more details
    #iptables -I FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu
    sysctl -w net.ipv4.ip_forward=1
    #start hostapd
    ./hostapd ./hostapd.conf 1> /dev/null
    killall dnsmasq
    I used ./hostapd ./hostapd-minimal.conf  ... because sudo hostapd /etc/hostapd/hostapd.conf still gives the nl80211 error...
    What is stopping my device to connect to the hotspot it can see?
    Note: I've used dnsmasq.

  • ERROR: Update driver data failed (Cannot install any apps)

    Error Code Summary
    Exit Code: 7
    Please see specific errors below for troubleshooting. For example, ERROR:
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 1 error(s)
    ERROR: Updating driver data failed. Driver entry was notadded. ARP estimated size 0KB
    Every time I try to install any form of apps this error pops up.
    I’ve un-installed my entire suite due to the fact the desktop application wouldn’t let me update anything, as it claimed nothing was installed. Even when everything was installed.
    So, at this point. I’m just sitting here, paying for something I can’t use, with a client waiting for the final product.
    I’d appreciate any help I could get.
    Thanks.
    P.S. Yes, I restarted my system multiple times, used the Creative Cloud cleaner application to clean things up, and every one of the basic troubleshoot methods.

    Code 6 & Code 7 http://helpx.adobe.com/creative-suite/kb/errors-exit-code-6-exit.html

  • Installation Stop Error "Session 3 Initialization Failed"

    I've upgraded to Leopard and am now trying to install a new copy of Windows XP Home + SP 2. In Boot Camp (via Boot Camp Installer). I have formatted the partition (with 10 GP to SP2) and begun the installation process. While starting Windows (and before selecting the partition in Windows Setup) I get the following "blue screen" error:
    "A problem has been detected and windows has been shut down to prevent damage to your computer.
    "Session3 Initialization Failed
    "If this is the first time you've seen this Stop error screen, restart your computer. If this screen appears again, follow these steps:
    "Check to make sure any new hardware or software is properly installed. If this is a new installation, ask your hardware or software manufacturer for anyy windows updates you might need.
    "If problems continue, disable or remove any newly installed hardware or software. Disable BIOS memory options such as caching or shadowing. If you need to use Safe More to remove or disable components, restart your computer, press F8 to select Advanced Startup Options, and then select Safe Mode
    Technical Information: * STOP: 0x0000006F (0xc0000020,0x00000000,0x00000000,0x00000000)"
    I've shut down the computer, tried to restart whilst pressing F8, restarted in Mac OS (using the option key), removed the partition and tried to reinstall 8 or so times. I've never gotten past this above screen.
    Does anyone have any useful advice? If disabling BIOS or caching/shadowing might help, what does that mean and how do I do it?

    The answer has everything to do with an incompatibility between the Mac optical drive and Boot Camp. It is a problem that has existed since the Beta release of Boot Camp - one wonders why it has not been corrected prior to the Leopard release, but who am I to second guess the superior product that is Mac Book. The answer thread may be contained in older threads on this web site. I found the answer at:
    http://forums.macosxhints.com/showthread.php?t=66323&highlight=session3initializationfailed
    Basically, my MacBook (which was bought in August of 2006) does nto properly read the Windows XPSP2 installation disk. Te solution, simple bt scary, is to burn a copy of the windows disk to a copy disk using the Mac. Instructions for making a copy are at:
    "Go to this link for instructions on how to make a copy of a disk and print it out.
    http://docs.info.apple.com/article.h...n/duh1945.html
    Anyway, once I made that copy everything worked fine. That's scary.
    Now that windows is running, I can't get wireless access from Windows. Also, i guess I need to get antivirus software. But I can connect to the computer network at work (the whole point of this ridiculous exercise).
    Computers are supposed to make life more easy, in reality I think they just allow us to use computers more. After this experience I've realized that the apple v. microsoft war is simply Coke v. Pepsi.

  • Re: Satellite A300 PSAGCA -02Y010 - Error: Webcam driver open failed

    Problem:
    Recieve error every time I try to use Camera Assistance Software for Toshiba: Webcam driver open failed. Please restart camera or computer. Web cam also does not work in Skype. It seems that this is a very common problem with the A300s series, yet there is no clear solution out there.
    Hardware
    Series: A300
    Model: PSAGCA -02Y010
    Software
    Operating System: Windows 7 64-bit
    Camera Assistant Software for Toshiba: 1.7.175.0123
    Details
    I recently did a clean install of Windows 7, updating from Windows Vista. I never used the web cam on Windows Vista, so I can't testify as to whether the web camera was workin correctly or not. However, when I tried to use it with Skype, it did not work. I reinstalled the driver that I backed up before I installed the new operating system, but it did not work. The web cam doesn't show up at all in Device Manager - even when set to display hidden devices. Trying to add new hardware through the control panel fails to detect the web camera at all. I have restarted after every install/repair of the driver.
    Steps Taken
    Reinstalled backuped drivers
    I used third party software (Double Driver) to back up and reinstall the drivers for the web camera after I installed Windows 7. Double Driver claimed there was no device to install the driver for. I manually copied the files into the Camera Assistance folder and overwrote the existing ones. The files I copied were:
    casflr.cat
    oem34.inf
    restore.ini
    UVCFTR_S.SYS
    Reinstalled Drivers from Toshiba Website
    Extensive goolging has only turned up recommendations to uninstall and reinstall drivers. I was unable to find any drivers specifically for windows 7 64-bit, but I did try those for my model of laptop for Windows Vista 64-bit - no luck. I tried installing Camera Assistance Software for Toshiba, which as far as I can tell, includes the driver - it only gives me the error described above.
    I also tried locating a generic Windows 7 driver for the web camera - I was unable to find one.
    Check Registry Value Is Correct
    I have also tried checked the registry value at HKEY_LOCAL_MACHINE/System/ControlSet001/Enum/USB/SN001/ClassUID matches the value in C:\Program Files (x86)\Camera Assistant Software for Toshiba\driver\64bit\casflr.inf as and C:\Program Files (x86)\Camera Assistant Software for Toshiba\driver\32bit\casflr.inf recommended by some article recommend.
    Please, I would really appreciate it if anyone could help me out here. I have exhausted all the options I can think of.
    Likely Solution:
    I encountered a thread post that suggested a loose wire was responsible and that the camera would work when the lid was almost closed. I tried this and the camera suddenly appeared in device manager. However, I still can't get it to work with Camera Assistant Software or Skype.
    Message was edited by: A300Owner

    Hi - I'm a newbie to this forum.
    I have an A300 Satellite Pro - not even 2 years old.
    In the last 2 days I have 2 problems that I think are possibly related.
    1. Like others on here I now cannot get my internal webcam to work. I get the 'webcam driver open failed' message. I have read some forums etc and today I have:
    a) loaded most recent BIOS,
    b) reloaded the webcam software drivers (the most recent seems to be from 2008!)
    c) restarted my laptop about 20 times
    Nothing works
    2. In the last 2 days for the first time I keep getting the 'USB device not recognised' message that annoyingly crops up about every 10 seconds. I am assuming that the webcam is connected to a USB port (internal) and is no longer being recognised. Based on Google advice in various forums I have also:
    1) Turned off the AC power supply
    2.) Taken out the laptop battery and waited 5 mins - this apparently resets the BIOS
    3) tried using device manager in various ways
    Nothing bloody works!!
    Maybe the hardware is damaged but I doubt it - I have not dropped the laptop, I always pack it carefully in a padded rucksack. It has always worked fine until 2 days ago.
    Ashbo (very fed up)

  • [Solved] Pacman errors: "call to execv failed", system not booting

    Recent upgrade (yesterday) - problems went like this:
    1) pacman -Syu attempted "filesystem" upgrade and threw errors about some directories in /usr/local being 775 not 755.
    2) that was because I had a non-standard package in there. I changed just those relevant directories to 755.
    3) reattempted pacman -Syu but got a bunch of errors: "call to execv failed"
    4) system was immediately borked. Reboot now throws me into a shell.
    This is a 32 bit system.
    Any ideas and help would be greatly appreciated.
    Last edited by lagagnon (2013-01-30 19:10:24)

    Solved my problem with the following method:
    1) used Arch LiveCD. Mounted boot and / partitions
    2) pacman -r /path/to/root -Syyu glibc filesystem
    3) reboot gave "Unable to find root device error"
    4) ran LiveCD again following these instructions: https://wiki.archlinux.org/index.php/Pa … onger_boot

  • Opmnctl fails to start with error:  "Main: Nls Initialization Failed!!"

    Hi. Just thought I would add this here since someone else will probably hit this error when attempting to start opmnctl: "Main: Nls Initialization Failed!!" when using 10g App Server on Windows.
    There is a known workaround, which is to avoid libociei.so, but I don't have that object on windows, so I found that I have some conflict with other installed programs on this server. I removed them from the path, even the end of the path, opened a new command window, then, opmn started with no problem.
    Probably not a long term solution, but if you are working on a dev server, like I am, you probably have a bunch of stuff installed that is no longer used ;)
    Hope this helps someone,
    Robin

    Actually, I would first check on metalink to see if there is anything that can help with this error message. I resolved it by cleaning up the environment, but you probably need to keep your existing environment the way it is, since you have already installed.
    Sorry--I didn't read through your question very well the first time.
    --robin                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • ERROR: "Dynamic Reference Initialization failed"

    Howdy!I am trying to build an outline on the "Client" side of the App Manager. Ever time I try to run a load rule to build portions of the ouitline, I get the error in the subject of this message. Is the "Client" portion of App Manager limited in functionality?Please advise.Thank you very much!JR

    Thanks for responding! I was only trying to use the Load Rules to build the dimensions, not load any data. They must be the same mechanism. They should not allow you to build load rules locally if they can't be executed.Thanks again!JR

  • Synchronization Failed. Error is Firefox service initialization failed.

    Synchronization Failed. Error is Firefox service initialization failed.
    Synchronization Failed. Error is Firefox service initialization failed.<br />
    I have been having this issue for quite some time with Firefox. I am using the Nightly build (23.0a1) and have been using for more than 2 years. Synchronization was working fine till a few weeks ago. Synchronization of XMarks on Chrome Dev works fine and no problem. It's only with Firefox. Things I've tried but no success:
    1) I deleted my profile off of xmarks and created a new one and tried syncing again. No success.<br />
    2) deleted firefox, deleted the profile folder under AppData. Reinstalled everything fresh, and still no success.<br />
    My log file shows the following... Not sure what to check. Anyone help me? Thanks!
    <pre><nowiki>[2013-04-06 08:54:19] Failed to initialize ["lmsvc", "@mozilla.org/browser/livemark-service;2", (void 0)]: error is ({})
    [2013-04-06 08:54:19] Host browser is FF14+, use private DB
    [2013-04-06 08:54:19] Created nid_map table
    [2013-04-06 08:55:12] Starting modal auth(true, undefined)
    [2013-04-06 08:55:19] Could not load login iframe: {}
    [2013-04-06 08:55:31] Finished modal auth with result 0
    [2013-04-06 08:55:31] Entered OnTransitionPageShow()
    [2013-04-06 08:55:31] ------ Xmarks/4.1.3 (/Places) starting status with sync.xmarks.com ------
    [2013-04-06 08:55:31] Failed to initialize ["lmsvc", "@mozilla.org/browser/livemark-service;2", (void 0)]: error is ({})
    [2013-04-06 08:55:31] Host browser is FF14+, use private DB
    [2013-04-06 08:55:31] Entered Status...
    [2013-04-06 08:55:31] >>> POST http://sync.xmarks.com/sync/bookmarks...
    [2013-04-06 08:55:31] >>> Body is: {}
    [2013-04-06 08:55:32] >>> Callback ({username:"dmadapps", status:0, toprev:1, isreset:true})
    [2013-04-06 08:55:32] Success: Account verified.
    [2013-04-06 08:55:32] gCanSyncPasswords is true
    [2013-04-06 08:55:32] ------ Xmarks/4.1.3 (/Places) starting getProfileNames with login.xmarks.com ------
    [2013-04-06 08:55:32] >>> POST http://login.xmarks.com/user/profiles...
    [2013-04-06 08:55:32] >>> Body is: {"log":{"mid":"hf6uh7gn","serp":0,"ssEnabled":false,"sbsEnabled":true}}
    [2013-04-06 08:55:32] >>> Callback ({status:0, profiles:{}})
    [2013-04-06 08:55:32] Success: Operation successful
    [2013-04-06 08:55:32] Calling wizard.advance()
    [2013-04-06 08:55:40] ------ Xmarks/4.1.3 (/Places) starting initial sync with sync.xmarks.com ------
    [2013-04-06 08:55:40] Failed to initialize ["lmsvc", "@mozilla.org/browser/livemark-service;2", (void 0)]: error is ({})
    [2013-04-06 08:55:40] Host browser is FF14+, use private DB
    [2013-04-06 08:55:40] Entered Status...
    [2013-04-06 08:55:40] >>> POST http://sync.xmarks.com/sync/bookmarks...
    [2013-04-06 08:55:40] >>> Body is: {}
    [2013-04-06 08:55:41] >>> Callback ({username:"dmadapps", status:0, toprev:1, isreset:true})
    [2013-04-06 08:55:41] Returned error: Firefox service initialization failed(6)
    [2013-04-06 08:55:41] Will retry at Sat Apr 06 2013 09:10:44 GMT-0500 (Central Standard Time)</nowiki></pre>

    Re Patrick's suggestion above, I was able to get Xmarks working again on both my Win 7 laptop and desktop today by uninstalling my Aurora browser completely and then installing the regular release version of Firefox, 20.0.1.
    When I uninstalled Aurora, it asked me if I wanted to keep my customizations and personal data, and even though it meant a bit more restoration work later, I decided to try erasing all my Aurora settings and data and starting fresh. (But before doing so, I backed up all my bookmarks by exporting to an html file and my add-on settings via Firefox Sync.
    After that, I installed and started with a clean slate version of regular Firefox, and proceeded to then reinstall my various add-ons and import my saved bookmarks from the html file. As soon as I re-installed Xmarks and re-logged into my Xmarks account, the automatic syncing process went fine and no more error messages or failures.
    I had been using Aurora for months prior with Xmarks and never had any syncing problem until the first week of April. And at that point, the syncing function broke on both my laptop and desktop, which were both running the daily updated versions of Aurora. So I'm believing that something was changed in Aurora that caused this problem.

  • Asset Selector initialization failed error when trying to create new site

    Hi,
    I'm trying to create a new site in using the Site Administration functionality in ATG 10, and I get the UI error 'Asset Selector initialization failed, after selecting to Create a new site. In the log, I have the following error:
    2012-05-29 16:12:10,400 ERROR [nucleusNamespace.atg.remote.assetmanager.browse.service.BrowseService] (http-0.0.0.0-8180-2)
    CAUGHT AT:
    CONTAINER:atg.remote.assetmanager.browse.service.BrowseException; SOURCE:atg.repository.RepositoryException: No property named "null" could be found in the item descriptor "siteTemplate".
         at atg.remote.assetmanager.browse.service.RQLRetriever.retrieveItems(RQLRetriever.java:125)
         at atg.remote.assetmanager.browse.service.BrowseManager.getListMembers(BrowseManager.java:608)
         at atg.remote.assetmanager.browse.service.BrowseManager.getChildrenPage(BrowseManager.java:381)
         at atg.remote.assetmanager.browse.service.BrowseService.getChildren(BrowseService.java:583)
         at atg.remote.assetmanager.browse.service.BrowseService.getBrowseNavStateForContext(BrowseService.java:509)
         at atg.remote.assetmanager.browse.service.BrowseService.initialize(BrowseService.java:179)
         at atg.remote.assetmanager.browse.service.BrowseManager.getAssetNavigatorState(BrowseManager.java:1247)
         at atg.remote.assetmanager.browse.service.BrowseManager.getAssetNavigatorState(BrowseManager.java:81)
         at atg.remote.assetmanager.selector.service.AssetSelectorService.getAssetNavigatorState(AssetSelectorService.java:170)
         at atg.remote.assetmanager.selector.service.AssetSelectorService.loadAssetNavigatorStates(AssetSelectorService.java:222)
         at atg.remote.assetmanager.selector.service.AssetSelectorService.initializeAssetSelector(AssetSelectorService.java:355)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at flex.messaging.services.remoting.adapters.JavaAdapter.invoke(JavaAdapter.java:421)
         at atg.flex.messaging.services.TransactionalJavaAdapter.invoke(TransactionalJavaAdapter.java:140)
         at flex.messaging.services.RemotingService.serviceMessage(RemotingService.java:183)
         at flex.messaging.MessageBroker.routeMessageToService(MessageBroker.java:1503)
         at flex.messaging.endpoints.AbstractEndpoint.serviceMessage(AbstractEndpoint.java:884)
         at flex.messaging.endpoints.amf.MessageBrokerFilter.invoke(MessageBrokerFilter.java:121)
         at flex.messaging.endpoints.amf.LegacyFilter.invoke(LegacyFilter.java:158)
         at flex.messaging.endpoints.amf.SessionFilter.invoke(SessionFilter.java:44)
         at flex.messaging.endpoints.amf.BatchProcessFilter.invoke(BatchProcessFilter.java:67)
         at flex.messaging.endpoints.amf.SerializationFilter.invoke(SerializationFilter.java:146)
         at flex.messaging.endpoints.BaseHTTPEndpoint.service(BaseHTTPEndpoint.java:278)
         at flex.messaging.MessageBrokerServlet.service(MessageBrokerServlet.java:322)
    Caused by: atg.repository.RepositoryException: No property named "null" could be found in the item descriptor "siteTemplate".
         at atg.adapter.gsa.GSAItemDescriptor.executeSingleQuery(GSAItemDescriptor.java:8975)
         at atg.adapter.gsa.GSAItemDescriptor.executeQuery(GSAItemDescriptor.java:8846)
         at atg.adapter.gsa.GSAItemDescriptor.executeQuery(GSAItemDescriptor.java:7765)
         at atg.adapter.gsa.GSAView.executeUncachedQuery(GSAView.java:338)
         at atg.repository.query.QueryCache.executeUncachedQuery(QueryCache.java:693)
         at atg.repository.query.QueryCache.populateEntry(QueryCache.java:912)
         at atg.repository.query.QueryCache.executeCachedQuery(QueryCache.java:433)
         at atg.repository.RepositoryViewImpl.executeQuery(RepositoryViewImpl.java:344)
         at atg.adapter.gsa.GSAView.executeQuery(GSAView.java:285)
         at atg.remote.assetmanager.browse.service.RQLRetriever.retrieveItems(RQLRetriever.java:118)
         ... 112 more
    SOURCE EXCEPTION:
    atg.repository.RepositoryException: No property named "null" could be found in the item descriptor "siteTemplate".
         at atg.adapter.gsa.GSAItemDescriptor.executeSingleQuery(GSAItemDescriptor.java:8975)
         at atg.adapter.gsa.GSAItemDescriptor.executeQuery(GSAItemDescriptor.java:8846)
         at atg.adapter.gsa.GSAItemDescriptor.executeQuery(GSAItemDescriptor.java:7765)
         at atg.adapter.gsa.GSAView.executeUncachedQuery(GSAView.java:338)
         at atg.repository.query.QueryCache.executeUncachedQuery(QueryCache.java:693)
         at atg.repository.query.QueryCache.populateEntry(QueryCache.java:912)
         at atg.repository.query.QueryCache.executeCachedQuery(QueryCache.java:433)
         at atg.repository.RepositoryViewImpl.executeQuery(RepositoryViewImpl.java:344)
         at atg.adapter.gsa.GSAView.executeQuery(GSAView.java:285)
         at atg.remote.assetmanager.browse.service.RQLRetriever.retrieveItems(RQLRetriever.java:118)
    Has anyone encountered this issue before?

    Are you running both SiteAdmin and SiteAdmin.Versioned on your publishing server?
    Also have you done any customization in SiteRepository?
    Try getting merged XML for /atg/multisite/SiteRepository through Dyn Admin Component browser and make sure it comes up nicely for both production and publishing servers

  • Problem installing Creative Cloud programs Exit code 7.  ERROR: updating driver failed

    I am trying to install Creative Cloud programs, have managed to  download and install Dreamweaver and Photoshop but when trying to install Fireworks and other programs I get the error message Exit code 7 : Error: updating driver data failed.  Driver entry not added.
    I am using a Dell 5010 running Windows 7.
    Please help!

    See the following help document:
    "Exit Code: 6," "Exit Code: 7" Installation Errors -
    http://helpx.adobe.com/creative-suite/kb/errors-exit-code-6-exit.html

  • Satellite A300 - Constant "Webcam Driver Open Fail" Error

    I have searched and searched for solutions to this problem and feel like I have tried everything. Whenever I turn my laptop on or attempt to start my webcam I get the error "Webcam driver open fail. Please restart camera or computer."
    I used to be able to use the webcam with no problems but it just stopped working one day. I've recently reformatted my operating drive to the out-of-the-box state, but it is still showing an error whenever I try to use my webcam. I'm running Windows Vista Home Premium on an A300 Model: PSA-GCA. I have also tried updating the webcam driver (and the latest BIOS update) from Toshiba's support section, but with no luck. I've also tried using the XP webcam driver, but still, no luck.
    Any idea on how to fix this problem?
    Message was edited by: Replicant
    I also forgot to mention that in my Device Manager, I cannot see my Chicony Webcam at all. There is no section for imaging devices present at all.

    Hi
    If you search here in the forum you will find enough threads about this issue but I have founded an interesting thread with a good posting from the user Akuma and mayb its useful for you:
    http://forums.computers.toshiba-europe.com/forums/thread.jspa?messageID=136549
    If it doesnt work I think you need help from an authorized service provider. The technicians can check your notebook and repair it ifs necessary.
    Good luck!

  • SAPGUI DLL Initialization failed - check installation

    Hello.
    We have Citrix Metaframe Servers that hold SAP GUI 620.
    Lately we added new Citrix Servers and installed SAP GUI 620 on them.
    We use roaming profile.
    We have encountered a mysterious problem:
    Users that login to "New" Citrix Servers and have NTUSER.DAT (in their profile) that does not contain any SAP Keys and open SAP GUI 620 - Receive the following error:
    " SAPGUI DLL Initialization failed - check installation "
    The point is that it matters to the SAP on the "new" servers if the user have SAP key in the registry.
    So in situations when a user logs in for the first time to a Citrix server that does not have SAP installed - he gets NTUSER.DAT that dows not hold SAP key. If he then tries to login to a new Citrix server and opens SAP GUI - he receives the error.
    Has anyone ever encountered this matter? or even this Error ?
    Thx,
    Edward

    First of all i appreciate the response and the solution.
    The Flex Profile sounds very good , however, i'd rather solve the problem rather than bypass it or install new profile features.
    I have new servers and old servers.
    The SAP on the old servers doesn't care if a user has the SAP key in the NTUSER.DAT (HKCU).
    Only the SAP on the new servers produce this error - and only if the user has NTUSER.DAT that doesn't have SAP key in it.
    We compared the HKLM> SOFTWARE-> SAP between the old and new - they are identical.
    Any more ideas ?

  • Initialization failed

    Hi,
    I'm struggling with a problem to connect from the EMC to the server where Exchange is installed.
    I'm trying to "Add Exchange Forest..." but every time the error message is
    "Initialization failed
    The following error occurred while attempting to connect to the specified Exchange server "servername":
    Due to potential compatibility problems, can't connect to version 14.3.82.2 server using version 14.3.123.4. To resolve this issue, please remove this sub-node from the console tree and add it again specifying a server with a matching version."
    The funny thing is when other colleagues connect to this server and add the exchange forest it's working.
    I've tried to clear the MMC cache from C:\Users\%username%\AppData\Roaming\Microsoft\MMC
    I've removed the NodeStructureSettings from HKCU\Software\Microsoft\Exchangeserver\v14\AdminTools\NodeStructureSettings
    I've installed the feature WINRM ISS Extension
    Port 5985 is enabled
    IISReset tried in Powershell
    WWW service restarted 
    It can't be the version that's the problem because other colleagues are also connecting to the same server with ADM accounts with the same rights as me. On the server themselve I want to connect I have the correct rights and I can access the console from
    that server.
    My admin account has rights for Organization Management.
    Is there somebody that have any idea how I can solve this issue because I think i'm a bit desperate now.

    OCX registration does not allow more than one version, ocx is a product tied to a single clsid
    the latest registration will remove any previous link
    It is simply not a use case (any) OCX supports

  • Updating driver data failed. Driver entry was notadded.

    Hi, I have installed successfully all the adobe CC 2014 applications. But now the Creative Cloud is telling me I have updates and when I try to install those it gives me an error: "Updating driver data failed. Driver entry was notadded. ARP estimated size 199414KB". Could somebody explain to me what's going on and how to fix this? Thanks!

    That sounds like a database entry failure. Short of nuking the relevant *.db files, running the cleaner tool and starting over this usually is not possible to fix and there is no way to find out what caused it in the first place...
    Sign in, activation, or connection errors | CS5.5 and later
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Mylenium

Maybe you are looking for

  • How can I return to the same position in the calling order details form

    I am Calling a form for creating a new item from order details form, so after creating The new item I want to returned the item code to the calling form to same position in The order details form , how can I return to the same position in the order d

  • Keep javadoc comments in class files

    Hi there, is there a way to keep javadoc comments in classfiles? Reason: Not any company can spread the source for their algorithms, but as customer requests grow to use it with eclipse, code completion and javadoc, there is a need for such "feature"

  • Received response from host (router IP address) with invalid source port 32784

    I replaced my old wireless router with a Cisco Linksys E4200, running firmware version 1.0.02 build 13  May 24, 2011.  About once a minute the router sends an unsolicited DNS message to the IPV4 multicast address 01:00:5e:00:00:fb with a destination

  • G/L accouont in XL report

    Hi, I have made some G/L account as confidential in COA which are accessible for certain users only. Lets say User 1 can access all the account User 2 cannot access confidential account. This works fine but when User 2 try to access this account in X

  • Where can I download Adobe AIR 2.6?

    Hi folks, I'm looking to download Adobe AIR 2.6 so that I can support 3rd generation ipod devices. Where can I find this version? Regards, Rajesh