EP1994477A1 - Method for converting sim toolkit service byte-codesto web pages - Google Patents

Method for converting sim toolkit service byte-codesto web pages

Info

Publication number
EP1994477A1
EP1994477A1 EP07713123A EP07713123A EP1994477A1 EP 1994477 A1 EP1994477 A1 EP 1994477A1 EP 07713123 A EP07713123 A EP 07713123A EP 07713123 A EP07713123 A EP 07713123A EP 1994477 A1 EP1994477 A1 EP 1994477A1
Authority
EP
European Patent Office
Prior art keywords
user
page
html
command
path
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Withdrawn
Application number
EP07713123A
Other languages
German (de)
English (en)
French (fr)
Inventor
Wilianto Wilianto
Krishna Sjarif
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Thales DIS France SA
Original Assignee
Axalto SA
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Axalto SA filed Critical Axalto SA
Publication of EP1994477A1 publication Critical patent/EP1994477A1/en
Withdrawn legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/95Retrieval from the web
    • G06F16/957Browsing optimisation, e.g. caching or content distillation
    • G06F16/9577Optimising the visualization of content, e.g. distillation of HTML documents

Definitions

  • This invention deals with SIM Toolkit Service Byte-codes (STKSBC) in a personal security token carrying access rights such as a secret key.
  • STKSBC SIM Toolkit Service Byte-codes
  • a typical example of such personal tokens are IC cards such as bank cards, SIM cards inside mobile phones or mobile communication tools such as PDAs (Personal Digital Assistant), physical access cards or USB tokens with access rights, and also for example electronic keys of any type.
  • STKSBC are a particular arrangement of binary data which represent the elementary SIM Toolkit (Pro-active) command as described in ETSI GSM 11.14.
  • STKSBC is usually highly compressed information which is designed to be used in Over-the-Air (OTA) mechanism.
  • STKSBC consists of two groups of commands: one group is related with user-interface operations (DISPLAY TEXT, SETUP MENU, SELECT ITEM, GET INKEY, and GET INPUT) and the other group is related with non user-interface operations (such as SEND SMS, SETUP CALL, etc.).
  • STKSBC is quite rudimentary when one speaks of display abilities.
  • a first purpose of the invention is to provide a way to use STKSBC while enhancing the display abilities to the user.
  • Another purpose of the invention is to widen the abilities of the STKSBC to another type of organization of data when interacting with an end-user, especially in the field of mobile communication.
  • FIG. 1 is a diagram which represents a method of using STKSBC according to the invention.
  • FIG. 3 represents a step of conversion according to the invention.
  • STKSBC is a group of STK commands and links between them. All parameters used to build an STK command are generally defined in STKSBC. STKSBC also defines the next STK command to build according to all possible user responses.
  • STKSBC also comprises a set of predefined parameters, such as text to be displayed, which will be used in the STKSBC commands when the commands will be called.
  • Figure 1 also represents a series 20 of HTML pages among which a user can go from one HTML page to another as if he went from one STK command to another in the STKSBC 10.
  • a formatter engine 30 converts the different STK commands 11 , 12, 13... into corresponding HTML pages 21 , 22, 23,... while the user goes from one HTML page to the other.
  • the formatter engine 30 formats user-interface (Ul) STKSBC commands from the set 10 to become HTML by using HTML templates such as the template represented on figure 2.
  • HTML template consists of one or more than one dynamic variables. Dynamic variables will then be substituted with values taken from either STKSBC or dynamically generated by the Formatter Engine.
  • a format descriptor 40 is used which defines in forms of HTML some HTML pages which correspond to the STK commands of the set 10.
  • XML or any format as required by the consumer (browser) application can also replace the HTML format.
  • Format descriptor 40 stores the series of HTML pages 21 , 22, 23... of the set 20.
  • the Format Descriptor 40 is a rule describing how to convert STKSBC into HTML document. This rule is presently in form of HTML document templates.
  • a typical template 21 a of the set 20 is represented on figure 2, which contains predefined keywords to be substituted by dynamic contents.
  • the represented page contains a ⁇ $Variables> tag (variable) 210.
  • This ⁇ $Variables> tag will be replaced dynamically on the fly.
  • Variables can be including: parameters defined in STKSBC or a dynamically generated URL to link this command to another command.
  • STKSBC which defines a display text STK command that will display "Hello World” and a corresponding template 22a.
  • the represented HTML page also contains ⁇ $TR_OK> and ⁇ $TR_BACK> keywords which will be substituted by a URL which will point to another command.
  • the HTML template therefore consists of one or more than one dynamic variables. Dynamic variables are then substituted with values taken from either STKSBC or dynamically generated by the Formatter Engine 30.
  • An URL is constructed so that, only from this URL, the Formatter Engine 30 can know the next command to build among the commands of the set 10. Such recognition of the next command to build is referenced as STEP 2 on figure 1.
  • two HTTP parameters are be passed in the URL so as to be equivalent to a GET request command. Those two HTTP parameters are the current command number and the user selection among the command possibilities coming afterwards in the set of commands 10. With these two parameters, Formatter Engine 30 can decide the next command to build among the set of commands 10.
  • the next command is converted into a HTML page by the formatter engine the same way as described above for the previous STK command.
  • STK environment is a state environment, where state variable is maintained internally in an STK engine associated with the STKSBC. Because HTTP environment is stateless, Formatter Engine maintains a session variable internally to track the state, and to thereby impose proper state when accessed from all possible entry points.
  • An URL as used in the set 20 of HTML pages is purposely constructed so that, from this URL with additional volatile storage in SIM memory, the applet which constitutes the formatter engine 30 can check whether the current state is still valid (even for example when user presses "back" button from his browser). To achieve this, the Formatter Engine 30 stores the current command number when it generates the HTML file which corresponds to such current command. So when the next HTTP request comes after selection by the end-user, the formatter engine compares the current command number as stored and the current command number which is passed by the request coming from the end-user, inside the URL. If it's the same, the formatter engine 30 generates the next command. Otherwise, the formatter engine 30 redirects the user to the first page (to start from beginning). This command number checking is preferably imposed in all pages except the first.
  • the present embodiment therefore provides a method to represent navigation movement in STKSBC, i.e. a series of moves from one STK command to another STK command by terminal response, into a URL representation.
  • URL to access the next command is generated dynamically by the Formatter Engine.
  • the Formatter Engine can know which next command needs to be built and converted.
  • Non user-interface STK commands are preferably handled by a dedicated application in the token, which application is connected to internet. This command executor application will be triggered by HTTP request.
  • non-UI non user-interface
  • a Command executor runs in handset and listens to a certain port number. When the command executor is triggered, it executes the command by invoking an API provided by the OS
  • STK Services can be presented in web environment, i.e. with an HTML browser.
  • STK-based application works as a state machine while web environment is stateless.

Landscapes

  • Engineering & Computer Science (AREA)
  • Databases & Information Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Data Mining & Analysis (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Information Transfer Between Computers (AREA)
EP07713123A 2006-03-10 2007-03-02 Method for converting sim toolkit service byte-codesto web pages Withdrawn EP1994477A1 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN2006100595154A CN101034397B (zh) 2006-03-10 2006-03-10 将用户标识模块工具包业务字节代码转换为网页的方法
PCT/IB2007/000624 WO2007105084A1 (en) 2006-03-10 2007-03-02 Method for converting sim toolkit service byte-codesto web pages

Publications (1)

Publication Number Publication Date
EP1994477A1 true EP1994477A1 (en) 2008-11-26

Family

ID=38261696

Family Applications (1)

Application Number Title Priority Date Filing Date
EP07713123A Withdrawn EP1994477A1 (en) 2006-03-10 2007-03-02 Method for converting sim toolkit service byte-codesto web pages

Country Status (5)

Country Link
EP (1) EP1994477A1 (zh)
CN (1) CN101034397B (zh)
BR (1) BRPI0708498A2 (zh)
MX (1) MX2008011411A (zh)
WO (1) WO2007105084A1 (zh)

Families Citing this family (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
DE102008004693A1 (de) 2008-01-16 2009-08-13 Giesecke & Devrient Gmbh Portabler Datenträger mit CAT-Interpreter
KR101024532B1 (ko) 2009-02-06 2011-03-31 엔에이치엔(주) 웹 액션과 클라이언트 제어가 가능한 에이치티엠엘 기반 애플리케이션 제공 시스템
WO2012037708A1 (en) * 2010-09-24 2012-03-29 Axalto Smart Cards Technology Co. Ltd. A method for accessing an application, corresponding portable device and system
US9081631B2 (en) 2011-06-30 2015-07-14 Stmicroelectronics S.R.L. Method for executing a toolkit action in an IC card

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2001065480A1 (fr) * 2000-03-01 2001-09-07 Gemplus Procede de commande d'une carte a puce

Family Cites Families (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CA2387328C (en) * 2002-05-24 2012-01-03 Diversinet Corp. Mobile terminal system
GB2410113A (en) * 2004-11-29 2005-07-20 Morse Group Ltd A system and method of accessing banking services via a mobile telephone

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2001065480A1 (fr) * 2000-03-01 2001-09-07 Gemplus Procede de commande d'une carte a puce

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
See also references of WO2007105084A1 *

Also Published As

Publication number Publication date
WO2007105084A1 (en) 2007-09-20
CN101034397B (zh) 2011-11-09
CN101034397A (zh) 2007-09-12
BRPI0708498A2 (pt) 2011-05-31
MX2008011411A (es) 2008-10-22

Similar Documents

Publication Publication Date Title
KR101541263B1 (ko) 사용자 동작 커맨드들을 실행하기 위한 방법 및 장치
CN102783121B (zh) 通信设备
CN104112002B (zh) 一种表单适配的方法、装置和系统
CN108763561A (zh) 电子书推送方法、装置及计算机可读存储介质
CN111538980B (zh) 一种应用程序的账户绑定方法、装置及系统
CN106406844B (zh) 实现通讯交互平台公众号菜单的方法和装置
CN107515764A (zh) 应用程序页面打开方法、终端以及计算机可读存储介质
JP2010123073A (ja) ページアクセス方法およびサーバ
CN105243407A (zh) 读写智能卡的方法及装置
EP2235626A1 (en) Improved user interface and communication terminal
US20120166979A1 (en) Method and Apparatus for Enabling User Interface Customization
CN107229760B (zh) 存储介质、电子装置、网页内容的显示方法和装置
Van Heeringen et al. Measure the functional size of a mobile app: Using the cosmic functional size measurement method
CN103944944A (zh) 分享网页链接的方法、电子设备及系统
CN106487662B (zh) 信息分享方法和装置
CN109101291A (zh) 信息处理装置及信息处理方法
CN103023870A (zh) 一种消息中数据的输出方法、装置和设备
WO2007105084A1 (en) Method for converting sim toolkit service byte-codesto web pages
CN109740014B (zh) 截图的管理方法、终端设备和存储介质
US20080263140A1 (en) Network System, Server, Client, Program and Web Browsing Function Enabling Method
EP1626349A1 (en) User interface for smart card applications
CN113687901B (zh) 界面显示方法及界面显示装置
CN109492144A (zh) 软件系统的关联关系分析方法、装置和存储介质
JP7443899B2 (ja) 情報処理装置
CN113946260A (zh) 数据处理方法、装置及设备

Legal Events

Date Code Title Description
PUAI Public reference made under article 153(3) epc to a published international application that has entered the european phase

Free format text: ORIGINAL CODE: 0009012

17P Request for examination filed

Effective date: 20080822

AK Designated contracting states

Kind code of ref document: A1

Designated state(s): AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HU IE IS IT LI LT LU LV MC MT NL PL PT RO SE SI SK TR

RAP1 Party data changed (applicant data changed or rights of an application transferred)

Owner name: GEMALTO SA

17Q First examination report despatched

Effective date: 20090202

DAX Request for extension of the european patent (deleted)
STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: THE APPLICATION IS DEEMED TO BE WITHDRAWN

18D Application deemed to be withdrawn

Effective date: 20171007