Project

General

Profile

Control Interface » History » Version 22

Tobias Wich, 01/29/2013 11:33 AM

1 8 Tobias Wich
h1. Client Control Interface
2 1 Moritz Horsch
3 8 Tobias Wich
The Client Control Interface is http based. The webserver of the eCard client is available only under http://localhost:24724.
4 1 Moritz Horsch
5 8 Tobias Wich
h2. Activation
6
7
*URL*
8
@http://127.0.0.1:24727/eID-Client@
9
10
*Method*
11
GET
12
13
*Query*
14
| tcTokenURL    | The URL determines where the client can retrieve the TC Token. See TR-03112-7, section 3.2 | Mandatory | 
15
| ifdName       | The ifdName determines the card terminal.|  Optional[1] | 
16
| contextHandle | The contextHandle addresses a specific IFD. | Optional[1] | 
17
| slotHandle    | The slotHandle determines a connected eCard. See TR-03112-6, section 3.2.1. | Optional[1] | 
18
| cardType      | The cardType determines the type of card which must be selected. | Optional[1] |
19
20
*Returns*
21
| 200 OK                    | The refresh address is comprised in the Message Body (Hack for Mac OS Safari). |
22
| 303 See Other             | The Location field in the response should contain the refresh address. |
23
| 400 Bad Request           | Malformed GET request, e.g. parameters are missing. |
24
| 500 Internal Server Error | Other errors. |
25 20 Tobias Wich
| 502 Bad Gateway           | Server where the TCToken was requested, didn't answer or returned an invalid response. |
26 8 Tobias Wich
27
*Content-Types*
28
| text/html | Webpage with user evaluatable content. E.g. error page, manual redirect, ... |
29
30
31
*Description*
32
The interface can be used to start the eID application.
33
34
The parameters ifdName, contextHandle, slotHandle and cardType address a particular eCard, or a type of card.
35
There are three meaningful combinations of the optional parameters:
36
* _none_
37
 Use the fist nPa available. Display a "Please insert nPa" dialog if needed. This is the behaviour of the AusweisApp.
38 13 Tobias Wich
 In other words the lack of the cardType parameter sets it to the default value @http://bsi.bund.de/cif/npa.xml@, and thus the next rule becomes effective.
39 8 Tobias Wich
* _cardType_
40
 Use the fist card of the specified type which is available. Display a "Please insert <cardType>" dialog if needed.
41 13 Tobias Wich
 A special case must be made when software certificates (cardType=@http://openecard.org/cif/soft-credential@) are used. In that case no dialog is shown, when there is no certificate. Instead an error is produced.
42 8 Tobias Wich
* _ifdName_, _contextHandle_, _slotHandle_
43
 Use exactly the card matching the parameters.
44 13 Tobias Wich
  cardType is requested from the selected card directly. If there is no such card, an error is produced.
45 8 Tobias Wich
46
47
*Notes*
48
49 1 Moritz Horsch
<pre>
50
TODO
51
* What happens if the Client Activator cannot start an application?
52
</pre>
53
54 11 Tobias Wich
During the processing of the activation, a TCToken is fetched from a remote server.
55
The TCToken is defined as follows:
56
<pre><code class="xml">
57
<element name="TCToken" type="TCTokenType" />
58 1 Moritz Horsch
59 11 Tobias Wich
<complexType name="TCTokenType">
60
  <sequence>
61
    <element name="ServerAddress" type="anyURI" />
62
    <element name="SessionIdentifier" type="string" />
63
    <element name="RefreshAddress" type="anyURI" />
64
    <element name="Binding" type="anyURI" maxOccurs="1" minOccurs="0"/>
65
    <element name="PathSecurity-Protocol" type="anyURI" />
66 21 Johannes Schmölz
    <element name="PathSecurity-Parameters" maxOccurs="1" minOccurs="0">
67 11 Tobias Wich
      <complexType>
68
        <choice>
69
          <element name="PSK" type="hexBinary" />
70
        </choice>
71
      </complexType>
72
    </element>
73
  </sequence>
74
</complexType>
75
</code></pre>
76 1 Moritz Horsch
77 11 Tobias Wich
The contents of the elements are defined as follows:
78
* ServerAddress
79
 Must contain a https-URL which shall be used by the eCA to connect to the authentication server.
80
* SessionIdentifier
81
 Must contain a unique identifier of the current authentication session.
82
* RefreshAddress
83
 Must be a https-URL. The eCA redirects the browser to this URL (or the URL retrieved by following redirects starting from this URL) after conclusion of the online authentication.
84
* Binding
85
 May be used to indicate that an authentication protocol according to [ISO24727-3] is to be performed over the session between eCA and the authentication server.
86
 Currently the following values are defined:
87
** @urn:liberty:paos:2006-08@
88
* PathSecurity-Protocol
89
 This element specifies the security protocol, which is to be used for securing the connection between eCA and AS.
90
 Currently the following values are defined:
91 12 Tobias Wich
** @urn:ietf:rfc:4346@
92 11 Tobias Wich
   TLS according to [RFC4346].
93
** @urn:ietf:rfc:4279@
94
   TLS-PSK according to [RFC4279].
95
** @urn:ietf:rfc:5487@
96
   TLS-PSK with a cipher suite according to [RFC5487].
97
* PathSecurity-Parameter
98
   Must be present to supply path security parameters such as PSK values.
99
100
The following changes are made to the token type defined in [eCard-7]:
101
* Binding is optional to use solely the transport protocol for authentication.
102 12 Tobias Wich
* PathSecurity-Protocol has an additional value. (@urn:ietf:rfc:4346@)
103 11 Tobias Wich
* PathSecurity-Parameter is optional because of the additional default TLS Protocol.
104 8 Tobias Wich
105
h2. GetStatus[1]
106
107
*URL*
108
@http://127.0.0.1:24727/getStatus@
109
110
*Method*
111
GET
112
113
*Query*
114
| session | The session parameter establishes an event queue for further requests with waitforChange. | Optional | 
115
116
*Returns*
117
| 200 OK                    | Status element (see below). |
118 14 Tobias Wich
| 400 Bad Request           | Malformed GET request, e.g. session parameter is too weak. | 
119 8 Tobias Wich
| 500 Internal Server Error | Errors in the smartcard stack or the webserver. |
120
121 16 Tobias Wich
<pre><code class="xml">
122 18 Tobias Wich
<complexType name="StatusType" xmlns:oec="http://ws.openecard.org/schema" targetNamespace="http://ws.openecard.org/schema">
123 16 Tobias Wich
  <sequence>
124
    <element name="ConnectionHandle" type="iso:ConnectionHandleType" maxOccurs="unbounded" minOccurs="0" />
125
    <element name="UserAgent"                                        maxOccurs="1"         minOccurs="0">
126
      <complexType>
127 17 Tobias Wich
        <sequence>
128
          <element name="Name"            type="string" />
129
          <element name="VersionMajor"    type="integer" />
130
          <element name="VersionMinor"    type="integer" maxOccurs="1" minOccurs="0" />
131
          <element name="VersionSubminor" type="integer" maxOccurs="1" minOccurs="0" />
132
        </sequence>
133 16 Tobias Wich
      </complexType>
134
    </element>
135
    <element name="SupportedAPIVersions" maxOccurs="unbounded" minOccurs="0">
136
      <complexType>
137 17 Tobias Wich
        <sequence>
138
          <element name="Name"            type="string" />
139
          <element name="VersionMajor"    type="integer" />
140
          <element name="VersionMinor"    type="integer" maxOccurs="1" minOccurs="0"/>
141
          <element name="VersionSubminor" type="integer" maxOccurs="1" minOccurs="0"/>
142
        </sequence>
143 16 Tobias Wich
      </complexType>
144
    </element>
145 22 Tobias Wich
    <element name="SupportedCards" maxOccurs="unbounded" minOccurs="0">
146
      <complexType>
147
        <sequence>
148
          <element name="CardType" type="anyURI" maxOccurs="1" minOccurs="1" />
149
          <element name="DIDProtocols" type="anyURI" maxOccurs="unbounded" minOccurs="0" />
150
        </sequence>
151
      </complexType>
152
    </element>
153 16 Tobias Wich
    <element name="SupportedDIDProtocols" type="anyURI" maxOccurs="unbounded" minOccurs="0" />
154
    <element name="AdditionalFeatures"    type="anyURI" maxOccurs="unbounded" minOccurs="0" />
155 1 Moritz Horsch
  </sequence>
156
</complexType>
157
158
<element name="Status">
159
  <complexType>
160
    <complexContent>
161
      <extension base="oec:StatusType">
162 17 Tobias Wich
        <sequence />
163 1 Moritz Horsch
      </extension>
164
    </complexContent>
165
  </complexType>
166
</element>
167
</code></pre>
168 17 Tobias Wich
169
The contents of the Status element are defined as follows:
170
* ConnectionHandle
171
  List of ConnectionHandles reflecting the currently available terminals, cards and their types.
172
* UserAgent
173
  Description of the user agent (client). 
174
** Name must be set to "Open eCard App" for all client types of the Open eCard App.
175
** VersionMajor, VersionMinor and VersionSubminor correspond to the major, minor and patch fields in the Version class.
176
   (see source:common/src/main/java/org/openecard/client/common/Version.java)
177
* SupportedAPIVersions
178 1 Moritz Horsch
  This element names and describes all supported API versions. At the moment, this is solely the eCard-API.
179
** Name and the version elements are one of
180 17 Tobias Wich
*** @http://www.bsi.bund.de/ecard/api@, 1, 1, @not set@
181 22 Tobias Wich
* SupportedCards
182
  List of supported DIDProtocols per card type. That means the list of DIDProtocols, for which an implementation exists and which are listed in the respective CardInfo file.
183 17 Tobias Wich
* SupportedDIDProtocols
184
  List of supported DID protocols. That means the list of SAL modules' DID protocol URIs registered in the client.
185
* AdditionalFeatures
186
  Not yet defined, but could be further stuff like a Signature plugin etc.
187 8 Tobias Wich
188
*Content-Types*
189
| text/xml  | The Status element. |
190 15 Tobias Wich
| text/html | Message in case of an error. |
191 8 Tobias Wich
192
193
*Description*
194
The interface can be used to request information about the eID application and its current state.
195
196
h2. WaitForChange
197
198
*URL*
199
@http://127.0.0.1:24727/waitForChange@
200
201
*Method*
202 1 Moritz Horsch
GET
203 8 Tobias Wich
204
*Query*
205 10 Tobias Wich
| session | The session of a previously set up event queue (see [[Client_Activation#GetStatus1|GetStatus]]). | Mandatory | 
206 8 Tobias Wich
207
*Returns*
208
| 200 OK                    | StatusChange element (see below). |
209 14 Tobias Wich
| 400 Bad Request           | Malformed GET request, e.g. session parameter is too weak. |
210 8 Tobias Wich
| 500 Internal Server Error | Errors in the smartcard stack or the webserver. |
211
212 19 Tobias Wich
<pre><code class="xml">
213
<complexType name="StatusChangeType" xmlns:oec="http://ws.openecard.org/schema" targetNamespace="http://ws.openecard.org/schema">
214
  <sequence>
215
    <element name="ConnectionHandle" type="iso:ConnectionHandleType" maxOccurs="1" minOccurs="1" />
216
    <element name="Action"           type="anyURI"                   maxOccurs="1" minOccurs="1" />
217
  </sequence>
218
</complexType>
219
220
<element name="StatusChange">
221
  <complexType>
222
    <complexContent>
223
      <extension base="oec:StatusChangeType">
224
        <sequence />
225
      </extension>
226
    </complexContent>
227
  </complexType>
228
</element>
229
</code></pre>
230
231
The contents of the StatusChange element are defined as follows:
232
233
* ConnectionHandle
234
  The meaning of the ConnectionHandle parameter is exactly as in the StartPAOS call defined in [BSI-TR-03112-7, Section 2.6].
235
* Action
236
  This element contains the URI describing the event. Currently there are the following event types defined:
237
** http://openecard.org/event/terminal_added
238
** http://openecard.org/event/terminal_removed
239
** http://openecard.org/event/card_inserted
240
** http://openecard.org/event/card_removed
241
** http://openecard.org/event/card_recognized
242
243 8 Tobias Wich
244
*Content-Types*
245
| text/xml  | The StatusChange element. |
246 15 Tobias Wich
| text/html | Message in case of an error. |
247 8 Tobias Wich
248
249
*Description*
250
The interface can be used to request status change information after an initial GetStatus call.
251
252
253
---
254
255
fn1. Openecard proposal: This parameter/interface is an Open eCard specific extension. It is not part of the official eCard specification.