Sms Internet API for Java: SDK Manual









Oracle JDBC Logging using java.util.logging

If you cannot or do not want to change the source you can set the. Java system property to enable logging for the entire program execution. Step 2a: globally 


IBM Tivoli Netcool/OMNIbus Generic Log File Java Probe

20 juil. 2017 Some properties form the legacy probe have been renamed and now take different values. • Some features and the properties required to configure ...
glf java pdf


Platform SDK Developer's Guide

JavaUtilLoggerFactoryImpl - redirect Platform SDK logs to Java You can also configure logging using a PlatformSDK.xml Java properties file that is ...


Working with the webMethods Product Suite and the Java Service

6 avr. 2014 Viewing and Editing the Java Service Wrapper Properties . ... Record the console output from the JVM in a log file.
Working with Java Service Wrapper





VMware Tanzu Greenplum Platform Extension Framework v6.2

2 févr. 2022 PXF is compatible with these Java and Hadoop component versions: PXF Version ... New pxf.log.level property to set the PXF logging level.
tanzu greenplum platform extension framework


PDF Apache Log4j 2

28 juin 2022 Because of the need to convert the syntax into a Node tree the Java properties syntax used by Log4j required all properties follow a naming ...
log j users guide


TIBCO EBX® Installation Guide

17 mars 2022 jarsToSkip property from the catalina.properties file. 2.7 Installation notes. EBX can be deployed on any Java EE application server that ...
TIB ebx . . installation


Oracle GoldenGate Application Adapters Release Notes 12.1.2

11 sept. 2016 3.1.1.1 Java Logging Properties The section lists logging properties that are deprecated for release 12.1.2.1.1 Java logging. □ gg.log.
E





ReadSoft PROCESS DIRECTOR - Web Application Configuration

See the SAP documentation for more information. Set the Java log file path. After deploying the Web Application the log4j.properties file should be available 
PROCESS DIRECTOR Web Application Configuration Guide . .x


Sms Internet API for Java: SDK Manual

5 févr. 2009 Java Sms Internet configuration file for the SDK . ... For debugging purposes please create a log4j.properties file in your classpath with ...
Solution SMS Internet Manuel SDK Java


213547 Sms Internet API for Java: SDK Manual

Version 1.0.0-000Sms Internet API for Java

SDK Manual

Version 1.0.0-000

Sms Internet API for Java: SDK Manual

Abstract

This manual is a collection of topics related to develop code using all the advanced features of Orange™ Sms Internet with our SDK.

By the end of this manual you will be able to send and receive sms through the Orange France Generic Pop-Up Server using the

toolkit (SDK) we've built for an easy integration within your applications. Our SDK has been designed to hide all the complexity of

the underlying communication and to help leverage the power of Object Oriented Programming.

You will learn the minimum configuration to write in order to run our SDK and create your first API calls.

The audience of this manual targets new developers or decidors who are interested in empowering their applications with the SMS

Internet features we are providing.

This API will be reachable by XML protocol over HTTPS.

Revision History

Revision 1.0.0-0002009/02/05

First release.

Version 1.0.0-000

Table of Contents

1. Overview ........................................................................................................................................................ 1

1. Introduction ............................................................................................................................................ 1

2. SMS Internet features ............................................................................................................................. 1

3. Concepts ................................................................................................................................................ 1

2. General .......................................................................................................................................................... 2

1. Business objects ..................................................................................................................................... 2

2. Client certificate ..................................................................................................................................... 3

3. The SMS Internet SDK ................................................................................................................................... 5

1. Exception ............................................................................................................................................... 6

2. Sms Internet ........................................................................................................................................... 7

3. Business data rules ................................................................................................................................. 8

4. Business data request .............................................................................................................................. 9

5. Business data response .......................................................................................................................... 15

6. Notification ........................................................................................................................................... 17

7. Xstream ................................................................................................................................................ 17

8. Logging ................................................................................................................................................ 18

9. Create a project for Eclipse or Netbeans with the Sms Internet SDK ........................................................ 20

4. SDK methods ............................................................................................................................................... 24

1. SDK description ................................................................................................................................... 24

2. Java Sms Internet configuration file for the SDK .................................................................................... 24

3. Method sendRequest ............................................................................................................................. 25

4. Method subscribeNotifications/ unsubscribeNotifications ........................................................................ 31

