Windows error 0x00002155, 8533

Detailed Error Information

DS_NO_PKT_PRIVACY_ON_CONNECTION[1]

MessageThe connection between client and server requires packet privacy or better.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x80072155.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code8533 (0x2155)

Questions

2votes
1answer

Special characters in Xcode/ios5 to SBJso

I am having a problem with sending special characters on iOS5 through sbjson to a web service. I get the error: > -[NSNull isEqualToString:]: unrecognized selector sent to instance I have tried to send the json string without special characters, and it went through without any problems. But as soon [...] read more
ios
json
ios5
sbjson
1vote
2answers

SIGABRT while adding objects to an NSMutableArray

I have a method which returns an NSArray with points to be plotted. Following is the code for my method. - (NSArray *)pointsToPlot:(GraphView *)requester { NSMutableArray *points = [[NSSet alloc] init]; CGPoint midPoint; midPoint.x = self.graph.bounds.origin.x + self.graph.bounds.size.width / 2; midPoint.y = self.graph.bounds.origin.y + self.graph.bounds.size.height / 2; //Find points to [...] read more
objective-c
cocoa
nsmutablearray

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