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
Building OOB invitation is fundamental way for anyone to get started with aries-vcx, in its current state. The first thing you ever need if you want to simulate a basic use case with aries-vcx is to create the oob invitation.
This need came up for example in:
Currently in aries_vcx/src/handlers/out_of_band there's OutOfBandSender which is position on same level like other protocol handlers, but in fact, this is just a builder for OOB messages.
More-over, working with the OutOfBandSender is currently difficult, because it's method
ultimately requires you to import diddoc_legacy into your project, which is not obvious.
Proposal:
There's already established consensus that builder for messages crate is necessary, and constructing message by hand is currently cumbersome.
So let's use this as opportunity to create first message builder, specifically for oob invites; also get rid of OutOfBandSender in the process
Additional note:
There's also OutOfBandReceiver - we'll get rid of that in separate step - it contains method. nonmediated_connection_exists which is being used in some NodeJS tests.
The text was updated successfully, but these errors were encountered:
Building OOB invitation is fundamental way for anyone to get started with aries-vcx, in its current state. The first thing you ever need if you want to simulate a basic use case with aries-vcx is to create the oob invitation.
This need came up for example in:
Currently in
aries_vcx/src/handlers/out_of_band
there'sOutOfBandSender
which is position on same level like other protocol handlers, but in fact, this is just a builder for OOB messages.More-over, working with the
OutOfBandSender
is currently difficult, because it's methodultimately requires you to import
diddoc_legacy
into your project, which is not obvious.Proposal:
OutOfBandSender
in the processAdditional note:
There's also
OutOfBandReceiver
- we'll get rid of that in separate step - it contains method.nonmediated_connection_exists
which is being used in some NodeJS tests.The text was updated successfully, but these errors were encountered: