System type problem

.NET library for SMPP protocol
Locked
pzaretsky
Posts: 1
Joined: Tue Aug 20, 2013 1:08 pm

System type problem

Post by pzaretsky » Tue Aug 20, 2013 1:12 pm

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
alt
Site Admin
Posts: 985
Joined: Tue Apr 25, 2006 9:45 am

Re: System type problem

Post by alt » Thu Aug 22, 2013 8:20 am

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.
Locked