Error occurred saving the cache

I'm creating an AIR application using the Model Driven Development tools and hoping to make use of the offline cache. The generated value objects and services are working well when connected but I have been unable to get the cache working.
Currently I am generating custom offline adaptors for each of my Model entities and assigning them to the offlineAdapter property of each data service as follows:
  _terminalService.serviceControl.autoCommit=false;
  _terminalService.serviceControl.autoConnect=true;
  _terminalService.serviceControl.fallBackToLocalFill=true;
  _terminalService.serviceControl.autoSaveCache=true;
  _terminalService.serviceControl.autoMerge=true;
  _terminalService.serviceControl.autoSyncEnabled=true;
  _terminalService.serviceControl.encryptLocalCache=false;
  _terminalService.serviceControl.offlineAdapter=new TerminalOfflineAdapter();
  _terminalService.serviceControl.cacheID="ss-sclient-39";
When I run my application it works as anticipated but I am seeing the following error in the console log:
7/27/2010 12:21:25.677 [DEBUG] mx.data.DataStore Saving cached query: store id: ["getByMacAddress","001CC4313675"] lastWritten: Tue Jul 27 12:21:25 GMT+0100 2010 lastAccessed: Tue Jul 27 12:21:25 GMT+0100 2010 created: Tue Jul 27 12:21:25 GMT+0100 2010 metadata: (null) type: 1 referenced ids: ["common.Terminal:#:13"]
7/27/2010 12:21:25.677 [DEBUG] mx.data.LSODataStore dbStore lock released: 965366152
7/27/2010 12:21:25.677 [ERROR] mx.data.DataStore Error occurred saving the cache: TypeError: Error #1009: Cannot access a property or method of a null object reference. stack: TypeError: Error #1009: Cannot access a property or method of a null object reference.
     at mx.data.offline::EntityManager/save()[C:\depot\DataServices\trunk\frameworks\projects\airfds\src\mx\data\offline\EntityManager.as:104]
     at mx.data.offline::EntityManager/update()[C:\depot\DataServices\trunk\frameworks\projects\airfds\src\mx\data\offline\EntityManager.as:345]
     at mx.data::SQLiteOfflineAdapter/updateOfflineItems()[C:\depot\DataServices\trunk\frameworks\projects\airfds\src\mx\data\SQLiteOfflineAdapter.as:120]
     at mx.data::DataStore/persistCacheItems()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\DataStore.as:4543]
     at mx.data::DataStore/persistDataService()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\DataStore.as:4679]
     at mx.data::DataStore/doSaveCache()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\DataStore.as:3755]
     at Function/()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\DataStore.as:3711]
     at mx.data::DataStore/http://www.adobe.com/2006/flex/mx/internal::saveCache()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\DataStore.as:3727]
     at mx.data::DataList/http://www.adobe.com/2006/flex/mx/internal::processSequenceResult()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\DataList.as:3063]
     at mx.data::DataListRequestResponder/result()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\DataListRequestResponder.as:103]
     at mx.rpc::AsyncRequest/acknowledge()[E:\dev\4.x\frameworks\projects\rpc\src\mx\rpc\AsyncRequest.as:84]
     at NetConnectionMessageResponder/resultHandler()[E:\dev\4.x\frameworks\projects\rpc\src\mx\messaging\channels\NetConnectionChannel.as:547]
