Page 1 of 1

System type problem

Posted: Tue Aug 20, 2013 1:12 pm
by pzaretsky
Hi
I have strange problem with the system_type parameter on bind operation.
I've tried to set it by 2 ways
client = new SmppClient();
client.SystemType = "sometype";
client.Bind(Login, Password);
and
client = new SmppClient();
Bind b = new Bind();
... other parameters such Login Password ...
b.SystemType = "sometype";
client.Bind(b);

But when we see on the server side trace - there is no system_type parameter. All others are good, but no system_type
What we do wrong?
Thanks

Re: System type problem

Posted: Thu Aug 22, 2013 8:20 am
by alt
Hi pzaretsky,

Your code looks correct. Could you send me some log information. in SmppClientDemo format or using Wireshark application.

Please make sure that SMPP server waits SystemType in the BindSm from you, and not ServiceType in SubmitSm.