javaruntime-errorsmpp

Logica SMPP error relating to a missing class


I am developing mobile application that will interact with an smsc through the shortcode feature.

Since I cannot afford to get a shortcode, I decided to use the Logica SMPP server

So am trying to run the Logica SMPP test application first to get some idea of sending and processing text messages.

But I get and error as seen in the screen shot

Logica SMPP error


Solution

  • It's not clear from the screenshot what full command you used. I am assuming the following:

    java -cp smpp.jar:smpptest.jar:smscsim.jar com.logica.smpp.test.SMPPTest
    

    Since you are on Windows, semicolon (;) is the correct jar file separator, not colon (:) which works on Linux.

    So, the correct command is:

    java -cp smpp.jar;smpptest.jar;smscsim.jar com.logica.smpp.test.SMPPTest