Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
10 views

quarkus-websockets: Sec-WebSocket-Protocol subprotocol negotiation seems to be broken

When using quarkus-websockets-next, you can configure supported subprotocols and have Quarkus propagate the client’s Sec-WebSocket-Protocol header via: quarkus: websockets-next: server: ...
BATMAN_2008's user avatar
  • 3,582
0 votes
0 answers
29 views

NTLM authentication first works and then suddenly fails (http.sys, .NET Core 8)

I have an ASP.NET Core 8 web service (which uses http.sys internally) that accepts a request authenticated via NTLM, generates a token and returns it. After a fresh start of the service, the first 2 ...
sawie's user avatar
  • 261
0 votes
0 answers
19 views

Http streams breaking issues after shifting to http2

So in my application i have to run alot of http streams so in order to run more than 6 streams i decided to shift my server to http2. My server is deployed on google cloud and i enabled http2 from the ...
Mohammad Aosaf's user avatar
-1 votes
0 answers
33 views

What is "inter-latin-400-normal.woff2", and why is my browser (Chrome) downloading it?

I'm requesting a JSON file from my own website in Google Chrome. In DevTools, it looks like this: It fetches the document - fine. And then it fetches inter-latin-400-normal.woff2 and inter-lation-500-...
OZ1SEJ's user avatar
  • 423
1 vote
1 answer
71 views

Disable HTTP proxying when program ends

This is a followup to my previous question: Set HTTP(S) proxy programmatically I have a program that sets a proxy server for http requests when it starts. When the program finishes its work, I need to ...
Joe J's user avatar
  • 505
1 vote
1 answer
76 views

Set HTTP(S) proxy programmatically

One way to assign an HTTP proxy in Windows is to directly modify the registry as follows: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet ...
Joe J's user avatar
  • 505
-1 votes
0 answers
26 views

How to periodically check a JSON file from a remote host and trigger a local notification in background on modern Android (without Firebase)?

I'm developing an Android app (Flutter, but Android-specific solutions are fine as I only target Android), and I want to implement a background notification system without using Firebase. Goal: Host a ...
Moein mohammadi's user avatar
1 vote
1 answer
23 views

Json format invalid in n8n..But it works if I don't add a variable

I am trying to send some data to Go High Level through HTTP Request. When I use this code it works: { "customField": { "qVyZUrjZetIVRF5MGaZY": "this is the value" ...
Mike Ross's user avatar
-1 votes
0 answers
31 views

git remote over http on windows and IIS [duplicate]

I need some help with git over http over IIS all my repos i want in D:\GitRepos folder D:\GitRepos\test.git created inside it git init --bare - done and commited something there via rdp git remote set-...
Dorian's user avatar
  • 1,031
0 votes
0 answers
66 views

How to check if HTTP headers have been sent [duplicate]

How to check if HTTP headers have already been sent to the client? If a panic happens I use this function to log the error but also send an error back to the client func Recover(w http.ResponseWriter){...
go go go go's user avatar
3 votes
1 answer
59 views

What is an idiomatic way to convert a query to a hash

The response to an HTTP request is a string like 'one=iwejdoewde&two=ijijjiiij&three=&four=endinghere' I want to put this query into a hash. My solution is my $s = 'one=iwejdoewde&two=...
Richard Hainsworth's user avatar
0 votes
1 answer
32 views

How can I properly get data from an API using http.get in Dart?

I'm new to Dart and I'm trying to get data from an API using the http package. Here's my code: import 'dart:convert'; import 'package:http/http.dart' as http; void fetchData() { try { final ...
Amaal.Psau's user avatar
2 votes
0 answers
31 views

asyncio httpio boto3 how to find memory leaks

I'm struggling since a while to determine where my memory leaks are coming from. I'm using asyncio, httpio boto3 and so on. The basic idea of my app is : getting urls of the newest documents ...
Quentin Garnier's user avatar
0 votes
0 answers
40 views

Sending a Picture over HTTP from ESP32-CAM to Azure Function

I'm doing a project with ESP32-CAM. the ESP32-CAM should send the picture to an Azure Function that handles the image and save it to blob storage. the problem is im getting "connection refused&...
Mostafa Fallaha's user avatar
0 votes
0 answers
25 views

How to Map Modbus RTU Data to HTTP POST Parameters for Protocol Converter Gateway? [closed]

I'm currently working on developing a protocol converter that reads data from Modbus RTU slave devices (via RS485) and sends the collected data to a cloud server using HTTP POST over GPRS or Ethernet. ...
Manjunath Badiger's user avatar
1 vote
1 answer
48 views

Golang POST proxy for unstable connections. Prevent idle conn timeout; Slowloris

I am running a proxy, which aims to proxy request from a user to a destination server. The issue is that user often runs on an unstable connection/mobile, whereas destination server has pretty tight ...
Tom Raganowicz's user avatar
3 votes
2 answers
83 views

NetHTTPClient in Delphi 12 times out when download is working

My Delphi 12 project is using the NetHTTPClient component to download a 2GB file. The download progresses quickly and without a break but after 60 seconds (around third of the download) it raises an ...
Mike at Bookup's user avatar
2 votes
0 answers
43 views

Why am I getting a 404 status code from my PUT method, when the GET method returns 200?

The method saveToDatabase() that I use to store the list of questions to my db.json on Github, returns 404 status code from the PUT method. Whereas, the same method returns a 200 status code when ...
Sameer Ahmed's user avatar
0 votes
1 answer
31 views

Does an HTTP 1.1 proxy support HTTP 2 connections?

I am trying to implement an HTTP proxy server, aimed for low latency. From what I understand, an HTTP proxy request is either a raw request with the HOST header set to the destination, or a CONNECT ...
Alsein's user avatar
  • 4,787
1 vote
2 answers
85 views

URLSession GET request returns 403 in iOS app, but works in Postman with the same token

I'm building a chat app in Swift using URLSession. I have an authenticated GET request to fetch the current user's friends list. The request works perfectly in Postman using the same token and URL, ...
GiangHoGoVap's user avatar
-1 votes
0 answers
23 views

Sending Auth token to the backend using http

I am using next.js server, I am sending Authorization from the frontend to the Nextjs server, and from there I am calling the Backend server with http://, but I am getting access-token not present ...
Aman Dubey's user avatar
0 votes
0 answers
58 views

How to convert a http response with content type application/json to application/octet-stream?

What is the issue? We use AWS API Gateway for integration with the AWS S3 using REST calls. In the API Gateway transformation we haven't supported HTTP_HEADERS yet. And we don't want to roll out ...
Zahid Khan's user avatar
  • 3,347
0 votes
0 answers
35 views

Send http to SharePoint - base64 image

I have a base64 string which I can view in a base64 to image converter. The same string , using base64toBinary in a compose function, is viewable when the output is downloaded. Using a send http ...
Zeetek's user avatar
  • 3
-1 votes
0 answers
25 views

CORS header missing on my local Apache server [duplicate]

I have an API that I can call just fine in Postman. It's a POST method with Basic auth (username/password). I need to call it from a browser, so I wrote a simple HTML with JavaScript code: <script&...
Vincent L's user avatar
  • 737
-1 votes
0 answers
47 views

BItUnix API Signature Error (10007) when Placing order

BitUnix Futures API – Signature Error (code 10007) I'm attempting to place a Futures order using BitUnix's REST API. Despite following the official documentation exactly, I consistently receive the ...
David McCall's user avatar
0 votes
0 answers
17 views

Strapi 5 not able to create any new entry for Redirect

Getting issue for Strapi 5 while creating new redirect entries for package: "strapi-v5-redirects": "^1.0.2": [2025-04-11 15:50:47.684] http: GET /admin/project-type (2 ms) 200 [...
Md. Abu Sayed's user avatar
0 votes
1 answer
29 views

Getting unsupported media type error when sending a file to an endpoint in spring

I am trying to test my file converter using postman and a input button in angular but am receiving a content type error. i have this endpoint that is supposed to capture the file and user. Whenever i ...
merman's user avatar
  • 1
0 votes
1 answer
56 views

Java Http client: java.io.IOException: Connection reset

We have a service which is calling a service over Http using java.net.http.HttpClient We are getting below errors for 1-2% of the requests while calling that service , which mostly gets resolved if we ...
ankur garg's user avatar
-1 votes
0 answers
19 views

how to configure ssl for a7672s module or what command sequence should i use?

I am using stm32f407vgt6 and simcom a7672s for sharing ldr and temp data of smt to the server hosted on render but http responses with code 715,714 and 713 even i'm not able to configure the ssl ...
firmware iot's user avatar
0 votes
0 answers
19 views

Transmitting Windows "offline" file attribute ("O") via WebDAV/HTTP

We're developing a web server that uses WebDAV to supply file information to Windows Explorer. Some files, while present on our server, are not immediately available. In this case, we would like for ...
kc2001's user avatar
  • 5,249
0 votes
0 answers
22 views

Unable to load the service index for source https://pkgs.dev.azure.com/securityassurance/_packaging/SecurityTools/nuget/v3/index.json

We need to implement the AntiSSRF library for all HTTP client calls from the server. To do this, we need to obtain the required package from the "Security Tools" feed. However, I encountered ...
Rithik_07's user avatar
0 votes
0 answers
23 views

Linked data: relative URIs of fragments

I am working on an Linked Data / RDF implementation. Following https://www.w3.org/TR/ldp-bp/#use-relative-uris I would like to use relative URIs in sub-graphs. (NOTE that while the referenced best ...
user3758232's user avatar
-4 votes
0 answers
30 views

How to connect to localhost endpoint from salesforce CRM [closed]

I want to connect to one of my local project endpoint from salesforce CRM without using ngrok. I have an endpoint in my local maven project "http://localhost:8087/vehicle/vin', I want to ...
Priya's user avatar
  • 13
0 votes
0 answers
9 views

Uwsgi Failover mode (one active application server at a time)?

My setup uses usgwi as frontal server and uwsgi application servers behind. I need to do a setup where only one application server is active at a time, and in case it would become unreachable, the ...
Baptiste Mille-Mathias's user avatar
0 votes
2 answers
66 views

fetch GET returns nothing(204) but works(200) in Chrome DevTools

I am trying to write a GET http call to a site to get game scores. I figured out the x-hsci-auth-token token and it uses Akamai Edge Authorization Token. I get good responses for all but 1 request. ...
knotmine's user avatar
0 votes
0 answers
84 views

LilyGO with a SIMCom A7670E suddenly returns errorcode 715 (Handshakefailed) when accessing an Azure Function App

My LilyGO TTGO T-SIM-A7670E R2 ESP32 - ESP32-WROVER sudddenly couldn't access my Azure Function App anymore. It has been functioning non stop for more then 2 months. Without a problem. And then, out ...
Rikkert's user avatar
  • 75
-3 votes
2 answers
66 views

Why am I not getting any response in the postman? [closed]

import {createServer} from 'http' const PORT = process.env.PORT const users = [ {id:1, name:"Jim"}, {id:2, name:"Dwight"}, {id:3, name:"Michael"} ] const ...
Grimmj0w's user avatar
0 votes
0 answers
21 views

Empty HTTP POST request going unhandled in Express.js server

I have an Ubuntu image based docker container working as a development environment. Inside this container, I have my express app. Below are the code files. // Start the Express Server - index.ts ...
Aakash's user avatar
  • 33
0 votes
1 answer
60 views

Websocket Support On IBM WebSphere 9.0.5.6 - IllegalArgumentException: Upgrade currently not implemented

I’m running a Java web application on WebSphere Application Server 9.0.5.6, and I’m encountering the following error when processing an HTTP request: 000042b3 webcontainer E com.ibm.ws.webcontainer....
Francesco Nigro's user avatar
0 votes
1 answer
29 views

A module which is specified to be imported using HTTPS is sometimes blocked by browser because the browser loads it over HTTP

I developed a website for internal company use using Vue. There is only one library in the project that is imported through an external CDN: <script setup> import { encode as encodeJPEG } from &...
Donggi Kim's user avatar
1 vote
1 answer
41 views

Is there a way that browsers understand to interleave an mjpeg stream served through HTTP with an MP3 and play them without a javascript player?

I'm serving an MJPEG stream and an MP3 stream from an esp32. The individual jpg frames are compressed by the camera module itself, but the microcontroller is not powerful enough to decode and re-...
Crumml's user avatar
  • 21
0 votes
0 answers
29 views

Vercel 301 redirection works only on http requests. https requests return 200 status. How can I apply the redirection to https requests?

I'm building my own website and for SEO reasons I need to redirect all traffic from www.example.com to example.com. To achieve this, I created a vercel.json file and added it to the root directory of ...
daniirp's user avatar
  • 23
1 vote
1 answer
35 views

eBay - REST API - send message to buyer after purchase

Easy question, no answers found. How to send a message to buyer after paid order with REST API? I found the depracted SOAP API that offers that but not REST https://developer.ebay.com/Devzone/XML/docs/...
BlackMatrix's user avatar
-1 votes
0 answers
19 views

How do you use key-sets in Milkman?

I try to avoid software that requires me to have an account when working with potentially sensitive stuff. So both Postman och Insomna is not an option. I found Milkman and it has work fine. Now I ...
Pontus Endlessmind Holmberg's user avatar
0 votes
0 answers
15 views

HTTP routing of path through nginx

I want to build a simple chat application where each user has a list of chats stored on the backend. Each chat has a link-button in the frontend with the path /chat/<chatId>, so clicking on the ...
binaryBigInt's user avatar
  • 1,704
0 votes
1 answer
38 views

Ejabberd and XMPP

I don't know how to set up ejabberd on my Debian server for local development and testing as well as for learning purposes. I have a modem set up on my home without static IP address and using my old ...
MR AR's user avatar
  • 13
-2 votes
1 answer
44 views

Symfony or Nginx is forcing a redirect to https in a Docker test environment

please help. I'm having a problem with a droplet in DigitalOcean with a Symfony app. The app portal works fine, but when I log in to a module with security (username and password), the styles and JS ...
mario uriarte's user avatar
0 votes
0 answers
14 views

IDEA REST client: How to access in-place variables from test js

My imported http script needs to use an (overridden) in-place variable in its js test. I can find no way of reading in-place variables from js. The following ends with the test being named "...
Joachim Lous's user avatar
  • 1,561
0 votes
1 answer
46 views

service static folder from root without fallback_service

I need to serve a folder created by vitejs. I do pub fn serve_dir() -> Router { let serve_dir = ServeDir::new("web/dist"); Router::new() .route_service("/", ...
Vana's user avatar
  • 938
2 votes
0 answers
42 views

Support CONNECT flask server

I am trying to build a basic proxy server thats accessible form the internet to forward requests but also log them to firebase database. I deployed my code on Google Cloud Run by creating an instance ...
Ahmed Zaidan's user avatar

1
2 3 4 5
1365