Thanks for the reply,
i know, this is a weird case. i using simple plain "hello" text
message. as far as i try, there are no BlackBerry phone that receive
my test message, but the delivery report status updated to "D" which
mean "Delivered". And yesterday when i try sending a message using
sendMessage.java from SMSLib to BlackBerry phone, i got an unexpected
result. the BlackBerry phone can receive my message. weird..  :D

so, when i tried to send the message with SMSServer Database
Interfaces to BlackBerry phone, the BlackBerry can not receive my
message. but when i use sample sendMessage.java from SMSLib the phone
succesfully receive my message..

is there any different sending mechanism between normal
sendMessage.java and the SMSServer?

here is part of my sendMessage.java code :
        SerialModemGateway gateway = new
SerialModemGateway("modem.com9", "COM14",115200, "Wavecom", "M1306B");
        gateway.setInbound(true);
        gateway.setOutbound(true);
        gateway.setSimPin("0000");

 
Service.getInstance().setOutboundMessageNotification(outboundNotification);
        Service.getInstance().addGateway(gateway);
        Service.getInstance().startService();

        // Send a message synchronously.
        OutboundMessage msg = new OutboundMessage("085264837000",
"Hello");
        Service.getInstance().sendMessage(msg);
        System.out.println(msg);

any idea what the problem is?

Regards,
Rangganovsky

On Oct 14, 2:03 am, "T.Delenikas" <[email protected]> wrote:
> I have minimal experience with Blackberries, nevertheless a Blackberry is
> still a phone. And the observation that placing the SIM in another phone
> leads to successful delivery is epic...
>
> I can't really say what is wrong. But I can definitely assure you that this
> is NOT an SMSLib/SMSServer configuration issue.
>
> Have you tried to isolate the cases? I mean, are you using simple plain text
> messages or any other type of messaging?
> Does a Blackberry *ever* receive a message or we are talking about total
> delivery failure?

-- 
You received this message because you are subscribed to the Google Groups 
"SMSLib Discussion Group" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/smslib?hl=en.

Reply via email to