Open JonathanFingold opened 3 years ago
Noticed this bit of UI weirdness today, as I was cleaning up my test bot. The insertion caret is odd here, as the bot names are not editable in the publishing profile view:
Trying a new tack today:
Checking the detritus of this attempt, the skill manifest on Azure looks like this:
{
"$schema": "https://schemas.botframework.com/schemas/skills/v2.1/skill-manifest.json",
"$id": "EchoSkill-a193397c-b7c7-45f1-ba1d-08386346f3b8",
"endpoints": [
{},
{
"protocol": "BotFrameworkV3",
"name": "skill",
"endpointUrl": "https://v-jofin-skill.azurewebsites.net/api/messages",
"description": "<description>",
"msAppId": "83a0a1c4-2bea-4a06-b119-b99f2409f2a8"
}
],
"name": "EchoSkill",
"version": "0.9.1",
"publisherName": "me",
"activities": {
"EchoSkill": {
"type": "event",
"name": "EchoSkill"
}
}
}
{}
should not be an endpoint int the endpoints array.The local manifest looks like this (before any hand editing):
{
"$schema": "https://schemas.botframework.com/schemas/skills/v2.1/skill-manifest.json",
"$id": "EchoSkill-a193397c-b7c7-45f1-ba1d-08386346f3b8",
"endpoints": [
{}
],
"name": "EchoSkill",
"version": "0.9.1",
"publisherName": "me",
"activities": {
"EchoSkill": {
"type": "event",
"name": "EchoSkill"
}
}
}
Postscript:
PS. This is not a full catalog of all the different paths I've tried to take. I have not yet successfully got this scenario to work in Composer 2.x.
Hey @vivekkshankar I've added you to this to tease apart Jonathan's feedback and tentatively have changes here loaded up for R15.
Description
I can't get the scenario to work in a satisfying or consistent way to fix the documentation for connecting to a remote skill.
This is a blocking issue for the doc, and I will pull this doc from the TOC until next release.
Version
Latest release (non-nightly)
Version: 2.0.0 Electron: 8.2.4 Chrome: 80.0.3987.165 NodeJS: 12.13.0 V8: 8.0.426.27-electron.0
Discussion
Well, I didn't get to the other issue I had intended to complain about. Will continue to list my tail of woe in this thread as I try to get my local root bot working with a published remote skill.