
--
You received this message because you are subscribed to the Google Groups "Kogito development mailing list" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kogito-developm...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kogito-development/CADNbDsCMM%2BF1d4J7Oyn-fGKchBgZRTtE4MKYDGXp5PBAweZsdQ%40mail.gmail.com.



To view this discussion on the web visit https://groups.google.com/d/msgid/kogito-development/CAOVo6cR74ybotrKRUjRuFwJK2Je1NrSvWt1bJeX82S7Q3KwM2w%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kogito-development/CADNbDsAwVvxpbw9hJkMk2OOk_dDxbmLGK5Cre0Fn1oVAYuA99A%40mail.gmail.com.



To view this discussion on the web visit https://groups.google.com/d/msgid/kogito-development/CAOVo6cT3AnYbtinqqEJG4M58MEKFdkYqvzNBSKV1FM_yFt9Ddg%40mail.gmail.com.
Hi Cristiano,
Thanks for your help. I have discussed it already with my team and came up with a solution.However, we have 2 more questions.1. Is there a way to call a GET endpoint paginated?
2. From the Image below,From the code, how can I get the both the uuid and the task-id? My objective is to save the processed data together with the uuid.
To view this discussion on the web visit https://groups.google.com/d/msgid/kogito-development/CADNbDsD2P_mqkqJnEi_xOSMjkV8ndDViFaDi%3DFKFn1QBVR%3D4cw%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kogito-development/CAOVo6cTPKbD4R6ELjqSHn4BXZHZSFDQmq_rp9YqjBeos6m_QwA%40mail.gmail.com.

To view this discussion on the web visit https://groups.google.com/d/msgid/kogito-development/328a9c76-29df-463c-baa1-705580929dd2n%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kogito-development/CADNbDsBLBaX%2Bbt_Jrj0Ku6oYsHQaoRFNz2UYhK45Cq%2BO59nKGA%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kogito-development/CAOVo6cRS6395PGnZoFZc%2BTqG%2B_%2BSWSF5x3aea8cCK_1o8PM37g%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kogito-development/CADNbDsBoOSGz-U3Qf7hF9m15CKbqBZaPW%3DNcgLBOFeE68SnTWQ%40mail.gmail.com.
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-grpc</artifactId>
</dependency>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>kogito-quarkus</artifactId>
</dependency>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>kogito-addons-quarkus-cloudevents</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-smallrye-reactive-messaging</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-smallrye-reactive-messaging-amqp</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-smallrye-openapi</artifactId>
</dependency>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>kogito-addons-quarkus-events-smallrye</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-hibernate-reactive</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-reactive-pg-client</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.20</version>
<scope>provided</scope>
</dependency>
</dependencies>
amqp-username=quarkus
amqp-password=quarkus
#kafka.bootstrap.servers=${KAFKA_BOOTSTRAP_SERVERS:localhost:9092}
mp.messaging.incoming.kogito_incoming_stream.connector=smallrye-amqp
mp.messaging.incoming.kogito_incoming_stream.topic=servicecontractresponses
#mp.messaging.incoming.kogito_incoming_stream.value.deserializer=org.apache.kafka.common.serialization.StringDeserializer
mp.messaging.outgoing.kogito_outgoing_stream.connector=smallrye-amqp
mp.messaging.outgoing.kogito_outgoing_stream.topic=servicecontractapplications
#mp.messaging.outgoing.kogito_outgoing_stream.value.serializer=org.apache.kafka.common.serialization.StringSerializer
## metadata
mp.messaging.outgoing.kogito-processinstances-events.connector=smallrye-amqp
mp.messaging.outgoing.kogito-processinstances-events.topic=kogito-processinstances-events
#mp.messaging.outgoing.kogito-processinstances-events.value.serializer=org.apache.kafka.common.serialization.StringSerializer
mp.messaging.outgoing.kogito-usertaskinstances-events.connector=smallrye-amqp
mp.messaging.outgoing.kogito-usertaskinstances-events.topic=kogito-usertaskinstances-events
#mp.messaging.outgoing.kogito-usertaskinstances-events.value.serializer=org.apache.kafka.common.serialization.StringSerializer
mp.messaging.outgoing.kogito-variables-events.connector=smallrye-amqp
mp.messaging.outgoing.kogito-variables-events.topic=kogito-variables-events
#mp.messaging.outgoing.kogito-variables-events.value.serializer=org.apache.kafka.common.serialization.StringSerializer
amqp-username=quarkus
amqp-password=quarkus
#kafka.bootstrap.servers=${KAFKA_BOOTSTRAP_SERVERS:localhost:9092}
mp.messaging.incoming.kogito_incoming_stream.connector=smallrye-amqp
mp.messaging.incoming.kogito_incoming_stream.topic=servicecontractapplications
#mp.messaging.incoming.kogito_incoming_stream.value.deserializer=org.apache.kafka.common.serialization.StringDeserializer
mp.messaging.incoming.kogito_incoming_stream.durable=true
mp.messaging.outgoing.kogito_outgoing_stream.connector=smallrye-amqp
mp.messaging.outgoing.kogito_outgoing_stream.topic=servicecontractresponses
#mp.messaging.outgoing.kogito_outgoing_stream.value.serializer=org.apache.kafka.common.serialization.StringSerializer
mp.messaging.outgoing.kogito-processinstances-events.connector=smallrye-amqp
mp.messaging.outgoing.kogito-processinstances-events.topic=kogito-processinstances-events
#mp.messaging.outgoing.kogito-processinstances-events.value.serializer=org.apache.kafka.common.serialization.StringSerializer
mp.messaging.outgoing.kogito-usertaskinstances-events.connector=smallrye-amqp
mp.messaging.outgoing.kogito-usertaskinstances-events.topic=kogito-usertaskinstances-events
#mp.messaging.outgoing.kogito-usertaskinstances-events.value.serializer=org.apache.kafka.common.serialization.StringSerializer
mp.messaging.outgoing.kogito-variables-events.connector=smallrye-amqp
mp.messaging.outgoing.kogito-variables-events.topic=kogito-variables-events
#mp.messaging.outgoing.kogito-variables-events.value.serializer=org.apache.kafka.common.serialization.StringSerializer
To view this discussion on the web visit https://groups.google.com/d/msgid/kogito-development/8e6a20b3-eec4-42a6-b165-762793ca5957n%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kogito-development/CADNbDsCO6Ci1nEALEUG_t%3DxKqN2LKCH3bUTU533oiPp_BO8VEw%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kogito-development/CAAv%2BYKVjTwW9H-b2QrD2kye8tO98PWQx0jJD8-yF1fqLctzTHA%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kogito-development/CADNbDsD7UrwEyNpdfVXMGHG0rTA-yL0-28gvCGq4N1zoz4haqg%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kogito-development/CAAv%2BYKU1KHqj441mhhj37mQ%3DtrOibn6%3DQjaqF4veSBOiHhr8hg%40mail.gmail.com.