org.smslib.TimeoutException: No response fromno devicee.

org.smslib.TimeoutException: No response from device
[问题点数:100分,结帖人donlian]
org.smslib.TimeoutException: No response from device
[问题点数:100分,结帖人donlian]
不显示删除回复
显示所有回复
显示星级回复
显示得分回复
只显示楼主
本帖子已过去太久远了,不再提供回复功能。>> OutboundMessage.java
OutboundMessage.java ( File view )
// SMSLib for Java v3
// A Java API library for sending and receiving SMS via a GSM modem
// or other supported gateways.
// Web Site: http://www.smslib.org
// Copyright (C) , Thanasis Delenikas, Athens/GREECE.
// SMSLib is distributed under the terms of the Apache License version 2.0
// 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.
import java.util.D
import java.util.L
import org.ajwcc.pduUtils.gsm3040.P
import org.ajwcc.pduUtils.gsm3040.PduF
import org.ajwcc.pduUtils.gsm3040.PduG
import org.ajwcc.pduUtils.gsm3040.PduP
import org.ajwcc.pduUtils.gsm3040.PduU
import org.ajwcc.pduUtils.gsm3040.SmsSubmitP
import org.ajwcc.pduUtils.rmationElementF
* Class representing an outbound sms message.
public class OutboundMessage extends Message
private static final long serialVersionUID = 2L;
* Enumeration representing the failure reasons of a failed outbound
* message.
public enum FailureCauses
* No error, everything OK.
* Bad destination number - fatal error.
BAD_NUMBER,
* Bad message format - fatal error.
BAD_FORMAT,
* Generic gateway failure - transient error, retry later.
GATEWAY_FAILURE,
* No credit left - fatal error.
NO_CREDIT,
* Authentication problem (pin, passwords, etc) - fatal error.
GATEWAY_AUTH,
* Unable to route message - transient error.
* EzTexting specific: Local opt out (the recipient/number is on your opt-out list.)
LOCAL_OPTOUT,
* EzTexting specific: Globally opted out phone number (the phone number has been opted out from all messages sent from our short code)
GLOBAL_OPTOUT,
* Unknown generic problems encountered.
* Class representing the status of an outbound message.
public enum MessageStatuses
* A not-yet-sent outbound message.
* An already-sent outbound message.
* A sent-but-failed outbound message.
protected S
private Date dispatchD
private int validityP
private boolean statusR
private MessageStatuses messageS
private FailureCauses failureC
private int retryC
private String refNo;
private String errorM
//private long deliveryD
private Date scheduledDeliveryD
* Outbound message constructor. This parameterless constructor creates an
* empty outbound message.
* @see #OutboundMessage(String, String)
public OutboundMessage()
super(MessageTypes.OUTBOUND, null, null);
setRecipient(&&);
setValidityPeriod(-1);
setStatusReport(false);
setDCSMessageClass(MessageClasses.MSGCLASS_NONE);
setFrom(&&);
setDispatchDate(null);
setDate(new Date());
setEncoding(MessageEncodings.ENC7BIT);
setMessageStatus(MessageStatuses.UNSENT);
setFailureCause(FailureCauses.NO_ERROR);
setPriority(0);
setRefNo(&&);
setGatewayId(&*&);
setRetryCount(0);
* Outbound message constructor.
* @param myRecipient
The recipient of the message.
* @param text
The text of the message.
public OutboundMessage(String myRecipient, String text)
super(MessageTypes.OUTBOUND, new Date(), text);
setRecipient(myRecipient);
setValidityPeriod(-1);
setStatusReport(false);
setDCSMessageClass(MessageClasses.MSGCLASS_NONE);
setFrom(&&);
setDispatchDate(null);
setDate(new Date());
setEncoding(MessageEncodings.ENC7BIT);
setMessageStatus(MessageStatuses.UNSENT);
setFailureCause(FailureCauses.NO_ERROR);
setPriority(0);
setRefNo(&&);
setGatewayId(&*&);
setRetryCount(0);
* Returns the recipient of this outbound message.
* @return The recipient of the message.
* @see #setRecipient(String)
public String getRecipient()
return this.
* Set the recipient of the message.
* @param myRecipient
The recipient of the message.
* @see #getRecipient()
public void setRecipient(String myRecipient)
this.recipient = myR
* Returns the dispatch date of this message. If the message has not been
* sent yet, the dispatch date is null.
* @return The message dispatch date.
public Date getDispatchDate()
if (this.dispatchDate != null) return new java.util.Date(this.dispatchDate.getTime());
public void setDispatchDate(Date myDispatchDate)
this.dispatchDate = myDispatchD
* Returns true if this message is to be sent out as a flash SMS. Otherwise,
* it returns false.
* @return True for a Flash message.
* @see #setFlashSms(boolean)
public boolean getFlashSms()
if (getDCSMessageClass() == MessageClasses.MSGCLASS_FLASH)
* Set the flash message indication. Set this to true for this message to be
* sent as a flash message. Flash messages appear directly on the handset,
* so use this feature with care, because it may be a bit annoying.
* Furthermore, keep in mind that flash messaging is not supported on all
* The default is non-flash (false).
* @param flashSms
True for a flash sms.
public void setFlashSms(boolean flashSms)
if (flashSms) setDCSMessageClass(MessageClasses.MSGCLASS_FLASH);
else setDCSMessageClass(MessageClasses.MSGCLASS_NONE);
* Returns true if a status/delivery report will be asked for this message.
* @return True if a status report will be generated.
public boolean getStatusReport()
return this.statusR
* Sets the status report request. If you set it to true, a status report
* message will be generated, otherwise no status report message will be
* generated.
* The default is (false).
* @param myStatusReport
The status report request status.
public void setStatusReport(boolean myStatusReport)
this.statusReport = myStatusR
* Returns the message validity period (in hours).
* @return The message validity period.
* @see #setValidityPeriod(int)
public int getValidityPeriod()
return this.validityP
* Sets the message validity period.
* @param myValidityPeriod
The message validity period in hours.
* @see #getValidityPeriod()
public void setValidityPeriod(int myValidityPeriod)
this.validityPeriod = myValidityP
* Receives the custom originator string. Set it to empty string to leave
* the default behavior.
* @return The custom originator string.
* @see #setFrom(String)
public String getFrom()
return this.
* Sets the custom originator string. Some gateways allow you to define a
* custom string as the originator. When the message arrives at the
* recipient, the latter will not see your number but this string.
* Note that this functionality is not supported on GSM modems / phones. It
* is supported on most bulk sms operators.
* @param myFrom
The custom originator string.
* @see #getFrom()
public void setFrom(String myFrom)
this.from = myF
* Returns the message status.
* @return The message status.
* @see MessageStatuses
public MessageStatuses getMessageStatus()
return this.messageS
public void setMessageStatus(MessageStatuses myMessageStatus)
this.messageStatus = myMessageS
public FailureCauses getFailureCause()
return this.failureC
* Mark message as failed and set cause of failure.
* @param myFailureCause
Cause of failure
public void setFailureCause(FailureCauses myFailureCause)
if (myFailureCause != FailureCauses.NO_ERROR) this.messageStatus = MessageStatuses.FAILED;
this.failureCause = myFailureC
* Return value of internal sending retry counter.
* @return Number of sending message retries
public int getRetryCount()
return this.retryC
public void setRetryCount(int myRetryCount)
this.retryCount = myRetryC
void incrementRetryCount()
this.retryCount++;
* Returns the priority of the message.
* @return The priority of the message.
public int getPriority()
return this.
* Sets the priority of the message.
* @param myPriority
The new priority.
public void setPriority(int myPriority)
this.priority = myP
* Returns the message Reference Number. The Reference Number comes into
* existence when the message is sent. Its format depends on the gateway:
* For modems, its a number. For bulk sms operators, this is a hex string.
* If the message has not been sent yet, the Reference number is blank.
* @return The message reference number.
public String getRefNo()
return this.refNo;
public void setRefNo(String myRefNo)
this.refNo = myRefNo;
* Returns the error messa
(Not finished, please download and read the complete file)
Expand> <Close
Want complete source code? Download it here
0 lines left, continue to read ▼
Sponsored links
Tips: You can preview the content of files by clicking file names^_^
71.00 B 10:21
maven-ant-tasks-2.1.1.jar1.25 MB 18:03
pom.xml.template2.11 kB 00:51
SMSLib.mf1.17 kB 08:54
SMSServer.mf165.00 B 14:26
10.05 kB 16:45
CHANGELOG.old29.28 kB 15:07
SendMessage.class2.31 kB 23:02
SendMessage$OutboundNotification.class1.22 kB 23:02
SendMessage.class2.82 kB 23:02
SendEzTextingMessage.class2.41 kB 23:02
SendMessage.class2.33 kB 23:02
1.14 kB 23:02
1.42 kB 23:02
1.57 kB 23:02
4.78 kB 23:02
SendMessage$GatewayStatusNotification.class1.41 kB 23:02
SendMessage.class2.63 kB 23:02
1.13 kB 23:02
1.41 kB 23:02
1.55 kB 23:02
1.22 kB 23:02
5.30 kB 23:02
SendEncryptedMessage.class3.25 kB 23:02
SendMessage$OutboundNotification.class1.19 kB 23:02
SendMessage.class3.16 kB 23:02
ReceiveMessage$GatewayStatusNotification.class1.44 kB 23:02
ReceiveMessage$InboundNotification.class1.59 kB 23:02
ReceiveMessage.class2.57 kB 23:02
SendMessage$GatewayStatusNotification.class1.42 kB 23:02
SendMessage$OutboundNotification.class1.22 kB 23:02
SendMessage.class3.05 kB 23:02
SendReceiveMessage$GatewayStatusNotification.class1.47 kB 23:02
SendReceiveMessage$InboundNotification.class1.61 kB 23:02
SendReceiveMessage$OutboundNotification.class1.26 kB 23:02
SendReceiveMessage.class3.15 kB 23:02
CommTest.class4.26 kB 23:02
ConcatInformationElement.class3.87 kB 23:02
InformationElement.class1.56 kB 23:02
InformationElementFactory.class1.63 kB 23:02
PortInformationElement.class2.09 kB 23:02
Pdu.class13.18 kB 23:02
PduFactory.class2.28 kB 23:02
PduGenerator.class12.01 kB 23:02
PduParser.class7.48 kB 23:02
PduUtils.class16.04 kB 23:02
SmsDeliveryPdu.class2.81 kB 23:02
SmsStatusReportPdu.class3.46 kB 23:02
SmsSubmitPdu.class3.68 kB 23:02
AbstractTester$CallNotification.class1.25 kB 23:02
AbstractTester$InboundNotification.class1.99 kB 23:02
AbstractTester$OutboundNotification.class1.31 kB 23:02
AbstractTester.class2.94 kB 23:02
ClickatellSendMessage$OutboundNotification.class1.35 kB 23:02
ClickatellSendMessage.class3.10 kB 23:02
ClickatellSendPortMessage$OutboundNotification.class1.38 kB 23:02
ClickatellSendPortMessage.class3.19 kB 23:02
2.11 kB 23:02
SendBinaryConcatMessage.class1.71 kB 23:02
SendBinaryMessage.class1.58 kB 23:02
SendPortedBinaryMessage.class1.67 kB 23:02
SendPortedConcatBinaryMessage.class1.80 kB 23:02
SendPortedConcatTextMessage.class1.74 kB 23:02
SendPortedTextMessage.class1.57 kB 23:02
SendTextConcatMessage.class1.70 kB 23:02
SendTextMessage.class1.53 kB 23:02
SendWapSIConcatMessage.class1.73 kB 23:02
SendWapSIMessage.class1.58 kB 23:02
MessageGeneratorTester.class6.53 kB 23:02
MultipartGeneratorTester.class2.24 kB 23:02
ParserGeneratorTester.class1.89 kB 23:02
ParserTester.class1.31 kB 23:02
TestFileReader.class1.70 kB 23:02
WapPushUtils.class3.09 kB 23:02
WapSiPdu.class3.32 kB 23:02
WapSiUserDataGenerator.class4.81 kB 23:02
AGateway$AsyncEvents.class1.28 kB 23:02
AGateway$GatewayAttributes.class669.00 B 23:02
AGateway$GatewayStatuses.class1.28 kB 23:02
AGateway$Protocols.class1.04 kB 23:02
AGateway$QueueManager.class3.63 kB 23:02
AGateway$Statistics.class445.00 B 23:02
AGateway.class8.15 kB 23:02
LoadBalancer.class898.00 B 23:02
RoundRobinLoadBalancer.class1.36 kB 23:02
Contact$1.class986.00 B 23:02
Contact$ContactLocation.class1.32 kB 23:02
Contact.class2.73 kB 23:02
AESKey.class2.63 kB 23:02
AKey.class997.00 B 23:02
ASymmetricKey.class930.00 B 23:02
KeyManager.class2.47 kB 23:02
EzTextingOutboundMessage.class1.83 kB 23:02
GatewayException.class802.00 B 23:02
Group.class1.20 kB 23:02
CommPortIdentifier.class4.31 kB 23:02
ExtStringBuilder.class1.36 kB 23:02
Logger.class2.71 kB 23:02
ReflectionHelper.class2.79 kB 23:02
SerialPort$SerialPortEventListenerHandler.class1.27 kB 23:02
SerialPort.class7.76 kB 23:02
SerialPortEvent.class4.09 kB 23:02
SerialPortEventListener.class239.00 B 23:02
BulkSmsHTTPGateway$1.class1.07 kB 23:02
BulkSmsHTTPGateway$Regions.class1.34 kB 23:02
BulkSmsHTTPGateway.class7.85 kB 23:02
ClickatellHTTPGateway$KeepAlive.class1.03 kB 23:02
ClickatellHTTPGateway.class13.34 kB 23:02
EzTextingHTTPGateway.class5.19 kB 23:02
HTTPGateway$HttpHeader.class860.00 B 23:02
HTTPGateway.class5.84 kB 23:02
KannelHTTPGateway$1.class856.00 B 23:02
KannelHTTPGateway$KannelSMSCStatuses.class1.43 kB 23:02
KannelHTTPGateway.class13.14 kB 23:02
SkypeHTTPGateway.class4.18 kB 23:02
ICallNotification.class189.00 B 23:02
IGatewayStatusNotification.class378.00 B 23:02
IInboundMessageNotification.class358.00 B 23:02
InboundBinaryMessage.class2.24 kB 23:02
InboundEncryptedMessage.class1.55 kB 23:02
InboundMessage$MessageClasses.class1.17 kB 23:02
InboundMessage.class9.63 kB 23:02
InvalidMessageException.class824.00 B 23:02
IOrphanedMessageNotification.class220.00 B 23:02
IOutboundMessageNotification.class221.00 B 23:02
IQueueSendingNotification.class215.00 B 23:02
IUSSDNotification.class196.00 B 23:02
Library.class1.10 kB 23:02
Message$MessageClasses.class1.25 kB 23:02
Message$MessageEncodings.class1.19 kB 23:02
Message$MessageTypes.class1.22 kB 23:02
Message.class4.42 kB 23:02
AModemDriver$1.class828.00 B 23:02
AModemDriver$AsyncMessageProcessor.class4.25 kB 23:02
AModemDriver$AsyncNotifier$Event.class1.22 kB 23:02
AModemDriver$AsyncNotifier.class6.54 kB 23:02
AModemDriver$CharQueue.class3.64 kB 23:02
AModemDriver$CNMIEmulatorProcessor.class2.87 kB 23:02
AModemDriver$KeepAlive.class2.39 kB 23:02
AModemDriver$ModemReader.class2.87 kB 23:02
AModemDriver.class17.25 kB 23:02
AATHandler.class6.23 kB 23:02
ATHandler.class15.33 kB 23:02
ATHandler_Huawei.class1.31 kB 23:02
ATHandler_Huawei_E160.class1.44 kB 23:02
ATHandler_Huawei_E226.class535.00 B 23:02
ATHandler_MultiTech.class994.00 B 23:02
ATHandler_Siemens_HC25.class1.35 kB 23:02
ATHandler_Siemens_MC35i.class2.00 kB 23:02
ATHandler_Siemens_MC35i_FD.class1.31 kB 23:02
ATHandler_SonyEricsson.class1.27 kB 23:02
ATHandler_SonyEricsson_GC89.class1.44 kB 23:02
ATHandler_Telit.class1.69 kB 23:02
ATHandler_Teltonika.class524.00 B 23:02
ATHandler_Ubinetics_GDC201.class1.23 kB 23:02
ATHandler_Wavecom.class1.35 kB 23:02
ATHandler_Wavecom_FXT009.class1.12 kB 23:02
ATHandler_Wavecom_Q2438F.class4.70 kB 23:02
ATHandler_Wavecom_SunTraveller.class3.92 kB 23:02
ATHandler_Wavecom_WISMOQCDMA.class5.13 kB 23:02
ATHandler_ZTE_MF622.class1.17 kB 23:02
CNMIDetector.class4.60 kB 23:02
IPModemDriver$Peeker.class2.05 kB 23:02
IPModemDriver.class5.25 kB 23:02
IPModemGateway.class793.00 B 23:02
ModemGateway$IPProtocols.class1.12 kB 23:02
ModemGateway$ModemTypes.class1.12 kB 23:02
ModemGateway.class28.46 kB 23:02
SerialModemDriver$PortReader.class1.07 kB 23:02
SerialModemDriver.class8.10 kB 23:02
SerialModemGateway.class812.00 B 23:02
CallNotification.class729.00 B 23:02
GatewayStatusNotification.class1.18 kB 23:02
InboundMessageNotification.class1.22 kB 23:02
Notification.class841.00 B 23:02
NotifyQueueManager$NotificationQueueManager.class3.41 kB 23:02
NotifyQueueManager.class2.24 kB 23:02
OutboundMessageNotification.class787.00 B 23:02
OutboundBinaryMessage.class2.03 kB 23:02
OutboundEncryptedMessage.class1.05 kB 23:02
OutboundMessage$FailureCauses.class1.59 kB 23:02
OutboundMessage$MessageStatuses.class1.19 kB 23:02
OutboundMessage.class13.33 kB 23:02
OutboundWapSIMessage$WapSISignals.class1.29 kB 23:02
OutboundWapSIMessage.class4.86 kB 23:02
Phonebook.class1.73 kB 23:02
AbstractQueueManager$DelayQueueManager.class1.32 kB 23:02
AbstractQueueManager.class2.21 kB 23:02
DefaultQueueManager$PriorityComparator.class1.27 kB 23:02
DefaultQueueManager.class11.63 kB 23:02
DelayedOutboundMessage.class2.04 kB 23:02
ScheduledOutboundMessage.class1.28 kB 23:02
ARouter.class1.78 kB 23:02
DefaultRouter.class788.00 B 23:02
Router.class2.73 kB 23:02
Service$1ExceptionPair.class588.00 B 23:02
Service$1Starter.class1.57 kB 23:02
Service$ServiceStatus.class1.16 kB 23:02
Service$WatchDog.class2.31 kB 23:02
Service.class24.93 kB 23:02
Settings.class3.17 kB 23:02
AbstractSMPPGateway.class2.52 kB 23:02
Address$NumberingPlanIndicator.class2.38 kB 23:02
Address$TypeOfNumber.class2.14 kB 23:02
Address.class1.13 kB 23:02
BindAttributes$BindType.class1.98 kB 23:02
BindAttributes.class1.56 kB 23:02
JSMPPGateway$1.class2.27 kB 23:02
JSMPPGateway$JSMPPSessionStateListener.class2.22 kB 23:02
JSMPPGateway$MessageReceiver.class4.82 kB 23:02
JSMPPGateway.class10.84 kB 23:02
SMSLibException.class924.00 B 23:02
AGateway.class1.51 kB 23:02
BulkSmsHttp.class2.55 kB 23:02
ClickatellHttp.class1.93 kB 23:02
EzTextingHttp.class1.79 kB 23:02
IPModem.class3.26 kB 23:02
KannelHttp.class2.25 kB 23:02
SerialModem.class2.90 kB 23:02
SMPPGateway.class4.62 kB 23:02
TestGateway.class1.80 kB 23:02
Database$1.class1.85 kB 23:02
Database.class15.65 kB 23:02
Interface$InterfaceTypes.class1.29 kB 23:02
Interface.class5.09 kB 23:02
SimpleInboundFileLogger.class2.63 kB 23:02
SMSServer$CallNotification.class1.70 kB 23:02
SMSServer$InboundNotification.class2.70 kB 23:02
SMSServer$InboundPollingThread.class1.67 kB 23:02
SMSServer$OrphanedMessageNotification.class1.14 kB 23:02
SMSServer$OutboundNotification.class1.70 kB 23:02
SMSServer$OutboundPollingThread.class1.55 kB 23:02
SMSServer$QueueSendingNotification.class1.26 kB 23:02
SMSServer$Shutdown.class1.86 kB 23:02
SMSServer.class15.09 kB 23:02
StatusReportMessage$DeliveryStatuses.class1.34 kB 23:02
StatusReportMessage.class3.45 kB 23:02
TestGateway$1.class2.07 kB 23:02
TestGateway.class4.65 kB 23:02
AServiceThread.class2.37 kB 23:02
TimeoutException.class802.00 B 23:02
UnknownMessage.class1.77 kB 23:02
USSDDatagram.class1.08 kB 23:02
USSDDcs.class2.86 kB 23:02
USSDRequest.class2.47 kB 23:02
USSDResponse.class3.40 kB 23:02
USSDResultPresentation.class1.57 kB 23:02
USSDSession.class3.17 kB 23:02
USSDSessionStatus.class2.03 kB 23:02
pduutils.jar72.36 kB 23:02
smslib-3.5.3.jar307.62 kB 23:02
SMSLib.mf1.16 kB 23:02
smsserver-3.5.3.jar347.47 kB 23:02
SMSServer.mf161.00 B 23:02
4.29 kB 22:00
4.93 kB 22:31
2.10 kB 20:00
0.00 B 12:54
3.47 kB 22:10
9.83 kB 12:54
1.87 kB 22:00
6.10 kB 10:03
1.88 kB 10:10
9.26 kB 23:27
67.00 B 12:54
5.06 kB 22:14
7.78 kB 22:00
5.05 kB 22:14
1.63 kB 22:14
8.96 kB 09:57
8.47 kB 10:03
4.19 kB 10:03
5.92 kB 22:38
1.03 kB 13:49
1,017.00 B 23:38
10.53 kB 15:45
712.00 B 22:10
5.85 kB 15:17
3.65 kB 12:54
1.29 kB 20:36
1.72 kB 23:16
1.79 kB 00:49
1.57 kB 12:54
3.13 kB 22:10
2.21 kB 21:05
17.26 kB 23:03
14.82 kB 23:03
10.65 kB 23:03
5.20 kB 23:03
9.79 kB 23:03
299.84 kB 23:03
1.40 kB 23:03
15.33 kB 23:03
14.72 kB 23:03
15.37 kB 23:03
52.04 kB 23:03
13.42 kB 23:03
10.10 kB 23:03
6.00 kB 23:03
10.92 kB 23:03
1.02 kB 23:03
6.92 kB 23:03
6.23 kB 23:03
7.53 kB 23:03
11.47 kB 23:03
11.88 kB 23:03
5.89 kB 23:03
10.56 kB 23:03
41.72 kB 23:03
9.55 kB 23:03
10.37 kB 23:03
8.10 kB 23:03
5.88 kB 23:03
91.20 kB 23:03
5.69 kB 23:03
8.48 kB 23:03
8.74 kB 23:03
8.77 kB 23:03
7.48 kB 23:03
5.87 kB 23:03
26.54 kB 23:03
21.41 kB 23:03
7.51 kB 23:03
8.82 kB 23:03
8.79 kB 23:03
8.73 kB 23:03
8.48 kB 23:03
5.71 kB 23:03
10.79 kB 23:03
9.65 kB 23:03
10.19 kB 23:03
11.24 kB 23:03
7.85 kB 23:03
5.88 kB 23:03
9.86 kB 23:03
50.87 kB 23:03
9.90 kB 23:03
5.84 kB 23:03
11.86 kB 23:03
9.44 kB 23:03
7.31 kB 23:03
8.65 kB 23:03
8.13 kB 23:03
12.91 kB 23:03
13.40 kB 23:03
5.83 kB 23:03
89.42 kB 23:03
5.78 kB 23:03
10.76 kB 23:03
10.58 kB 23:03
10.00 kB 23:03
8.57 kB 23:03
10.69 kB 23:03
5.75 kB 23:03
10.89 kB 23:03
16.08 kB 23:03
12.46 kB 23:03
16.72 kB 23:03
10.35 kB 23:03
15.36 kB 23:03
5.82 kB 23:03
10.33 kB 23:03
7.58 kB 23:03
9.01 kB 23:03
16.99 kB 23:03
1.17 kB 23:03
7.42 kB 23:03
6.47 kB 23:03
8.22 kB 23:03
23.46 kB 23:03
12.31 kB 23:03
12.41 kB 23:03
8.95 kB 23:03
5.92 kB 23:03
8.42 kB 23:03
5.92 kB 23:03
8.73 kB 23:03
7.81 kB 23:03
7.99 kB 23:03
14.69 kB 23:03
12.29 kB 23:03
12.63 kB 23:03
1.75 kB 23:03
8.23 kB 23:03
7.05 kB 23:03
7.74 kB 23:03
16.51 kB 23:03
32.21 kB 23:03
18.58 kB 23:03
8.77 kB 23:03
26.33 kB 23:03
15.88 kB 23:03
5.92 kB 23:03
9.64 kB 23:03
5.94 kB 23:03
5.93 kB 23:03
5.91 kB 23:03
9.33 kB 23:03
5.90 kB 23:03
29.10 kB 23:03
22.26 kB 23:03
34.19 kB 23:03
16.57 kB 23:03
1.81 kB 23:03
8.42 kB 23:03
7.33 kB 23:03
6.96 kB 23:03
20.44 kB 23:03
8.79 kB 23:03
9.58 kB 23:03
9.48 kB 23:03
21.17 kB 23:03
18.46 kB 23:03
27.46 kB 23:03
14.33 kB 23:03
12.67 kB 23:03
9.42 kB 23:03
9.46 kB 23:03
9.30 kB 23:03
8.97 kB 23:03
10.11 kB 23:03
31.44 kB 23:03
15.29 kB 23:03
14.73 kB 23:03
15.04 kB 23:03
15.87 kB 23:03
70.98 kB 23:03
74.90 kB 23:03
20.28 kB 23:03
19.03 kB 23:03
17.83 kB 23:03
18.58 kB 23:03
19.78 kB 23:03
21.67 kB 23:03
21.62 kB 23:03
19.22 kB 23:03
20.73 kB 23:03
18.58 kB 23:03
16.94 kB 23:03
19.59 kB 23:03
20.45 kB 23:03
18.76 kB 23:03
30.45 kB 23:03
21.68 kB 23:03
21.61 kB 23:03
18.36 kB 23:03
18.22 kB 23:03
15.09 kB 23:03
8.36 kB 23:03
6.10 kB 23:03
6.10 kB 23:03
6.08 kB 23:03
6.11 kB 23:03
8.02 kB 23:03
6.15 kB 23:03
8.01 kB 23:03
6.16 kB 23:03
6.04 kB 23:03
6.08 kB 23:03
6.15 kB 23:03
8.86 kB 23:03
6.13 kB 23:03
6.13 kB 23:03
6.19 kB 23:03
6.17 kB 23:03
6.08 kB 23:03
3.42 kB 23:03
11.75 kB 23:03
9.91 kB 23:03
9.18 kB 23:03
10.31 kB 23:03
8.19 kB 23:03
5.89 kB 23:03
19.70 kB 23:03
9.99 kB 23:03
9.66 kB 23:03
5.92 kB 23:03
11.14 kB 23:03
19.22 kB 23:03
60.57 kB 23:03
13.77 kB 23:03
14.00 kB 23:03
1.74 kB 23:03
8.31 kB 23:03
7.30 kB 23:03
9.07 kB 23:03
19.20 kB 23:03
22.54 kB 23:03
18.97 kB 23:03
18.88 kB 23:03
40.11 kB 23:03
14.49 kB 23:03
30.53 kB 23:03
15.22 kB 23:03
6.91 kB 23:03
18.94 kB 23:03
13.01 kB 23:03
33.64 kB 23:03
11.44 kB 23:03
23.39 kB 23:03
10.11 kB 23:03
5.94 kB 23:03
5.99 kB 23:03
28.50 kB 23:03
1.14 kB 23:03
7.09 kB 23:03
6.46 kB 23:03
7.59 kB 23:03
11.96 kB 23:03
12.73 kB 23:03
7.60 kB 23:03
5.90 kB 23:03
8.39 kB 23:03
12.38 kB 23:03
1.08 kB 23:03
7.15 kB 23:03
6.33 kB 23:03
7.49 kB 23:03
12.02 kB 23:03
109.97 kB 23:03
14.26 kB 23:03
27.81 kB 23:03
24.39 kB 23:03
13.01 kB 23:03
19.79 kB 23:03
17.97 kB 23:03
15.60 kB 23:03
15.20 kB 23:03
7.69 kB 23:03
11.06 kB 23:03
10.77 kB 23:03
10.46 kB 23:03
11.29 kB 23:03
10.23 kB 23:03
5.96 kB 23:03
22.05 kB 23:03
925.00 B 23:03
6.36 kB 23:03
6.43 kB 23:03
5.62 kB 23:03
1.65 kB 23:03
7.53 kB 23:03
7.14 kB 23:03
8.78 kB 23:03
12.43 kB 23:03
17.35 kB 23:03
15.82 kB 23:03
12.43 kB 23:03
10.71 kB 23:03
6.03 kB 23:03
6.06 kB 23:03
6.05 kB 23:03
5.99 kB 23:03
6.02 kB 23:03
6.03 kB 23:03
6.03 kB 23:03
6.03 kB 23:03
12.50 kB 23:03
12.47 kB 23:03
12.34 kB 23:03
12.40 kB 23:03
1.84 kB 23:03
8.88 kB 23:03
7.68 kB 23:03
6.96 kB 23:03
12.43 kB 23:03
12.49 kB 23:03
12.22 kB 23:03
6.02 kB 23:03
9.98 kB 23:03
12.43 kB 23:03
6.17 kB 23:03
25.19 kB 23:03
28.73 kB 23:03
15.42 kB 23:03
1.51 kB 23:03
7.90 kB 23:03
7.06 kB 23:03
8.24 kB 23:03
18.77 kB 23:03
909.00 B 23:03
6.76 kB 23:03
6.08 kB 23:03
7.68 kB 23:03
11.77 kB 23:03
15.87 kB 23:03
24.73 kB 23:03
17.61 kB 23:03
5.92 kB 23:03
919.00 B 23:03
6.50 kB 23:03
6.04 kB 23:03
5.57 kB 23:03
12.18 kB 23:03
17.06 kB 23:03
13.00 kB 23:03
25.18 kB 23:03
15.01 kB 23:03
14.68 kB 23:03
15.45 kB 23:03
16.82 kB 23:03
17.83 kB 23:03
2.90 kB 23:03
8.56 kB 23:03
25.70 kB 23:03
package-list322.00 B 23:03
inherit.gif57.00 B 23:03
24.73 kB 23:03
1.39 kB 23:03
commons-net-3.0.1.jar262.71 kB 18:16
jsmpp-2.1.0.jar296.14 kB 09:07
log4j-1.2.16.jar470.25 kB 22:16
slf4j-api-1.6.3.jar25.09 kB 18:43
slf4j-log4j12-1.6.3.jar9.52 kB 18:43
LICENSE9.94 kB 10:21
2.22 kB 00:51
&Eclipse&0.00 B 23:01
Eclipse27.72 kB 12:47
&Log4j&0.00 B 23:01
Log4j231.00 B 12:47
&Database&0.00 B 23:01
Database1.44 kB 23:26
Database6.44 kB 21:12
Database2.50 kB 21:12
Database2.48 kB 21:12
Database1.32 kB 21:43
Database93.00 B 21:12
7.73 kB 21:44
8.05 kB 21:44
20.58 kB 21:44
6.21 kB 11:14
18.78 kB 22:58
9.05 kB 16:45
1.83 kB 21:25
2.95 kB 22:38
2.02 kB 22:31
1.94 kB 22:31
6.18 kB 22:38
2.27 kB 22:38
6.91 kB 23:45
2.22 kB 22:38
3.22 kB 22:14
2.33 kB 22:38
2.38 kB 22:38
3.01 kB 22:38
3.35 kB 17:38
5.74 kB 18:20
1.80 kB 18:20
2.17 kB 18:20
2.45 kB 18:20
18.62 kB 22:37
3.42 kB 18:20
19.05 kB 07:29
10.98 kB 18:47
32.30 kB 22:37
3.67 kB 05:05
4.73 kB 05:05
4.65 kB 05:05
2.87 kB 22:38
2.50 kB 22:38
2.56 kB 22:38
2.00 kB 22:38
1.20 kB 22:38
1.06 kB 22:38
1.14 kB 22:38
1.28 kB 22:38
1.26 kB 22:38
1.09 kB 22:38
1.21 kB 22:38
1.04 kB 22:38
1.50 kB 22:38
1.09 kB 22:38
7.73 kB 15:13
4.97 kB 10:33
1.85 kB 19:06
1.38 kB 04:54
2.33 kB 04:54
13.08 kB 08:29
5.02 kB 02:44
4.72 kB 18:20
3.78 kB 18:20
9.66 kB 18:20
15.69 kB 11:14
1.66 kB 11:14
135.00 B 18:20
1.77 kB 11:14
3.42 kB 11:14
2.87 kB 11:14
1.47 kB 11:14
3.12 kB 11:14
5.17 kB 11:14
123.00 B 12:58
3.32 kB 22:31
1.32 kB 11:14
2.23 kB 11:14
6.54 kB 11:14
1.71 kB 11:14
2.75 kB 11:14
121.00 B 12:51
3.15 kB 11:14
21.69 kB 11:14
5.29 kB 11:31
555.00 B 18:20
7.79 kB 15:01
14.99 kB 11:14
5.24 kB 22:31
5.01 kB 11:14
14.86 kB 11:14
70.00 B 18:20
3.77 kB 11:14
1.39 kB 11:14
1.55 kB 11:14
1.54 kB 11:14
2.57 kB 11:14
1.99 kB 11:14
10.21 kB 11:14
1.36 kB 11:14
1.68 kB 11:14
1.72 kB 11:14
1.56 kB 11:14
1.38 kB 11:14
1.68 kB 22:56
9.16 kB 11:14
32.42 kB 11:14
9.79 kB 11:14
21.25 kB 11:14
1.88 kB 11:14
2.20 kB 11:14
1.15 kB 11:14
1.47 kB 11:14
2.32 kB 22:38
2.28 kB 11:14
1.84 kB 11:14
2.03 kB 11:14
2.00 kB 11:14
2.02 kB 11:14
1.11 kB 11:14
2.35 kB 11:14
1.91 kB 11:14
1.52 kB 11:14
5.79 kB 11:14
4.44 kB 11:14
5.60 kB 11:14
1.57 kB 11:14
64.00 B 10:45
5.85 kB 11:14
5.66 kB 18:43
1.64 kB 11:14
40.90 kB 18:47
63.00 B 10:45
7.93 kB 11:14
1.70 kB 11:14
1.25 kB 11:14
1.59 kB 11:14
1.56 kB 11:14
1.31 kB 11:14
4.13 kB 11:14
1.29 kB 11:14
2.65 kB 11:14
1.66 kB 11:14
18.79 kB 11:14
4.44 kB 11:14
378.00 B 10:45
2.18 kB 11:14
4.08 kB 11:14
12.24 kB 18:43
1.94 kB 11:14
80.00 B 21:38
1.83 kB 11:14
1.70 kB 01:22
604.00 B 01:22
130.00 B 18:20
4.10 kB 11:14
49.24 kB 11:14
8.23 kB 11:14
2.81 kB 11:14
3.62 kB 11:14
2.45 kB 11:14
13.09 kB 11:14
1.52 kB 11:14
2.13 kB 11:14
2.94 kB 11:14
2.02 kB 11:14
1.82 kB 22:31
3.47 kB 11:14
2.40 kB 11:14
150.00 B 22:10
3.03 kB 11:14
4.06 kB 11:14
2.03 kB 11:14
18.07 kB 11:14
8.27 kB 11:14
154.00 B 22:10
1.95 kB 11:14
243.00 B 11:53
SMSServer.conf3.53 kB 20:05
19.33 kB 11:14
4.81 kB 11:14
6.41 kB 11:14
2.64 kB 11:14
84.00 B 11:20
1.33 kB 11:14
2.10 kB 11:14
1.46 kB 11:14
2.89 kB 11:14
2.80 kB 11:14
3.47 kB 11:14
1.54 kB 11:14
3.24 kB 11:14
2.10 kB 11:14
1.34 kB 23:51
1.01 kB 01:22
3.61 kB 01:22
Sponsored links
23 Source Codes 21 Source Codes 18 Source Codes 13 Source Codes 9 Source Codes
285 Source Codes 173 Source Codes 48 Source Codes 42 Source Codes 36 Source Codes
Sent successfully!
smslib-v3.5.3.zip
Your Point(s)
Your Point isn't enough.
Get point immediately by PayPal
10 Point / $20
22 Point / $40
55 Point / $100
120 Point / $200
point will be added to your account automatically after the transaction.
Don't have an account?
Need any help?
切换到中文版?
^_^"Oops ...
Sorry!This guy is mysterious, its blog hasn't been opened, try another, please!
Favorite by

我要回帖

更多关于 no device 的文章

 

随机推荐