Windows error 0x00000436, 1078

Detailed Error Information

DUPLICATE_SERVICE_NAME[1]

MessageThe name is already in use as either a service name or a service display name.
Declared inwinerror.h

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

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 Code1078 (0x0436)

Questions

2votes
2answers

Negative response 00000436 found

I got this error when I'm trying to send sms via SMPP connection. org.jsmpp.extra.NegativeResponseException: Negative response 00000436 found at org.jsmpp.session.AbstractSession.validateResponse(AbstractSession.java:215) at org.jsmpp.session.AbstractSession.executeSendCommand(AbstractSession.java:271) at org.jsmpp.session.SMPPSession.submitShortMessage(SMPPSession.java:320) I'm using jsmpp-2.1.0.jar Here is SMS push code messageId = GlobalConstants.SMPP_SESSION_BULK.submitShortMessage("CMT", TypeOfNumber.INTERNATIONAL.ALPHANUMERIC, NumberingPlanIndicator.UNKNOWN, mtport, TypeOfNumber.INTERNATIONAL, NumberingPlanIndicator.UNKNOWN, sentNumber, new ESMClass(), (byte)0, (byte)1, null, null, new RegisteredDelivery(SMSCDeliveryReceipt.SUCCESS_FAILURE), (byte)0, [...] read more
java
sms
smpp
jsmpp
0votes
1answer

fread into struct reads data incorrectly

I am trying to read a bitmap (.bmp) image header into a struct in c. typedef unsigned short WORD; typedef unsigned long DWORD; typedef struct _BITMAPFILEHEADER { WORD Type; DWORD Size; WORD Reserved1; WORD Reserved2; DWORD OffBits; } BITMAPFILEHEADER; My code to read the bitmap file FILE *fp; BITMAPFILEHEADER header; [...] read more
c
struct
fread

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