8,236 questions
0
votes
0
answers
18
views
Integrating Lit with Next.js SSR — How are others approaching “client islands” vs full SSR?
Our team is exploring how to best use Lit components within a Next.js App Router setup where most pages are server-rendered (SSR) by default. I understand that mixing Server and Client Components in ...
1
vote
0
answers
122
views
C# .NET 9.0 client authentication fails with certificate chain [closed]
When performing client authentication using a certificate chain in C# .NET 9.0, the server (Apache/PHP) returns:
SSL_CLIENT_VERIFY: FAILED: unable to verify the first certificate
The Apache ...
2
votes
2
answers
178
views
PHP-cli running with curl_init but not with file_get_contents, how to enable?
Using php -a
$url = "https://getcomposer.org/versions";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0");
...
3
votes
1
answer
107
views
SSE connection fails(in server) when multiple connections are made from the same device
I’ve built a simple SSE (Server-Sent Events) server in Node.js using Express. When I try to connect multiple clients (4000) from the same machine using a stress test script, the server fails to ...
0
votes
0
answers
20
views
Suitelet error: The page you're looking for used information that you entered. Returning to that page might cause any action you took to be repeated
I hope you are doing well.
I have developed suitelet script to design custom UI to select some checkboxes and show result in a sublist. Evrything works fine but when I reload the page I see this pop-...
0
votes
0
answers
19
views
GraphQL: from object diff to input type
With the traditional REST APIs it seems far easier to build a client side model that you can build the request body out of the box by just using the differences of an JS object that has been changed.
...
1
vote
1
answer
130
views
When is it safe to drop gRPC stub and channel in C++ (Callback API)?
I'm building a C++ gRPC client using the Callback API. The client sends many asynchronous RPCs, waits for all of them to complete, and then immediately exits.
The problem:
If the application exits ...
0
votes
0
answers
83
views
HTTP Error 500 Response Header Too Long Error In Netsuite suitescript 2.1
I hope you are doing well! I have created custom suitelet page to show saved search results in a suitelet sublist with checkboxes to select items and customers. Also developed client script to pass ...
0
votes
0
answers
373
views
MCP client initialisation
Please help fix my mcp client error!
I have a simple mcp server setup with streamable http.
mcp server:
mcp = FastMCP(
name="example server",
host="127.0.0.1",
port=...
0
votes
0
answers
30
views
How to put validation for item group sub components Netsuite client script?
I have a Netsuite requirement to put validation on quote items. If body level financial treatment field value is a or b then I have to set billable status as 'non billable' on all billable status line ...
0
votes
0
answers
140
views
Connect using a Certificate for Authentication
Is there any way to connect to SQL Server 2022 using Client Certificate Authentication using an X.509 cert? From everything I can see it looks like this is not possible but where I am confused is it ...
-1
votes
1
answer
78
views
Is it possible for a server to detect client-side DOM element manipulation?
When a user deletes a <p> element (or any DOM element) using browser developer tools/extensions, these changes are local and don’t notify the server. However, if the client specifically wants to ...
0
votes
0
answers
20
views
GUI "Stop Clients" button doesn't close server and clients in multithreaded Python app (Spyder)
I have a client-server project where the server collects Mandelbrot images computed by different clients using multithreading.
It contains 4 files, and files 1 and 2 must be run in different consoles. ...
-2
votes
1
answer
285
views
Postman Error: Unable to verify the first certificate with localhost
Currently I am working on .NET WebApi project which is using SSL authentication. I am the only one in the team who works on this project under Windows 11 and I am the only one who is unable to send ...
1
vote
0
answers
42
views
Java socket client receives outdated serialized object despite server sending updated version [duplicate]
I'm trying to create a little multiplayer poker game for my friends that uses base java functions like swing and socket, but i can't get the client side JFrames to update correctly. The game is ...