This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
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.
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
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