Error submitting to WindowsPhone 8 App Store: We weren't able to save your info. Try again. Error code: 0x80040803 - windows-phone

I have seen this error reported a few times when submitting apps to the Windows Phone 8 store
We weren't able to save your info. Try again. Error code: 0x80040803.

The problem in my case was a duplicate entry in the WMAppManifest.xml file
The error is caused by a duplicate capability entry in the WMAppManifest.xml file:
<Capability Name="ID_CAP_ISV_CAMERA" />
<Capability Name="ID_CAP_SENSORS" />
<Capability Name="ID_CAP_ISV_CAMERA" />
After correcting this the problem is resolved and the app was successfully submitted. Hope this helps someone developing for Windows Phone 8

Related

VB.Net: An unexpected error occurred in Report Processing. Unrecognised configuration section userSettings

I am having trouble with creating a report using the rdlc reports on visual studio in VB.Net. I keep getting this error message:
"An error occurred during local report processing.
The definition of the report is invalid.
An unexpected error occurred in Report Processing.
Configuration system failed to initialise.
Unrecognised configuration section userSettings. (C:\Users\user\AppData\Local\Slnk\ManagementSystem.vshost.e_Url_brk155k23wwhtqesu2uousexuftu10hi\1.0.0.0\user.config file line 3"
There doesn't seem to be any problems with my code because the error message does not point to my code, but points to the user.config file. I opened the file and this is the only thing displayed in the file:
<xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
</configSections>
</configuration>
I searched for answers online, and tried deleting the user.config file and letting the application auto generate another one and it did not help. None of the solutions online have helped so far. Is there anyone who can please help me?
So for anyone having this same problem, this is how I solved it. I went to the folder:
C:\Users\user\AppData\Local\Slnk\ManagementSystem.vshost.e_Url_brk155k23wwhtqesu2uousexuftu10hi\1.0.0.0\user.config and renamed the user.config file to xuser.config. Then I restarted my application and for some reason, it worked!!! Hope this helps to whomever ends up with this problem.

Flash Builder - Platform conversion failed error during release build

This is a very annoying problem while generating release build files. Here is the steps I did while building:
Select Project > Export Release Build
Select Signed Native Installer
Import certificate
Click Next.
I always got the following error:
https://forums.adobe.com/servlet/JiveServlet/showImage/2-6524012-651585/build_error.png
Platform conversion failed. Process exited with error 5. Output was
"[ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2
text="Unhandled exception Error: EndUpdateResource: Windows Error #5"
errorID=0]
I have the following setup:
OS: Windows 8.1
System type: 64-bit
Flash Builder Version: 4.6 Premium
Installed FB: FlashBuilder_4_6_LS10.exe
Please help. This is giving me a lot of headaches for a couple of days now.
Additionally, here's the stack trace:
java.io.IOException: Platform conversion failed. Process exited with
error 5. Output was "[ErrorEvent type="error" bubbles=false
cancelable=false eventPhase=2 text="Unhandled exception Error:
EndUpdateResource: Windows Error #5" errorID=0] " at
com.adobe.air.nai.NativePackager.conversionFail(NativePackager.java:222)
at
com.adobe.air.nai.NativePackager.invokePlatformConversion(NativePackager.java:203)
at
com.adobe.air.nai.NativePackager.createPackage(NativePackager.java:92)
at
com.adobe.flexbuilder.multisdk.apollo.export.AIRNativeInstallerPackager.create(AIRNativeI
nstallerPackager.java:129) at
com.adobe.flexbuilder.exportimport.releaseversion.ExportReleaseVersionManager.doExport(Ex
portReleaseVersionManager.java:586) at
com.adobe.flexbuilder.exportimport.releaseversion.ui.ExportReleaseVersionWizard$1.run(Exp
ortReleaseVersionWizard.java:208)
I also suspect this is because of the following settings:
Eclipse.ini
https://forums.adobe.com/servlet/JiveServlet/showImage/2-6525217-651726/eclipse.png
...
-startup plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
--launcher_library plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.100.v20110502.jar
...
Notice that the plugin used is not intended for x64 processors.
#ActionScript3030 is correct, for anyone finding this later on, if you re-link your Library Paths (even if they look correct) this should rectify your issue.
The issue is caused by the links not being able to resolve to their GUID counterparts in your AppData/Local folder. This happens quite commonly when you create a new user profile and try to copy over your old user profiles information.
I already figured this out. I created a virtual machine with windows 7 32bit operating system and I'm happy now :)
If you initially created your project on a different system then try to compile it in another system, the class source and swc paths may not match. These paths could be there but not being implemented in code, so you will not get any run time errors while debugging, but it will give you the error 5 during compilation.
Solution:
Remove the idle paths not directly in use in your code. You can identify them by simply checking the path.
Found the same issue when trying to use Microsoft Essential Security on my Windows 7 x32. When i uinstall it - problem gone. So try to check your firewall settings if stucking the same problem.
Just to add an alternative solution (I'm on an x64 Windows and want to keep build exported for x64), in my case the error popped up when building the project with the AIR SDK defined in the app.xml (an older one, 3.9) and went away when I explicitly used a newer SDK (19).
(Disclaimer: I used the command line adt tool from the SDK to build, not Flash Builder).
A little late, but might possibly help someone.
I had the same error recently with FlashDevelop. Figured out that the my path was too long. When I renamed some long folder and file names, the error disappeared.
Try to disable UAC on Windows 8. Change it to "Never notify". The problem

IBM Worklight 6.1 Uncaught TypeError: Cannot read property 'directUpdate' of undefined

I'm using Worklight 6.1
I have developed an Android application with
connectOnStartup : true
and
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="16" />
When I try to execute the application on the device (4.1.2), when it starts I get the exception in log cat:
Uncaught TypeError: Cannot read property 'directUpdate' of undefined
The application is a mix between the modules "Adapter-based authentication" and "Integrating server-generated pages in hybrid applications". Downloaded from http://www.ibm.com/developerworks/mobile/worklight/getting-started.html
If I do not set the set connectOnStartup to false it works.
Any idea?
You point me to the error, I thought there was nothing being executed before Direct Update but the java script code included in the main HTML page is executed before.
Then I realized that I didn't include the javascript file where the security challenge handler was implemented. Thas was the issue.
I have included the
<script src="js/SingleStepAuthRealmChallengeProcessor.js"></script>
in the .html and now it is working.
Thank you Idan.

Syntax of DXH 'CBSvcHost.exe.config' <Host> section in Ektron 9

My error ;Connction is not showing in drop down list of workarea
i have add a new connection in ektron 8.7 dxh , its working fine, but when i add the code to ektron 9 dxh its not working ,i think some syntax had changed in host section , please tell how solve the issue.
<add serviceName="Name Connector" serviceType="namespace.classname, dllfilename, Version=1.2.0.074, Culture=neutral" />
<add serviceName="name Connector" serviceType="namespace.classname, dllfilename, Culture=neutral" />
my observation:
1. no version section
2. can we use dot(.) extension in "dllfilename" {is working in 8.7 but not working in 9} eg:(Ektron.custom) as dll file name
Please help..
My observation was wrong ,The problem is referencing dll files,Means i was referencing ektron 8.7 files like ContextBus.dll etc.Thanks to my team leader

BB Web Works giving error as "error feature cannot be found in any extension(blackberry. pin .memo)" while packaging the app

I am new to BlackBerry Web Works.I am following the instruction for development given on development site.While packaging the Application I am getting this error in command prompt : "[ERROR] feature cannot be found in any extension(blackberry. pin .memo)".
Before going to this step I have already created project folder with config.xml and index.html and also zip file of application components properly.And now trying to package the application.But I am getting error like:
Please help me to figure out this error.
Thanks
Finally I got the solution after a lot of searching and analogy.
This error occurs when either we have added some feature in config.xml which we are not using in our application or when we are using same feature but not defined in "feature" tag in config.xml. It is the same case with "spinner" ,"sms" etc.
In my case it was because of "memo" ,which I was defining in config.xml but didn't use any Contact feature in my Application.So it producing error like "feature cannot be found in any extension(blackberry. pin .memo)".