Search found 2 matches

by sreekala
Tue Sep 22, 2015 10:17 am
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: _messageComposer.IsLastSegment(data) always returns false
Replies: 1
Views: 11342

_messageComposer.IsLastSegment(data) always returns false

Im trying to retrieve long message using following code
if (data.Concatenation != null)
{
_messageComposer.AddMessage(data);

if (_messageComposer.IsLastSegment(data))
{
messageText = _messageComposer.GetFullMessage(data);
AddUILog("last segment" + messageText);
}
} . But when i debug i ...
by sreekala
Wed Jun 11, 2014 8:21 am
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Error in Unicode Long Message
Replies: 1
Views: 11964

Error in Unicode Long Message

I was testing the client application version 1.1.15.3. When i send long English message(msg count 2) with the following code,message delivers fine..but when i send Unicode long message (msg count 2) the following conditions occurred.
1..it takes it as 5 or more different messages and gets throttled ...