If I then disconnect from the server and attempt to run my client again I get the following error:
7/27/2010 12:27:46.548 [DEBUG] mx.data.DataService.common.Terminal DataService.fill() called for destination: common.Terminal with args: ["getByMacAddress","001CC4313675"] includesProperties: (include default - excludes: [])
7/27/2010 12:27:46.548 [INFO] mx.messaging.Producer 'ds-producer-common.Terminal' producer sending message 'EF832901-F3A4-7AE3-EF12-13A8897408CC'
TypeError: Error #1009: Cannot access a property or method of a null object reference.
     at mx.data.offline::EntityManager/executeSelectQuery()[C:\depot\DataServices\trunk\frameworks\projects\airfds\src\mx\data\offline\EntityManager.as:446]
     at mx.data.offline::EntityManager/executeQuery()[C:\depot\DataServices\trunk\frameworks\projects\airfds\src\mx\data\offline\EntityManager.as:432]
     at mx.data::SQLiteOfflineAdapter/internalExecuteOfflineQuery()[C:\depot\DataServices\trunk\frameworks\projects\airfds\src\mx\data\SQLiteOfflineAdapter.as:318]
     at mx.data::SQLiteOfflineAdapter/executeOfflineQuery()[C:\depot\DataServices\trunk\frameworks\projects\airfds\src\mx\data\SQLiteOfflineAdapter.as:202]
     at Function/()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\DataStore.as:1651]
     at mx.data::DataStore/http://www.adobe.com/2006/flex/mx/internal::fill()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\DataStore.as:1765]
     at mx.data::ConcreteDataService/internalFill()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\ConcreteDataService.as:7235]
     at Function/()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\ConcreteDataService.as:1317]
     at mx.data::ConcreteDataService/fill()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\ConcreteDataService.as:1336]
     at mx.data::DataManager/fill()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\DataManager.as:1560]
     at _Super_TerminalService/getByMacAddress()[C:\Documents and Settings\benp.NB\My Documents\src\qms\workspace\CommonClient\src\common\model\_Super_TerminalService.as:226]
     at airclient.application::AirClientImpl/initialiseTerminalDetails()[C:\Documents and Settings\benp.NB\My Documents\src\qms\workspace\AirClient\src\airclient\application\AirClientImpl.as:146]
     at Function/()[C:\Documents and Settings\benp.NB\My Documents\src\qms\workspace\AirClient\src\airclient\application\AirClientImpl.as:268]
     at mx.collections::ItemResponder/result()[E:\dev\4.x\frameworks\projects\framework\src\mx\collections\ItemResponder.as:129]
     at mx.rpc::AsyncToken/http://www.adobe.com/2006/flex/mx/internal::applyResult()[E:\dev\4.x\frameworks\projects\rpc\src\mx\rpc\AsyncToken.as:239]
     at mx.rpc.events::ResultEvent/http://www.adobe.com/2006/flex/mx/internal::callTokenResponders()[E:\dev\4.x\frameworks\projects\rpc\src\mx\rpc\events\ResultEvent.as:207]
     at mx.data::ConcreteDataService/http://www.adobe.com/2006/flex/mx/internal::dispatchResultEvent()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\ConcreteDataService.as:3427]
     at Function/http://adobe.com/AS3/2006/builtin::apply()
     at mx.rpc::AsyncDispatcher/timerEventHandler()[E:\dev\4.x\frameworks\projects\rpc\src\mx\rpc\AsyncDispatcher.as:50]
     at flash.utils::Timer/_timerDispatch()
     at flash.utils::Timer/tick()
I'm slightly confused by the fact that the offline adaptors are derived from SQLiteOfflineAdapter and are being run within an AIR application but I am still seeing references to the LSODataStore in the logs (which I thought was only used for Flash applications). Also if I attempt to set encryptLocalCache to true I get the following error:
7/27/2010 12:32:10.409 [DEBUG] mx.data.DataStore Adding data service: common.Terminal to the data store: my-rtmp:true initialized: false
Error: Encryption is not supported for local shared objects.
     at mx.data::LSODatabase/set encryptLocalCache()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\LSODatabase.as:149]
     at mx.data::DataStore/set encryptLocalCache()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\DataStore.as:391]
     at mx.data::ConcreteDataService/set encryptLocalCache()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\ConcreteDataService.as:227]
     at mx.data::DataManager/set encryptLocalCache()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\DataManager.as:392]
     at airclient.application::AirServiceFactory/configureService()[C:\Documents and Settings\benp.NB\My Documents\src\qms\workspace\AirClient\src\airclient\application\AirServiceFactory.as:236]
Does anyone know what's going on here?
Thanks!

Ah, thanks! That certainly solves the LSO issue - I've changed to linking with airfds.swc and I'm now seeing lots of healthy looking SQLDBCache output in the logs when I run the application with a connection. Unfortunately if I then stop the server and run the application again I'm still seeing a problem. The app does load some data from the cache (I have several services) but then stops with the following error before it can load everything:
7/27/2010 15:43:46.929 [DEBUG] mx.data.SQLDBCache SQLDBCache - getCollection(_common.Customer_ic) creating new collection
7/27/2010 15:43:46.929 [DEBUG] mx.data.SQLDBCache SQLDBCache - before load data - create table if not exists: CREATE TABLE IF NOT EXISTS [_common_Customer_ic] (id VARCHAR PRIMARY KEY, data BLOB);
7/27/2010 15:43:46.960 [DEBUG] mx.data.SQLDBCache SQLDBCache - after load data - create table if not exists
7/27/2010 15:43:46.960 [DEBUG] mx.data.SQLDBCache SQLDBCache - before select: SELECT id,data FROM [_common_Customer_ic]
TypeError: Error #1009: Cannot access a property or method of a null object reference.
     at mx.data::DataStore/restoreReferencedIds()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\DataStore.as:4766]
     at mx.data::DataStore/restoreReferencedItems()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\DataStore.as:4736]
     at mx.data::DataStore/restoreAssociations()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\DataStore.as:4880]
     at mx.data::DataStore/restoreReferencedItems()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\DataStore.as:4759]
     at Function/()[C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\DataStore.as:1742]
     at mx.rpc::Responder/result()[E:\dev\4.x\frameworks\projects\rpc\src\mx\rpc\Responder.as:56]
     at mx.rpc::AsyncToken/http://www.adobe.com/2006/flex/mx/internal::applyResult()[E:\dev\4.x\frameworks\projects\rpc\src\mx\rpc\AsyncToken.as:239]
     at mx.rpc.events::ResultEvent/http://www.adobe.com/2006/flex/mx/internal::callTokenResponders()[E:\dev\4.x\frameworks\projects\rpc\src\mx\rpc\events\ResultEvent.as:207]
     at Function/http://adobe.com/AS3/2006/builtin::apply()
     at mx.rpc::AsyncDispatcher/timerEventHandler()[E:\dev\4.x\frameworks\projects\rpc\src\mx\rpc\AsyncDispatcher.as:50]
     at flash.utils::Timer/_timerDispatch()
     at flash.utils::Timer/tick()
In both connected and disconnected operation there is no user input, so the sequence of queries should be identical. Each service I use is configured identically except that they each use their own automatically-generated OfflineAdaptor. Any suggestions?
Many thanks

