Search code examples
smswso2smppjsmppwso2-esb

SMS Transport sender in wso2 ESB


Recently I read an article about Sending SMS notifications using WSo2 esb. Unfortunately it does not work for me and I am not 100% sure about some of those configurations. Following are the problems that I have.

  1. Are there any other library files, rather than the two files below, that can be used to enable SMS transport sender over SMPP?

    axis2-transport-sms-1.0.0.jar

    jsmpp-2.1.0.jar

  2. What is the actual directory into which I should put each of those jars - is it $ESB_HOME/repository/components/lib ?.

  3. Finally, what should the address endpoint for sending a specific number look like?

Is it like this?

 <endpoint>  
    <address uri="sms://94777179968">  
    </address>  

Note :- I am using a SMSC simulator as my actual SMSC.

Thanks in advance.


Solution

  • Answers to your specific questions... 1. no, these are correct put them in the place as directed in the article 2. yes 3. yes, but if this is entered through the design view you will get an error saying it is an invalid format. Switch to source view to add. (However, although I did get the error, it did appear in the source view too, so you'll just have to experiment with this).

    Follow the article exactly BUT there is a slight error in both the config file for the proxy service and for the config in the axis2 file (to enable the SMS transport)

    In the service xml the description tag surrounds all of the target so move the empty description element outside the closing target element.

    The axix2 config file needs the transportsender element altered slightly to be transportSender - note the capital 'S' for sender.

    That is how I got this to work. Good luck.