Its really just a long message. A series of 'X' characters. like,

string text = "XXXXX";
                while (text.Length < 1000)
                {

                    text += text;
                }
                message = message + "\n" + text;


OutboundMessage msg = new OutboundMessage(number, message);
srv.sendMessage(msg);
Console.WriteLine(msg);


 I'm just trying to test it if it can properly process and concatenate 
multiple sms segments. It can successfully send the long message, but when 
Console.WriteLine(msg) is executed after sending, the pdu part goes like 
this

pdu data: <cannot extract properly, udh present>

How can I go to the exact line of code which produced that error message. 
How can I access the actual implementations of the methods. I can only see 
the method declarations because only the .dll file is available, not the 
source code. I would just like to understand this possible error risk. 





-- 
You received this message because you are subscribed to the Google Groups 
"SMSLib Discussion Group" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/smslib/-/8z58ZR7PmtMJ.


  • [smslib] Problem w... david antenor via SMSLib Discussion Group
    • [smslib] Re: ... david antenor via SMSLib Discussion Group
      • Re: [smsl... SMSLib Discussion Group on behalf of Thanasis Delenikas
        • Re: [... david antenor via SMSLib Discussion Group
          • R... SMSLib Discussion Group on behalf of Thanasis Delenikas
            • ... david antenor via SMSLib Discussion Group
              • ... SMSLib Discussion Group on behalf of Thanasis Delenikas
                • ... david antenor via SMSLib Discussion Group

Reply via email to