service connector error calling a web service operation that doesn’t have a response message

1
0
-1

Hello

Apparently when the service connector is used to call a web service operation that doesn’t have a response message an error is raised, although the service has perform correctly its function (EJ: an update on a DB). The problem is that the process is stopped by the supposed error, using the ignore and continue configuration the process isn’t stopped, but this will ignore a real error to, so I’m creating a weakness on my app, I think the service connector shouldn’t raise an error calling a web service operation that doesn’t have a response message.

Is any other way around of this?

1 answer

1
0
-1

Bonita web service connector currently does not support web service that does sent a response (i.e. one-way webservice).

You can see that in the connector source code invoke method is called. For one-way web service, invokeOneWay should be called instead of invoke.

A solution might be to create your own connector based on the source code of the one provided in Bonita.

Notifications