server-side Questions
1
Solved
I am trying to figure out the maximum file size, my client can upload , so that my python fastapi server can handle it without any problem.
Kuehn asked 23/6, 2021 at 7:34
0
We have a Grpc server implemented on c# .net 5.0 environment
public void ConfigureServices(IServiceCollection services)
{
...
services.AddGrpc(o =>
{
o.EnableDetailedErrors = true;
// Small...
Inga asked 14/5, 2021 at 20:39
1
I have a Windows server running an ASP.NET application and a local printer connected to this machine. I need to print some documents from the server-side code.
So far I know, there's no managed AP...
Mouthwatering asked 6/6, 2016 at 9:35
9
In a server-side Blazor app I'd like to store some state that is retained between page navigation. How can I do it?
Regular ASP.NET Core session state does not seem to be available as most likely ...
Catechetical asked 24/12, 2018 at 12:21
3
Solved
According to this question express.static reads files from the harddrive every time. I'd like to cache served files in memory, since they won't be changing, there aren't many and I have plenty of m...
Diligence asked 8/3, 2017 at 10:26
3
Solved
I am building a Next.JS app that will be getting data from a Python API and an Postgres Database.
Normally this would be simple, except requirements are such that I need to send all requests from ...
Incisor asked 20/4, 2018 at 22:3
3
Solved
I have two tables in lua (In production, a has 18 elements and b has 8):
local a = {1,2,3,4,5,6}
local b = {3,5,7,8,9}
I need to return 'a' omitting any common elements from 'b' -- {1,2,4,6} sim...
Sesquicarbonate asked 7/7, 2014 at 23:8
6
Solved
I need to parse (server side) big amounts of HTML pages.
We all agree that regexp is not the way to go here.
It seems to me that javascript is the native way of parsing a HTML page, but that assump...
Messeigneurs asked 10/9, 2011 at 16:18
3
Solved
-- Question --
I am just starting out with the REST API and am getting pretty confused.
This is what my PHP cRUL client-side looks like for a PUT.
case 'PUT':
curl_setopt($handle, CURLOPT_CUSTO...
Deflation asked 24/7, 2011 at 7:44
2
I wrote a module in node.js that performs some network operation. I wrote a small script that uses this module (the variable check below). It looks like this:
check(obj, function (err, results) {
...
Asymmetry asked 7/4, 2013 at 0:33
5
Solved
I found this question about SQL-like query libraries. What I am looking for is a library that allows queries on JSON objects, embedded in a client-side application (browser), as well as from a remo...
Ondine asked 16/11, 2013 at 9:18
2
I'm trying to figure out how to dynamically generate sitemap in reactJS server side (express) web app. I'm using react router.
Isotone asked 4/5, 2016 at 7:42
10
Solved
I want to have an HTTP GET request sent from PHP. Example:
http://tracker.example.com?product_number=5230&price=123.52
The idea is to do server-side web-analytics: Instead of sending trackin...
Afternoon asked 16/1, 2013 at 13:48
1
Solved
I have a React app in which I need to make some API calls which include the API token in the request headers. I'm not concerned about rendering the whole app server-side as I don't care about SEO, ...
Tradesman asked 10/7, 2020 at 11:57
2
Solved
What is the easiest way to have a server-side session variable in Flask?
Variable value:
A simple string
Not visible to the client (browser)
Not persisted to a DB -- simply vanishes when the sess...
Phene asked 9/4, 2017 at 7:54
4
I'm working on a project, updating it to Angular 6. After the update, I'm now getting this error when trying to run the server-side rendering build
Module not found: Error: Can't resolve './dist/...
Dinnie asked 31/7, 2018 at 3:20
2
I am trying to render the whole page in React only then sending it to the browser. I am getting the following error:
Invariant Violation: Invalid tag: <!doctype html>
The line that is pr...
Myotonia asked 6/2, 2018 at 23:41
4
I'm using angularjs with firebase and when I use
$scope.createdDate = new Date();
it uses the time on the client, however I want to use Firebase Servers current time as client-side time may vary...
Titanothere asked 13/6, 2014 at 9:58
3
Solved
I'm using the AWS SDK for Go to use Cognito to do server-side authentication. I have sign-up and sign-in done and working using a username and password. I have all three external identity providers...
Wundt asked 3/10, 2018 at 1:12
5
Solved
Ok so, right now I can't really afford to pay for any service. I want to be able to take screenshots using my rented server, which is Linux based, and output them on the screen.
I know there are a...
Synonymize asked 27/7, 2010 at 11:9
5
I have an html control which I want to set its value ....
here's the control:
<input runat="server" id="first_name_txt" type="text" placeholder="First Name" />
in code behind, I use:
firs...
Ufo asked 12/8, 2014 at 9:45
2
Solved
I am working on a server-side react-node project with the webpack. I had too many errors on the console I have not been able to figure out since yesterday. I hope someone spends time and help me ou...
Chickenhearted asked 17/3, 2020 at 22:37
2
Solved
today I tried node.js mysql snippet from w3schools:
var mysql = require('mysql');
var con = mysql.createConnection({
host: "localhost",
user: "roots", // WRONG USER
password: ""
});
con.conne...
Embay asked 20/8, 2017 at 22:8
4
Solved
I've been using this site for a long time to find answers to my questions, but I wasn't able to find the answer on this one.
I am working with a small group on a class project. We're to build a sm...
Amphibolous asked 5/8, 2013 at 18:51
3
Solved
I like the APIs of the Retrofit and OkHttp rest/http libraries from Square. I am evaluating options for writing a server-side rest client. For each request to my SOAP-based web service, I have to c...
Blackbird asked 7/3, 2015 at 16:49
© 2022 - 2024 — McMap. All rights reserved.