Code: Alles auswählen.
protected JCO.Client getJcoClient() throws JCO.Exception {
// get the jco destination from the component profile
String destinationName = this.componentProfile.getProperty("SystemIdentifier");
// get an instance of the JCO client service
IJCOClientService jcoClientService =
(IJCOClientService) this.componentRequest.getService(IJCOClientService.KEY);
JCO.Client client = jcoClientService.getJCOClient(destinationName, this.componentRequest);
return client;
}