Similar Messages

  • "An error occured saving the ActiveX control"

    I pulled up an old LabVIEW program today
    that I used to work on under Win-NT.
    Now I use Win-XP.
    We're talking about LabVIEW 5.1.1 on this program.
    The program suddenly throws
    "An error occured saving the ActiveX control"
    when I try to save the program.
    Never saw this under NT.
    Anybody knows what this is about ?
    Martin

    Thanks for posting but we need more information.
    Do you have activeX controls in the VI? Are you using 3d graphs? Does the VI run on XP? What version of LabVIEW do you have?

  • "an error occurred saving the activex control"

    I'm trying to compile an executable in Labview 5.1. When I run the build app, it gets about half way done then pops up the error:
    "an error occurred saving the activex control"
    After clearing the error message, it proceeds to go through the motions of compling the app, but no exe is generated.
    The design mode progam run operates fine, and it saves fine as well in design mode.
    Thanks!

    wawatts,
    Though Brian and I got a broken arrow because we didn't have the necessary ActiveX component installed, I imagine you get no errors on the development system because you do have the component.
    This problem would be much harder to pin down on your side given the lack of development-environment errors and the sprawling design of the main VI. One possible troubleshooting approach would be the LabVIEW Find functionality (Edit >> Find). ActiveX functionality typically involves the use of Property Nodes and Invoke Nodes, so if you search for any Invoke Nodes (Select Object, then Functions >> Communication >> ActiveX >> Invoke Node) in the scope of your main VI and its subVIs, you could perhaps have turned up some hits that take you to the subVI that has the control that is presumably causing the problem.
    Unfortunately, I fear that finding the problem area doesn't solve the problem. It seems to me that either the LabVIEW app builder or the ActiveX component is doing something unexpected or nonstandard that is leading to the error message.
    I'm going to stick to my "upgrade the software as much as possible" guns:
    1. Install the LabVIEW 5.1.1 patch I linked to above, if it isn't already installed. There were fixes to the development environment and changes to the app builder that might resolve your problem. This is a free patch.
    2. Consider upgrading the ActiveX control. I think that the latest version is called IntuiLink for 54600-series Oscilloscopes, Version 3.1, and it's available here on the Agilent site.
    It was easy to do a simple test using your Xezgetsetup.vi on my system (LabVIEW 7.1.1, XP) with the updated ActiveX control. First, I installed the Agilent software. Then, I right-clicked inside the ActiveX control on the front panel of Xezgetsetup.vi, chose Insert ActiveX Object, and selected Agilent 54600 Scope Control from the list. Then I had to go to the block diagram and relink a few of the property and invoke nodes by just left-clicking on broken nodes and re-selecting the items that your code was already displaying. That fixed the VI so that it would run again.
    Then I built that VI into an EXE and got no errors.
    Perhaps all this proves is that you would have clear sailing if you upgraded to LabVIEW 7.1 and got the most recent Agilent ActiveX control--and maybe this is a good reason to bite the bullet and do that upgrade now--but it's certainly possible that you can do the same thing in 5.1 and solve your problem. Worth a shot.
    Hope that helps,
    John

  • An error occurred saving the images to the chosen file location

    I am trying to save the scans from my HP Officejet 6500.  I receive the following error message:
    An error occurred saving the images to the chosen file location.
    I have Win 7.
    I can scan and save if I choose to use the picture option but I can't use the feeder with the picture option.  It is only good if I have 1 page.

    I received this exact same message:
    an error occurred saving the images to the chosen file location.
    8,[(8,106,0)]
    I have not had the time to verify this, but I suspect the security settings on any other location you specify are not the same as those of the default.  i.e. C:\Users\%Username%\Documents\My Scans
    When I used the default location and base name the software provided, it worked.
    My guess is Microsoft and/or HP may have changed the security permissions for something in the path folders and the Scanning Software is therefore not permitted to write into the location you entered.

  • An error occurred in the core cache

    Hi All
    <b>I have posted this Message almost 3 to 4 time , but no one has replied , as they have never come across the problem, if this is the case , we shud take those ases first. pls help !!!!</b>
    Case : ISA B2C CRM
    Deploying through SDM
    I have created New Custom B2C as per Extension Template
    Action
    Business Object Manager
    Business Object
    Backend Interface
    Backend Object
    Created Entries in bom-config.xml & backendobject-config.xml as well
    Classes are as per Extension.
    My Modified Application was working Fine ==> It has passed all layers & retriving DATA from CRM & Displaying on Custom JSP.
    Now what is the intresting point i am facing is the EAR which has been deployed successfully & Running before Server Restart is only Working.
    , when i Create new EAR ( with Same context node) & deploy , after launching that Application this Errors Come( yes i have undeployed the Working EAR as the context node is same)
    500 Internal Server Error
    SAP J2EE Engine/6.40
    Application error occurred during request processing.
    Details: Error [com.sap.engine.services.servlets_jsp.server.exceptions.WebServletException:
    Error while servlet [action] is initialized with a run-as identity.],
    with root cause [java.security.PrivilegedActionException: null].
    Exception id: [0002A56BEBF7005700000112000007A400041641E2ED396E]
    Now it the same case with each n every EAR with different contextnode which i create through isa build tool ( but earlier it was not the case though i am following same procedure for creating ear)
    What is going Wrong !!!!!!!!!!!!!.
    Is there is any problem with SDM !!!!.
    When i have gone to Logs isaerror.log
    #1.5#0002A56BEBF7003E00000039000007A400041642BB7830DC#1150375776023#bccom.sapmarkets.isa.core.cache.CacheInitHandler#sap.com/crm.b2c_b2cApp#bccom.sapmarkets.isa.core.cache.CacheInitHandler#J2EE_ADMIN#542##ilggladev04_C4D_4756250#Guest#65318570fc6d11dac2c90002a56bebf7#SAPEngine_Application_Thread[impl:3]_19##0#0#Error#1#/#Plain###[undefined|system.cache.exception] An error occurred in the core cache "region 'XCM_SESSION_SCOPE' already exists in cache"# #1.5#0002A56BEBF7003E0000003A000007A400041642BB7A1624#1150375776132#bccom.sapmarkets.isa.core.cache.CacheInitHandler#sap.com/crm.b2c_b2cApp#bccom.sapmarkets.isa.core.cache.CacheInitHandler#J2EE_ADMIN#542##ilggladev04_C4D_4756250#Guest#65318570fc6d11dac2c90002a56bebf7#SAPEngine_Application_Thread[impl:3]_19##0#0#Error#1#/#Plain###[undefined|system.cache.exception] An error occurred in the core cache "region 'XCM_APP_SCOPE' already exists in cache"# #1.5#0002A56BEBF7003E0000003B000007A400041642BE2515F7#1150375820912#bccom.sapmarkets.isa.core.init.InitializationHanlder.performInitialization#sap.com/crm.b2c_b2cApp#bccom.sapmarkets.isa.core.init.InitializationHanlder.performInitialization#J2EE_ADMIN#542##ilggladev04_C4D_4756250#Guest#65318570fc6d11dac2c90002a56bebf7#SAPEngine_Application_Thread[impl:3]_19##0#0#Error#1#/#Plain###[undefined|system.initFailed] Initalization of com.sapmarkets.isa.core.xcm.init.ExtendedConfigInitHandler failed
    java.lang.StackOverflowError #
    then I have come to Point that there is somthing wrong with Cach Control Configuration .
    with errors as follows
    An error occurred in the core cache "region 'XCM_SESSION_SCOPE' already exists in cache"#
    An error occurred in the core cache "region 'XCM_APP_SCOPE' already exists in cache"#
    Initalization of com.sapmarkets.isa.core.xcm.init.ExtendedConfigInitHandler failed
    I tried to clear the cache through http://localhost:50000/b2c_b2cApp/admin/index.jsp
    but the page comes blank without any links
    Initially this was not the Problem , now how it is Coming !!!! But as far as i know , once our Development Server was Restarted .( not just j2ee Server)
    Now after that whatever new EAR i m building ( locally) is not coming Properly
    Please can u throw some Light on that.
    pls help me , i believe , u all can solve my problem
    Please Reply Soon
    Thanks & Regards
    Ravi Sah

    Hi
         can some body look at this issue .
    I will be very thankful to you all.
    Thanks & regards
    Ravi Sah

  • HP scanning error: "An error has occurred saving the file because it could not be written to..

     HP scanning error: “An error has occurred saving the file because it could not be written to.  Check the properties for the file to make sure it is not read-only.” Dr. Google finds others with this problem.  Some claim that this is caused by an upgrade of Apple OS10 (which I did do).  One claims that HP has a "patch" for this problem. If I try to quit HP scan, it won't quit and freezes my computer. Here's the odd thing.  I have no problem scanning in a colored page from Scientific American either before or after this error (after rebooting each time), but simple black and white documents started just today to give the error message above.

    Thank you for the link however if I understood all of the instructions I would still be reluctant to try this on my own especially from a third unknown party where some of the information may be wrong and/or lost in translation. (Google translation at the end of this comment). The instructions say to uninstall the software.  So if I uninstall the original HP software am I using the original disk to reinstall and then personalize again?What about all of the updates since I originally installed the software? I found the Disk Utility but what is "gatekeeper"And I am using OS X 10.9.1 that is current because I downloaded the latest upgrade.  How would I reinstall it?And at what point do I go to the URL for the software drivers and the patch? This is just not practical for someone who is not proficient in troubleshooting applications.I switched to Apple because I don't want to have to go through this kind of process, take my time to fix the application and potentially mess up my system .  WHy should I have to try to figure out how to retrieve the normal function in this case, of my All-In-One. If it is so simple why can't HP develop the fix and make it available? Unfortunately right now I have to find an alternative to scan some important business documents that are due today. Since I am using an older printer by technology standards even though it is working fine I may be looking for a replacement and HP may no longer be at the top of my list given that the problem appears to affect other HP models. No need to answer my questions,  I'm not going to try this fix based on these instructions. Please HP provide a fix for this problem with the scanner and MAC OS X 10.9.1 compatibility! Translation of the information on the suggested link: We hereby send you a guide that should help you in solving the problem .Please carry the following: 1 Please uninstall the software again .Goto -> Programs - > Hewlett -Packard - > HP Uninstaller 2 Please repair permissions on your Mac .Go -> Utilities -> Disk Utility - > Repair Disk Permissions . 3 Please disable ' gatekeeper ' on your Mac . 4 Reinstall the full software for MAC 10.6 and patch for 10.7 / 10.8 / 10.9. HP Scanjet Software and Drivers for Mac OS X v10.6 features :http://h20566.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/swdDetails/ ? sp4ts.oid = 457 534 & spf_p.tpst = swdMain & spf_p.prp_swdMain = wsrp - navigationalState 3Di % dx % 253D % 257CswItem % 253Dsj_78355_5 % 257CswEnvOID % 253D219 % 257CitemLocale % 253D % 253D % % 257Cs wLang 257Cmode % 253D % 257Caction % 253DdriverDocument & javax.portlet.begCacheTok = com.vignette.cachetoken & javax.portlet.endCacheTok = com.vignette.cachetoken
    Scanjet software patch to Use OS X 10.6 Software and Driver on OS X:http://h20566.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/swdDetails/ ? sp4ts.oid = 457 534 & spf_p.tpst = swdMain & spf_p.prp_swdMain = wsrp - navigationalState 3Di % dx % 253D % 257CswItem % 253Dcs_97791_1 % 257CswEnvOID % 253D219 % 257CitemLocale % 253D % 253D % % 257Cs wLang 257Cmode % 253D % 257Caction % 253DdriverDocument & javax.portlet.begCacheTok = com.vignette.cachetoken & javax.portlet.endCacheTok = com.vignette.cachetoken    

  • This is an error from my HP scanner. How can I fix the problem? An error has occurred saving the file because it could not be written to. Check the properties for the file to make sure it is not read-only.

    I recently uploaded the Maverick operating system. I wanted to scan some things on my HP Printer/Scanner and could not . This is the error message I received: An  error has occurred saving the file because it could not be written to.   Check the properties for the file to make sure it is not read-only. I am a novice with the computer and have no one to help. I hope someone knows an easy fix.
    Thank you

    This worked for me:
    "Although it is not a 'fix' for the HP issue, I did find a workaround that helped me. In the Preferences Panel in MacOS X you can pull up the Printer/Scanner preferences and scan directly from OS X. I'd not known of this prior to posting here and it worked like a charm."
    "Of course, HP should still update their software, but it's good to know that Apple has it covered for them."
    I found it here:
    http://h30434.www3.hp.com/t5/Mac-Printing-and-Scanning/MAVERICKS-WONT-SCAN-HP-C3 09A/td-p/3052105

  • "An error has occurred saving the file because it could not be written to. Check ..."

    I have the familiar Mavericks issue of failing to save scanned files from my Mac:
     "An error has occurred saving the file because it could not be written to. Check the properties for the file to make sure it is not read-only."
    As far as I can see, there has been no resolution to this issue, despite reassurances dating to last fall (2013).
    The support website acts funky, too, sending me around in circles when I try to download the drivers; it may be a Safari-only problem, but still, please fix your software!

    Hi,
    What is your printer model? what Mac OS X version?
    Have you tried scanning with Image Capture or Preview?
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03967506&tmp_task=useCategory&cc=us&dlc=en&lc=e...
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • An error has occurred saving the file because it could not be written to.

    An error has occurred saving the file because it could not be written to.  Check the properties for the file to make sure it is not read-only.  
    This error message comes up every time I try to save a scanned document to my mac 10.9 .4 . I have reset the software for my HP C5180.All in one. I have not had te problem before, just recently following some upgrades ....any suggestions how to fix this, on reading forums it seems its a common problem.. not good .
    Thanks

    Hi @annie59,
    Welcome to the HP Forums!
    I understand that you cannot scan with your HP Photosmart c5180 on Mac 10.9.4. I am happy to help you with this scanning issue!
    Please try the following:
    Reset the printing system. OS X Mavericks: Reset the printing system.
    Verify and repair disk permissions. Disk Utility 12.x: Repair disk permissions.
    See this installation guide. OS X v10.9 Mavericks: Installing and Using the Printer on a Mac.
    See this post, Re: iMac OS X 10.9.3 Scan to iMac Driver for HP OfficeJet Pro 8500A A910a does not seem to exist, by my colleague @Sunshyn2005. 
    Hope this information helps, and thank you for posting!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • I have Maverick 10.9.1 installed I scanned a photo on my HA D 110 series but it won't let me print or save it: An error has occurred saving the file because it could not be written to.  Check the properties for the file to make sure it is not read-only.

    I have Maverick 10.9.1 installed I scanned a photo on my HP D 110 series but it won't let me print or save it: An error has occurred saving the file because it could not be written to.  Check the properties for the file to make sure it is not read-only.

    Read the user manual that came w/the scanner and/or contact HP Support.
    http://support.apple.com/kb/PH14141 OS X Mavericks: Reset the printing system 
    http://support.apple.com/kb/HT3669 Printer and scanner software available for download 
    A scanner driver you may wish to consider:  VueScan Scanner Software

  • After downloading Maverick I cannot save or email scans from my HP L7780. I receive  error message "An error has occurred saving the file because it could not be written to.  Check the properties for the file to make sure it is not read-only. "

    After downloading Maverick I cannot save or email scans from my HP L7780. I receive  error message "An error has occurred saving the file because it could not be written to.  Check the properties for the file to make sure it is not read-only.

    Read the user manual that came w/the scanner and/or contact HP Support.
    http://support.apple.com/kb/PH14141 OS X Mavericks: Reset the printing system 
    http://support.apple.com/kb/HT3669 Printer and scanner software available for download 
    A scanner driver you may wish to consider:  VueScan Scanner Software

  • An error occured in the blob cache

    An error occured in the blob cache.  The exception message was 'The system cannot find the file specified. (Exception from HRESULT: 0x80070002)'.
    Understand that this know issue on SharePoint 2010 is there any fix for this ? 
    http://blogs.msdn.com/b/spses/archive/2013/10/23/sharepoint-2010-using-blob-caching-throws-many-errors-in-the-uls-and-event-logs-the-system-cannot-find-the-file-specified.aspx
    K.Mohamed Faizal, Solution Architect, Singapore, @kmdfaizal
    http://faizal-comeacross.blogspot.com/ |AzureUG.SG

    Install the December 2013 CU. http://support.microsoft.com/kb/2912738
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Errors occured as the GLaccounts were being saved

    Errors occurred as the G/L accounts were being saved
        Message no. FIPOS019
    Diagnosis
        The commitment item cannot be assigned to the G/L account because the
        state of the G/L account does not permit this transaction.
    System Response
        The G/L accounts affected are not saved. They have the status
        Inconsistent.
        If you have created a new commitment item for the G/L accounts, the
        system saves that commitment item.
    Procedure
        Correct the G/L accounts, thereby making entry of commitment items
    Check the relevant G/L accounts: Change G/L Account.
    It is possible that the commitment item field is hidden in the field
    status group for the G/L account.

    HI,
    Check if the commitement item is the lowest node in the hierarchy...
    May be Balance sheet account does not accept budgeted commitement iten..
    Regards,
    Chintan Joshi

  • Error while saving the excise invoice

    Hi All,
    I am getting the following error while saving the excise invoice.
    No account is specified in item 0000000001
    Message no. F5670
    Diagnosis
    No account was specified for account type "S" in item "0000000001" of the FI/CO document.
    System Response
    The Financial Accounting program cannot process the document.
    Procedure
    A system error has probably occurred in the application you called up. Check the data transferred to item "0000000001" of the FI/CO document.
    I have read all the posts with regards to the error before, however still after doing the required settings I am getting the error. Please let me know for the same.
    Kind Regards
    Atul Keshav

    Dear All,
    The issue stands resolved please find below the required settings which need to be done.
    You need to maintain the following entries in  J_1ITRNACC table
    100 DLFC 01 CR PLAAED
    100 DLFC 01 CR PLABED
    100 DLFC 01 CR PLACESS
    100 DLFC 01 CR PLASED
    100 DLFC 01 CR PLAAT1
    100 DLFC 01 CR RG23AAt1
    100 DLFC 01 CR RG23AED
    100 DLFC 01 CR RG23BED
    100 DLFC 01 CR RG23SED
    100 DLFC 01 DR MSUSP
    Also the table J_1ITRNACC should include entries for GRPO, CAPE, DIEX, EWPO,
    TR6C with subtransaction type 01.
    We need to maintain GL Accounts accordingly in the table  J_1IEXCACC.
    If still the error persists then you need to apply the following notes.
    1018071
    978186
    1032813
    The SAP note 1032813 contains the correction for the program MJ1IINF01
    you will have to apply this manually.
    Kind Regards
    Atul Keshav

  • System.Exception: An error occurred during the Microsoft VSTO Tools 4.0 install (exit code was -2146762485).

    I have been trying to install a piece of software on 2 Windows 7 PCS called Rightfax...during installing I get the error below;
           System.Exception: An error occurred during the Microsoft VSTO Tools 4.0 install (exit code was -2146762485).
    It then gives me an error log of ;
    2015-04-23 14:43:03Z: Error: Unexpected problem occurred in task worker
           System.Exception: An error occurred during the Microsoft VSTO Tools 4.0 install (exit code was -2146762485).
              at CommonInstall.Tasks.InstallTask.LaunchInstall(String friendlyName, String exe, String args, Int32[] exitCodesToIgnore)
              at CommonInstall.Tasks.InstallVSTO.OnRun(ITaskFeedback feedback)
              at TaskWizard.Task.Run(ITaskFeedback feedback, Boolean recurse)
              at TaskWizard.TaskWorker.RunTasks()
              at TaskWizard.TaskWorker.OnDoWork(DoWorkEventArgs e)
    2015-04-23 14:43:03Z: Error: Problem in sequence or one of its pages
           System.Exception: An error occurred during the Microsoft VSTO Tools 4.0 install (exit code was -2146762485).
              at CommonInstall.Tasks.InstallTask.LaunchInstall(String friendlyName, String exe, String args, Int32[] exitCodesToIgnore)
              at CommonInstall.Tasks.InstallVSTO.OnRun(ITaskFeedback feedback)
              at TaskWizard.Task.Run(ITaskFeedback feedback, Boolean recurse)
              at TaskWizard.TaskWorker.RunTasks()
              at TaskWizard.TaskWorker.OnDoWork(DoWorkEventArgs e)
              at CommonInstall.PreparationWorker.OnDoWork(DoWorkEventArgs e)
              at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
    2015-04-23 14:43:03Z: Error: Problem in sequence or one of its pages
           System.Exception: An error occurred during the Microsoft VSTO Tools 4.0 install (exit code was -2146762485).
              at CommonInstall.Tasks.InstallTask.LaunchInstall(String friendlyName, String exe, String args, Int32[] exitCodesToIgnore)
              at CommonInstall.Tasks.InstallVSTO.OnRun(ITaskFeedback feedback)
              at TaskWizard.Task.Run(ITaskFeedback feedback, Boolean recurse)
              at TaskWizard.TaskWorker.RunTasks()
              at TaskWizard.TaskWorker.OnDoWork(DoWorkEventArgs e)
              at CommonInstall.PreparationWorker.OnDoWork(DoWorkEventArgs e)
              at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
    2015-04-23 14:43:03Z: Info: Page changed from 'WizardWorkerPage' to 'ResultPage' driven by result 'Next' and exception 'none'
    2015-04-23 14:44:06Z: Info: Page changed from 'ResultPage' to 'none' driven by result 'Next' and exception 'none'
    2015-04-23 14:44:06Z: Info: Work has not been completed; install state will not be saved.
    2015-04-23 14:44:06Z: Info: Reboot status = NotRequired
    2015-04-23 14:44:06Z: Info: Exitcode = 0
    2015-04-23 14:44:06Z: Info: Logging ended.
    I have installed this software succesfully on other machines previously.....

    Hi RyanWelsh78,
    This forum is discussing about Visual Stuido Tools for Office developing, your issue is related with the installing Rightfax add-in which is a third party product. As the reply from Eugene, you could contact Rightfax add-in developers for help.
    Thanks for your understanding.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Accessing a second iTunes library with an inherited iPod Touch

    Hi - My husband is now using my iPod Touch. It still needs to be synced to my iTunes account because of the existing apps, books and a couple of videos. However, he has his own iTunes account for music he purchases. A lot of it came from our old CDs,

  • When will come the new IPod Touch (5G)?

    See the question above. Because I want to buy an IPod Touch but they say, that there will be one in a few months and so I want to have the latest.

  • What does it take to get promotional bill credit applied?

    I've contacted customer service three times for a total of 90 minutes spent on the phone with them.  All I'm looking to do is get Verizon to follow through on the promotion of $150 per line credit for each data line ported. 1st CALL--"We filled out a

  • VG204 Unable to Fax. States line is busy.

    Hi, I have an extension on a VG204 port that when you try and fax from it or to it it fails. If you plug an analogue phone into the port you can make and receive calls so it is not a routing issue, this all appears to be normal. When you dial the num

  • How to turn off spelling check in iCal

    hi, i am new to mac (yeah, i finally made The Transition) and i have the latest Mac OS X Version 10.6.3. would anyone please advise me on how to turn the spelling check off in iCal. i can't seem to find any right answer. thanks a lot.