Search found 987 matches

by alt
Wed Jan 06, 2010 9:02 am
Forum: Inetlab.MMS.MM7
Topic: MMS UK
Replies: 1
Views: 28903

Dear stevep,

First of all you need to ask Mobile Network operator for access using MM7 protocol.

They should give you http url, username and password.
by alt
Wed Jan 06, 2010 8:52 am
Forum: ALT.SMS.SmppClient
Topic: deliverSM Response
Replies: 2
Views: 8387

Sorry vasavi,

Here is support forum for ALT.SMS.SmppClient only.
by alt
Wed Jan 06, 2010 8:47 am
Forum: ALT.SMS.SmppClient
Topic: ERROR when using the downloaded code as a transceiver
Replies: 1
Views: 6595

Please try event evDeliverSmComplete. It is raised when DeliverSmResp already sent.

In the event evDeliverSm you can modify DeliverSmResp response. f.i. send non OK status.
by alt
Wed Jan 06, 2010 8:39 am
Forum: ALT.SMS.SmppClient
Topic: Thread SubmitAsync Error
Replies: 3
Views: 10778

I suggest you to use event evReceiveData to check if SubmitSmResp packet was received by SmppClient.
If you will find that response was not received in evReceiveData, you can take any network analyzer and check if SMSC sends response to you.
by alt
Wed Jan 06, 2010 8:28 am
Forum: ALT.SMS.SmppClient
Topic: datasm ??
Replies: 1
Views: 6762

Hi fouad,

Sorry it is not implemented yet.
I'll notify you when it will be added.
by alt
Thu Dec 24, 2009 3:50 pm
Forum: ALT.SMS.SmppClient
Topic: SubmitSpeed
Replies: 4
Views: 11904

SubmitSpeed defines number of SMS per minute. Some SMSC have limit of allowed SMS per minute. And when this limit is exceeded, SMSC returns status ESME_RTHROTTLED. SubmitSpeed property is used in the method AdvancedSubmit to prevent of receiving of this error status. In asynchronous methods this pro...
by alt
Thu Dec 24, 2009 8:58 am
Forum: ALT.SMS.SmppClient
Topic: SubmitSpeed
Replies: 4
Views: 11904

Yes, you can send SMS with async methods like SubmitTextAsync.
It is about 1000 SMS per minute.
by alt
Fri Dec 18, 2009 4:20 pm
Forum: ALT.SMS.SmppClient
Topic: Smpp Response Code 4098 (0x1002) and 4099 (0x1003)
Replies: 3
Views: 13886

These are library specific status codes

Code: Select all

SMPP Client Receive Timeout
SMPPCLIENT_RCVTIMEOUT	= 0x00001002

SMPP Client No Connection
SMPPCLIENT_NOCONN		= 0x00001003
by alt
Wed Dec 16, 2009 5:53 pm
Forum: ALT.SMS.SmppClient
Topic: Help me send binary message...
Replies: 2
Views: 9365

UDHI flag is set automatically when you use User Data Headers. chaoraksa, With Payload mode sm.UserDataPdu.Headers and sm.ShortMessageBytes cannot be used, because sm_length should be 0 for this mode. Please try with mode ShortMessage . But you need to add headers instead of overwrite it as in your ...
by alt
Wed Dec 16, 2009 4:03 pm
Forum: ALT.SMS.SmppClient
Topic: GSM 03.38 support
Replies: 9
Views: 22618

In version 2.8 I'm going to implement GSMEncoding class. But problem that several SMSC work in different ways. For Default SMSC coding (0x0) i know three ways - plain ASCII - unpacked GSM 03.38 - packed 7bit GSM 03.38 Would be good if all readers post here information about a way which their SMSC us...
by alt
Wed Dec 16, 2009 3:52 pm
Forum: ALT.SMS.SmppClient
Topic: Thread SubmitAsync Error
Replies: 3
Views: 10778

hello,

Do you mean event evSubmitComplete ?

Why you use thread for SubmitAsync ? This method creates thread itself.

What version do you use?
by alt
Wed Dec 16, 2009 3:45 pm
Forum: ALT.SMS.SmppClient
Topic: send text Slow
Replies: 2
Views: 9465

Solution is
- to use Async methods,
- do not use events evReceiveData, evSendData,
- update library to last version.
by alt
Wed Nov 11, 2009 12:39 pm
Forum: ALT.SMS.SmppClient
Topic: Multipart SMS DELIVERY problem
Replies: 29
Views: 62425

Sorry,
but we talk about deliver_sm and problem with message_payload field content.

send you log from first post to vendor and ask why they encoded converted original bytes to hex string and then encoded it to 8 bit ASCII bytes array.
by alt
Mon Nov 09, 2009 12:54 pm
Forum: ALT.SMS.SmppClient
Topic: Multipart SMS DELIVERY problem
Replies: 29
Views: 62425

yes, I think so
by alt
Mon Nov 09, 2009 12:41 pm
Forum: ALT.SMS.SmppClient
Topic: Multipart SMS DELIVERY problem
Replies: 29
Views: 62425

you can use properties deliverSm.MessageReferenceNumber; deliverSm.TotalSegments; deliverSm.SegmentNumber; they have values when parts information can be retrieved from UDH or from SAR option fields. But in you case User Data is placed in message_payload and original byte array was prepresented as h...