RMI Client Application Programming Interface
|
|
|
- Shannon Underwood
- 10 years ago
- Views:
Transcription
1 RMI Client Application Programming Interface Java Card 2.2 Java 2 Platform, Micro Edition Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, CA U.S.A June, 2002
2 Copyright 2002 Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California 94303, U.S.A. All rights reserved. Sun Microsystems, Inc. has intellectual property rights relating to technology described in this document. In particular, and without limitation, these intellectual property rights may include one or more of the U.S. patents listed at and one or more additional patents or pending patent applications in the U.S. and other countries. This document and the technology which it describes are distributed under licenses restricting their use, copying, distribution, and decompilation. No part of this document may be reproduced in any form by any means without prior written authorization of Sun and its licensors, if any. Third-party software, including font technology, is copyrighted and licensed from Sun suppliers. Sun, Sun Microsystems, the Sun logo and Java are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. Federal Acquisitions: Commercial Software - Government Users Subject to Standard License Terms and Conditions. DOCUMENTATION IS PROVIDED AS IS AND ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. Please
3 Contents 1. Client-Side API for Java Card RMI Basic Features Client Application Interfaces CardAccessor Interface JavaCardRMIConnect Class Securing the Transport Layer Stub/Proxy Generation CardObjectFactory Class Exceptions 5 2. Client-Side Java Card RMI Framework API Package rmiclient Exception Classes API Documentation 8 Overview 11 com.sun.javacard.javax.smartcard.rmiclient 13 javacard.framework 43 javacard.framework.service 63 javacard.security 67 Index 71 iii
4 iv RMI Client Application Programming Interface June, 2002
5 CHAPTER 1 Client-Side API for Java Card RMI A Java Card RMI client application runs on a Card Acceptance Device (CAD) terminal that supports a J2SE or J2ME platform. The client application requires a portable and platform independent mechanism to access the Java Card RMI (JCRMI) server applet executing on the smart card. This client side architecture currently focuses on a J2SE client running on a JDK1.2 or higher environment. The client interfaces are designed to be independent of the card access framework. The interfaces therefore only provide JCRMI specific access mechanisms and allow the client application to use its preferred card access mechanisms for its basic card interaction needs. The example in Sun Microsystem s reference implementation uses the Open Card Framework for its card access mechanisms. See the Java Card 2.2 Development Kit User s Guide provided with this release. The Open Card Framework classes provide a Java application platform independent access to a connected smart card. The J2ME environment is more limited, and since most J2ME profiles do not support the JCRMI machinery at this time, it is not discussed in detail. The design of the JCRMI client-side architecture ensures that it does not preclude the J2ME client. 1.1 Basic Features The Java Card RMI client side architecture caters to the following: Provides the client application mechanisms to initialize and initiate an RMI session with a Java Card applet. Provides the client application access to the initial remote reference. Allows the client application to customize the message packet during Java Card communication to introduce transport level security. 1
6 Allows the CAD terminal developer to customize the card access mechanisms for the specifics of the communications hardware. Allows the CAD terminal developer to customize the stub generation mechanism for one that is best suited to the platform capabilities. 1.2 Client Application Interfaces These classes provide the basic Java Card RMI client application with the front-end mechanisms to connect to the Java Card applet and obtain an initial reference to invoke remote methods. As mentioned earlier these client interfaces are designed to be independent of the card access framework. The examples referenced use Open Card Framework to build a fully portable client application CardAccessor Interface The CardAccessor interface is used by the JCRMI client framework to communicate with the card. It defines the following methods: public byte[] exchangeapdu( byte[] command ) The JCRMI client framework uses this method to send a command APDU to the card and receive the response APDU. public short getsessionidentifier() This method returns an identifier associated with the current card session. The client platform must provide the client application with a class that implements the CardAccessor interface and the means to obtain an instance. In the JCRMI example provided in this release (see Chapter 3 of the Java Card 2.2 Development Kit User s Guide), the client application interacts with the OCF classes to obtain an instance of the OCFCardAccessor class that implements the CardAccessor interface JavaCardRMIConnect Class The client application uses the JavaCardRMIConnect class to initiate the JCRMI session and obtain the initial remote reference from the card. 2 RMI Client Application Programming Interface June, 2002
7 Constructor: public JavaCardRMIConnect(CardAccessor ca) The client constructs an instance of the JavaCardRMIConnect class, initializing it with a CardAccessor object. The methods of JavaCardRMIConnect are: public byte[] selectapplet(byte[] appletaid) public byte[] selectapplet(byte[] appletaid, CardObjectFactory cof) The client starts a JCRMI session with the Java Card applet on the card using this method. The second parameter is optional and specifies a custom CardObjectFactory. public Remote getinitialreference() To begin a JCRMI based dialog, the client obtains the first remote object reference via this method and then casts it to the appropriate type Securing the Transport Layer A simple Java Card RMI client application would only depend on the above methods for a remote method based card session with a Java Card applet. The Java Card applet might need to layer additional security services to protect the message transport data for integrity and privacy. In order to do this, the client application (or security service provider) could subclass the implementation of the CardAccessor class with its own version and re-define the exchangeapdu method. The JCRMI example provided in this release shows the SecureOCFCardAccessor class, which subclasses the OCFCardAccessor class for this purpose. To superimpose security mechanisms on the transport message packet, a client application s re-implementation of the exchangeapdu method would access the message data inside the byte array, and filter the data accordingly before calling the super.exchangeapdu method to continue with the exchange. Similarly, on return from the super method, it would filter the response data, if required, before returning. Chapter 1 Client-Side API for Java Card RMI 3
8 1.3 Stub/Proxy Generation The client does not usually interact with the client side stub generation classes. It is used by the JavaCardRMIConnect class to instantiate the initial remote stub object and subsequently the stub objects themselves to instantiate other remote stub objects. The client library classes include a class called CardObjectFactory which encapsulates the mechanism used to instantiate stubs on the client. The simplest implementation of CardObjectFactory uses the SELECT REF_FORMAT_CLASS and simply locates the pre-compiled stub class corresponding to the implementation class name returned in the remote reference descriptor from the card and instantiates it. An alternate implementation uses SELECT REF_FORMAT_INTERFACES and the list of remote interfaces implemented by the remote class. The dynamic proxy generation mechanism, defined by JDK1.3, generates the proxy instances CardObjectFactory Class This abstract class allows the encapsulation of the response format of the Java Card RMI protocol. The class also customizes any specific mechanisms used to instantiate remote stub objects on the client. The key methods of CardObjectFactory are: CardObjectFactory ( ca CardAccessor ) This is the constructor that is initialized with the CardAccessor instance. Remote getobject ( byte[] buffer, int tagoffset, Class type ) This method is called by both the JavaCardRMIConnect class as well as the remote stub classes themselves to obtain an instance of the card object encoded in the Java Card RMI response format. The object returned may be an instance of a remote stub class associated with the specified remote reference descriptor received from the card, an array of primitives, or a primitive wrapped instance of a Java wrapper class. byte setinsbyte ( byte ins ) This method sets the INVOKE command byte to be used during this selection session. This method is called by JavaCardRMIConnect after a applet has been selected for JCRMI dialogue. byte getinsbyte () 4 RMI Client Application Programming Interface June, 2002
9 This method returns the INVOKE command byte to be used during this selection session. byte getremoterefformat () This abstract method returns the format of the remote object reference descriptor supported by the stub factory implementation. The method returns one of: REF_FORMAT_NONE, REF_FORMAT_CLASS, or REF_FORMAT_INTERFACES protected abstract getremoteobject ( byte[] buffer, int tagoffset ) This abstract method instantiates a stub or proxy object corresponding to the remote reference returned from the card. 1.4 Exceptions The remote method invoked on the card may throw an exception to signal that an unexpected condition has been detected. The RMIService class on the card catches the exception and returns this information to the client. If the exception thrown on the card is an exception defined in the Java Card 2.2 API, the same exception is re-thrown by the stub object back to the client application. The client can access the reason code associated with Java Card-specific exceptions using the standard getreason() method. If the exception thrown on the card is a subclass of an exception defined in the Java Card 2.2 API, a client subclass of the closest exception defined in the API (along with the reason code, if applicable) is re-thrown to the client by the stub object. The exception object will contain the following error message string: A subclass was thrown on the card. Apart from the exceptions thrown by the remote method itself, errors during communication, marshalling, protocol, unmarshalling, stub generation and so forth related to the JCRMI method invocation results in a RemoteException exception being thrown to the client application with appropriate error message strings which include the following: Applet selection failed, SW =... Cannot create default CardObjectFactory Incorrect (too short) response received from the card Invalid format requested by the factory Invoke operation failed, SW =... Method not found Object not exported Out of param resources Chapter 1 Client-Side API for Java Card RMI 5
10 Out of response resources Protocol error reported by the card Signature mismatch Thrown on the card Unexpected exception received while instantiating the stub Unsupported APPLICATION tag Unsupported error type received from the card Unsupported exception type received from the card Unsupported FCI tag Unsupported JCRMI tag Unsupported JCRMI version Unsupported subclass exception type received from the card Unsupported tag Wrong parameter to getnonremoteobject() 6 RMI Client Application Programming Interface June, 2002
11 CHAPTER 2 Client-Side Java Card RMI Framework API This chapter begins with an overview of the classes in the Java Card RMI Client package, com.sun.javacard.javax.smartcard.rmiclient. Then follows the API documentation generated by the Javadoc tool for this package. 2.1 Package rmiclient In the package com.sun.javacard.javax.smartcard.rmiclient: abstract class CardObjectFactory Key methods in this class are getobject and getremoteobject: public Object getobject( byte[] buffer, int tagoffset, Class type ) throws RemoteException, StubNotFoundException, Exception This is a public method which instantiates an object or throws an exception corresponding to the card response. This method is used to parse card responses to select and during method invocations to parse card responses. If the response is a remote reference, the method getremoteobject is called. Generally, an implementor do not need to override the getobject method. protected abstract Remote getremoteobject(byte[] buffer, int tagoffset) throws Exception; This is an abstract method intended to parse card responses containing remote references (note: this method does not have a type parameter). Because there are two different reference formats (with class name and with interface names), an implementor must override this abstract method with an implementation that parses the format used by the application. 3
12 interface CardAccessor Declares method exchangeapdu(), exchanging data with the card. Implementations of this interface usually perform additional transformations of the data, such as encryption or integrity checks. Declares method getsessionidentifier(). class JavaCardRMIConnect Provides methods selectapplet() and getinitialreference() for the client program. The CardAccessor instance must be provided to the constructor of this class. A custom CardObjectFactory can optionally be specified for the selectapplet method. If the ObjectFactory is not specified, the current implementation JavaCardRMIConnect uses com.sun.javacard.ocfrmiclientimpl.jccardobjectfactory as default Exception Classes Exceptions contained in this package: APDUExceptionSubclass.java CardExceptionSubclass.java CardRuntimeExceptionSubclass.java CryptoExceptionSubclass.java PINExceptionSubclass.java ISOExceptionSubclass.java SystemExceptionSubclass.java ServiceExceptionSubclass.java UserExceptionSubclass.java TransactionExceptionSubclass.java These exception classes are subclasses of the corresponding Java Card exceptions and are designed to be re-thrown on the client when a subclass of the corresponding exception is thrown on the card by a native method. 2.2 API Documentation The remainder of this chapter contains the API documentation generated by the Javadoc tool for of the client-side JCRMI application programming interface package, com.sun.javacard.javax.smartcard.rmiclient, including subclasses of Java Card exceptions. 4 RMI Client Application Programming Interface June, 2002
13 This chapter also includes Java Card exceptions that can be re-thrown from the client. These exceptions reside in the Java Card packages javacard.framework, javacard.framework.service, and javacard.security. Chapter 2 Client-Side Java Card RMI Framework API 5
14 6 RMI Client Application Programming Interface June, 2002
15 Overview Package Summary Packages com.sun.javacard.javax.smartcard.rmiclient javacard.framework Provides framework of classes and interfaces for a Java Card client. Provides Java Card exceptions that may be re-thrown on the client. javacard.framework.service Provides Java Card exceptions that may be re-thrown on the client. javacard.security Provides Java Card exceptions that may be re-thrown on the client. Class Hierarchy java.lang.object com.sun.javacard.javax.smartcard.rmiclient.cardobjectfactory com.sun.javacard.javax.smartcard.rmiclient.javacardrmiconnect java.lang.throwable (implements java.io.serializable) java.lang.exception javacard.framework.cardexception com.sun.javacard.javax.smartcard.rmiclient.cardexceptionsubclass javacard.framework.userexception com.sun.javacard.javax.smartcard.rmiclient.userexceptionsubclass java.lang.runtimeexception javacard.framework.cardruntimeexception javacard.framework.apduexception com.sun.javacard.javax.smartcard.rmiclient.apduexceptionsubclass com.sun.javacard.javax.smartcard.rmiclient.cardruntimeexceptionsubclass javacard.security.cryptoexception com.sun.javacard.javax.smartcard.rmiclient.cryptoexceptionsubclass javacard.framework.isoexception com.sun.javacard.javax.smartcard.rmiclient.isoexceptionsubclass javacard.framework.pinexception com.sun.javacard.javax.smartcard.rmiclient.pinexceptionsubclass javacard.framework.service.serviceexception com.sun.javacard.javax.smartcard.rmiclient.serviceexceptionsubclass javacard.framework.systemexception com.sun.javacard.javax.smartcard.rmiclient.systemexceptionsubclass javacard.framework.transactionexception com.sun.javacard.javax.smartcard.rmiclient. TransactionExceptionSubclass Interface Hierarchy com.sun.javacard.javax.smartcard.rmiclient.cardaccessor Overview 11
16 Overview 12 RMI Client Application Programming Interface June, 2002
17 Package com.sun.javacard.javax.smartcard. rmiclient Description Provides framework of classes and interfaces for a Java Card client. Class Summary Interfaces CardAccessor The CardAccessor interface represents a generic smartcard communication API. Classes CardObjectFactory JavaCardRMIConnect This CardObjectFactory abstract class represents the base class for Java Card 2.2 RMI stub generation implementations. The JavaCardRMIConnect class is used by the client application to intitialize a Java Card RMI session and obtain an initial remote reference. Exceptions APDUExceptionSubclass CardExceptionSubclass CardRuntimeExceptionSubclass CryptoExceptionSubclass ISOExceptionSubclass PINExceptionSubclass ServiceExceptionSubclass SystemExceptionSubclass TransactionExceptionSubclass UserExceptionSubclass This exception class represents a card subclass of APDUException. This exception class represents a subclass of CardException on the card. This exception class represents a subclass of CardRuntimeException on the card. This exception class represents a card subclass of CryptoException. This exception class represents a card subclass of ISOException. This exception class represents a card subclass of PINException. This exception class represents a card subclass of ServiceException. This exception class represents a card subclass of SystemException. This exception class represents a card subclass of TransactionException. This exception class represents a card subclass of UserException. com.sun.javacard.javax.smartcard.rmiclient 13
18 APDUExceptionSubclass com.sun.javacard.javax.smartcard.rmiclient com.sun.javacard.javax.smartcard.rmiclient APDUExceptionSubclass Declaration public class APDUExceptionSubclass extends APDUException java.lang.object +--java.lang.throwable +--java.lang.exception +--java.lang.runtimeexception +--javacard.framework.cardruntimeexception +--javacard.framework.apduexception +--com.sun.javacard.javax.smartcard.rmiclient. APDUExceptionSubclass All Implemented Interfaces: java.io.serializable Description This exception class represents a card subclass of APDUException. APDUException represents an APDU related exception on the card. Member Summary java.lang.string APDUExceptionSubclass(java.lang.String msg, short reason) Constructs an APDUExceptionSubclass with the specified reason and specified error message. getmessage() Returns the error message string of this throwable object. Inherited Member Summary Fields inherited from interface APDUException BAD_LENGTH, BUFFER_BOUNDS, ILLEGAL_USE, IO_ERROR, NO_T0_GETRESPONSE, NO_T0_REISSUE, T1_IFD_ABORT inherited from interface APDUException throwit(short) 14 RMI Client Application Programming Interface June, 2002
19 com.sun.javacard.javax.smartcard.rmiclient APDUExceptionSubclass APDUExceptionSubclass(String, short) Inherited Member Summary inherited from interface CardRuntimeException getreason(), setreason(short) inherited from class java.lang.object clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from class java.lang.throwable fillinstacktrace, getlocalizedmessage, printstacktrace, printstacktrace, printstacktrace, tostring APDUExceptionSubclass(String, short) public APDUExceptionSubclass(java.lang.String msg, short reason) Constructs an APDUExceptionSubclass with the specified reason and specified error message. Parameters: msg - the associated message string reason - the reason for the exception. getmessage() public java.lang.string getmessage() Returns the error message string of this throwable object. Overrides: getmessage in class Throwable Returns: the error message string of this Throwable object if it was created with an error message string; or null if it was created with no error message. APDUExceptionSubclass 15
20 CardAccessor com.sun.javacard.javax.smartcard.rmiclient exchangeapdu(byte[]) com.sun.javacard.javax.smartcard.rmiclient CardAccessor Declaration public interface CardAccessor Description The CardAccessor interface represents a generic smartcard communication API. The interface based definition makes it platform and framework independent. This interface is used by Java Card RMI stubs to access the smart card. Member Summary byte[] short exchangeapdu(byte[] senddata) This method sends the specified data to the smartcard, waits for the response and returns the response in the return data. getsessionidentifier() This method returns an identifier associated with the card session. exchangeapdu(byte[]) public byte[] exchangeapdu(byte[] senddata) throws IOException This method sends the specified data to the smartcard, waits for the response and returns the response in the return data. The input data is assumed to be formatted for ISO APDU communication as follows : [0] = CLA, [1]= INS, [2] = P1, [3]= P2, [4]=Lc, [4..]= command data. The response data is formatted for ISO APDU communication as follows : [0] = SW1, [1]= SW2, [2..]= response data. Parameters: senddata - the ISO formatted command APDU data with 5 bytes of header followed by the command data. Returns: responsedata contains the response received from card with the 2 status bytes followed by the response data. Throws: IOException - if communication error occurs getsessionidentifier() public short getsessionidentifier() This method returns an identifier associated with the card session. A new session identifier is assigned on every card reset. 16 RMI Client Application Programming Interface June, 2002
21 com.sun.javacard.javax.smartcard.rmiclient CardAccessor getsessionidentifier() Returns: the card session identifier CardAccessor 17
22 CardExceptionSubclass com.sun.javacard.javax.smartcard.rmiclient getsessionidentifier() com.sun.javacard.javax.smartcard.rmiclient CardExceptionSubclass Declaration public class CardExceptionSubclass extends CardException java.lang.object +--java.lang.throwable +--java.lang.exception +--javacard.framework.cardexception +--com.sun.javacard.javax.smartcard.rmiclient.cardexceptionsubclass All Implemented Interfaces: java.io.serializable Description This exception class represents a subclass of CardException on the card. The CardException class on the card defines a field reason and two accessor methods getreason() and setreason(). The reason field encapsulates exception cause identifier in Java Card. All Java Card checked Exception classes on the card should extend CardException. Member Summary java.lang.string CardExceptionSubclass(java.lang.String msg, short reason) Construct a CardExceptionSubclass instance with the specified reason and the specified error message. getmessage() Returns the error message string of this throwable object. Inherited Member Summary inherited from interface CardException getreason(), setreason(short), throwit(short) inherited from class java.lang.object clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from class java.lang.throwable 18 RMI Client Application Programming Interface June, 2002
23 com.sun.javacard.javax.smartcard.rmiclient CardExceptionSubclass CardExceptionSubclass(String, short) Inherited Member Summary fillinstacktrace, getlocalizedmessage, printstacktrace, printstacktrace, printstacktrace, tostring CardExceptionSubclass(String, short) public CardExceptionSubclass(java.lang.String msg, short reason) Construct a CardExceptionSubclass instance with the specified reason and the specified error message. Parameters: msg - the associated message string reason - the reason for the exception getmessage() public java.lang.string getmessage() Returns the error message string of this throwable object. Overrides: getmessage in class Throwable Returns: the error message string of this Throwable object if it was created with an error message string; or null if it was created with no error message. CardExceptionSubclass 19
24 CardObjectFactory com.sun.javacard.javax.smartcard.rmiclient getmessage() com.sun.javacard.javax.smartcard.rmiclient CardObjectFactory Declaration public abstract class CardObjectFactory java.lang.object +--com.sun.javacard.javax.smartcard.rmiclient.cardobjectfactory Description This CardObjectFactory abstract class represents the base class for Java Card 2.2 RMI stub generation implementations. An instance of this class is associated with one Java Card applet selection session. Member Summary Fields protected CardAccessor static byte static byte static byte byte java.lang.object protected abstract java.rmi.remote abstract byte void cardaccessor the CardAccessor to be used for the current RMI session. REF_FORMAT_CLASS This value (=1) is used to signify that the CardObjectFactory implementation suppports the JCRMI remote reference format using the name of the card implementation remote class. REF_FORMAT_INTERFACES This value (=2) is used to signify that the CardObjectFactory implementation suppports the JCRMI remote reference format using the names of the remote interfaces implemented by the card implementation remote class. REF_FORMAT_NONE This value (=0) is used to signify that the CardObjectFactory implementation does not suppport any JCRMI remote reference descriptor formats. CardObjectFactory(CardAccessor ca) Creates a new CardObjectFactory for this RMI session getinsbyte() returns the configured ISO command INS byte to be used in the Java Card remote method invocation command getobject(byte[] buffer, int tagoffset, java.lang.class type) This abstract method returns the instance of the card object corresponding to the value returned from the card. getremoteobject(byte[] buffer, int tagoffset) This abstract method instantiates a stub or proxy object corresponding to the remote reference returned from the card getremoterefformat() returns the format of JCRMI remote object reference descriptor supported. setinsbyte(byte ins) Sets the ISO header INS byte to use for Java Card RMI method invocation commands. 20 RMI Client Application Programming Interface June, 2002
25 com.sun.javacard.javax.smartcard.rmiclient CardObjectFactory REF_FORMAT_NONE Inherited Member Summary inherited from class java.lang.object clone, equals, finalize, getclass, hashcode, notify, notifyall, tostring, wait, wait, wait Fields REF_FORMAT_NONE public static final byte REF_FORMAT_NONE This value (=0) is used to signify that the CardObjectFactory implementation does not suppport any JCRMI remote reference descriptor formats. REF_FORMAT_CLASS public static final byte REF_FORMAT_CLASS This value (=1) is used to signify that the CardObjectFactory implementation suppports the JCRMI remote reference format using the name of the card implementation remote class. REF_FORMAT_INTERFACES public static final byte REF_FORMAT_INTERFACES This value (=2) is used to signify that the CardObjectFactory implementation suppports the JCRMI remote reference format using the names of the remote interfaces implemented by the card implementation remote class. cardaccessor protected com.sun.javacard.javax.smartcard.rmiclient.cardaccessor cardaccessor the CardAccessor to be used for the current RMI session. CardObjectFactory(CardAccessor) public CardObjectFactory(com.sun.javacard.javax.smartcard.rmiclient.CardAccessor ca) Creates a new CardObjectFactory for this RMI session Parameters: ca - The CardAccessor for the current session. CardObjectFactory 21
26 CardObjectFactory com.sun.javacard.javax.smartcard.rmiclient getobject(byte[], int, Class) getobject(byte[], int, Class) public java.lang.object getobject(byte[] buffer, int tagoffset, java.lang.class type) throws RemoteException, StubNotFoundException, Exception This abstract method returns the instance of the card object corresponding to the value returned from the card. The value returned by the card may be any of the valid return types in Java Card 2.2 RMI protocol format. In particular the return type may be a primitive, an array type or a remote reference descriptor or null. The method delegates processing to getremoteobject(...) when the response tag is normal and expected type is a remote reference. Parameters: buffer - the byte array containing the JC 2.2 RMI response data tagoffset - the offset within the array where the response tag is located type - the expected return type in the response data Returns: the object associated with the response data. Primitive return value is encapsulated in a wrapper object. Throws: StubNotFoundException - if an appropriate object could not be instantiated RemoteException - for any RMI-specific exceptions Exception - for exceptions thrown on the card getremoteobject(byte[], int) protected abstract java.rmi.remote getremoteobject(byte[] buffer, int tagoffset) throws Exception This abstract method instantiates a stub or proxy object corresponding to the remote reference returned from the card Parameters: buffer - the byte array containing the JC 2.2 RMI response data tagoffset - the offset within the array where the response tag is located Returns: Stub or proxy Throws: Exception - In case of error during processing setinsbyte(byte) public void setinsbyte(byte ins) Sets the ISO header INS byte to use for Java Card RMI method invocation commands. Parameters: ins - the ISO INS command header byte to use for Java Card RMI invocation commands getinsbyte() public byte getinsbyte() 22 RMI Client Application Programming Interface June, 2002
27 com.sun.javacard.javax.smartcard.rmiclient CardObjectFactory getremoterefformat() returns the configured ISO command INS byte to be used in the Java Card remote method invocation command Returns: the ISO INS byte Since: Java Card 2.2 getremoterefformat() public abstract byte getremoterefformat() returns the format of JCRMI remote object reference descriptor supported. It returns one of : REF_FORMAT_NONE, REF_FORMAT_CLASS, REF_FORMAT_INTERFACES Returns: one of the REF_FORMAT.. values defined above CardObjectFactory 23
28 CardRuntimeExceptionSubclass com.sun.javacard.javax.smartcard.rmiclient getremoterefformat() com.sun.javacard.javax.smartcard.rmiclient CardRuntimeExceptionSubclass Declaration public class CardRuntimeExceptionSubclass extends CardRuntimeException java.lang.object +--java.lang.throwable +--java.lang.exception +--java.lang.runtimeexception +--javacard.framework.cardruntimeexception +--com.sun.javacard.javax.smartcard.rmiclient. CardRuntimeExceptionSubclass All Implemented Interfaces: java.io.serializable Description This exception class represents a subclass of CardRuntimeException on the card. The CardRuntimeException class on the card defines a field reason and two accessor methods getreason() and setreason(). The reason field encapsulates exception cause identifier in Java Card. All Java Card unchecked Exception classes on the card should extend CardRuntimeException. Member Summary java.lang.string CardRuntimeExceptionSubclass(java.lang.String msg, short reason) Construct a CardRuntimeExceptionSubclass instance with the specified reason and the specified error message. getmessage() Returns the error message string of this throwable object. Inherited Member Summary inherited from interface CardRuntimeException getreason(), setreason(short), throwit(short) inherited from class java.lang.object clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait 24 RMI Client Application Programming Interface June, 2002
29 com.sun.javacard.javax.smartcard.rmiclient CardRuntimeExceptionSubclass CardRuntimeExceptionSubclass(String, short) Inherited Member Summary inherited from class java.lang.throwable fillinstacktrace, getlocalizedmessage, printstacktrace, printstacktrace, printstacktrace, tostring CardRuntimeExceptionSubclass(String, short) public CardRuntimeExceptionSubclass(java.lang.String msg, short reason) Construct a CardRuntimeExceptionSubclass instance with the specified reason and the specified error message. Parameters: msg - the associated message string reason - the reason for the exception getmessage() public java.lang.string getmessage() Returns the error message string of this throwable object. Overrides: getmessage in class Throwable Returns: the error message string of this Throwable object if it was created with an error message string; or null if it was created with no error message. CardRuntimeExceptionSubclass 25
30 CryptoExceptionSubclass com.sun.javacard.javax.smartcard.rmiclient getmessage() com.sun.javacard.javax.smartcard.rmiclient CryptoExceptionSubclass Declaration public class CryptoExceptionSubclass extends CryptoException java.lang.object +--java.lang.throwable +--java.lang.exception +--java.lang.runtimeexception +--javacard.framework.cardruntimeexception +--javacard.security.cryptoexception +--com.sun.javacard.javax.smartcard.rmiclient. CryptoExceptionSubclass All Implemented Interfaces: java.io.serializable Description This exception class represents a card subclass of CryptoException. CryptoException represents a cryptography-related exception. Member Summary java.lang.string CryptoExceptionSubclass(java.lang.String msg, short reason) Constructs an CryptoExceptionSubclass with the specified reason and specified error message. getmessage() Returns the error message string of this throwable object. Inherited Member Summary Fields inherited from interface CryptoException ILLEGAL_USE, ILLEGAL_VALUE, INVALID_INIT, NO_SUCH_ALGORITHM, UNINITIALIZED_KEY inherited from interface CardRuntimeException getreason(), setreason(short) inherited from interface CryptoException 26 RMI Client Application Programming Interface June, 2002
31 com.sun.javacard.javax.smartcard.rmiclient CryptoExceptionSubclass CryptoExceptionSubclass(String, short) Inherited Member Summary throwit(short) inherited from class java.lang.object clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from class java.lang.throwable fillinstacktrace, getlocalizedmessage, printstacktrace, printstacktrace, printstacktrace, tostring CryptoExceptionSubclass(String, short) public CryptoExceptionSubclass(java.lang.String msg, short reason) Constructs an CryptoExceptionSubclass with the specified reason and specified error message. Parameters: msg - the associated message string reason - the reason for the exception. getmessage() public java.lang.string getmessage() Returns the error message string of this throwable object. Overrides: getmessage in class Throwable Returns: the error message string of this Throwable object if it was created with an error message string; or null if it was created with no error message. CryptoExceptionSubclass 27
32 ISOExceptionSubclass com.sun.javacard.javax.smartcard.rmiclient getmessage() com.sun.javacard.javax.smartcard.rmiclient ISOExceptionSubclass Declaration public class ISOExceptionSubclass extends ISOException java.lang.object +--java.lang.throwable +--java.lang.exception +--java.lang.runtimeexception +--javacard.framework.cardruntimeexception +--javacard.framework.isoexception +--com.sun.javacard.javax.smartcard.rmiclient. ISOExceptionSubclass All Implemented Interfaces: java.io.serializable Description This exception class represents a card subclass of ISOException. ISOException class encapsulates an ISO response status word as its reason code. Member Summary java.lang.string ISOExceptionSubclass(java.lang.String msg, short reason) Constructs an ISOExceptionSubclass with the specified reason and specified error message. getmessage() Returns the error message string of this throwable object. Inherited Member Summary inherited from interface CardRuntimeException getreason(), setreason(short) inherited from interface ISOException throwit(short) inherited from class java.lang.object 28 RMI Client Application Programming Interface June, 2002
33 com.sun.javacard.javax.smartcard.rmiclient ISOExceptionSubclass ISOExceptionSubclass(String, short) Inherited Member Summary clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from class java.lang.throwable fillinstacktrace, getlocalizedmessage, printstacktrace, printstacktrace, printstacktrace, tostring ISOExceptionSubclass(String, short) public ISOExceptionSubclass(java.lang.String msg, short reason) Constructs an ISOExceptionSubclass with the specified reason and specified error message. Parameters: msg - the associated message string reason - the ISO defined status word getmessage() public java.lang.string getmessage() Returns the error message string of this throwable object. Overrides: getmessage in class Throwable Returns: the error message string of this Throwable object if it was created with an error message string; or null if it was created with no error message. ISOExceptionSubclass 29
34 JavaCardRMIConnect com.sun.javacard.javax.smartcard.rmiclient getmessage() com.sun.javacard.javax.smartcard.rmiclient JavaCardRMIConnect Declaration public class JavaCardRMIConnect java.lang.object +--com.sun.javacard.javax.smartcard.rmiclient.javacardrmiconnect Description The JavaCardRMIConnect class is used by the client application to intitialize a Java Card RMI session and obtain an initial remote reference. The following code shows how a typical client application which uses an underlying OCF framework interacts with this class.... CardRequest cr = new CardRequest( 5 ); //wait 5 seconds cr.setwaitbehavior( CardRequest.ANYCARD ); SmartCard mycard = SmartCard.waitForCard( cr, null, JCRMICardService.class); CardAccessor mycs = (CardAccessor) mycard.getcardservice( OCFCardAccessor. class, true ); // create and initialize JavaCard RMI session JavaCardRMIConnect jcrmi = new JavaCardConnect( mycs ); byte[] appaid = new byte[] { 0x1,0x2,0x3,0x4,0x5,0x6, 0x7,0x8 }; jcrmi.selectapplet( appaid ); initinterface ir = (initinterface) jcrmi.getinitialreference();.. JPInterface jpi = ir.getjpinterface(); short balance = jpi.getbalance(); Member Summary java.rmi.remote byte[] byte[] JavaCardRMIConnect(CardAccessor ca) Creates a new JavaCardRMIConnect instance using the specified CardAccessor getinitialreference() Returns the initial remote object for the selected Java Card applet. selectapplet(byte[] appletaid) Selects the specified Java Card Applet selectapplet(byte[] appletaid, CardObjectFactory cof) Selects the specified Java Card Applet and specifies a CardObjectFactory to use for the Java Card RMI stub generation Inherited Member Summary inherited from class java.lang.object 30 RMI Client Application Programming Interface June, 2002
35 com.sun.javacard.javax.smartcard.rmiclient JavaCardRMIConnect JavaCardRMIConnect(CardAccessor) Inherited Member Summary clone, equals, finalize, getclass, hashcode, notify, notifyall, tostring, wait, wait, wait JavaCardRMIConnect(CardAccessor) public JavaCardRMIConnect(com.sun.javacard.javax.smartcard.rmiclient.CardAccessor ca) Creates a new JavaCardRMIConnect instance using the specified CardAccessor Parameters: ca - the CardAccessor instance to use for card communication selectapplet(byte[]) public byte[] selectapplet(byte[] appletaid) throws IOException Selects the specified Java Card Applet Parameters: appletaid - the AID of the Java Card applet Returns: the response received from the applet selection command. The response consists of 2 bytes of status (SW1, SW2) followed by the response data. The response data is interpreted in an FCI format to configure the Java Card RMI session. Throws: IOException - if a card communication error occurs selectapplet(byte[], CardObjectFactory) public byte[] selectapplet(byte[] appletaid, com.sun.javacard.javax.smartcard.rmiclient. CardObjectFactory cof) throws IOException Selects the specified Java Card Applet and specifies a CardObjectFactory to use for the Java Card RMI stub generation Parameters: appletaid - the AID of the Java Card applet cof - the card stub factory instance to use for Java Card RMI stub/proxy instantiation. Returns: the response received from the applet selection command. The response consists of 2 bytes of status (SW1, SW2) followed by the response data. The response data is interpreted in an FCI format to configure the Java Card RMI session. Throws: IOException - if a card communication error occurs JavaCardRMIConnect 31
36 JavaCardRMIConnect com.sun.javacard.javax.smartcard.rmiclient getinitialreference() getinitialreference() public java.rmi.remote getinitialreference() throws RemoteException Returns the initial remote object for the selected Java Card applet. The initial remote object reference was returned during the applet selection. Returns: the Java Card applet s initial remote object Throws: RemoteException - if a Java Card RMI protocol error occurs 32 RMI Client Application Programming Interface June, 2002
37 com.sun.javacard.javax.smartcard.rmiclient PINExceptionSubclass getinitialreference() com.sun.javacard.javax.smartcard.rmiclient PINExceptionSubclass Declaration public class PINExceptionSubclass extends PINException java.lang.object +--java.lang.throwable +--java.lang.exception +--java.lang.runtimeexception +--javacard.framework.cardruntimeexception +--javacard.framework.pinexception +--com.sun.javacard.javax.smartcard.rmiclient. PINExceptionSubclass All Implemented Interfaces: java.io.serializable Description This exception class represents a card subclass of PINException. PINException represents a OwnerPIN class access-related exception. Member Summary java.lang.string PINExceptionSubclass(java.lang.String msg, short reason) Constructs an PINExceptionSubclass with the specified reason and specified error message. getmessage() Returns the error message string of this throwable object. Inherited Member Summary Fields inherited from interface PINException ILLEGAL_VALUE inherited from interface CardRuntimeException getreason(), setreason(short) inherited from class java.lang.object PINExceptionSubclass 33
38 PINExceptionSubclass com.sun.javacard.javax.smartcard.rmiclient PINExceptionSubclass(String, short) Inherited Member Summary clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from interface PINException throwit(short) inherited from class java.lang.throwable fillinstacktrace, getlocalizedmessage, printstacktrace, printstacktrace, printstacktrace, tostring PINExceptionSubclass(String, short) public PINExceptionSubclass(java.lang.String msg, short reason) Constructs an PINExceptionSubclass with the specified reason and specified error message. Parameters: msg - the associated message string reason - the reason for the exception. getmessage() public java.lang.string getmessage() Returns the error message string of this throwable object. Overrides: getmessage in class Throwable Returns: the error message string of this Throwable object if it was created with an error message string; or null if it was created with no error message. 34 RMI Client Application Programming Interface June, 2002
39 com.sun.javacard.javax.smartcard.rmiclient ServiceExceptionSubclass getmessage() com.sun.javacard.javax.smartcard.rmiclient ServiceExceptionSubclass Declaration public class ServiceExceptionSubclass extends ServiceException java.lang.object +--java.lang.throwable +--java.lang.exception +--java.lang.runtimeexception +--javacard.framework.cardruntimeexception +--javacard.framework.service.serviceexception +--com.sun.javacard.javax.smartcard.rmiclient. ServiceExceptionSubclass All Implemented Interfaces: java.io.serializable Description This exception class represents a card subclass of ServiceException. ServiceException represents a service framework related exception. Member Summary java.lang.string ServiceExceptionSubclass(java.lang.String msg, short reason) Constructs an ServiceExceptionSubclass with the specified reason and specified error message. getmessage() Returns the error message string of this throwable object. Inherited Member Summary Fields inherited from interface ServiceException CANNOT_ACCESS_IN_COMMAND, CANNOT_ACCESS_OUT_COMMAND, COMMAND_DATA_TOO_LONG, COMMAND_IS_FINISHED, DISPATCH_TABLE_FULL, ILLEGAL_PARAM, REMOTE_OBJECT_NOT_EXPORTED inherited from interface CardRuntimeException getreason(), setreason(short) ServiceExceptionSubclass 35
40 ServiceExceptionSubclass com.sun.javacard.javax.smartcard.rmiclient ServiceExceptionSubclass(String, short) Inherited Member Summary inherited from class java.lang.object clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from interface ServiceException throwit(short) inherited from class java.lang.throwable fillinstacktrace, getlocalizedmessage, printstacktrace, printstacktrace, printstacktrace, tostring ServiceExceptionSubclass(String, short) public ServiceExceptionSubclass(java.lang.String msg, short reason) Constructs an ServiceExceptionSubclass with the specified reason and specified error message. Parameters: msg - the associated message string reason - the reason for the exception. getmessage() public java.lang.string getmessage() Returns the error message string of this throwable object. Overrides: getmessage in class Throwable Returns: the error message string of this Throwable object if it was created with an error message string; or null if it was created with no error message. 36 RMI Client Application Programming Interface June, 2002
41 com.sun.javacard.javax.smartcard.rmiclient SystemExceptionSubclass getmessage() com.sun.javacard.javax.smartcard.rmiclient SystemExceptionSubclass Declaration public class SystemExceptionSubclass extends SystemException java.lang.object +--java.lang.throwable +--java.lang.exception +--java.lang.runtimeexception +--javacard.framework.cardruntimeexception +--javacard.framework.systemexception +--com.sun.javacard.javax.smartcard.rmiclient. SystemExceptionSubclass All Implemented Interfaces: java.io.serializable Description This exception class represents a card subclass of SystemException. SystemException represents a JCSystem class related exception. Member Summary java.lang.string SystemExceptionSubclass(java.lang.String msg, short reason) Constructs an SystemExceptionSubclass with the specified reason and specified error message. getmessage() Returns the error message string of this throwable object. Inherited Member Summary Fields inherited from interface SystemException ILLEGAL_AID, ILLEGAL_TRANSIENT, ILLEGAL_USE, ILLEGAL_VALUE, NO_RESOURCE, NO_TRANSIENT_SPACE inherited from interface CardRuntimeException getreason(), setreason(short) SystemExceptionSubclass 37
42 SystemExceptionSubclass com.sun.javacard.javax.smartcard.rmiclient SystemExceptionSubclass(String, short) Inherited Member Summary inherited from class java.lang.object clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from interface SystemException throwit(short) inherited from class java.lang.throwable fillinstacktrace, getlocalizedmessage, printstacktrace, printstacktrace, printstacktrace, tostring SystemExceptionSubclass(String, short) public SystemExceptionSubclass(java.lang.String msg, short reason) Constructs an SystemExceptionSubclass with the specified reason and specified error message. Parameters: msg - the associated message string reason - the reason for the exception. getmessage() public java.lang.string getmessage() Returns the error message string of this throwable object. Overrides: getmessage in class Throwable Returns: the error message string of this Throwable object if it was created with an error message string; or null if it was created with no error message. 38 RMI Client Application Programming Interface June, 2002
43 com.sun.javacard.javax.smartcard.rmiclient TransactionExceptionSubclass getmessage() com.sun.javacard.javax.smartcard.rmiclient TransactionExceptionSubclass Declaration public class TransactionExceptionSubclass extends TransactionException java.lang.object +--java.lang.throwable +--java.lang.exception +--java.lang.runtimeexception +--javacard.framework.cardruntimeexception +--javacard.framework.transactionexception +--com.sun.javacard.javax.smartcard.rmiclient. TransactionExceptionSubclass All Implemented Interfaces: java.io.serializable Description This exception class represents a card subclass of TransactionException. TransactionException represents an exception in the transaction subsystem. Member Summary java.lang.string TransactionExceptionSubclass(java.lang.String msg, short reason) Constructs an TransactionExceptionSubclass with the specified reason and specified error message. getmessage() Returns the error message string of this throwable object. Inherited Member Summary Fields inherited from interface TransactionException BUFFER_FULL, INTERNAL_FAILURE, IN_PROGRESS, NOT_IN_PROGRESS inherited from interface CardRuntimeException getreason(), setreason(short) TransactionExceptionSubclass 39
44 TransactionExceptionSubclass com.sun.javacard.javax.smartcard.rmiclient TransactionExceptionSubclass(String, short) Inherited Member Summary inherited from class java.lang.object clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from class java.lang.throwable fillinstacktrace, getlocalizedmessage, printstacktrace, printstacktrace, printstacktrace, tostring inherited from interface TransactionException throwit(short) TransactionExceptionSubclass(String, short) public TransactionExceptionSubclass(java.lang.String msg, short reason) Constructs an TransactionExceptionSubclass with the specified reason and specified error message. Parameters: msg - the associated message string reason - the reason for the exception. getmessage() public java.lang.string getmessage() Returns the error message string of this throwable object. Overrides: getmessage in class Throwable Returns: the error message string of this Throwable object if it was created with an error message string; or null if it was created with no error message. 40 RMI Client Application Programming Interface June, 2002
45 com.sun.javacard.javax.smartcard.rmiclient UserExceptionSubclass getmessage() com.sun.javacard.javax.smartcard.rmiclient UserExceptionSubclass Declaration public class UserExceptionSubclass extends UserException java.lang.object +--java.lang.throwable +--java.lang.exception +--javacard.framework.cardexception +--javacard.framework.userexception +--com.sun.javacard.javax.smartcard.rmiclient. UserExceptionSubclass All Implemented Interfaces: java.io.serializable Description This exception class represents a card subclass of UserException. UserException represents a User exception. Member Summary java.lang.string UserExceptionSubclass(java.lang.String msg, short reason) Constructs an UserExceptionSubclass with the specified reason and specified error message. getmessage() Returns the error message string of this throwable object. Inherited Member Summary inherited from interface CardException getreason(), setreason(short) inherited from class java.lang.object clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from class java.lang.throwable fillinstacktrace, getlocalizedmessage, printstacktrace, printstacktrace, printstacktrace, tostring UserExceptionSubclass 41
46 UserExceptionSubclass com.sun.javacard.javax.smartcard.rmiclient UserExceptionSubclass(String, short) Inherited Member Summary inherited from interface UserException throwit(short) UserExceptionSubclass(String, short) public UserExceptionSubclass(java.lang.String msg, short reason) Constructs an UserExceptionSubclass with the specified reason and specified error message. Parameters: msg - the associated message string reason - the reason for the exception. getmessage() public java.lang.string getmessage() Returns the error message string of this throwable object. Overrides: getmessage in class Throwable Returns: the error message string of this Throwable object if it was created with an error message string; or null if it was created with no error message. 42 RMI Client Application Programming Interface June, 2002
47 Package javacard.framework Description Provides Java Card exceptions that may be re-thrown on the client. Class Summary Exceptions APDUException CardException CardRuntimeException ISOException PINException SystemException TransactionException UserException APDUException represents an APDU related exception. The CardException class defines a field reason and two accessor methods getreason() and setreason(). The CardRuntimeException class defines a field reason and two accessor methods getreason() and setreason(). ISOException class encapsulates an ISO response status word as its reason code. PINException represents a OwnerPIN class access-related exception. SystemException represents a JCSystem class related exception. TransactionException represents an exception in the transaction subsystem. UserException represents a User exception. javacard.framework 43
48 APDUException javacard.framework javacard.framework APDUException Declaration public class APDUException extends CardRuntimeException java.lang.object +--java.lang.throwable +--java.lang.exception +--java.lang.runtimeexception +--javacard.framework.cardruntimeexception +--javacard.framework.apduexception All Implemented Interfaces: java.io.serializable Direct Known Subclasses: APDUExceptionSubclass Description APDUException represents an APDU related exception. Member Summary Fields static short static short static short static short static short static short BAD_LENGTH This reason code is used by the APDU.setOutgoingLength() method to indicate that the length parameter is greater that 256 or if non BLOCK CHAINED data transfer is requested and len is greater than (IFSD-2), where IFSD is the Outgoing Block Size. BUFFER_BOUNDS This reason code is used by the APDU.sendBytes() method to indicate that the sum of buffer offset parameter and the byte length parameter exceeds the APDU buffer size. ILLEGAL_USE This APDUException reason code indicates that the method should not be invoked based on the current state of the APDU. IO_ERROR This reason code indicates that an unrecoverable error occurred in the I/O transmission layer. NO_T0_GETRESPONSE This reason code indicates that during T=0 protocol, the CAD did not return a GET RESPONSE command in response to a <61xx> response status to send additional data. NO_T0_REISSUE This reason code indicates that during T=0 protocol, the CAD did not reissue the same APDU command with the corrected length in response to a <6Cxx> response status to request command reissue with the specified length. 44 RMI Client Application Programming Interface June, 2002
49 javacard.framework APDUException ILLEGAL_USE Member Summary static short T1_IFD_ABORT This reason code indicates that during T=1 protocol, the CAD returned an ABORT S- Block command and aborted the data transfer. APDUException(short reason) Constructs an APDUException. static void throwit(short reason) Throws an instance of APDUException with the specified reason. Inherited Member Summary inherited from interface CardRuntimeException getreason(), setreason(short) inherited from class java.lang.object clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from class java.lang.throwable fillinstacktrace, getlocalizedmessage, getmessage, printstacktrace, printstacktrace, printstacktrace, tostring Fields ILLEGAL_USE public static final short ILLEGAL_USE This APDUException reason code indicates that the method should not be invoked based on the current state of the APDU. BUFFER_BOUNDS public static final short BUFFER_BOUNDS This reason code is used by the APDU.sendBytes() method to indicate that the sum of buffer offset parameter and the byte length parameter exceeds the APDU buffer size. BAD_LENGTH public static final short BAD_LENGTH This reason code is used by the APDU.setOutgoingLength() method to indicate that the length parameter is greater that 256 or if non BLOCK CHAINED data transfer is requested and len is greater than (IFSD-2), where IFSD is the Outgoing Block Size. APDUException 45
50 APDUException javacard.framework IO_ERROR IO_ERROR public static final short IO_ERROR This reason code indicates that an unrecoverable error occurred in the I/O transmission layer. NO_T0_GETRESPONSE public static final short NO_T0_GETRESPONSE This reason code indicates that during T=0 protocol, the CAD did not return a GET RESPONSE command in response to a <61xx> response status to send additional data. The outgoing transfer has been aborted. No more data or status can be sent to the CAD in this APDU.process() method. T1_IFD_ABORT public static final short T1_IFD_ABORT This reason code indicates that during T=1 protocol, the CAD returned an ABORT S-Block command and aborted the data transfer. The incoming or outgoing transfer has been aborted. No more data can be received from the CAD. No more data or status can be sent to the CAD in this APDU.process() method. NO_T0_REISSUE public static final short NO_T0_REISSUE This reason code indicates that during T=0 protocol, the CAD did not reissue the same APDU command with the corrected length in response to a <6Cxx> response status to request command reissue with the specified length. The outgoing transfer has been aborted. No more data or status can be sent to the CAD in this APDU.process() method. APDUException(short) public APDUException(short reason) Constructs an APDUException. Parameters: reason - the reason for the exception. throwit(short) public static void throwit(short reason) Throws an instance of APDUException with the specified reason. Parameters: reason - the reason for the exception. Throws: APDUException - always. 46 RMI Client Application Programming Interface June, 2002
51 javacard.framework CardException javacard.framework CardException throwit(short) Declaration public class CardException extends java.lang.exception java.lang.object +--java.lang.throwable +--java.lang.exception +--javacard.framework.cardexception All Implemented Interfaces: java.io.serializable Direct Known Subclasses: CardExceptionSubclass, UserException Description The CardException class defines a field reason and two accessor methods getreason() and setreason(). The reason field encapsulates exception cause identifier in Java Card. All Java Card checked Exception classes should extend CardException. Member Summary CardException(short reason) Construct a CardException instance with the specified reason. short void static void getreason() Get reason code setreason(short reason) Set reason code. throwit(short reason) Throw an instance of CardException class with the specified reason. Inherited Member Summary inherited from class java.lang.object clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from class java.lang.throwable fillinstacktrace, getlocalizedmessage, getmessage, printstacktrace, printstacktrace, printstacktrace, tostring CardException 47
52 CardException javacard.framework CardException(short) CardException(short) public CardException(short reason) Construct a CardException instance with the specified reason. Parameters: reason - the reason for the exception getreason() public short getreason() Get reason code Returns: the reason for the exception setreason(short) public void setreason(short reason) Set reason code. Parameters: reason - the reason for the exception throwit(short) public static void throwit(short reason) throws CardException Throw an instance of CardException class with the specified reason. Parameters: reason - the reason for the exception Throws: CardException - always. 48 RMI Client Application Programming Interface June, 2002
53 javacard.framework javacard.framework CardRuntimeException CardRuntimeException throwit(short) Declaration public class CardRuntimeException extends java.lang.runtimeexception java.lang.object +--java.lang.throwable +--java.lang.exception +--java.lang.runtimeexception +--javacard.framework.cardruntimeexception All Implemented Interfaces: java.io.serializable Direct Known Subclasses: APDUException, CardRuntimeExceptionSubclass, CryptoException, ISOException, PINException, ServiceException, SystemException, TransactionException Description The CardRuntimeException class defines a field reason and two accessor methods getreason() and setreason(). The reason field encapsulates exception cause identifier in Java Card. All Java Card unchecked Exception classes should extend CardRuntimeException. Member Summary CardRuntimeException(short reason) Construct a CardRuntimeException instance with the specified reason. short void static void getreason() Get reason code setreason(short reason) Set reason code. throwit(short reason) Throw an instance of the CardRuntimeException class with the specified reason. Inherited Member Summary inherited from class java.lang.object CardRuntimeException 49
54 CardRuntimeException javacard.framework CardRuntimeException(short) Inherited Member Summary clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from class java.lang.throwable fillinstacktrace, getlocalizedmessage, getmessage, printstacktrace, printstacktrace, printstacktrace, tostring CardRuntimeException(short) public CardRuntimeException(short reason) Construct a CardRuntimeException instance with the specified reason. Parameters: reason - the reason for the exception getreason() public short getreason() Get reason code Returns: the reason for the exception setreason(short) public void setreason(short reason) Set reason code. Parameters: reason - the reason for the exception throwit(short) public static void throwit(short reason) throws CardRuntimeException Throw an instance of the CardRuntimeException class with the specified reason. Parameters: reason - the reason for the exception Throws: CardRuntimeException - always. 50 RMI Client Application Programming Interface June, 2002
55 javacard.framework ISOException throwit(short) javacard.framework ISOException Declaration public class ISOException extends CardRuntimeException java.lang.object +--java.lang.throwable +--java.lang.exception +--java.lang.runtimeexception +--javacard.framework.cardruntimeexception +--javacard.framework.isoexception All Implemented Interfaces: java.io.serializable Direct Known Subclasses: ISOExceptionSubclass Description ISOException class encapsulates an ISO response status word as its reason code. Member Summary static void ISOException(short sw) Constructs an ISOException instance with the specified status word. throwit(short sw) Throws an instance of the ISOException class with the specified status word. Inherited Member Summary inherited from interface CardRuntimeException getreason(), setreason(short) inherited from class java.lang.object clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from class java.lang.throwable ISOException 51
56 ISOException javacard.framework ISOException(short) Inherited Member Summary fillinstacktrace, getlocalizedmessage, getmessage, printstacktrace, printstacktrace, printstacktrace, tostring ISOException(short) public ISOException(short sw) Constructs an ISOException instance with the specified status word. Parameters: sw - the ISO defined status word throwit(short) public static void throwit(short sw) Throws an instance of the ISOException class with the specified status word. Parameters: sw - ISO defined status word Throws: ISOException - always. 52 RMI Client Application Programming Interface June, 2002
57 javacard.framework PINException throwit(short) javacard.framework PINException Declaration public class PINException extends CardRuntimeException java.lang.object +--java.lang.throwable +--java.lang.exception +--java.lang.runtimeexception +--javacard.framework.cardruntimeexception +--javacard.framework.pinexception All Implemented Interfaces: java.io.serializable Direct Known Subclasses: PINExceptionSubclass Description PINException represents a OwnerPIN class access-related exception. Member Summary Fields static short ILLEGAL_VALUE This reason code is used to indicate that one or more input parameters is out of allowed bounds. static void PINException(short reason) Constructs a PINException. throwit(short reason) Throws an instance of PINException with the specified reason. Inherited Member Summary inherited from interface CardRuntimeException getreason(), setreason(short) inherited from class java.lang.object PINException 53
58 PINException javacard.framework ILLEGAL_VALUE Inherited Member Summary clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from class java.lang.throwable fillinstacktrace, getlocalizedmessage, getmessage, printstacktrace, printstacktrace, printstacktrace, tostring Fields ILLEGAL_VALUE public static final short ILLEGAL_VALUE This reason code is used to indicate that one or more input parameters is out of allowed bounds. PINException(short) public PINException(short reason) Constructs a PINException. To conserve on resources use throwit() to use the JCRE owned instance of this class. Parameters: reason - the reason for the exception. throwit(short) public static void throwit(short reason) Throws an instance of PINException with the specified reason. Parameters: reason - the reason for the exception. Throws: PINException - always. 54 RMI Client Application Programming Interface June, 2002
59 javacard.framework SystemException javacard.framework SystemException throwit(short) Declaration public class SystemException extends CardRuntimeException java.lang.object +--java.lang.throwable +--java.lang.exception +--java.lang.runtimeexception +--javacard.framework.cardruntimeexception +--javacard.framework.systemexception All Implemented Interfaces: java.io.serializable Direct Known Subclasses: SystemExceptionSubclass Description SystemException represents a JCSystem class related exception. Member Summary Fields static short static short static short static short static short static short ILLEGAL_AID This reason code is used by the javacard.framework.applet.register() method to indicate that the input AID parameter is not a legal AID value. ILLEGAL_TRANSIENT This reason code is used to indicate that the request to create a transient object is not allowed in the current applet context. ILLEGAL_USE This reason code is used to indicate that the requested function is not allowed. ILLEGAL_VALUE This reason code is used to indicate that one or more input parameters is out of allowed bounds. NO_RESOURCE This reason code is used to indicate that there is insufficient resource in the Card for the request. NO_TRANSIENT_SPACE This reason code is used by the maketransient..() methods to indicate that no room is available in volatile memory for the requested object. SystemException(short reason) Constructs a SystemException. SystemException 55
60 SystemException javacard.framework ILLEGAL_VALUE Member Summary static void throwit(short reason) Throws an instance of SystemException with the specified reason. Inherited Member Summary inherited from interface CardRuntimeException getreason(), setreason(short) inherited from class java.lang.object clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from class java.lang.throwable fillinstacktrace, getlocalizedmessage, getmessage, printstacktrace, printstacktrace, printstacktrace, tostring Fields ILLEGAL_VALUE public static final short ILLEGAL_VALUE This reason code is used to indicate that one or more input parameters is out of allowed bounds. NO_TRANSIENT_SPACE public static final short NO_TRANSIENT_SPACE This reason code is used by the maketransient..() methods to indicate that no room is available in volatile memory for the requested object. ILLEGAL_TRANSIENT public static final short ILLEGAL_TRANSIENT This reason code is used to indicate that the request to create a transient object is not allowed in the current applet context. See Java Card Runtime Environment (JCRE) Specification, section for details. ILLEGAL_AID public static final short ILLEGAL_AID This reason code is used by the javacard.framework.applet.register() method to indicate that the input AID parameter is not a legal AID value. NO_RESOURCE public static final short NO_RESOURCE This reason code is used to indicate that there is insufficient resource in the Card for the request. 56 RMI Client Application Programming Interface June, 2002
61 javacard.framework SystemException ILLEGAL_USE For example, the Java Card Virtual Machine may throw this exception reason when there is insufficient heap space to create a new instance. ILLEGAL_USE public static final short ILLEGAL_USE This reason code is used to indicate that the requested function is not allowed. For example, JCSystem.requestObjectDeletion() method throws this exception if the object deletion mechanism is not implemented. SystemException(short) public SystemException(short reason) Constructs a SystemException. Parameters: reason - the reason for the exception. throwit(short) public static void throwit(short reason) throws SystemException Throws an instance of SystemException with the specified reason. Parameters: reason - the reason for the exception. Throws: SystemException - always. SystemException 57
62 TransactionException javacard.framework throwit(short) javacard.framework TransactionException Declaration public class TransactionException extends CardRuntimeException java.lang.object +--java.lang.throwable +--java.lang.exception +--java.lang.runtimeexception +--javacard.framework.cardruntimeexception +--javacard.framework.transactionexception All Implemented Interfaces: java.io.serializable Direct Known Subclasses: TransactionExceptionSubclass Description TransactionException represents an exception in the transaction subsystem. Member Summary Fields static short static short static short static short BUFFER_FULL This reason code is used during a transaction to indicate that the commit buffer is full. IN_PROGRESS This reason code is used by the begintransaction method to indicate a transaction is already in progress. INTERNAL_FAILURE This reason code is used during a transaction to indicate an internal JCRE problem (fatal error). NOT_IN_PROGRESS This reason code is used by the aborttransaction and committransaction methods when a transaction is not in progress. TransactionException(short reason) Constructs a TransactionException with the specified reason. static void throwit(short reason) Throws an instance of TransactionException with the specified reason. 58 RMI Client Application Programming Interface June, 2002
63 javacard.framework TransactionException IN_PROGRESS Inherited Member Summary inherited from interface CardRuntimeException getreason(), setreason(short) inherited from class java.lang.object clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from class java.lang.throwable fillinstacktrace, getlocalizedmessage, getmessage, printstacktrace, printstacktrace, printstacktrace, tostring Fields IN_PROGRESS public static final short IN_PROGRESS This reason code is used by the begintransaction method to indicate a transaction is already in progress. NOT_IN_PROGRESS public static final short NOT_IN_PROGRESS This reason code is used by the aborttransaction and committransaction methods when a transaction is not in progress. BUFFER_FULL public static final short BUFFER_FULL This reason code is used during a transaction to indicate that the commit buffer is full. INTERNAL_FAILURE public static final short INTERNAL_FAILURE This reason code is used during a transaction to indicate an internal JCRE problem (fatal error). TransactionException(short) public TransactionException(short reason) Constructs a TransactionException with the specified reason. TransactionException 59
64 TransactionException javacard.framework throwit(short) throwit(short) public static void throwit(short reason) Throws an instance of TransactionException with the specified reason. Throws: TransactionException - always. 60 RMI Client Application Programming Interface June, 2002
65 javacard.framework UserException throwit(short) javacard.framework UserException Declaration public class UserException extends CardException java.lang.object +--java.lang.throwable +--java.lang.exception +--javacard.framework.cardexception +--javacard.framework.userexception All Implemented Interfaces: java.io.serializable Direct Known Subclasses: UserExceptionSubclass Description UserException represents a User exception. Member Summary static void UserException() Constructs a UserException with reason = 0. UserException(short reason) Constructs a UserException with the specified reason. throwit(short reason) Throws an instance of UserException with the specified reason. Inherited Member Summary inherited from interface CardException getreason(), setreason(short) inherited from class java.lang.object clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from class java.lang.throwable UserException 61
66 UserException javacard.framework UserException() Inherited Member Summary fillinstacktrace, getlocalizedmessage, getmessage, printstacktrace, printstacktrace, printstacktrace, tostring UserException() public UserException() Constructs a UserException with reason = 0. UserException(short) public UserException(short reason) Constructs a UserException with the specified reason. Parameters: reason - the reason for the exception. throwit(short) public static void throwit(short reason) throws UserException Throws an instance of UserException with the specified reason. Parameters: reason - the reason for the exception. Throws: UserException - always. 62 RMI Client Application Programming Interface June, 2002
67 Package javacard.framework.service Description Provides Java Card exceptions that may be re-thrown on the client. Class Summary Exceptions ServiceException ServiceException represents a service framework related exception. javacard.framework.service 63
68 ServiceException javacard.framework.service javacard.framework.service ServiceException Declaration public class ServiceException extends CardRuntimeException java.lang.object +--java.lang.throwable +--java.lang.exception +--java.lang.runtimeexception +--javacard.framework.cardruntimeexception +--javacard.framework.service.serviceexception All Implemented Interfaces: java.io.serializable Direct Known Subclasses: ServiceExceptionSubclass Description ServiceException represents a service framework related exception. Member Summary Fields static short static short static short static short static short static short static short CANNOT_ACCESS_IN_COMMAND This reason code is used to indicate that the command in the APDU object cannot be accessed for input processing. CANNOT_ACCESS_OUT_COMMAND This reason code is used to indicate that the command in the APDU object cannot be accessed for output processing. COMMAND_DATA_TOO_LONG This reason code is used to indicate that the incoming data for a command in the APDU object does not fit in the APDU buffer. COMMAND_IS_FINISHED This reason code is used to indicate that the command in the APDU object has been completely processed. DISPATCH_TABLE_FULL This reason code is used to indicate that a dispatch table is full ILLEGAL_PARAM This reason code is used to indicate that an input parameter is not allowed. REMOTE_OBJECT_NOT_EXPORTED This reason code is used by RMIService to indicate that the remote method returned an remote object which has not been exported. ServiceException(short reason) Constructs a ServiceException. 64 RMI Client Application Programming Interface June, 2002
69 javacard.framework.service ServiceException ILLEGAL_PARAM Member Summary static void throwit(short reason) Throws an instance of ServiceException with the specified reason. Inherited Member Summary inherited from interface CardRuntimeException getreason(), setreason(short) inherited from class java.lang.object clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from class java.lang.throwable fillinstacktrace, getlocalizedmessage, getmessage, printstacktrace, printstacktrace, printstacktrace, tostring Fields ILLEGAL_PARAM public static final short ILLEGAL_PARAM This reason code is used to indicate that an input parameter is not allowed. DISPATCH_TABLE_FULL public static final short DISPATCH_TABLE_FULL This reason code is used to indicate that a dispatch table is full COMMAND_DATA_TOO_LONG public static final short COMMAND_DATA_TOO_LONG This reason code is used to indicate that the incoming data for a command in the APDU object does not fit in the APDU buffer. CANNOT_ACCESS_IN_COMMAND public static final short CANNOT_ACCESS_IN_COMMAND This reason code is used to indicate that the command in the APDU object cannot be accessed for input processing. CANNOT_ACCESS_OUT_COMMAND public static final short CANNOT_ACCESS_OUT_COMMAND ServiceException 65
70 ServiceException javacard.framework.service COMMAND_IS_FINISHED This reason code is used to indicate that the command in the APDU object cannot be accessed for output processing. COMMAND_IS_FINISHED public static final short COMMAND_IS_FINISHED This reason code is used to indicate that the command in the APDU object has been completely processed. REMOTE_OBJECT_NOT_EXPORTED public static final short REMOTE_OBJECT_NOT_EXPORTED This reason code is used by RMIService to indicate that the remote method returned an remote object which has not been exported. ServiceException(short) public ServiceException(short reason) Constructs a ServiceException. Parameters: reason - the reason for the exception. throwit(short) public static void throwit(short reason) throws ServiceException Throws an instance of ServiceException with the specified reason. Parameters: reason - the reason for the exception. Throws: ServiceException - always. 66 RMI Client Application Programming Interface June, 2002
71 Package javacard.security Description Provides Java Card exceptions that may be re-thrown on the client. Class Summary Exceptions CryptoException CryptoException represents a cryptography-related exception. javacard.security 67
72 CryptoException javacard.security javacard.security CryptoException Declaration public class CryptoException extends CardRuntimeException java.lang.object +--java.lang.throwable +--java.lang.exception +--java.lang.runtimeexception +--javacard.framework.cardruntimeexception +--javacard.security.cryptoexception All Implemented Interfaces: java.io.serializable Direct Known Subclasses: CryptoExceptionSubclass Description CryptoException represents a cryptography-related exception. Member Summary Fields static short static short static short static short static short ILLEGAL_USE This reason code is used to indicate that the signature or cipher algorithm does not pad the incoming message and the input message is not block aligned. ILLEGAL_VALUE This reason code is used to indicate that one or more input parameters is out of allowed bounds. INVALID_INIT This reason code is used to indicate that the signature or cipher object has not been correctly initialized for the requested operation. NO_SUCH_ALGORITHM This reason code is used to indicate that the requested algorithm or key type is not supported. UNINITIALIZED_KEY This reason code is used to indicate that the key is uninitialized. CryptoException(short reason) Constructs a CryptoException with the specified reason. static void throwit(short reason) Throws an instance of CryptoException with the specified reason. 68 RMI Client Application Programming Interface June, 2002
73 javacard.security CryptoException ILLEGAL_VALUE Inherited Member Summary inherited from interface CardRuntimeException getreason(), setreason(short) inherited from class java.lang.object clone, equals, finalize, getclass, hashcode, notify, notifyall, wait, wait, wait inherited from class java.lang.throwable fillinstacktrace, getlocalizedmessage, getmessage, printstacktrace, printstacktrace, printstacktrace, tostring Fields ILLEGAL_VALUE public static final short ILLEGAL_VALUE This reason code is used to indicate that one or more input parameters is out of allowed bounds. UNINITIALIZED_KEY public static final short UNINITIALIZED_KEY This reason code is used to indicate that the key is uninitialized. NO_SUCH_ALGORITHM public static final short NO_SUCH_ALGORITHM This reason code is used to indicate that the requested algorithm or key type is not supported. INVALID_INIT public static final short INVALID_INIT This reason code is used to indicate that the signature or cipher object has not been correctly initialized for the requested operation. ILLEGAL_USE public static final short ILLEGAL_USE This reason code is used to indicate that the signature or cipher algorithm does not pad the incoming message and the input message is not block aligned. CryptoException 69
74 CryptoException javacard.security CryptoException(short) CryptoException(short) public CryptoException(short reason) Constructs a CryptoException with the specified reason. To conserve on resources use throwit() to use the JCRE owned instance of this class. Parameters: reason - the reason for the exception. throwit(short) public static void throwit(short reason) Throws an instance of CryptoException with the specified reason. Parameters: reason - the reason for the exception. Throws: CryptoException - always. 70 RMI Client Application Programming Interface June, 2002
75 Index A APDUException of javacard.framework, 44 APDUException(short) of javacard.framework.apduexception, 46 APDUExceptionSubclass of com.sun.javacard.javax.smartcard. rmiclient, 14 APDUExceptionSubclass(String, short) of com.sun.javacard.javax.smartcard.rmiclient. APDUExceptionSubclass, 15 B BAD_LENGTH of javacard.framework.apduexception, 45 BUFFER_BOUNDS of javacard.framework.apduexception, 45 BUFFER_FULL of javacard.framework. TransactionException, 59 C CANNOT_ACCESS_IN_COMMAND of javacard.framework.service. ServiceException, 65 CANNOT_ACCESS_OUT_COMMAND of javacard.framework.service. ServiceException, 65 CardAccessor of com.sun.javacard.javax.smartcard. rmiclient, 16 cardaccessor of com.sun.javacard.javax.smartcard.rmiclient. CardObjectFactory, 21 CardAccessor Interface, 2 CardException of javacard.framework, 47 CardException(short) of javacard.framework.cardexception, 48 CardExceptionSubclass of com.sun.javacard.javax.smartcard. rmiclient, 18 CardExceptionSubclass(String, short) of com.sun.javacard.javax.smartcard.rmiclient. CardExceptionSubclass, 19 CardObjectFactory of com.sun.javacard.javax.smartcard. rmiclient, 20 CardObjectFactory class, 4 CardObjectFactory(CardAccessor) of com.sun.javacard.javax.smartcard.rmiclient. CardObjectFactory, 21 CardRuntimeException of javacard.framework, 49 CardRuntimeException(short) of javacard.framework. CardRuntimeException, 50 CardRuntimeExceptionSubclass of com.sun.javacard.javax.smartcard. rmiclient, 24 CardRuntimeExceptionSubclass(String, short) of com.sun.javacard.javax.smartcard.rmiclient. CardRuntimeExceptionSubclass, 25 com.sun.javacard.javax.smartcard.rmiclient package, 13 71
76 COMMAND_DATA_TOO_LONG of javacard.framework.service. ServiceException, 65 COMMAND_IS_FINISHED of javacard.framework.service. ServiceException, 66 CryptoException of javacard.security, 68 CryptoException(short) of javacard.security.cryptoexception, 70 CryptoExceptionSubclass of com.sun.javacard.javax.smartcard. rmiclient, 26 CryptoExceptionSubclass(String, short) of com.sun.javacard.javax.smartcard.rmiclient. CryptoExceptionSubclass, 27 D DISPATCH_TABLE_FULL of javacard.framework.service. ServiceException, 65 E exception handling, 5 exchangeapdu(byte[]) of com.sun.javacard.javax.smartcard.rmiclient. CardAccessor, 16 G getinitialreference() of com.sun.javacard.javax.smartcard.rmiclient. JavaCardRMIConnect, 32 getinsbyte() of com.sun.javacard.javax.smartcard.rmiclient. CardObjectFactory, 22 getmessage() of com.sun.javacard.javax.smartcard.rmiclient. APDUExceptionSubclass, 15 of com.sun.javacard.javax.smartcard.rmiclient. CardExceptionSubclass, 19 of com.sun.javacard.javax.smartcard.rmiclient. CardRuntimeExceptionSubclass, 25 of com.sun.javacard.javax.smartcard.rmiclient. CryptoExceptionSubclass, 27 of com.sun.javacard.javax.smartcard.rmiclient. ISOExceptionSubclass, 29 of com.sun.javacard.javax.smartcard.rmiclient. PINExceptionSubclass, 34 of com.sun.javacard.javax.smartcard.rmiclient. ServiceExceptionSubclass, 36 of com.sun.javacard.javax.smartcard.rmiclient. SystemExceptionSubclass, 38 of com.sun.javacard.javax.smartcard.rmiclient. TransactionExceptionSubclass, 40 of com.sun.javacard.javax.smartcard.rmiclient. UserExceptionSubclass, 42 getobject(byte[], int, Class) of com.sun.javacard.javax.smartcard.rmiclient. CardObjectFactory, 22 getreason() of javacard.framework.cardexception, 48 of javacard.framework. CardRuntimeException, 50 getremoteobject(byte[], int) of com.sun.javacard.javax.smartcard.rmiclient. CardObjectFactory, 22 getremoterefformat() of com.sun.javacard.javax.smartcard.rmiclient. CardObjectFactory, 23 getsessionidentifier() of com.sun.javacard.javax.smartcard.rmiclient. CardAccessor, 16 I ILLEGAL_AID of javacard.framework.systemexception, 56 ILLEGAL_PARAM of javacard.framework.service. ServiceException, 65 ILLEGAL_TRANSIENT of javacard.framework.systemexception, 56 ILLEGAL_USE of javacard.framework.apduexception, 45 of javacard.framework.systemexception, 57 of javacard.security.cryptoexception, 69 ILLEGAL_VALUE of javacard.framework.pinexception, 54 of javacard.framework.systemexception, 56 of javacard.security.cryptoexception, 69 IN_PROGRESS of javacard.framework. TransactionException, 59 interfaces, for client applications, 2 INTERNAL_FAILURE 72 RMI Client Application Programming Interface June, 2002
77 of javacard.framework. TransactionException, 59 INVALID_INIT of javacard.security.cryptoexception, 69 IO_ERROR of javacard.framework.apduexception, 46 ISOException of javacard.framework, 51 ISOException(short) of javacard.framework.isoexception, 52 ISOExceptionSubclass of com.sun.javacard.javax.smartcard. rmiclient, 28 ISOExceptionSubclass(String, short) of com.sun.javacard.javax.smartcard.rmiclient. ISOExceptionSubclass, 29 J Java Card RMI, features, 1 javacard.framework package, 43 javacard.framework.service package, 63 javacard.security package, 67 JavaCardRMIConnect of com.sun.javacard.javax.smartcard. rmiclient, 30 JavaCardRMIConnect class, 2 JavaCardRMIConnect(CardAccessor) of com.sun.javacard.javax.smartcard.rmiclient. JavaCardRMIConnect, 31 N NO_RESOURCE of javacard.framework.systemexception, 56 NO_SUCH_ALGORITHM of javacard.security.cryptoexception, 69 NO_T0_GETRESPONSE of javacard.framework.apduexception, 46 NO_T0_REISSUE of javacard.framework.apduexception, 46 NO_TRANSIENT_SPACE of javacard.framework.systemexception, 56 NOT_IN_PROGRESS of javacard.framework. TransactionException, 59 P PINException of javacard.framework, 53 PINException(short) of javacard.framework.pinexception, 54 PINExceptionSubclass of com.sun.javacard.javax.smartcard. rmiclient, 33 PINExceptionSubclass(String, short) of com.sun.javacard.javax.smartcard.rmiclient. PINExceptionSubclass, 34 proxy generation, 4 R REF_FORMAT_CLASS of com.sun.javacard.javax.smartcard.rmiclient. CardObjectFactory, 21 REF_FORMAT_INTERFACES of com.sun.javacard.javax.smartcard.rmiclient. CardObjectFactory, 21 REF_FORMAT_NONE of com.sun.javacard.javax.smartcard.rmiclient. CardObjectFactory, 21 REMOTE_OBJECT_NOT_EXPORTED of javacard.framework.service. ServiceException, 66 S selectapplet(byte[]) of com.sun.javacard.javax.smartcard.rmiclient. JavaCardRMIConnect, 31 selectapplet(byte[], CardObjectFactory) of com.sun.javacard.javax.smartcard.rmiclient. JavaCardRMIConnect, 31 ServiceException of javacard.framework.service, 64 ServiceException(short) of javacard.framework.service. ServiceException, 66 ServiceExceptionSubclass of com.sun.javacard.javax.smartcard. rmiclient, 35 ServiceExceptionSubclass(String, short) of com.sun.javacard.javax.smartcard.rmiclient. ServiceExceptionSubclass, 36 setinsbyte(byte) Index 73
78 of com.sun.javacard.javax.smartcard.rmiclient. CardObjectFactory, 22 setreason(short) of javacard.framework.cardexception, 48 of javacard.framework. CardRuntimeException, 50 stub generation, 4 SystemException of javacard.framework, 55 SystemException(short) of javacard.framework.systemexception, 57 SystemExceptionSubclass of com.sun.javacard.javax.smartcard. rmiclient, 37 SystemExceptionSubclass(String, short) of com.sun.javacard.javax.smartcard.rmiclient. SystemExceptionSubclass, 38 U UNINITIALIZED_KEY of javacard.security.cryptoexception, 69 UserException of javacard.framework, 61 UserException() of javacard.framework.userexception, 62 UserException(short) of javacard.framework.userexception, 62 UserExceptionSubclass of com.sun.javacard.javax.smartcard. rmiclient, 41 UserExceptionSubclass(String, short) of com.sun.javacard.javax.smartcard.rmiclient. UserExceptionSubclass, 42 T T1_IFD_ABORT of javacard.framework.apduexception, 46 throwit(short) of javacard.framework.apduexception, 46 of javacard.framework.cardexception, 48 of javacard.framework. CardRuntimeException, 50 of javacard.framework.isoexception, 52 of javacard.framework.pinexception, 54 of javacard.framework.service. ServiceException, 66 of javacard.framework.systemexception, 57 of javacard.framework. TransactionException, 60 of javacard.framework.userexception, 62 of javacard.security.cryptoexception, 70 TransactionException of javacard.framework, 58 TransactionException(short) of javacard.framework. TransactionException, 59 TransactionExceptionSubclass of com.sun.javacard.javax.smartcard. rmiclient, 39 TransactionExceptionSubclass(String, short) of com.sun.javacard.javax.smartcard.rmiclient. TransactionExceptionSubclass, 40 transport layer, securing, 3 74 RMI Client Application Programming Interface June, 2002
RMI Client Application Programming Interface
RMI Client Application Programming Interface Java Card Platform, Version 2.2.2 Sun Microsystems, Inc. www.sun.com 3-31-06 Copyright 2006 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California
Application Programming Interface
Application Programming Interface Java Card Platform, Version 2.2.1 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, California 95054 U.S.A. 650-960-1300 October 21, 2003 Java Card Specification
Java Card 2.1.1 Application Programming Interface
Java Card 211 Application Programming Interface Sun Microsystems, Inc 901 San Antonio Road Palo Alto, CA 94303 USA 650 960-1300 Revision 10, May 18, 2000 Copyright 2000 Sun Microsystems, Inc 901 San Antonio
JavaCard. Java Card - old vs new
JavaCard 1 Old Smart Cards: One program (applet) Written in machine-code, specific to chip Burned into ROM Java Card - old vs new old vs new smartcards New Smart Cards: Applet written in high-level language
www.virtualians.pk CS506 Web Design and Development Solved Online Quiz No. 01 www.virtualians.pk
CS506 Web Design and Development Solved Online Quiz No. 01 Which of the following is a general purpose container? JFrame Dialog JPanel JApplet Which of the following package needs to be import while handling
CS 111 Classes I 1. Software Organization View to this point:
CS 111 Classes I 1 Software Organization View to this point: Data Objects and primitive types Primitive types operators (+, /,,*, %). int, float, double, char, boolean Memory location holds the data Objects
Java Programming Language
Lecture 1 Part II Java Programming Language Additional Features and Constructs Topics in Quantitative Finance: Numerical Solutions of Partial Differential Equations Instructor: Iraj Kani Subclasses and
Smart Card Application Development Using the Java Card Technology
Smart Card Application Development Using the Java Card Technology Milan Fort RWTH Aachen Abstract Through their combination of portability and security, smart cards are playing an increasingly important
The Sun Certified Associate for the Java Platform, Standard Edition, Exam Version 1.0
The following applies to all exams: Once exam vouchers are purchased you have up to one year from the date of purchase to use it. Each voucher is valid for one exam and may only be used at an Authorized
core. Volume I - Fundamentals Seventh Edition Sun Microsystems Press A Prentice Hall Title ULB Darmstadt
core. 2008 AGI-Information Management Consultants May be used for personal purporses only or by libraries associated to dandelon.com network. Volume I - Fundamentals Seventh Edition CAY S. HORSTMANN GARY
Developing Web Views for VMware vcenter Orchestrator
Developing Web Views for VMware vcenter Orchestrator vcenter Orchestrator 5.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced
Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5
Technical Note Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5 In the VMware Infrastructure (VI) Perl Toolkit 1.5, VMware
When the transport layer tries to establish a connection with the server, it is blocked by the firewall. When this happens, the RMI transport layer
Firewall Issues Firewalls are inevitably encountered by any networked enterprise application that has to operate beyond the sheltering confines of an Intranet Typically, firewalls block all network traffic,
ETSI TS 102 588 V7.1.0 (2007-07) Technical Specification
TS 102 588 V7.1.0 (2007-07) Technical Specification Smart Cards; Application invocation Application Programming Interface (API) by a UICC webserver for Java Card platform; (Release 7) 2 TS 102 588 V7.1.0
Fundamentals of Java Programming
Fundamentals of Java Programming This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and exclusive use by instructors
AP Computer Science Java Subset
APPENDIX A AP Computer Science Java Subset The AP Java subset is intended to outline the features of Java that may appear on the AP Computer Science A Exam. The AP Java subset is NOT intended as an overall
Sun Microsystems Inc. Java Transaction Service (JTS)
Sun Microsystems Inc. Java Transaction Service (JTS) This is a draft specification for Java Transaction Service (JTS). JTS specifies the implementation of a transaction manager which supports the JTA specification
jcardsim Java Card is simple!
JavaOne Moscow, 2013 jcardsim Java Card is simple! Mikhail Dudarev, CTO of jcardsim.org Brief history of Java Card Basics standards How is that works? Developer Tools Writing our first real life Java Card
Using mobile phones to access Web Services in a secure way. Dan Marinescu
Using mobile phones to access Web Services in a secure way Dan Marinescu March 7, 2007 Abstract Web Services is a technology that has gained in acceptance and popularity over the past years. The promise
Java Interview Questions and Answers
1. What is the most important feature of Java? Java is a platform independent language. 2. What do you mean by platform independence? Platform independence means that we can write and compile the java
OpenCard Framework 1.2 Programmer s Guide
OpenCard Framework 1.2 Programmer s Guide BOEB-OCFP-00 OpenCard Framework 1.2 Programmer s Guide BOEB-OCFP-00 OpenCard Framework 1.2 Programmer s Guide Fourth Edition December, 1999 Copyright OPENCARD
An Overview of Java. overview-1
An Overview of Java overview-1 Contents What is Java Major Java features Java virtual machine Java programming language Java class libraries (API) GUI Support in Java Networking and Threads in Java overview-2
Java Applet and Terminal Application for Financial transactions
Java Applet and Terminal Application for Financial transactions Security for Java and E-commerce Environment Behrooz Aghakhanian [email protected] Jalil Shokouh [email protected] May 2011 Introduction In this assignment
Lecture 7: Java RMI. CS178: Programming Parallel and Distributed Systems. February 14, 2001 Steven P. Reiss
Lecture 7: Java RMI CS178: Programming Parallel and Distributed Systems February 14, 2001 Steven P. Reiss I. Overview A. Last time we started looking at multiple process programming 1. How to do interprocess
Elements of Advanced Java Programming
Appendix A Elements of Advanced Java Programming Objectives At the end of this appendix, you should be able to: Understand two-tier and three-tier architectures for distributed computing Understand the
Java Application Developer Certificate Program Competencies
Java Application Developer Certificate Program Competencies After completing the following units, you will be able to: Basic Programming Logic Explain the steps involved in the program development cycle
Report of the case study in Sistemi Distribuiti A simple Java RMI application
Report of the case study in Sistemi Distribuiti A simple Java RMI application Academic year 2012/13 Vessio Gennaro Marzulli Giovanni Abstract In the ambit of distributed systems a key-role is played by
Java Card Development Kit. 1 Table of Contents. 2 Introduction. Release Notes for Java Card 3 Platform, Classic Edition, Version 3.0.
Java Card Development Kit Release Notes for Java Card 3 Platform, Classic Edition, Version 3.0.5u1 E62057-02 September 2015 1 Table of Contents Introduction System Requirements Installation New Features
AVRO - SERIALIZATION
http://www.tutorialspoint.com/avro/avro_serialization.htm AVRO - SERIALIZATION Copyright tutorialspoint.com What is Serialization? Serialization is the process of translating data structures or objects
Remote Method Invocation in JAVA
Remote Method Invocation in JAVA Philippe Laroque [email protected] $Id: rmi.lyx,v 1.2 2003/10/23 07:10:46 root Exp $ Abstract This small document describes the mechanisms involved
Third AP Edition. Object-Oriented Programming and Data Structures. Maria Litvin. Gary Litvin. Phillips Academy, Andover, Massachusetts
Third AP Edition Object-Oriented Programming and Data Structures Maria Litvin Phillips Academy, Andover, Massachusetts Gary Litvin Skylight Software, Inc. Skylight Publishing Andover, Massachusetts Skylight
ASM 4.0 A Java bytecode engineering library. Eric Bruneton
ASM 4.0 A Java bytecode engineering library Eric Bruneton Copyright c 2007, 2011 Eric Bruneton All rights reserved. Redistribution and use in source (LYX format) and compiled forms (L A TEX, PDF, PostScript,
Developing secure Java Card applications
Developing secure Java Card applications Jan Vossaert Jorn Lapon Vincent Naessens June 9, 2010 1 Introduction This tutorial covers the basic steps towards secure smart card application development with
Applets, RMI, JDBC Exam Review
Applets, RMI, JDBC Exam Review Sara Sprenkle Announcements Quiz today Project 2 due tomorrow Exam on Thursday Web programming CPM and servlets vs JSPs Sara Sprenkle - CISC370 2 1 Division of Labor Java
JAVA - EXCEPTIONS. An exception can occur for many different reasons, below given are some scenarios where exception occurs.
http://www.tutorialspoint.com/java/java_exceptions.htm JAVA - EXCEPTIONS Copyright tutorialspoint.com An exception orexceptionalevent is a problem that arises during the execution of a program. When an
Java (12 Weeks) Introduction to Java Programming Language
Java (12 Weeks) Topic Lecture No. Introduction to Java Programming Language 1 An Introduction to Java o Java as a Programming Platform, The Java "White Paper" Buzzwords, Java and the Internet, A Short
Web Development in Java
Web Development in Java Detailed Course Brochure @All Rights Reserved. Techcanvass, 265, Powai Plaza, Hiranandani Garden, Powai, Mumbai www.techcanvass.com Tel: +91 22 40155175 Mob: 773 877 3108 P a g
Java Remote Method Invocation Specification
Java Remote Method Invocation Specification Java Remote Method Invocation (RMI) is a distributed object model for the Java programming language that retains the semantics of the Java platform s object
The Java Series. Java Essentials I What is Java? Basic Language Constructs. Java Essentials I. What is Java?. Basic Language Constructs Slide 1
The Java Series Java Essentials I What is Java? Basic Language Constructs Slide 1 What is Java? A general purpose Object Oriented programming language. Created by Sun Microsystems. It s a general purpose
Programming Against Hybrid Databases with Java Handling SQL and NoSQL. Brian Hughes IBM
Programming Against Hybrid Databases with Java Handling SQL and NoSQL Brian Hughes IBM 1 Acknowledgements and Disclaimers Availability. References in this presentation to IBM products, programs, or services
Oracle Java Micro Edition Software Development Kit
Oracle Java Micro Edition Software Development Kit Release Notes Release 3.0.5 for Windows E25309-04 April 2012 Contents Release Highlights Prerequisites Installation Installation and Runtime Security
Programmation 2. Introduction à la programmation Java
Programmation 2 Introduction à la programmation Java 1 Course information CM: 6 x 2 hours TP: 6 x 2 hours CM: Alexandru Costan alexandru.costan at inria.fr TP: Vincent Laporte vincent.laporte at irisa.fr
! "# $%&'( ) * ).) "%&' 1* ( %&' ! "%&'2 (! ""$ 1! ""3($
! "# $%&'( ) * +,'-( ).) /"0'" 1 %&' 1* ( %&' "%&'! "%&'2 (! ""$ 1! ""3($ 2 ', '%&' 2 , 3, 4( 4 %&'( 2(! ""$ -5%&'* -2%&'(* ) * %&' 2! ""$ -*! " 4 , - %&' 3( #5! " 5, '56! "* * 4(%&'(! ""$ 3(#! " 42/7'89.:&!
CSE 308. Coding Conventions. Reference
CSE 308 Coding Conventions Reference Java Coding Conventions googlestyleguide.googlecode.com/svn/trunk/javaguide.html Java Naming Conventions www.ibm.com/developerworks/library/ws-tipnamingconv.html 2
CA Workload Automation Agents Operating System, ERP, Database, Application Services and Web Services
PRODUCT SHEET CA Workload Automation Agents CA Workload Automation Agents Operating System, ERP, Database, Application Services and Web Services CA Workload Automation Agents extend the automation capabilities
Java Card. Smartcards. Demos. . p.1/30
. p.1/30 Java Card Smartcards Java Card Demos Smart Cards. p.2/30 . p.3/30 Smartcards Credit-card size piece of plastic with embedded chip, for storing & processing data Standard applications bank cards
SAP Lumira Document Version: 1.25 2015-04-20. Data Access Extensions for SAP Lumira Developer Guide
SAP Lumira Document Version: 1.25 2015-04-20 Data Access Extensions for SAP Lumira Developer Guide Content 1 Document History....5 2 Data Access Extension SDK for SAP Lumira....6 2.1 Introduction to Data
Version 14.0. Overview. Business value
PRODUCT SHEET CA Datacom Server CA Datacom Server Version 14.0 CA Datacom Server provides web applications and other distributed applications with open access to CA Datacom /DB Version 14.0 data by providing
Network Communication
Network Communication Outline Sockets Datagrams TCP/IP Client-Server model OSI Model Sockets Endpoint for bidirectional communication between two machines. To connect with each other, each of the client
Customizing the Security Architecture
Chapter7.fm Page 113 Wednesday, April 30, 2003 4:29 PM CHAPTER7 Customizing the Security Architecture The office of government is not to confer happiness, but to give men opportunity to work out happiness
CS 209 Programming in Java #1
CS 209 Programming in Java #1 Introduction Spring, 2006 Instructor: J.G. Neal 1 Topics CS 209 Target Audience CS 209 Course Goals CS 209 Syllabus - See handout Java Features, History, Environment Java
CA Data Protection. Content Provider Development Guide. Release 15.0
CA Data Protection Content Provider Development Guide Release 15.0 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation
Java Programming Fundamentals
Lecture 1 Part I Java Programming Fundamentals Topics in Quantitative Finance: Numerical Solutions of Partial Differential Equations Instructor: Iraj Kani Introduction to Java We start by making a few
Enterprise Vault.cloud. Microsoft Exchange Managed Folder Archiving Guide
Enterprise Vault.cloud Microsoft Exchange Managed Folder Archiving Guide Enterprise Vault.cloud: Microsoft Exchange Managed Folder Archiving Guide The software described in this book is furnished under
OSGi Service Platform Release 4
OSGi Service Platform Release 4 Version 4.3 Early Draft 3 Revision 1.2 24 November 2010 2010 OSGi Alliance. OSGi Service Platform Release 4 Version 4.3 Early Draft 3 Copyright OSGi Alliance 2010.. DISTRIBUTION
A Java-based system support for distributed applications on the Internet
A Java-based system support for distributed applications on the Internet D. Hagimont 1, D. Louvegnies 2 SIRAC Project INRIA, 655 av. de l Europe, 38330 Montbonnot Saint-Martin, France Abstract: We have
CA Performance Center
CA Performance Center Single Sign-On User Guide 2.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is
Backup Exec Cloud Storage for Nirvanix Installation Guide. Release 2.0
Backup Exec Cloud Storage for Nirvanix Installation Guide Release 2.0 The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the
Manual. Programmer's Guide for Java API
2013-02-01 1 (15) Programmer's Guide for Java API Description This document describes how to develop Content Gateway services with Java API. TS1209243890 1.0 Company information TeliaSonera Finland Oyj
Free Java textbook available online. Introduction to the Java programming language. Compilation. A simple java program
Free Java textbook available online "Thinking in Java" by Bruce Eckel, 4th edition, 2006, ISBN 0131872486, Pearson Education Introduction to the Java programming language CS 4354 Summer II 2015 The third
Reach 4 million Unity developers
Reach 4 million Unity developers with your Android library Vitaliy Zasadnyy Senior Unity Dev @ GetSocial Manager @ GDG Lviv Ankara Android Dev Days May 11-12, 2015 Why Unity? Daily Users 0 225 M 450 M
16.1 DataFlavor. 16.1.1 DataFlavor Methods. Variables
In this chapter: DataFlavor Transferable Interface ClipboardOwner Interface Clipboard StringSelection UnsupportedFlavorException Reading and Writing the Clipboard 16 Data Transfer One feature that was
Open Mobile API Test Specification for Transport API
Open Mobile Test Specification for Transport V1 Copyright 2014 SIMalliance ltd. The information contained in this document may be used, disclosed and reproduced without the prior written authorization
3.5. cmsg Developer s Guide. Data Acquisition Group JEFFERSON LAB. Version
Version 3.5 JEFFERSON LAB Data Acquisition Group cmsg Developer s Guide J E F F E R S O N L A B D A T A A C Q U I S I T I O N G R O U P cmsg Developer s Guide Elliott Wolin [email protected] Carl Timmer [email protected]
Remote Method Invocation
Remote Method Invocation The network is the computer Consider the following program organization: method call SomeClass AnotherClass returned object computer 1 computer 2 If the network is the computer,
Free Java textbook available online. Introduction to the Java programming language. Compilation. A simple java program
Free Java textbook available online "Thinking in Java" by Bruce Eckel, 4th edition, 2006, ISBN 0131872486, Pearson Education Introduction to the Java programming language CS 4354 Summer II 2014 Jill Seaman
SolarWinds Technical Reference
SolarWinds Technical Reference Implementing SNMPv3 Why SNMPv3?... 3 SNMPv3 Security... 4 General Implementation... 6 SolarWinds Product-Specific Implementation... 7 SolarWinds SNMPv3 input mapped to IOS..
CSC 551: Web Programming. Spring 2004
CSC 551: Web Programming Spring 2004 Java Overview Design goals & features platform independence, portable, secure, simple, object-oriented, Programming models applications vs. applets vs. servlets intro
Altiris Monitor Pack for Servers 7.1 SP2 from Symantec Release Notes
Altiris Monitor Pack for Servers 7.1 SP2 from Symantec Release Notes Altiris Monitor Pack for Servers 7.1 SP2 from Symantec Release Notes The software described in this book is furnished under a license
Oracle Agile Engineering Data Management
Oracle Agile Enterprise Integration Platform Development Guide for Agile e6.1.3.0 Part No. E50950-01 January 2014 Copyright and Trademarks Copyright 1995, 2014,Oracle and/or its affiliates. All rights
Universal Content Management Version 10gR3. Security Providers Component Administration Guide
Universal Content Management Version 10gR3 Security Providers Component Administration Guide Copyright 2008 Oracle. All rights reserved. The Programs (which include both the software and documentation)
IBM WebSphere Application Server
IBM WebSphere Application Server Multihomed hosting 2011 IBM Corporation Multihoming allows you to have a single application communicate with different user agent clients and user agent servers on different
EMC RepliStor for Microsoft Windows ERROR MESSAGE AND CODE GUIDE P/N 300-002-826 REV A02
EMC RepliStor for Microsoft Windows ERROR MESSAGE AND CODE GUIDE P/N 300-002-826 REV A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2003-2005
bbc Developing Service Providers Adobe Flash Media Rights Management Server November 2008 Version 1.5
bbc Developing Service Providers Adobe Flash Media Rights Management Server November 2008 Version 1.5 2008 Adobe Systems Incorporated. All rights reserved. Adobe Flash Media Rights Management Server 1.5
Invocación remota (based on M. L. Liu Distributed Computing -- Concepts and Application http://www.csc.calpoly.edu/~mliu/book/index.
Departament d Arquitectura de Computadors Invocación remota (based on M. L. Liu Distributed Computing -- Concepts and Application http://www.csc.calpoly.edu/~mliu/book/index.html) Local Objects vs. Distributed
DevTest Solutions. Using the SDK. Version 8.0
DevTest Solutions Using the SDK Version 8.0 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your
3 Pillars of Object-oriented Programming. Industrial Programming Systems Programming & Scripting. Extending the Example.
Industrial Programming Systems Programming & Scripting Lecture 12: C# Revision 3 Pillars of Object-oriented Programming Encapsulation: each class should be selfcontained to localise changes. Realised through
SyAM Software* Server Monitor Local/Central* on a Microsoft* Windows* Operating System
SyAM Software* Server Monitor Local/Central* on a Microsoft* Windows* Operating System with Internal Storage Focusing on IPMI Out of Band Management Recipe ID: 19SYAM190000000011-01 Contents Hardware Components...3
A Distributed Object Model for the Java System
The following paper was originally published in the Proceedings of the USENIX 1996 Conference on Object-Oriented Technologies Toronto, Ontario, Canada, June 1996. A Distributed Object Model for the Java
Java Card 2.2 Off-Card Verifier
Java Card 2.2 Off-Card Verifier White Paper Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, CA 94303 USA 650 960-1300 June, 2002 Copyright 2002 Sun Microsystems, Inc., 901 San Antonio Road, Palo
SW5706 Application deployment problems
SW5706 This presentation will focus on application deployment problem determination on WebSphere Application Server V6. SW5706G11_AppDeployProblems.ppt Page 1 of 20 Unit objectives After completing this
Oracle WebLogic Server
Oracle WebLogic Server Monitoring and Managing with the Java EE Management APIs 10g Release 3 (10.3) July 2008 Oracle WebLogic Server Monitoring and Managing with the Java EE Management APIs, 10g Release
Dell NetVault Backup Plug-in for Advanced Encryption 2.2. User s Guide
Dell Backup Plug-in for Advanced Encryption 2.2 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished
Nuance Mobile Developer Program. HTTP Services for Nuance Mobile Developer Program Clients
Nuance Mobile Developer Program HTTP Services for Nuance Mobile Developer Program Clients Notice Nuance Mobile Developer Program HTTP Services for Nuance Mobile Developer Program Clients Copyright 2011
ECM (ELO-KIT-ECMG2-AND)
Software SDK USER GUIDE Elo Touch Solutions I-Series Interactive Signage ESY10i1, ESY15i1, ESY22i1 Android ECM (ELO-KIT-ECMG2-AND) SW602422 Rev A I-Series and Android ECM Software Development Kit User
Intel Retail Client Manager Audience Analytics
Intel Retail Client Manager Audience Analytics By using this document, in addition to any agreements you have with Intel, you accept the terms set forth below. You may not use or facilitate the use of
Siebel Application Deployment Manager Guide. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013
Siebel Application Deployment Manager Guide Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software and related
etrust Audit Using the Recorder for Check Point FireWall-1 1.5
etrust Audit Using the Recorder for Check Point FireWall-1 1.5 This documentation and related computer software program (hereinafter referred to as the Documentation ) is for the end user s informational
About Recovery Manager for Active
Dell Recovery Manager for Active Directory 8.6.1 May 30, 2014 These release notes provide information about the Dell Recovery Manager for Active Directory release. About Resolved issues Known issues System
Computing Concepts with Java Essentials
2008 AGI-Information Management Consultants May be used for personal purporses only or by libraries associated to dandelon.com network. Computing Concepts with Java Essentials 3rd Edition Cay Horstmann
JAVA IN A NUTSHELL O'REILLY. David Flanagan. Fifth Edition. Beijing Cambridge Farnham Köln Sebastopol Tokyo
JAVA 1i IN A NUTSHELL Fifth Edition David Flanagan O'REILLY Beijing Cambridge Farnham Köln Sebastopol Tokyo Table of Contents Preface xvii Part 1. Introducing Java 1. Introduction 1 What 1s Java? 1 The
A Meeting Room Scheduling Problem
A Scheduling Problem Objective Engineering, Inc. 699 Windsong Trail Austin, Texas 78746 512-328-9658 FAX: 512-328-9661 [email protected] http://www.oeng.com Objective Engineering, Inc., 1999-2007. Photocopying,
An Oracle White Paper January 2011. Using Oracle's StorageTek Search Accelerator
An Oracle White Paper January 2011 Using Oracle's StorageTek Search Accelerator Executive Summary...2 Introduction...2 The Problem with Searching Large Data Sets...3 The StorageTek Search Accelerator Solution...3
MUSCLE Cryptographic Card Edge Definition for Java 1 Enabled Smartcards
MUSCLE Cryptographic Card Edge Definition for Java 1 Enabled Smartcards David Corcoran Tommaso Cucinotta This document is provided on an as-is basis. Neither the authors nor the MUSCLE project are responsible
Overview of Web Services API
1 CHAPTER The Cisco IP Interoperability and Collaboration System (IPICS) 4.5(x) application programming interface (API) provides a web services-based API that enables the management and control of various
Java Web Services SDK
Java Web Services SDK Version 1.5.1 September 2005 This manual and accompanying electronic media are proprietary products of Optimal Payments Inc. They are to be used only by licensed users of the product.
Built-in Concurrency Primitives in Java Programming Language. by Yourii Martiak and Mahir Atmis
Built-in Concurrency Primitives in Java Programming Language by Yourii Martiak and Mahir Atmis Overview One of the many strengths of Java is the built into the programming language support for concurrency
