Using SMSLib 3.5.4 i am able to receive and send messages to the device.
But the message is not reaching the device when both source and destination port is set to the outbound message. whereas when i do not set any source and destination port it works fine i.e the message is reaches the device.
Code used is below
OutboundMessage lmsg = new OutboundMessage(no, messageTxt);
lmsg.setSrcPort(50000);
lmsg.setDstPort(50000);
Service.getInstance().sendMessage(lmsg);
No exception being thrown.
Thanks in advance.