CurrentAppSimulator.LicenseInformation getting exception "A quota was exceeded" in windows store app

2

In my Windows Store App the following exception is thrown when I attempt to access CurrentAppSimulator.LicenseInformation

"A quota was exceeded. (Exception from HRESULT: 0x803D0008)"

I have tried creating a new solution and copying all the code files across to it but still get the same error, I have found no help on MSDN or Googling in general.

windows-8
licensing
windows-store-apps
asked on Stack Overflow Jan 2, 2013 by Harry Len • edited Jan 2, 2013 by Harry Len

2 Answers

0

Judging from the answer here and another one here, I would say you are exceeding a memory limit somewhere. The linked questions/answers indicate that "A quota was exceeded" indicates you used up your entire heap or that your message buffer isn't large enough.

Additionally, some users have indicated that they get that error when their developer license has expired and have had to re-install Windows 8 to resolve the issue.

answered on Stack Overflow Jan 2, 2013 by N_A
0

With a little help from Googling I have discovered that uninstalling the app from the windows start screen seems to help.

When you debug your application seems to get installed and appears on the start screen, in the past I had just ignored this fact. After uninstalling the application and debugging again I was able to get past that error and was able to see the real underlying errors that were occurring. I'm not sure of the relationship between these underlying errors and the one we are discussing here, I suspect they are not directly related.

answered on Stack Overflow Jan 6, 2013 by Harry Len

User contributions licensed under CC BY-SA 3.0