org.jsmpp.examples.AcceptingConnectionAndBindExample Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.jsmpp.examples;
import java.io.IOException;
import java.util.concurrent.TimeoutException;
import org.jsmpp.PDUStringException;
import org.jsmpp.SMPPConstant;
import org.jsmpp.session.BindRequest;
import org.jsmpp.session.SMPPServerSession;
import org.jsmpp.session.SMPPServerSessionListener;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* @author uudashr
*
*/
public class AcceptingConnectionAndBindExample {
private static final Logger LOGGER = LoggerFactory.getLogger(AcceptingConnectionAndBindExample.class);
public static void main(String[] args) {
try {
LOGGER.info("Listening ...");
SMPPServerSessionListener sessionListener = new SMPPServerSessionListener(8056);
// accepting connection, session still in OPEN state
SMPPServerSession session = sessionListener.accept();
LOGGER.info("Accept connection");
try {
BindRequest request = session.waitForBind(5000);
LOGGER.info("Receive bind request");
if ("test".equals(request.getSystemId()) &&
"test".equals(request.getPassword())) {
// accepting request and send bind response immediately
LOGGER.info("Accepting bind request, interface version is {}", request.getInterfaceVersion());
request.accept("sys");
try {
Thread.sleep(20000);
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
}
} else {
LOGGER.info("Rejecting bind request");
request.reject(SMPPConstant.STAT_ESME_RINVPASWD);
}
} catch (TimeoutException e) {
LOGGER.error("No binding request made after 5000 millisecond", e);
}
if (session.getSessionState().isBound()) {
LOGGER.info("Closing session");
session.unbindAndClose();
}
LOGGER.info("Closing session listener");
sessionListener.close();
} catch (PDUStringException e) {
LOGGER.error("PDUStringException", e);
} catch (IOException e) {
LOGGER.error("IOException", e);
}
}
}