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
/ Compose with 'plug': / wac plug --plug ./composition/Compound.wasm ./composition/Composite.wasm -o ./composition/Composition.wasm
/* Error message is: */
error: the socket component had no matching imports for the plugs that were provided
I've feeling that the error message is "wrong" because the "compound-interface" matches? Thanks for any help... Regards.
PS: wac compose does NOT work as well (open an other issue on that...)
The text was updated successfully, but these errors were encountered:
Here is the scenario with wac compose: wac compose ./composition/Composition.wac --deps-dir . -o ./composition/Composition.wasm
WAC config. file:
package barbierdarnal-com:composition; // 'Composition.wac'
// Instantiate `compound`:
let compound = new composition:compound-world { ... }; // '...' is syntax! => import
// Instantiate `composite` by stuffing imported `compound-interface` by means of exported `compound-interface` of `compound`:
let composite = new composition:composite-world {compound-interface: compound.compound-interface, ... };
/* Error message: */
error: failed to resolve document
× failed to create registry client: no home registry registry server URL is configured
Here is the scenario with wac compose: wac compose ./composition/Composition.wac --deps-dir . -o ./composition/Composition.wasm
WAC config. file:
package barbierdarnal-com:composition; // 'Composition.wac'
// Instantiate `compound`:
let compound = new composition:compound-world { ... }; // '...' is syntax! => import
// Instantiate `composite` by stuffing imported `compound-interface` by means of exported `compound-interface` of `compound`:
let composite = new composition:composite-world {compound-interface: compound.compound-interface, ... };
/* Error message: */
error: failed to resolve document
× failed to create registry client: no home registry registry server URL is configured
Hi,
I've tested the 'hello' example with my installation and it works... Thanks for building WAC! However, I'm not able to run the following example:
/**/
/ Transform wit into wasm: /
/ Compose with 'plug': /
wac plug --plug ./composition/Compound.wasm ./composition/Composite.wasm -o ./composition/Composition.wasm
/* Error message is: */
error: the socket component had no matching imports for the plugs that were provided
I've feeling that the error message is "wrong" because the "compound-interface" matches? Thanks for any help... Regards.
PS:
wac compose
does NOT work as well (open an other issue on that...)The text was updated successfully, but these errors were encountered: