cloud-sdk-java icon indicating copy to clipboard operation
cloud-sdk-java copied to clipboard

Use the SAP Cloud SDK for Java to reduce development effort when building applications on SAP Business Technology Platform that communicate with SAP solutions and services such as SAP S/4HANA Cloud, S...

Results 22 cloud-sdk-java issues
Sort by recently updated
recently updated
newest added

## Issue Description Important information: - Your code ```java public Destination getDestination(String destinationName) { Try destinationTry = tryGetDestination(destinationName); if (destinationTry.isSuccess()) { try { return destinationTry.get(); } catch (DestinationAccessException e) {...

## Issue Description We are trying to connect to say a microserviceB from microserviceA. The destination is configured with OAuth2ClientCredentials authentication. We have a certificate which we have added in...

## Context SAP/cloud-sdk-java-backlog#457 We want an updated static page for generating type-safe clients with _SAP Cloud SDK_ on _Business Accelerator Hub_. In Reivew: * [x] OData v2 * [x] OData...

do not merge
please review

## Issue Description We are trying to use the ODATA generator plug in instead of the com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.commercialproject format. But during mvn clean install, in the gen folder which is compiled...

## Issue Description Hello, recently we have been removing the sap-client property from the destination via `DefaultHttpDestination.fromDestination().removeProperty("sap-client")`. We are aware that OnPremise systems need this property, so we are setting...

In the ODataHealthyResponseValidator class there is this bit under `requireHealthyResponse`: https://github.com/SAP/cloud-sdk-java/blob/845ff8349c9a85afad0986f860d3ef6956459f74/datamodel/odata-client/src/main/java/com/sap/cloud/sdk/datamodel/odata/client/request/ODataHealthyResponseValidator.java#L59C1-L72C33 ```java final ODataResponseException preparedException = new ODataResponseException( batchFailedRequest == null ? request : batchFailedRequest, httpResponse, msg, null); final Try...

I've noticed the dependency is not necessary in production. We may want to reduce our coupling to Apache HttpClient4.

please merge
please review

Usage: * In `additionalProperties` define `operationIdNames`. Use `` or `,` as entry delimiter. Use `=` to separate key value. ```xml com.sap.cloud.sdk.datamodel openapi-generator-maven-plugin getSodaById=getById ```

do not merge
please review

Usage: * In `additionalProperties` define `includeApis` and `includeModels`. Use `` or `,` as delimiter. ```xml com.sap.cloud.sdk.datamodel openapi-generator-maven-plugin Sodas,Orders Order OrderWithTimestamp Soda SodaWithId ``` Note: * To enable the generation of...

do not merge
please review

## Issue Description Important information: - Your code - Fetching BTP destination with authentication type "ClientCertificateAuthentication" - Expected outcome - should pass client certificate to target system - Actual outcome...