SUBMIT LARGE MESSAGES

Smpp v3.4 client

Moderator: alt

Locked
prog019
Posts: 44
Joined: Mon Mar 02, 2009 2:12 pm

SUBMIT LARGE MESSAGES

Post by prog019 » Wed Feb 17, 2010 10:36 am

Dear Alt,


Can you sent example of source code, for sending large text via payload.

My problim is folowing:

when I sending large(length=810) text, in phone I am getting many different parts of text in each sms(I am getting not concatenated sms).

Please help.

Thanks a lot for your lib.
prog019
Posts: 44
Joined: Mon Mar 02, 2009 2:12 pm

ABOUT PAYLOAD

Post by prog019 » Thu Feb 18, 2010 5:01 am

Dear Alt,

In other words I dont know, how send large sms in payload with this LIB.

Please help.
aallvvii
Posts: 12
Joined: Wed Feb 17, 2010 7:52 pm

More than 160 charecters in sms, Help needed....

Post by aallvvii » Thu Feb 18, 2010 6:38 am

I am also having the same problem I am also looking for more than 160 characters in a message, how can we send more than 160 characters. Waiting for help and thanks in advance
Regards
alt
Site Admin
Posts: 988
Joined: Tue Apr 25, 2006 9:45 am

Post by alt » Mon Mar 01, 2010 12:04 pm

Applications that require more than 160 characters of information transfer can use the
message_payload parameter which can hold up to a maximum of 64K. However, the
maximum size supported is SMSC dependent and the application should take this into
account.
Another available method for sending more than 160 characters of information is the GSM
concatenation mechanism. With concatenation it is possible to send several separate short
messages to a mobile station and to display them as one message.
Concatenation is realised at the mobile; multiple separated received messages are stringed
together and displayed as if it was one single short message. The mobile is able to do this,
as all involved send messages contain an additional information fields that provides
information needed for stringing them together. Up to a maximum of 255 short messages
can be concatenated this way.
Concatenation is provided via two methods:
• GSM User data headers
• SMPP parameters
Does SMPP server to which you connect support messages with payload more than 160 characters?

Usually method SubmitText which support concatenated messages solves problem.

SubmitMode.ShortMessage uses way via GSM User data headers.
SubmitMode.Payload uses way via SMPP parameters.

Please try both modes.
Locked