https
12 TopicsWhere do I propose a feature request to show detailed information on HTTP status codes in dev tools?
I think it'd be neat if the `Status Code` section of the Microsoft Edge DevTools had a link to MDN for a specific status code, and even showed a short "blurb" detailing what a status code means. Is this the right forum to propose that feature, or should we do it elsewhere?992Views0likes1Commentusing IIS URL Rewrite module for HTTP to HTTPS
I have installed the URL Rewrite module in IIS 10 to redirect HTTP calls to HTTPS, and I have attempted to set up the redirect but have not gotten it working on one server. Here is the issue: Server1 with IP 1.1.1.1is running IIS with an https enabled website. An outside DNS has assigned gohere.comto IP 1.1.1.1. When users attempt to get to http://gohere.comthe connection times out and it is not redirected to https://gohere.com Accessing https://gohere.comworks without an issue. Here is the rewrite code from the web.config file. <rewrite> <rules> <rule name="HTTP to HTTPS" patternSyntax="Wildcard" stopProcessing="true"> <match url="http://gohere.com*" /> <conditions> <add input="{HTTPS}" pattern="^OFF$" /> </conditions> <action type="Redirect" url="https://gohere.com" appendQueryString="false" /> </rule> </rules> </rewrite> I have also tried using match url=".*" Any ideas on what might be causing the issue? Or something to try to get it working? Thanks! Jim3.1KViews0likes2CommentsWindows 11 RM Https
Hello! I am trying to enable remote commands via Powershell on a Windows 11 Enterprise N in Azure.I have a script which if I run locally works well but if from a pipeline in Azure Devops I got: Machine="localhost"><f:Message><f:ProviderFault provider="Config provider" path="%systemroot%\system32\WsmSvc.dll"><f:WSManFault xmlns:f="http://schemas.microsoft.com/wbem/wsman/1/wsmanfault" Code="2150859113" Machine="3waegf4b2x"><f:Message>WinRM firewall exception will not work since one of the network connection types on this machine is set to Public. Change the network connection type to either Domain or Private and try again. </f:Message></f:WSManFault></f:ProviderFault></f:Message></f:WSManFault> At line:116 char:17 Tried all of the command which I can found on the net to fix it but nothing seems to help: Get-NetConnectionProfile | Where-Object { $_.NetworkCategory -match "Public" } | Set-NetConnectionProfile -NetworkCategory Private; Enable-PSRemoting -SkipNetworkProfileCheck -Force; Set-NetFirewallRule -Name "WINRM-HTTP-In-TCP-PUBLIC" -RemoteAddress Any; Set-Item wsman:\localhost\Client\TrustedHosts -value * -Force Is there any new "thing" in Windows 11 which I should take care of to make this work? What do I miss here? Thanks, Attila565Views0likes0CommentsLogging API HTTPS URIs
Hello I run a local Java applet which opens aSunAwtFrame window and I click a button there to download a csv. I want to see the URI of this download as it should be a permanent link as part of an API. The problem is that it is under HTTPS, certificates and perhaps via localhost. Is there a way to get that URI? Thanks!414Views0likes0CommentsIIS 10: how to enable both HTTPS+HTTP bindings on one site to access the site from internet or local
Hi, I run an IIS web site having HTTPS binding for host name = "opendata.sperling.cz" at port 443. It is accesible from internet, as the name is revorderd in DNS and tehre is a rule in our router's firewall to reach the site. This is fine. What I would like achieve is to be able to acces the site from local network or even localhost using HTTP port. I have added a binding without any host name using port 91, but it doesnot work. I have tried to access it via http://localhost:91/ or http://192.168.10.20:91/, but non of it worked. It always redirected to https://localhost and disaplayed an SSL error, as the HTTPS host name does not match the entered. What is wrong? Is it even possible? Thanks. Milan653Views0likes0Comments[SOLVED] MECM 2103 - Clients showing offline and no currently logged on users
Hello guys, Since two days ago, our Windows 10 client computers stopped reporting currently logged on users and are showing offline, although they're active. Our setup is HTTPS only and after reading a lot of Internet suggestions, I am having the following errors to share: ClientIDManagerStartup.log shows no errors. LocationServices.log shows: Both AAD token auth and client PreAuth are not ready. Cannot get CCM token Client doesn't have PKI issued cert and cannot get CCM access token. Error 0x8000ffff (...) [CCMHTTP] ERROR INFO: StatusCode=403 StatusText=Forbidden I do have a client certificate installed on all workstations using machine name, requested to our internal CA. CcmMessaging.log shows: Status Agent hasn't been initialized yet. Attempting to create pending event. Successfully queued event on HTTP/HTTPS failure for server (...) Post to https://(...)/ccm_system/request failed with 0x87d00231. Client doesn't have PKI issued cert and cannot get CCM access token. Error 0x8000ffff Any ideas? Kind regards, BrunoSolved13KViews0likes1CommentNew Feature | Automatic HTTPS switching added to Edge browser
Automatic HTTPS Enables support for Automatic HTTPS, which switches connections to websites from HTTP to HTTPS. The feature can then be turned on/off or further configured at edge://settings/privacy. – Mac, Windows, Linux #edge-automatic-https Microsoft Edge Version 92.0.877.0 (Official build) canary (64-bit) edge://flags/#edge-automatic-https2.2KViews4likes0CommentsMicrosoft Stream CORS Error
Hi. I get a list of microsoft stream video json with this url. https://aaea-1.api.microsoftstream.com/api/videos?NoSignUpCheck=1&api-version=1.3-private&$top=10&$orderby=name&$expand=creator&$skip=0 I tried $.ajax({ type: 'POST', headers: { 'Access-Control-Allow-Origin': '*' , 'Access-Control-Allow-Credentials': true , 'Access-Control-Expose-Headers': 'Date, Server, Content-Type, Content-Length' , 'Access-Control-Allow-Methods': 'OPTIONS, GET, POST, HEAD' , 'Access-Control-Allow-Headers': 'Content-Type, User-Agent, If-Modified-Since, Cache-Control, Range'}, url: "https://aaea-1.api.microsoftstream.com/api/videos?NoSignUpCheck=1&api-version=1.3-private&$top=10&$orderby=name&$expand=creator&$skip=0", async: true }).done(function (data) { console.log(data); console.log('asd'); }).fail(function (data, textStatus, errorThrown) { console.log(data); }); But this causes errors. Access to XMLHttpRequest at 'url' from origin 'my url' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. So I tried many ways. I changed the type to jsonp and crossdomain to true. Then this time,, jquery.min.js:2 Cross-Origin Read Blocking (CORB) uses MIME-form application/json to respond to cross-source 'url' has been blocked. For more information, visit https://www.chromestatus.com/feature/5629709824032768. An error like this has occurred. It looks like a failure, but the status is 200. and error message : TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them at Function.invokeGetter I have createdmy local http://localhost:44375 It's really hard. I can't find a way. Help me please..Solvedhttps auto upgrade/https only (like Firefox's one)
I just want to ask a feature, the feature is juste like the one Firefox is adding to Firefox the mode https upgrade or https only (directly built into the browser with a parameter), like that we don't have to rely on extension who maintain a list of our browser habits. thanks715Views1like0CommentsGoogle Chrome limits the validity of SSL Certificates to one year
Dear Edge developers Google has recently announced to limit the validity of certificate to one year (398 days) starting in September 2020 (seehttps://www.certisur.com/en/google-chrome-limits-the-validity-of-ssl-certificates-to-one-year/) Is this already planned to be addressed in Edge Chromium? If yes, will there be a policy to exclude certain domains from this validation? Background: In our company we use 2 year certificates (released by our internal PKI) and we want to understand the impact once the new validity check is available in Edge Chromium as well. Regards, StephanSolved24KViews1like9Comments