Can i use LUIS Bot for intranet web application to create dataBot Framework without Azure possible?How can I host the .Net Bot application On- premisesASP.NET Web Site or ASP.NET Web Application?Connecting Bot Framework with LUIS. Which AppId and AppKey should I use?Automating Deployment in Bot Framework (Bot + LUIS+ QnA + Table Storage)Bot Framework / LUIS Privacy ConsiderationsEnable Directline in MS BOT FrameworkWeb App-Bot Creation (Azure) - No LUIS App visibleWeb App Bot does not contain the LUIS template for C#Azure Bot Associated Language Understanding (LUIS) App Not ShowingMicrosoft Bot with LUIS not detecting newly created intentsLUIS ERROR: Sorry, my bot code is having an issue
How do credit card companies know what type of business I'm paying for?
How "fast" do astronomical events occur?
Do my partner and son need an SSN to be dependents on my taxes?
Object-oriented design implementation of an Elevator
Is swap gate equivalent to just exchanging the wire of the two qubits?
How can I maintain game balance while allowing my player to craft genuinely useful items?
How to use random to choose colors
Should I email my professor to clear up a (possibly very irrelevant) awkward misunderstanding?
Simplify, equivalent for (p ∨ ¬q) ∧ (¬p ∨ ¬q)
Explicit direct #include vs. Non-contractual transitive #include
How much steel armor can you wear and still be able to swim?
Co-worker is now managing my team. Does this mean that I'm being demoted?
How do I become a better writer when I hate reading?
Is it a bad idea to have a pen name with only an initial for a surname?
How useful is the GRE Exam?
Harmonic Series Phase Difference?
Explicit song lyrics checker
How can the US president give an order to a civilian?
What does this Swiss black on yellow rectangular traffic sign with a symbol looking like a dart mean?
How to know whether to write accidentals as sharps or flats?
...and then she held the gun
Is there a risk to write an invitation letter for a stranger to obtain a Czech (Schengen) visa?
Credit card validation in C
Fibonacci sequence and other metallic sequences emerged in the form of fractions
Can i use LUIS Bot for intranet web application to create data
Bot Framework without Azure possible?How can I host the .Net Bot application On- premisesASP.NET Web Site or ASP.NET Web Application?Connecting Bot Framework with LUIS. Which AppId and AppKey should I use?Automating Deployment in Bot Framework (Bot + LUIS+ QnA + Table Storage)Bot Framework / LUIS Privacy ConsiderationsEnable Directline in MS BOT FrameworkWeb App-Bot Creation (Azure) - No LUIS App visibleWeb App Bot does not contain the LUIS template for C#Azure Bot Associated Language Understanding (LUIS) App Not ShowingMicrosoft Bot with LUIS not detecting newly created intentsLUIS ERROR: Sorry, my bot code is having an issue
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have created a LUIS application with below steps
step 1: I have created a LUIs web app bot in azure portal,
step 2: enabled the channel for Direct link
step 3: calling the bot api from my web app (hosten in my iis localhost url)
Now when i type from the chat window from my application, the trigger is happening in the azure web app. But i need to create some data in my localhost web app through REST api/SQL. How can i perform this?
Is there any possibility thata LUIS web app bot can also run in locally and consumed by localhost or is there any otherway to handle this scenario?
.net
add a comment |
I have created a LUIS application with below steps
step 1: I have created a LUIs web app bot in azure portal,
step 2: enabled the channel for Direct link
step 3: calling the bot api from my web app (hosten in my iis localhost url)
Now when i type from the chat window from my application, the trigger is happening in the azure web app. But i need to create some data in my localhost web app through REST api/SQL. How can i perform this?
Is there any possibility thata LUIS web app bot can also run in locally and consumed by localhost or is there any otherway to handle this scenario?
.net
add a comment |
I have created a LUIS application with below steps
step 1: I have created a LUIs web app bot in azure portal,
step 2: enabled the channel for Direct link
step 3: calling the bot api from my web app (hosten in my iis localhost url)
Now when i type from the chat window from my application, the trigger is happening in the azure web app. But i need to create some data in my localhost web app through REST api/SQL. How can i perform this?
Is there any possibility thata LUIS web app bot can also run in locally and consumed by localhost or is there any otherway to handle this scenario?
.net
I have created a LUIS application with below steps
step 1: I have created a LUIs web app bot in azure portal,
step 2: enabled the channel for Direct link
step 3: calling the bot api from my web app (hosten in my iis localhost url)
Now when i type from the chat window from my application, the trigger is happening in the azure web app. But i need to create some data in my localhost web app through REST api/SQL. How can i perform this?
Is there any possibility thata LUIS web app bot can also run in locally and consumed by localhost or is there any otherway to handle this scenario?
.net
.net
asked Mar 25 at 4:43
MathiyazhaganMathiyazhagan
4681417
4681417
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Look at this sample, 01.browser-echo, from the Botbuilder-Samples repo. It's just an echo bot, so you'll need to update to your code, however the bot is fully contained within the web chat. It does not rely on Azure services or direct line to run, but instead makes use of a custom WebChatAdapter.
Using this setup, you should be able to run the bot completely locally or within a closed network environment. The latter will depend on what you are trying to do, of course (i.e. making API calls, etc.). It is written in Javascript, but makes for a great option.
Hope of help!
Hi, Steven Sounds like good solution, but the link you shared is not working. it gives me 404 page not found error. could you please provide the unbroken link which would be helpful
– Mathiyazhagan
Jun 6 at 5:29
@Mathiyazhagan Updated link to reflect the correct address.
– Steven Kanberg
Jun 6 at 18:38
add a comment |
I suggest you go through this - Deploying bot to personal server Microsoft/BotBuilder thread. You will find that Is developing bots using Microsoft Bot Framework without Azure possible?.
You can develop the bot over local machine also using the Bot Builder
SDK and testing the bot service using the bot emulator running on
localhost.
References:
How can I host the .Net Bot application On- premises
Bot Framework without Azure possible?
Thanks Niranjan, I tried this but it works good with bot emulator. But without azure how can i enable web chat or direct link chat for my onprim hosten bot service? do you have any idea plz suggest
– Mathiyazhagan
Mar 25 at 9:05
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55331377%2fcan-i-use-luis-bot-for-intranet-web-application-to-create-data%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Look at this sample, 01.browser-echo, from the Botbuilder-Samples repo. It's just an echo bot, so you'll need to update to your code, however the bot is fully contained within the web chat. It does not rely on Azure services or direct line to run, but instead makes use of a custom WebChatAdapter.
Using this setup, you should be able to run the bot completely locally or within a closed network environment. The latter will depend on what you are trying to do, of course (i.e. making API calls, etc.). It is written in Javascript, but makes for a great option.
Hope of help!
Hi, Steven Sounds like good solution, but the link you shared is not working. it gives me 404 page not found error. could you please provide the unbroken link which would be helpful
– Mathiyazhagan
Jun 6 at 5:29
@Mathiyazhagan Updated link to reflect the correct address.
– Steven Kanberg
Jun 6 at 18:38
add a comment |
Look at this sample, 01.browser-echo, from the Botbuilder-Samples repo. It's just an echo bot, so you'll need to update to your code, however the bot is fully contained within the web chat. It does not rely on Azure services or direct line to run, but instead makes use of a custom WebChatAdapter.
Using this setup, you should be able to run the bot completely locally or within a closed network environment. The latter will depend on what you are trying to do, of course (i.e. making API calls, etc.). It is written in Javascript, but makes for a great option.
Hope of help!
Hi, Steven Sounds like good solution, but the link you shared is not working. it gives me 404 page not found error. could you please provide the unbroken link which would be helpful
– Mathiyazhagan
Jun 6 at 5:29
@Mathiyazhagan Updated link to reflect the correct address.
– Steven Kanberg
Jun 6 at 18:38
add a comment |
Look at this sample, 01.browser-echo, from the Botbuilder-Samples repo. It's just an echo bot, so you'll need to update to your code, however the bot is fully contained within the web chat. It does not rely on Azure services or direct line to run, but instead makes use of a custom WebChatAdapter.
Using this setup, you should be able to run the bot completely locally or within a closed network environment. The latter will depend on what you are trying to do, of course (i.e. making API calls, etc.). It is written in Javascript, but makes for a great option.
Hope of help!
Look at this sample, 01.browser-echo, from the Botbuilder-Samples repo. It's just an echo bot, so you'll need to update to your code, however the bot is fully contained within the web chat. It does not rely on Azure services or direct line to run, but instead makes use of a custom WebChatAdapter.
Using this setup, you should be able to run the bot completely locally or within a closed network environment. The latter will depend on what you are trying to do, of course (i.e. making API calls, etc.). It is written in Javascript, but makes for a great option.
Hope of help!
edited Jun 6 at 18:36
answered Mar 26 at 19:19
Steven KanbergSteven Kanberg
1,3502720
1,3502720
Hi, Steven Sounds like good solution, but the link you shared is not working. it gives me 404 page not found error. could you please provide the unbroken link which would be helpful
– Mathiyazhagan
Jun 6 at 5:29
@Mathiyazhagan Updated link to reflect the correct address.
– Steven Kanberg
Jun 6 at 18:38
add a comment |
Hi, Steven Sounds like good solution, but the link you shared is not working. it gives me 404 page not found error. could you please provide the unbroken link which would be helpful
– Mathiyazhagan
Jun 6 at 5:29
@Mathiyazhagan Updated link to reflect the correct address.
– Steven Kanberg
Jun 6 at 18:38
Hi, Steven Sounds like good solution, but the link you shared is not working. it gives me 404 page not found error. could you please provide the unbroken link which would be helpful
– Mathiyazhagan
Jun 6 at 5:29
Hi, Steven Sounds like good solution, but the link you shared is not working. it gives me 404 page not found error. could you please provide the unbroken link which would be helpful
– Mathiyazhagan
Jun 6 at 5:29
@Mathiyazhagan Updated link to reflect the correct address.
– Steven Kanberg
Jun 6 at 18:38
@Mathiyazhagan Updated link to reflect the correct address.
– Steven Kanberg
Jun 6 at 18:38
add a comment |
I suggest you go through this - Deploying bot to personal server Microsoft/BotBuilder thread. You will find that Is developing bots using Microsoft Bot Framework without Azure possible?.
You can develop the bot over local machine also using the Bot Builder
SDK and testing the bot service using the bot emulator running on
localhost.
References:
How can I host the .Net Bot application On- premises
Bot Framework without Azure possible?
Thanks Niranjan, I tried this but it works good with bot emulator. But without azure how can i enable web chat or direct link chat for my onprim hosten bot service? do you have any idea plz suggest
– Mathiyazhagan
Mar 25 at 9:05
add a comment |
I suggest you go through this - Deploying bot to personal server Microsoft/BotBuilder thread. You will find that Is developing bots using Microsoft Bot Framework without Azure possible?.
You can develop the bot over local machine also using the Bot Builder
SDK and testing the bot service using the bot emulator running on
localhost.
References:
How can I host the .Net Bot application On- premises
Bot Framework without Azure possible?
Thanks Niranjan, I tried this but it works good with bot emulator. But without azure how can i enable web chat or direct link chat for my onprim hosten bot service? do you have any idea plz suggest
– Mathiyazhagan
Mar 25 at 9:05
add a comment |
I suggest you go through this - Deploying bot to personal server Microsoft/BotBuilder thread. You will find that Is developing bots using Microsoft Bot Framework without Azure possible?.
You can develop the bot over local machine also using the Bot Builder
SDK and testing the bot service using the bot emulator running on
localhost.
References:
How can I host the .Net Bot application On- premises
Bot Framework without Azure possible?
I suggest you go through this - Deploying bot to personal server Microsoft/BotBuilder thread. You will find that Is developing bots using Microsoft Bot Framework without Azure possible?.
You can develop the bot over local machine also using the Bot Builder
SDK and testing the bot service using the bot emulator running on
localhost.
References:
How can I host the .Net Bot application On- premises
Bot Framework without Azure possible?
answered Mar 25 at 6:52
Niranjan SinghNiranjan Singh
16k23367
16k23367
Thanks Niranjan, I tried this but it works good with bot emulator. But without azure how can i enable web chat or direct link chat for my onprim hosten bot service? do you have any idea plz suggest
– Mathiyazhagan
Mar 25 at 9:05
add a comment |
Thanks Niranjan, I tried this but it works good with bot emulator. But without azure how can i enable web chat or direct link chat for my onprim hosten bot service? do you have any idea plz suggest
– Mathiyazhagan
Mar 25 at 9:05
Thanks Niranjan, I tried this but it works good with bot emulator. But without azure how can i enable web chat or direct link chat for my onprim hosten bot service? do you have any idea plz suggest
– Mathiyazhagan
Mar 25 at 9:05
Thanks Niranjan, I tried this but it works good with bot emulator. But without azure how can i enable web chat or direct link chat for my onprim hosten bot service? do you have any idea plz suggest
– Mathiyazhagan
Mar 25 at 9:05
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55331377%2fcan-i-use-luis-bot-for-intranet-web-application-to-create-data%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown