Has anyone else seen the OfficeRuntime.auth.getAccessToken hang after the recent update?
Our Outlook add-in running on the desktop used to get a token when used in the OnCompose event. Last week we noticed that the token was no longer being returned and the call to getAccessToken, neither returned nor reported an error.
Related
I am very familiar with GA Query Explorer (https://ga-dev-tools.appspot.com/query-explorer/).
Just yesterday and today its UI has begun to refuse to key input. When I try to type in the metrics or dimensions fields it gives a message 'No matches found' - see screenshot. It has therefore become utterly useless.
I tried removing all GA cookies and logging out. I closed my Firefox browser, where I have used it regularly. On return I logged into Google and opened a Query Explorer tab. It remembered my latest parameters, so it had not removed cookies, and duly gave the same error.
Can you please advise how I can get out of this vicious circle and begin to get results from the Query Explorer again?
I have the same problem too. I believe there is a problem on the page, probably due to this error in the console:
I report the bug here:
https://github.com/googleanalytics/ga-dev-tools/issues/461
Thanks to responders.
This has now been fixed by Google.
Graham
I have a Windows 2012 R2 Standalone Root CA setup to issue authentication certificates when requested via the certrqma.asp page. This page has been modified to only show a small number of fields required but no configuration has been changed over the default and has worked fine in the past, however, recently (Not exactly sure when) the page simply won't submit the request.
I can see errors via the console in both IE and Chrome but the user feedback on form submission is to display the message:
This page has not finished loading yet. Please wait a few seconds and try again.
IE Console: SCRIPT5009: 'GetCSPList' is undefined - certrqma.asp (1523,3)
Chrome Console: Uncaught ReferenceError: loadXEnroll is not defined at postLoad (certrqm.asp:997) & at onload (certrqma.asp:9)
My ASP coding is non-existent and am feeling my way along but at least found the above so hoping it's useful detail. Any ideas?
So it turns out, this is a direct result of Microsoft disabling, by default, the execution of VBScript in IE11 onwards. This was changed in the August 2019 Windows Security Update and has been planned since early 2017: An update on disabling VBScript in Internet Explorer 11
VBScript can easily be re-enabled in IE using one of the methods in Option to disable VBScript execution in Internet Explorer for Internet Zone and Restricted Sites Zone but compromising security is not something we should have to ask clients to do in order to use this as intended.
I thought the Windows 2019 Server version of this form would be coded differently to address this seeing as disabling it has been in the pipeline for so long but is not the case as 2019 Server Certificate Services Web Enrollment still requires VBScript in order to use this form.
I'm using ImgCache.js within my ionic2 project, recently I upgraded ionic from rc.3 to rc.5 and ImgCache stopped working.
While debugging, I could see that the success and error callbacks in ImgCaches.Init() were never called. So I debugged the ImgCache.js' Init method and was able to find that the method:
navigator.webkitPersistentStorage.requestQuota
Is only calling any callback when the Quota data is bigger than the previous amount (or after I cleaned the cache/cookies), which will ask the user permission to store files in his device.
I tested in canary (version 58.0.2989.0 canary (64-bit)) but this didn't work either.
P.s.: The problematic code is here: https://github.com/chrisben/imgcache.js/blob/master/js/imgcache.js#L622
P.s.2: It's only happening when I set a breakpoint before ImgCache.init()
After a couple hours of debugging, I discovered the problem was actually the debugging. The problem only occured when I set a debugger before ImgCache.init()
I'm in a tight spot with this error...
I have a DataGrid with some data. Based on some other parameters defined by the user, my application loads data in the background.
So far, everything worked fine. However, I've stumbled upon the following error today:
Error HRESULT E_FAIL has been returned from a call to a COM component.
This error appeared completely out of the blue; I was using my application and then, suddenly, this appeared when I selected a new row. It consistently appears for a specific row with specific application parameters, and so far hasn't appeared in any other case.
The error doesn't come with a StackTrace (which is null) and neither with an InnerException.
As such, I'm a bit bewildered and don't quite know what to do. I can't post the entire application here, and that error gives me absolutely nothing to go on. It does, however, cause the entire application to stop working (when no debugger is attached the application just "vanishes").
What should I do with this?
PS. The application is an Azure Silverlight application, but this happens regardless if I run it on the Dev. fabric or if it's online. But my gut tells me it's an issue with Silverlight itself, and not with Azure.
When trying to restore a version of a document in my document based application, I get an error:
kCGErrorFailure: CGSDisplayID: App trying to enumerate [0 to CGSGetNumberOfDisplays()] instead of using CGSGetDisplayList(). Compensating...
kCGErrorFailure: Set a breakpoint # CGErrorBreakpoint() to catch errors as they are logged.
and the document remains unchanged. Also, when this happens, I get a message as soon as I start editing the document telling me:
The document [...] could not be autosaved. The file has been changed by another application.
I think these two problems may be related.
I don't know what to do or "check" because versions just works without any implementation needed; I'm actually confused, because Apple says that I just need to enable autosave in order to restore/revert using versions. Does anyone know what can be causing that error?
Thanks.
I've ran into all of your issues, causing me much pain.
I've gotten that error message regarding kCGErrorFailure... before as well when browsing versions. I've just ignored it mostly as it seems harmless to me. TextEdit seems to spit out this message as well. (Looks like an Apple bug)
For the "document remains unchanged", check here: Restoring from versions browser on OSX lion not working... ideas? (in short, your code for updating your document's UI is probably not being called for the document that is being reverted) (Looks undocumented to me)
For autosaving issues, check here: http://www.cocoabuilder.com/archive/cocoa/306217-how-to-implement-autosaving-browsing-versions-reverting-to-last-saved-in-lion.html (in short, use the file wrapper methods instead for reading and writing). (Looks like an Apple bug)
As well as returning YES to autosavesInPlace: your document needs to at least call updateChangeCount: passing NSChangeDone whenever it changes, so that it "knows" that there are changes to be autosaved.