You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
If you add a .form file as a resource to a deploy command, the deploy itself is performed, but the client throws an exception due to an unsupported response type from the command.
To Reproduce
Steps to reproduce the behavior:
Create any camunda form (.form file) using for instance camunda desktop modeller
Send a deploy command referencing your form as a resource
var deployResponse = await client
.NewDeployCommand()
.AddResourceFile("path-to-my-sample.form")
.Send();
Observe thrown exception in processing Send() Unhandled Exception: System.NotImplementedException: Got deployment response for unexpected type: Form
Expected behavior
Client library should fully support deploying form resources, especially now that Camunda (since 8.4) supports using linked forms in .bpmn files instead of just embedded forms.
Enviroment (please complete the following information):
OS: Any
Version: Similar issue found when testing with versions v2.2-v2.5
Additional context
I'll create a PR that adds support for the form deployment response based on the other existing deployment response implementations.
The text was updated successfully, but these errors were encountered:
Describe the bug
If you add a .form file as a resource to a deploy command, the deploy itself is performed, but the client throws an exception due to an unsupported response type from the command.
To Reproduce
Steps to reproduce the behavior:
Unhandled Exception: System.NotImplementedException: Got deployment response for unexpected type: Form
Expected behavior
Client library should fully support deploying form resources, especially now that Camunda (since 8.4) supports using linked forms in .bpmn files instead of just embedded forms.
Enviroment (please complete the following information):
Additional context
I'll create a PR that adds support for the form deployment response based on the other existing deployment response implementations.
The text was updated successfully, but these errors were encountered: