Windows error 0x803D0000, -2143485952

Detailed Error Information

WS_E_INVALID_FORMAT[1]

MessageThe input data was not in the expected format or did not have the expected value.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode61 (0x03d)
NameFACILITY_WEBSERVICES[2][1]
DescriptionThe source of the error code is the Web Services.[2][1]
Error Code0 (0x0000)

Questions

3votes
1answer

Eclipse Milo: How to read history data?

I've tried write data to Eclipse Milo server and read history data the following way: HistoryReadDetails hrd = new ReadRawModifiedDetails(false, DateTime.MIN_VALUE, DateTime.MIN_VALUE,UInteger.MAX,false); TimestampsToReturn ttr = TimestampsToReturn.Both; List<HistoryReadValueId> list = new ArrayList<>(); list.add(new HistoryReadValueId(new NodeId(2,"HelloWorld/ScalarTypes/Int32"), null, QualifiedName.NULL_VALUE,null)); HistoryReadResponse hrr = client.historyRead(hrd, ttr, true, list).get(); But got the following: HistoryReadResult{StatusCode=StatusCode{name=Bad_NotSupported, value=0x803D0000, quality=bad}, [...] read more
java
opc-ua
milo
1vote
1answer

UWP: Cannot access LicenseInformation

I am using the following piece of code to check in my UWP-JS app if an in-app purchase is active: (function () { // Initialization // var store_app = Windows.ApplicationModel.Store.CurrentApp; var store_app = Windows.ApplicationModel.Store.CurrentAppSimulator; var licenseInformation = store_app.licenseInformation; // Check for Product if (licenseInformation.productLicenses["product1"].isActive) { // do something } else [...] read more
javascript
windows
winapi
windows-store-apps
uwp
1vote
0answers

C++ client for C# WCF service

I have created simple WCF service: namespace WcfServiceLibrary1 { [ServiceContract] public interface IService1 { [OperationContract] int GetData(int value); } } namespace WcfServiceLibrary1 { public class Service1 : IService1 { public int GetData(int value) { return 101; } } } Now I need to create c++ client for it. I have [...] read more
c#
c++
wcf
visual-c++
0votes
1answer

Requesting X509 cert from Microsoft Certificate Services using ICertRequest

My application was recently changed to use client-server model. Now I need to be able to request certificate from remote server vs the one on a local network. ICertRequest specifies that it can accept: > HTTPS URL for an enrollment server or in the form ComputerName/CAName The latter was used [...] read more
c#
x509certificate
x509

Comments

Grace

I can't share my OneNote with my friends~ the error code is 0x803D0000

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