ReplaceMessage Method
Replaces a previously sent message with a new one.
Syntax
ANSI (Cross Platform) int ReplaceMessage(const char* lpszMessageId, const char* lpszNewMessage); Unicode (Windows) INT ReplaceMessage(LPCWSTR lpszMessageId, LPCWSTR lpszNewMessage);
- (void)replaceMessage:(NSString*)messageId :(NSString*)newMessage;
#define MID_SMPP_REPLACEMESSAGE 11 IPWORKS_EXTERNAL int IPWORKS_CALL IPWorks_SMPP_Do(void *lpObj, int methid, int cparam, void *param[], int cbparam[], int64 *lpllVal);
Remarks
Assuming that there is a message on the SMPPServer stored under the value in MessageId, this method will replace that message with the value in NewMessage.
If there is no message corresponding to MessageId, the SMS service will respond with an error message.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)