Problem with SubmitMulti

Smpp v3.4 client

Moderator: alt

Locked
estebanh
Posts: 1
Joined: Wed Feb 09, 2011 11:12 pm

Problem with SubmitMulti

Post by estebanh » Wed Feb 09, 2011 11:36 pm

Hi everyone,

I need your help ... I'm developing with this library, but I try to make multi submit of sms and the object SubmitMultiResp answer me the following:

Status -> ESME_RINVCMDID;
Command -> SubmitMultiResp;
Length -> 18;
MessageId ->;
Sequence -> 920196187;

I know that status means that the PDU is not known or is incorrect by the MC, but I do not know how to fix it.

This segment of code I use:

...
try
{
SubmitMulti objSubmitMulti = new SubmitMulti();
SubmitMultiResp objSubmitResp = new SubmitMultiResp();

DestinationAddress objDestination = new DestinationAddress();

objDestination.Address = this.DestinationAddress;
objDestination.DestType = DestinationAddressType.SMEAddress;
objDestination.Npi = this.DestinationNPIAddress;
objDestination.Ton = this.DestinationTONAddress;

objSubmitMulti.DestinationAddresses.Add(objDestination);
objSubmitMulti.DestinationAddresses.Add(objDestination);

objSubmitMulti.DataCoding = DataCodings.UCS2;

objSubmitMulti.ShortMessage = this.TextMessaje;

objSubmitMulti.SrcAddr = this.SourceAddress;

objSubmitMulti.SMSCReceipt = SMSCDeliveryReceipt.SuccessFailure;

objSubmitResp = _SmppClient.Submit(objSubmitMulti);

}
...

Thanks, and I appreciate your help
zhabchi
Posts: 2
Joined: Tue Jun 21, 2011 2:30 pm

Re: Problem with SubmitMulti

Post by zhabchi » Tue Jun 21, 2011 2:32 pm

I am having the same problem.... anything ideas regrading this problem?
alt
Site Admin
Posts: 985
Joined: Tue Apr 25, 2006 9:45 am

Re: Problem with SubmitMulti

Post by alt » Tue Jun 28, 2011 7:01 pm

I think SMSC doesn't allow you submit_multi.
zhabchi
Posts: 2
Joined: Tue Jun 21, 2011 2:30 pm

Re: Problem with SubmitMulti

Post by zhabchi » Thu Jul 07, 2011 1:47 pm

This is true, i contacted our provider and they had to fix this problem from the SMSC. Thanks for your help.
Locked