Search found 12 matches

by shazia1
Tue Jan 31, 2012 5:21 am
Forum: Inetlab.SMPP v1.0
Topic: Multipart or Long message problem - Demo Application
Replies: 8
Views: 18167

Re: Multipart or Long message problem - Demo Application

Hi hishhash2, You need to traverse TLV parameters for sequence no. Alt, I am sending a long message, and hence used payload mode. But still each portion of the message is received in a separate smppServer_evClientSubmitSm event on server. Moreover my 2nd important question is that, the return type o...
by shazia1
Wed Jan 25, 2012 11:30 am
Forum: Inetlab.SMPP v1.0
Topic: Multipart or Long message problem - Demo Application
Replies: 8
Views: 18167

Re: Multipart or Long message problem - Demo Application

Kindly update me on the last post ASAP.
We are facing this issue in real time environment as well. Long messages are received in splitted parts at receiver's end.
by shazia1
Mon Nov 28, 2011 5:20 am
Forum: Inetlab.SMPP v1.0
Topic: Message encoding & submit mode detection
Replies: 4
Views: 13124

Re: Message encoding & submit mode detection

The SMS details are entered in DB from application. There is a windows service which pulls the details from DB and send them to nos. saved in database against each sms. Now I am just looking for a method to which i pass my text message, and it tell me that, for example, the message is UC2 encoded an...
by shazia1
Mon Nov 28, 2011 5:04 am
Forum: Inetlab.SMPP v1.0
Topic: long message
Replies: 9
Views: 20943

Re: long message

This is not my application flow. I was just trying to send messages from server to client and client to server in demo application. And everytime on sending a long message to client, the server gets crashed.
by shazia1
Thu Nov 24, 2011 6:28 am
Forum: Inetlab.SMPP v1.0
Topic: Message encoding & submit mode detection
Replies: 4
Views: 13124

Message encoding & submit mode detection

Is there any way to detect the submit mode & encoding of sending sms? Actually I have a scenario in which sms details are saved in a database table, and my service is pulling the details from table and sending the sms to intended recipients. In this case, is there any way that I could detect that th...
by shazia1
Tue Nov 22, 2011 10:35 am
Forum: Inetlab.MMS.MM7
Topic: Supported file formats
Replies: 1
Views: 22832

Supported file formats

Which file formats are supported to send/receive, through this API?
by shazia1
Fri Nov 18, 2011 12:59 pm
Forum: Inetlab.SMPP v1.0
Topic: Multipart or Long message problem - Demo Application
Replies: 8
Views: 18167

Re: Multipart or Long message problem - Demo Application

Thanks, the message can be seen now. But long messages are received in splitted parts.
SHould it not be a complete concatenated message? Or this is receiving end's responsibility to receive splitted messages and concat them by it self?
by shazia1
Fri Nov 18, 2011 11:54 am
Forum: Inetlab.SMPP v1.0
Topic: long message
Replies: 9
Views: 20943

Re: long message

The is same as used in demo application server: Inetlab.SMPP.PDU.DeliverSm data = new Inetlab.SMPP.PDU.DeliverSm(); data.SourceAddrTon = byte.Parse(tbSrcAdrTON.Text); data.SourceAddrNpi = byte.Parse(tbSrcAdrTON.Text); data.SourceAddr = tbSrcAdr.Text; data.DestAddrTon = byte.Parse(tbDestAdrTON.Text);...
by shazia1
Fri Nov 18, 2011 5:12 am
Forum: Inetlab.SMPP v1.0
Topic: Multipart or Long message problem - Demo Application
Replies: 8
Views: 18167

Re: Multipart or Long message problem - Demo Application

One more problem ..Refer to the demo application available with trial, when i send shortmessage from client, the message is properly received on the server. But when i send Payload message from client, in the server_evClientSubmitSm() event of server, data.ShortMessage is null. I am unable to verify...
by shazia1
Fri Nov 18, 2011 5:10 am
Forum: Inetlab.SMPP v1.0
Topic: Multipart or Long message problem - Demo Application
Replies: 8
Views: 18167

Multipart or Long message problem - Demo Application

Whenever I try to send a large message from demo server, to the client, the code crashes at client.Deliver(data) method with the following exception: "Value was either too large or too small for an unsigned byte". Am I missing some attribute needing to be added in the sending message? What is the ma...
by shazia1
Wed Nov 16, 2011 11:09 am
Forum: Inetlab.SMPP v1.0
Topic: long message
Replies: 9
Views: 20943

Re: long message

Whenever I try to send a large message from demo server, to the client, the code crashes at client.Deliver(data) method with the following exception: "Value was either too large or too small for an unsigned byte". Am I missing some attribute needing to be added in the sending message? What is the ma...
by shazia1
Wed Nov 16, 2011 10:33 am
Forum: Inetlab.SMPP v1.0
Topic: Long Message Problem
Replies: 10
Views: 27779

Re: Long Message Problem

Refer to the demo application available with trial, when i send shortmessage from client, the message is properly received on the server. But when i send Payload message from client, in the server_evClientSubmitSm() event of server, data.ShortMessage is null. I am unable to verify whether my long me...