Search found 1 match

by pzaretsky
Tue Aug 20, 2013 1:12 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: System type problem
Replies: 1
Views: 11561

System type problem

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