8,222 questions
0
votes
0
answers
46
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 ...
3
votes
1
answer
129
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
27
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.
...
0
votes
0
answers
89
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
35
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 ...
-1
votes
1
answer
88
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 ...
-2
votes
1
answer
348
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 ...
0
votes
0
answers
110
views
Oracle 19 client installation in windows: IsBuiltInAccount implications
Scenario is as follows:
We have a legacy version of the oracle client install rsp file, which contains
oracle.install.IsBuiltInAccount=false
oracle.install.OracleHomeUserName=mydomain\myuser
oracle....
0
votes
1
answer
48
views
How to keep value in textarea field in suitelet form after submit?
I have deveoped suitelet script to show textarea type field. I am populating sublist based on entered textarea field values. I am getting entered textarea field values from client script saverecord to ...
1
vote
2
answers
84
views
How to pass multiple parameters from client script to suitelet?
I am trying to pass values entered in a textarea field on suitelet (new line/space/comma/pipe separated) from client script to suitelet. There is limitation of suiteleturl length. I am trying to pass ...
0
votes
0
answers
53
views
Client not sending messages to the UI via Unix Domain Socket in Chat Application
Issue: Client not sending messages to the UI via Unix Domain Socket
I'm working on a chat application that involves communication between a UI, a client, and a server. The client listens for incoming ...
0
votes
1
answer
106
views
How to pass parameters from Netsuite client script to user event script?
I hope you are well. I have my user event script to create custom button on netsuite message record. I have client script to refresh the page on button click. I am able to get selected template value ...
0
votes
1
answer
36
views
Can we retain selected value after reloading the page user event beforeload?
I hope you are well.
I'm working on a record creation. I select the value from dropdown field. After that reload the record, I need to:
Retain the selected value from the dropdown.
Repopulate the ...
0
votes
1
answer
45
views
Californium client port
Im new to coap. So, sorry if this is a dump question.
Currently, Im using Californium latest version - 4.0.0-M2.
When I tried to write a unit test as Coap client to do handshake with Coap server. I ...
0
votes
0
answers
116
views
How to detect on server when a http client disconnects
We're doing some heavy computing on our server and want to make sure we don't do too much work if the client has already lost interest and closed the connection. According to AI there are two ways to ...
0
votes
2
answers
126
views
Unable call pageinit client script from user event beforeload script 2.1?
I am trying to call pageinit client script from user event beforeload. When I deploy client script on record, it works perfectly that is hides certain tabs. But when I am trying to call it from user ...
0
votes
2
answers
154
views
Reading and writing values from devices with BACnet4J 6.0.1
I am new to BACnet4J. I am trying to read and write values as a client using BACnet4J 6.0.1 . I have tried 2 test servers. With the test server from https://sourceforge.net/projects/bacnetserver/ I ...
1
vote
0
answers
47
views
Trouble running client and server program with docker
i really dont know what to do anymore i sat down with gpt for 4 hours and at this points its just reapiting the same steps that doesnt slove my problem
docker-compose file:
services:
server:
...
0
votes
0
answers
31
views
Grid DB Connection Issue using gss-client
I have installed the Grid DB server on my RHEL machine and further I am trying to connect to the GridDB server. From the online docs, I see that there are two different downloads - Server & ...
1
vote
0
answers
229
views
Can't find module @prisma/client
When I use Prisma Client I have a problem. After the import i have a mistake: no module found "@prisma/client" enter image description hereenter image description here
I tried to install ...
0
votes
1
answer
315
views
Quarkus REST Client: How to serialize a query parameter with custom date formatter
I have a REST API to call that expects dates in the format yyyyMMdd
My REST Client code looks like this
@GET
@Path("/atl/")
RestResponse<AtlResponse> getAtlResponse(
@QueryParam(&...
0
votes
0
answers
389
views
Issue with Nuxt’s useFetch returning null during SSR but working fine on the client
I am using Nuxt and have wrapped the useFetch function to handle API requests with a custom setup for headers, error handling, and other configurations. Below is my implementation:
// Core API wrapper
...
3
votes
0
answers
3k
views
In Angular (Uncaught (in promise) Error: Access to storage is not allowed from this context.)
How To fix this error on the browser is error is on client they said the error is Cors related on my main.ts
main.ts
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module'...
1
vote
1
answer
157
views
Aerospike client not adhering to connectionQueueSize
We have a Go application running in a highly concurrent environment. We do several aerospike reads for every single request, by spawning multiple goroutines .
Currently we are facing this issue where ...
0
votes
0
answers
42
views
Would it make sense performance wise to use workerpool for websocket client to parse incoming messages?
I am trying to understand how to make node ws client more performant and I have come across worker threads and worker pool. The use case is to parse incoming messages (done in the worker) and pass the ...