java-sdk
java-sdk copied to clipboard
Dapr SDK for Java
## Expected Behavior When we set metadata fields on a [PublishEventRequest](https://github.com/dapr/java-sdk/blob/master/sdk/src/main/java/io/dapr/client/domain/PublishEventRequest.java) field, they should be received and processed by the pubsub.azure.servicebus component. ## Actual Behavior It seems like the fields...
## Describe the proposal Since we already have multiple releases of this SDK supporting Java 8, can we migrate to Java 11 as the minimum JDK version? This might allow...
## Ask your question here  ```java Map map = new HashMap(2); map.put("aaa", "96969"); HttpExtension httpExtension = new HttpExtension(DaprHttp.HttpMethods.GET, null, map); byte[] s = daprClient .invokeMethod(appId, "api/v1/test", "", httpExtension, map,...
**Describe the issue** https://docs.dapr.io/developing-applications/sdks/java/ states ```xml com.squareup.okhttp3 okhttp 1.3.1 ``` but the given version of dependency is old and not available on maven central. Therefore the given info is wrong...
## Describe the proposal With Java 17 being released, change `build.yaml` and `validate.yaml` to include validations against [Java 17](https://jdk.java.net/17/).
# Description This PR should add the following items: **ActorTimers** - [x] Add TTL option - [x] Allow for repetitions in TTL and Period with ISO-8601 format **ActorReminders** - [x]...
Hi All, From JAVA SDK , can we connect to specific Dapr while working with different machines ? Eg: DaprClient client = (new DaprClientBuilder()).build() We are using above syntax to...
can we run my **subscribe** application in local machine and at the same time sidecar is running on remote machine publish application is working when use the following code, System.setProperty("dapr.sidecar.ip","*****");...
# Description Based on the discussion on #510 I thought it might be a good idea to receive some early feedback on some of the questions I had per comment...
## Describe the proposal Similar to dapr/dapr, dapr/cli repos and other repos in Dapr org, have Dapr-bot automatically draft a new release off of the new release tag vMajor.Minor.Patch. Modify...