Re: SMPP How to receive delivery receipt from smsc as producer?

2014-07-07 Thread viezz
I'm sorry my phone was broken for a week so i don't receive any emails, and it's been a while since i used camel smpp. Sent from my iPhone > On 7 Jul 2014, at 05.15 PM, "baMufu [via Camel]" > wrote: > > > baMufu wrote > Who would u mind sharing your code on how u managed to get response fro

Re: Sending Multiple SMPP Message and get response for each message submitted

2011-05-18 Thread viezz
sorry, there's some code missing in my previous post, and here's the complete code: ProducerTemplate producer = exchng.getContext().createProducerTemplate(); it = taskList.iterator(); while (it.hasNext()) { t = (Task) it.next(); mcaSenderProcessor.setTask(t); mes

Sending Multiple SMPP Message and get response for each message submitted

2011-05-18 Thread viezz
Hello, I follow the example from camel FAQ about sending multiple message from a single processor, but I'm not using spring injection, because I set my application to run standalone as executable jar. here's my route: from(smppUri).process(myProcessor); and here's the code inside myProcesso

Re: SMPP How to receive delivery receipt from smsc as producer?

2011-05-01 Thread viezz
I finally receive the deliversm and delivery receipt after I use simulator from selenium, i'm using my last route and the consumer received both deliversm and delivery receipt. looks like the problem wasn't the routing or smpp library, but the smsc from logica, because once I've tried using smsc f

Re: SMPP How to receive delivery receipt from smsc as producer?

2011-04-29 Thread viezz
hello Christian, thank you for your reply, but I'm still experiencing the same problem, I don't know if I'm still not quite understand about camel routing, but I've changed my routing after I read the source from you given link. here's my new route: from("file:data/inbox").process(messageProcess

SMPP How to receive delivery receipt from smsc as producer?

2011-04-29 Thread viezz
hello, I'm new to camel and smpp, currently I'm working on a project that requires smpp to send and receive sms from an smsc, i'm making a simulation using smsc from logica. i was using camel-smpp as a producer to send messaage to smsc, here is my routing: from("file:data/inbox").process(messa