Windows error 0x80070459, -2147023783

Detailed Error Information

NO_UNICODE_TRANSLATION[1]

MessageNo mapping for the Unicode character exists in the target multi-byte code page.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode7 (0x007)
NameFACILITY_WIN32[2][1]
DescriptionThis region is reserved to map undecorated error codes into HRESULTs.[2][1]
Error Code1113 (0x0459)

This is a Win32 error which has been mapped into an HRESULT. More information may be available in error 0x00000459.

Questions

21votes
1answer

How to generate MD5 hash code for my WinRT app using C#?

I'm creating a MetroStyle app and I want to generate a MD5 code for my string. So far I've used this: public static string ComputeMD5(string str) { try { var alg = HashAlgorithmProvider.OpenAlgorithm("MD5"); IBuffer buff = CryptographicBuffer.ConvertStringToBinary(str, BinaryStringEncoding.Utf8); var hashed = alg.HashData(buff); var res = CryptographicBuffer.ConvertBinaryToString(BinaryStringEncoding.Utf8, hashed); return res; } [...] read more
c#
.net
windows-runtime
microsoft-metro
1vote
2answers

IIS7 Error: No mapping for the Unicode character exists in the target multi-byte code page

I have a problem when a url contains Chinese characters. It doesn't happen every time, but when it does, I find the following errors in the event log: EventMessage No mapping for the Unicode character exists in the target multi-byte code page. (Exception from HRESULT: 0x80070459) EventStackTrace System.ArgumentOutOfRangeException: No mapping [...] read more
asp.net
iis-7
unicode
1vote
0answers

Debug with Attach to dotnet core process on Mac always lead to the error: Unknown Error: 0x80070459

I used to be able to attach to the dotnet core (dotnet 2.2) process on my Mac Mojave. But it seems that after the installation of dotnet 3.0, it always fail to attach to the dotnet process with the following error: Unknown Error: 0x80070459. I have been googling this issue [...] read more
.net-core
1vote
1answer

ReadText from file in ANSII encoding

I use Q42.Winrt library to download html file to cache. But when i use ReadTextAsync i have exception: No mapping for the Unicode character exists in the target multi-byte code page. (Exception from HRESULT: 0x80070459) My code very simple var parsedPage = await WebDataCache.GetAsync(new Uri(String.Format("http://someUrl.here"))); var parsedStream = await FileIO.ReadTextAsync(parsedPage); [...] read more
c#
xaml
windows-8
microsoft-metro
0votes
1answer

mp3 file upload with phonegap on Windows RT [ Unicode Mapping error ]

I used phogap function for recording audio and uploading audio , file. Audio File is recording and stored in music folder and I get the path and name of the file by the below function. function captureSuccess(mediaFiles) { var i, len; for (i = 0, len = mediaFiles.length; i < [...] read more
javascript
jquery
windows-8
visual-studio-2012
cordova

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0