0

Does camel-smpp support setting a specific source host and port to create a SocketConnection towards the SMS-C? According to my knowledge there are no URI parameters to set the SOURCE_HOST or SOURCE_PORT.

If there exist such parameters please point me to. Otherwise, any suggestions for possible resolution?

gmich
  • 329
  • 2
  • 19
  • Can you explain more what SOURCE_HOST and SOURCE_PORT is? – Claus Ibsen Jul 17 '15 at 05:39
  • Hi Claus. What I want is to be able to bind my ESME(my app) to bind at a specific local IP and local port. I though these parameters were not available in came-smpp component. After further investigation it is not feasible in JSMPP as well. `org.jsmpp.session.connection.socket` package is responsible for creating socket Connections to the SMS-C and it doesn't support `java.net.Socket(InetAddres remoteAddress, int remotePort, InnetAddress localAddres, int localPort)` I am closing it. It doesn't have to do with Camel. – gmich Jul 20 '15 at 10:04

1 Answers1

0

It is not an issue of Camel.
Underlying SMPP library (jsmpp) doesn't support creating a bind to a remote SMS-C by first binding in a specific local address and port.

gmich
  • 329
  • 2
  • 19