A. Error codes .................................................................................................................................................. 35

1. Result causes ........................................................................................................................................ 35

2. Error messages ..................................................................................................................................... 38

Version 1.0.0-0001

Chapter 1. Overview

1. Introduction

Now you've downloaded the various files and libraries, you're ready to get started. We'll take you through how

to use the SDK to make simple calls, send an SMS Text ...

2. SMS Internet features

SMS Internet enables your application to send and receive SMS.

With SMS Internet, your applications are enabled to inform, alert, collect information or broadcast instructions

in remote.

The solution is based on linking businesses to Orange France network through the SMS center (SMS-C). It

allows companies to benefit from following functions: •track delivery, •manage queues, •storage modes.

3. Concepts

Connecting to SMS-C allow your application servers to send or receives 2 types of SMS: •SMS-MO (Short Message Services - Mobile Originated): SMS issued from mobile towards a computer application.

•SMS-MT (Short Message Services - Mobile Terminated): SMS issued from a computer application and

received on mobile In all cases, SMS are composed of 160 characters maximum or 140 bytes depending type of coding used.

SMS Internet works on Orange France mobile terminals and does not require subscription to Orange fleet offer.

An exclusive Popup option enables the possibility to make SMS more interactive.

Performance wise, SMS Internet enables to send and receive a large number of SMS with an important

throughput: up to 5000 SMS-MO (no acknowledged) can be stored and 100 SMS-MT per mobile number. This offer guarantees a 4 SMS-MT per second per connexion.

Version 1.0.0-0002

Chapter 2. General

1. Business objects

This section describes business objects used in the SMS Internet service.

1.1. MSISDN

The Mobile Station International ISDN Number is a mobile number in international format (E164).

It is broken down as follows: MSISDN = CC+NDC+SN. This is the combination of the country ode (CC), the

national destination code (NDC) and the subscriber number (SN).

The country code for France is 33.

1.2. SMS types

The SMS Internet service allow your application servers to send or receives 2 types of SMS.

1.2.1. SMS mobile originated

SMS-MO are SMS issued from a mobile towards a computer application. SMS-MO messages may be sent to the application server:

•Either in text format restricted to the ISO-8859-1 character set (described in the appendices to the Advanced

Development Guide).

•In a transparent binary format. The MO transmission format is an option in the offer.

1.2.2. SMS mobile terminated

SMS-MT are SMS issued from a computer application and received on a mobile. The SMS Internet service provides 4 types of SMS-MT.

1.2.2.1. SMS Text

SMS Text are textual SMS as defined by the GSM standard.

They are composed of 160 characters maximum

1.2.2.2. SMS Bin

SMS Bin are binary SMS as defined by the GSM standard.

They are composed of 140 bytes maximum

1.2.2.3. SMS Popup

Popup option is an exclusive offer proposed by no other operator than Orange.

Sms Internet API for Java - General

Version 1.0.0-0003

It enables to prompt SMS receiver with a action in response: •capture an answer to a question, •acknowledge meeting, •answer to application server through the send of SMS. Receiver can execute up to 5 actions when receiving the SMS

4 types of actions are possible:

•ask for data, •list of choices,

Version 1.0.0-000Sms Internet API for Java

SDK Manual

Version 1.0.0-000

Sms Internet API for Java: SDK Manual

Abstract

This manual is a collection of topics related to develop code using all the advanced features of Orange™ Sms Internet with our SDK.

By the end of this manual you will be able to send and receive sms through the Orange France Generic Pop-Up Server using the

toolkit (SDK) we've built for an easy integration within your applications. Our SDK has been designed to hide all the complexity of

the underlying communication and to help leverage the power of Object Oriented Programming.

You will learn the minimum configuration to write in order to run our SDK and create your first API calls.

The audience of this manual targets new developers or decidors who are interested in empowering their applications with the SMS

Internet features we are providing.

This API will be reachable by XML protocol over HTTPS.

Revision History

Revision 1.0.0-0002009/02/05

First release.

Version 1.0.0-000

Table of Contents

1. Overview ........................................................................................................................................................ 1

1. Introduction ............................................................................................................................................ 1

2. SMS Internet features ............................................................................................................................. 1

3. Concepts ................................................................................................................................................ 1

2. General .......................................................................................................................................................... 2

1. Business objects ..................................................................................................................................... 2

2. Client certificate ..................................................................................................................................... 3

3. The SMS Internet SDK ................................................................................................................................... 5

1. Exception ............................................................................................................................................... 6

2. Sms Internet ........................................................................................................................................... 7

3. Business data rules ................................................................................................................................. 8

4. Business data request .............................................................................................................................. 9

5. Business data response .......................................................................................................................... 15

6. Notification ........................................................................................................................................... 17

7. Xstream ................................................................................................................................................ 17

8. Logging ................................................................................................................................................ 18

9. Create a project for Eclipse or Netbeans with the Sms Internet SDK ........................................................ 20

4. SDK methods ............................................................................................................................................... 24

1. SDK description ................................................................................................................................... 24

2. Java Sms Internet configuration file for the SDK .................................................................................... 24

3. Method sendRequest ............................................................................................................................. 25

4. Method subscribeNotifications/ unsubscribeNotifications ........................................................................ 31

A. Error codes .................................................................................................................................................. 35

1. Result causes ........................................................................................................................................ 35

2. Error messages ..................................................................................................................................... 38

Version 1.0.0-0001

Chapter 1. Overview

1. Introduction

Now you've downloaded the various files and libraries, you're ready to get started. We'll take you through how

to use the SDK to make simple calls, send an SMS Text ...

2. SMS Internet features

SMS Internet enables your application to send and receive SMS.

With SMS Internet, your applications are enabled to inform, alert, collect information or broadcast instructions

in remote.

The solution is based on linking businesses to Orange France network through the SMS center (SMS-C). It

allows companies to benefit from following functions: •track delivery, •manage queues, •storage modes.

3. Concepts

Connecting to SMS-C allow your application servers to send or receives 2 types of SMS: •SMS-MO (Short Message Services - Mobile Originated): SMS issued from mobile towards a computer application.

•SMS-MT (Short Message Services - Mobile Terminated): SMS issued from a computer application and

received on mobile In all cases, SMS are composed of 160 characters maximum or 140 bytes depending type of coding used.

SMS Internet works on Orange France mobile terminals and does not require subscription to Orange fleet offer.

An exclusive Popup option enables the possibility to make SMS more interactive.

Performance wise, SMS Internet enables to send and receive a large number of SMS with an important

throughput: up to 5000 SMS-MO (no acknowledged) can be stored and 100 SMS-MT per mobile number. This offer guarantees a 4 SMS-MT per second per connexion.

Version 1.0.0-0002

Chapter 2. General

1. Business objects

This section describes business objects used in the SMS Internet service.

1.1. MSISDN

The Mobile Station International ISDN Number is a mobile number in international format (E164).

It is broken down as follows: MSISDN = CC+NDC+SN. This is the combination of the country ode (CC), the

national destination code (NDC) and the subscriber number (SN).

The country code for France is 33.

1.2. SMS types

The SMS Internet service allow your application servers to send or receives 2 types of SMS.

1.2.1. SMS mobile originated

SMS-MO are SMS issued from a mobile towards a computer application. SMS-MO messages may be sent to the application server:

•Either in text format restricted to the ISO-8859-1 character set (described in the appendices to the Advanced

Development Guide).

•In a transparent binary format. The MO transmission format is an option in the offer.

1.2.2. SMS mobile terminated

SMS-MT are SMS issued from a computer application and received on a mobile. The SMS Internet service provides 4 types of SMS-MT.

1.2.2.1. SMS Text

SMS Text are textual SMS as defined by the GSM standard.

They are composed of 160 characters maximum

1.2.2.2. SMS Bin

SMS Bin are binary SMS as defined by the GSM standard.

They are composed of 140 bytes maximum

1.2.2.3. SMS Popup

Popup option is an exclusive offer proposed by no other operator than Orange.

Sms Internet API for Java - General

Version 1.0.0-0003

It enables to prompt SMS receiver with a action in response: •capture an answer to a question, •acknowledge meeting, •answer to application server through the send of SMS. Receiver can execute up to 5 actions when receiving the SMS

4 types of actions are possible:

•ask for data, •list of choices,
  1. log4j properties in java
  2. log properties file java
  3. logging.properties in java
  4. log4j properties file in java
  5. log4j.properties location in java project
  6. configure log4j.properties in java
  7. logging.properties file in java
  8. log4j.properties example in java