How do you serve static content and dynamic content from the same .NET app?
I am using the following website: https://cloud.google.com/appengine/docs/flexible/dotnet/serving-static-files
I want to be able to serve static files from:
https://my-app-location-123456.appspot.com/
And I want to also serve dynamic content from my c# code in other locations:
https://my-app-location-123456.appspot.com/ajaxaction?param1=value1 ...
The example here says to turn on static files like this:
app.UseDefaultFiles();
app.UseStaticFiles();
But now my app.Run
command:
app.Run(async (context) => {
await context.Response.WriteAsync(responseString);
});
Doesn't do anything, the only thing my app will do now is serve the static content.
Does anyone have an example of serving both static content and dynamic content from the same app engine application?
c# .net google-app-engine google-cloud-platform
add a comment |
I am using the following website: https://cloud.google.com/appengine/docs/flexible/dotnet/serving-static-files
I want to be able to serve static files from:
https://my-app-location-123456.appspot.com/
And I want to also serve dynamic content from my c# code in other locations:
https://my-app-location-123456.appspot.com/ajaxaction?param1=value1 ...
The example here says to turn on static files like this:
app.UseDefaultFiles();
app.UseStaticFiles();
But now my app.Run
command:
app.Run(async (context) => {
await context.Response.WriteAsync(responseString);
});
Doesn't do anything, the only thing my app will do now is serve the static content.
Does anyone have an example of serving both static content and dynamic content from the same app engine application?
c# .net google-app-engine google-cloud-platform
Hello Nicholas, You may find a useful complete example that includes the "await context.Response.WriteAsync(responseString); " line in the "Quickstart for .NET in the App Engine Flexible Environment" online document. It is recommendable to rather use Cloud Storage to host static assets for dynamic web apps. Benefits: - Cloud Storage essentially works as a content delivery network. - Your app's load will be reduced. - Bandwidth charges for accessing content can often be less with Cloud Storage.
– George
Nov 21 '18 at 19:04
yeah i know that. but i wanted to combine the two in this one situation. its sounding like it's not possible and that's fine.
– Nicholas DiPiazza
Nov 21 '18 at 19:23
add a comment |
I am using the following website: https://cloud.google.com/appengine/docs/flexible/dotnet/serving-static-files
I want to be able to serve static files from:
https://my-app-location-123456.appspot.com/
And I want to also serve dynamic content from my c# code in other locations:
https://my-app-location-123456.appspot.com/ajaxaction?param1=value1 ...
The example here says to turn on static files like this:
app.UseDefaultFiles();
app.UseStaticFiles();
But now my app.Run
command:
app.Run(async (context) => {
await context.Response.WriteAsync(responseString);
});
Doesn't do anything, the only thing my app will do now is serve the static content.
Does anyone have an example of serving both static content and dynamic content from the same app engine application?
c# .net google-app-engine google-cloud-platform
I am using the following website: https://cloud.google.com/appengine/docs/flexible/dotnet/serving-static-files
I want to be able to serve static files from:
https://my-app-location-123456.appspot.com/
And I want to also serve dynamic content from my c# code in other locations:
https://my-app-location-123456.appspot.com/ajaxaction?param1=value1 ...
The example here says to turn on static files like this:
app.UseDefaultFiles();
app.UseStaticFiles();
But now my app.Run
command:
app.Run(async (context) => {
await context.Response.WriteAsync(responseString);
});
Doesn't do anything, the only thing my app will do now is serve the static content.
Does anyone have an example of serving both static content and dynamic content from the same app engine application?
c# .net google-app-engine google-cloud-platform
c# .net google-app-engine google-cloud-platform
edited Dec 18 '18 at 9:09
Maxim
1,507210
1,507210
asked Nov 20 '18 at 13:48
Nicholas DiPiazzaNicholas DiPiazza
3,45453575
3,45453575
Hello Nicholas, You may find a useful complete example that includes the "await context.Response.WriteAsync(responseString); " line in the "Quickstart for .NET in the App Engine Flexible Environment" online document. It is recommendable to rather use Cloud Storage to host static assets for dynamic web apps. Benefits: - Cloud Storage essentially works as a content delivery network. - Your app's load will be reduced. - Bandwidth charges for accessing content can often be less with Cloud Storage.
– George
Nov 21 '18 at 19:04
yeah i know that. but i wanted to combine the two in this one situation. its sounding like it's not possible and that's fine.
– Nicholas DiPiazza
Nov 21 '18 at 19:23
add a comment |
Hello Nicholas, You may find a useful complete example that includes the "await context.Response.WriteAsync(responseString); " line in the "Quickstart for .NET in the App Engine Flexible Environment" online document. It is recommendable to rather use Cloud Storage to host static assets for dynamic web apps. Benefits: - Cloud Storage essentially works as a content delivery network. - Your app's load will be reduced. - Bandwidth charges for accessing content can often be less with Cloud Storage.
– George
Nov 21 '18 at 19:04
yeah i know that. but i wanted to combine the two in this one situation. its sounding like it's not possible and that's fine.
– Nicholas DiPiazza
Nov 21 '18 at 19:23
Hello Nicholas, You may find a useful complete example that includes the "await context.Response.WriteAsync(responseString); " line in the "Quickstart for .NET in the App Engine Flexible Environment" online document. It is recommendable to rather use Cloud Storage to host static assets for dynamic web apps. Benefits: - Cloud Storage essentially works as a content delivery network. - Your app's load will be reduced. - Bandwidth charges for accessing content can often be less with Cloud Storage.
– George
Nov 21 '18 at 19:04
Hello Nicholas, You may find a useful complete example that includes the "await context.Response.WriteAsync(responseString); " line in the "Quickstart for .NET in the App Engine Flexible Environment" online document. It is recommendable to rather use Cloud Storage to host static assets for dynamic web apps. Benefits: - Cloud Storage essentially works as a content delivery network. - Your app's load will be reduced. - Bandwidth charges for accessing content can often be less with Cloud Storage.
– George
Nov 21 '18 at 19:04
yeah i know that. but i wanted to combine the two in this one situation. its sounding like it's not possible and that's fine.
– Nicholas DiPiazza
Nov 21 '18 at 19:23
yeah i know that. but i wanted to combine the two in this one situation. its sounding like it's not possible and that's fine.
– Nicholas DiPiazza
Nov 21 '18 at 19:23
add a comment |
0
active
oldest
votes
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%2f53394473%2fhow-do-you-serve-static-content-and-dynamic-content-from-the-same-net-app%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53394473%2fhow-do-you-serve-static-content-and-dynamic-content-from-the-same-net-app%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
Hello Nicholas, You may find a useful complete example that includes the "await context.Response.WriteAsync(responseString); " line in the "Quickstart for .NET in the App Engine Flexible Environment" online document. It is recommendable to rather use Cloud Storage to host static assets for dynamic web apps. Benefits: - Cloud Storage essentially works as a content delivery network. - Your app's load will be reduced. - Bandwidth charges for accessing content can often be less with Cloud Storage.
– George
Nov 21 '18 at 19:04
yeah i know that. but i wanted to combine the two in this one situation. its sounding like it's not possible and that's fine.
– Nicholas DiPiazza
Nov 21 '18 at 19:23