Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
34 views

Consider this code: from suds.client import Client wsdl = "https://path/to/scv?wsdl" client = Client(wsdl) token = client.factory.create("ns1:AuthenticationToken") token....
Bart Friederichs's user avatar
0 votes
0 answers
25 views

I installed a new SSL certificate in my IIS Manager inside a VM. After that I added a new https binding with this certificate, port 443, IP address All Unassigned and a new host name same to the ...
Diva's user avatar
  • 1
0 votes
1 answer
129 views

For Benthos yaml / pipeline what we developed, we will call http API, to handle the http exception, we can catch the error thru error(), then send to error topic, but it seems that the detailed http ...
user1678165's user avatar
0 votes
0 answers
80 views

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 votes
1 answer
177 views

I added a Nginx as reverse proxy for my Node server, my certificates were generated by Let's Encrypt Certbot. Everything works fine when my Node is listening on port 443 and using the certificates, ...
Jean-Loup's user avatar
  • 398
-2 votes
2 answers
165 views

We are developing react native app with django as a backend. We deployed django on the VM (which we bought it has Window OS) and then git pulled and running django server using uvicorn backend.asgi:...
Ganesh Mohane's user avatar
2 votes
1 answer
190 views

I would like to know if the origin of the current document is sent in the referer header when it establishes a "strict-origin" policy and the protocol level improves. For examples: The ...
Antoine Hazebrouck's user avatar
0 votes
0 answers
44 views

I have set up a frontend application (React) and a backend application(Java—Spring Boot) on my droplet. I am running an Nginx webserver with SSL certification. I can't get my front end to call my back ...
TheEagle's user avatar
1 vote
1 answer
466 views

We have a ZKTeco MB10 Attendance Device I have successfully installed it, and connected to the BioTime 9.5 that we are hosting on a VPS, I have pointed a subdomain record to the the VPS ip address and ...
Arbaz Ahmed Mughal's user avatar
0 votes
1 answer
461 views

I’m running Keycloak in a Docker container and have set up an Nginx reverse proxy to make it accessible at docsbot.agency. My current setup allows access via HTTP, but I need to enable HTTPS using an ...
Joker-11011's user avatar
0 votes
0 answers
72 views

The java application I'm working used to call an inhouse rest service via http which delivers a PDF file as a response. The rest service has now changed it's url and switched from http to https. I ...
Lars's user avatar
  • 1
0 votes
0 answers
59 views

I want to change the OpenBMC Event service Subscription functionality from HTTPS to the HTTP method that does not require certificates, to facilitate sending Events and receiving Event information via ...
Hong's user avatar
  • 1
0 votes
1 answer
53 views

In python's urllib3, can one retrieve the server certificate after making a successful HTTPS request? If so, how?
Seva Alekseyev's user avatar
0 votes
1 answer
107 views

I am trying to use a proxy with auth in Swift. I finally got it working using NWConnection. And I can see from my proxy server that it's actually getting the request from my iOS app when I call this ...
Ahmed Zaidan's user avatar
2 votes
1 answer
2k views

Our website has an active SSL, no mixed content and HTTPS redirection enforced, however if I type in the URL as "http://example.com/products" or "http://example.com.com/products/", ...
oldhickory's user avatar
4 votes
1 answer
299 views

I have a spring-boot backend and wanted to create a SSE endpoint, sample: @CrossOrigin(origins = "http://localhost:4200") // Angular Dev-Server @GetMapping(path = "/stream-flux", ...
Tony's user avatar
  • 540
0 votes
0 answers
83 views

I install the curl on the arm cross compile environment. But the following error occurred curl https://sasca37.tistory.com curl: (1) Protocol https not supported or disabled in libcurl The below is ...
andy's user avatar
  • 117
2 votes
0 answers
126 views

My front-end application uses OKTA and passes the access token to my backend. The backend then parses the token information to get user information and check whether the token is expired. ...
Spo's user avatar
  • 21
0 votes
1 answer
87 views

I have a webpage served over https which should display an image created via the Google Maps Static API. I try to create the map image by making a request to the API via http like this: <img src=&...
pazukdev's user avatar
  • 133
1 vote
0 answers
43 views

Is the TLS version used to access a site is decided by application or browser. How to confiure an application to ensure that it uses atleast certain minimum version of TLS for your web application ...
akarahman's user avatar
  • 378
1 vote
1 answer
138 views

Background: I have a Scala (with AKKA-http) webserver, that is able to talk to instances of itself (de-centralised model). I recently upgraded the server to use SSL and https. I have run into a ...
Kris Rice's user avatar
  • 923
1 vote
1 answer
316 views

There does not seem to be a definitive answer to this. I have seen other questions posted here where people suggest using nginx to proxy ssl and run the next app as http. I've also seen posts about --...
Kris Rice's user avatar
  • 923
0 votes
0 answers
38 views

I am trying to check if my server is on/off from an Android application. From my MainActivity I use this code snippet: try { new CheckServer().start(); } catch (MalformedURLException e) { ...
carl's user avatar
  • 406
1 vote
0 answers
124 views

My Blazor client server solution took a lot of fussing to get the cert just to be recognized. // These commands allow you to reset when needed //dotnet dev-certs https --trust //dotnet dev-certs https ...
JWP's user avatar
  • 6,985
-1 votes
1 answer
57 views

I'm creating a website with no JavaScript, and I'm puzzled about how platforms like Dread manage to redirect users (e.g., in a queue system) pending a server response. Here's what I want to achieve: ...
m rolland's user avatar