windows-server-2012

MSIS0038: SAML Message has wrong signature - ADFS error

余生颓废 提交于 2019-12-11 02:41:21
问题 I was getting this strange error in Windows Server 2012 even after installing the right Signature certificates for SP in ADFS. The error logs shows something like this : The Federation Service encountered an error while processing the SAML authentication request. Additional Data Exception details: System.IdentityModel.SignatureVerificationFailedException: MSIS0038: SAML Message has wrong signature. Issuer: 'XXX-XXX-XX'. at Microsoft.IdentityServer.Protocols.Saml.Contract.SamlContractUtility

Error installing TFS 2010 in Windows Server 2012

时间秒杀一切 提交于 2019-12-11 02:13:27
问题 When I try to install Team Foundation Server 2010 on Windows Server 2012, It get following errors: Error [ Application Tier ] TF255120: Compatibility mode for Internet Information Services (IIS) 6.0 is not enabled. Team Foundation Server requires this on this operating system. Error [ Application Tier ] TF255456: You must configure Internet Information Services (IIS) to use the Static Content component. Team Foundation Server requires the Static Content component in IIS. Error [ Application

Getting WSO2 IOT Server running as a Windows Service

混江龙づ霸主 提交于 2019-12-11 00:49:46
问题 I have installed WSO2 IOT Server on Server 2012R2. I installed YAJSW wrapper and configured it per WSO2 instructions. When I fire off runConsole.bat to configure the Windows service, I get the following error. I have JAVA_HOME & CARBON_HOME set. It looks like the process cannot find files, but the directory exists and there are files files there. c:\Program Files\yajsw\bat>call setenv.bat "java" -Xmx30m -Djna_tmpdir="c:\Program Files\yajsw\bat\/../tmp" -Djava.net.pref erIPv4Stack=true -jar "c

.svc files in Windows Server 2012 respond with “405 Method not Allowed”

☆樱花仙子☆ 提交于 2019-12-10 23:59:41
问题 When I copied my Websites using .svc-ASP.Net 4 Services from Windows Server 2008 to Windows Server 2012, I get a 405 Response for every .svc-Request being triggered by a Silverlight application. In Windows Server 2008 everything worked perfectly. I tried aspnet_regiis and the WCF Register (ServiceModelReg). The file .svc is also included into the Module Mappings in IIS 8. I also uninstalled ASP.NET 4.5+3.5 and reinstalled it and the WCF HTTP Hosting. All Websites are affected by this

Windows Firewall state different between Powershell output and GUI

本小妞迷上赌 提交于 2019-12-10 13:01:45
问题 When I run Get-NetFirewallProfile I see that the Domain profile Enabled is set to True. However, when I go to Control Panel > Windows Firewall the Domain profile is turned off by the GPO. Also, in Windows Firewall with Advanced Settings, the Firewall state is "Off". I'm not sure why the powershell output is different than the GUI. Please help! Thanks, aB 回答1: According to this article: https://social.technet.microsoft.com/Forums/windowsserver/en-US/4d8678e2-5653-4fd2-b275-62e0e7008ff9

What could cause “The certificate key algorithm is not supported” exception on a GET web request

老子叫甜甜 提交于 2019-12-10 04:04:56
问题 We are trying to connect to the facebook api from a asp .net MVC 4.6 app using a standard webrequest. Everything works fine on all but one of our servers. The server in question is running windows 2012 and IIS 8. On this particular server we get the following exception when running a GET webrequest to facebook. The certificate key algorithm is not supported. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more

restricting IP security

回眸只為那壹抹淺笑 提交于 2019-12-08 11:25:44
问题 Having an issue with restricting IP security. I have made a web.config file and placed it in the folder I am trying to restrict see below: <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <security> <ipSecurity allowUnlisted="false" enableProxyMode="true" denyAction="Forbidden"> <clear /> <add ipAddress="123.456.789" allowed="true" /> </ipSecurity> </security> </system.webServer> </configuration> I have also adjusted the applicationHost.config to: <section name=

Module being imported from another Python install

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-08 10:48:43
问题 I'm running multiple installs of Python on Windows Server 2012. I can probably find a way to work around this, but I'm curious as to what is going on. I'm wary about radically changing the installs in case I break other people's Python scheduled tasks that I may not be aware of. (All the code boxes below are PowerShell). PS C:\> C:\Python34\Scripts\pip.exe list jdcal (1.0) pip (7.1.2) setuptools (12.0.5) virtualenv (13.1.2) Although this Python 3.4 install doesn't have Django installed, it

Failed to get AppContainer info: Unable to enumerate AppContainer

▼魔方 西西 提交于 2019-12-08 08:47:24
问题 This issue came after @EricLaw explained me what was the problem when I could not receive a response back from my REST request. Essentially the request was just returning blank, then I found out that if Fiddler was not running, the application works just fine. As Eric explains there are some security issues that I should consider when developing/debugging in Windows Server 2012. I followed the instructions and installed the suggested utility but when I click in the AppContainer Loopback

405 Error upon moving MVC 4 application and WCF service to IIS 8

早过忘川 提交于 2019-12-08 07:26:51
问题 Previously a MVC 4 application was hosted in windows 2003 server asp.net 4.0.30319 and the WCF Service was hosted there as well. Anonymous access was checked along with IUSR_ account and the checkbox for Integrated Windows Authentication. Now Upon moving the Website and Service both to Windows 2012 Server ( IIS 8 ) Hitting the Webservice works fine: http://exampleservicetest.test.com/Service.svc?wsdl Problem: Pulling up the website which calls the service returns a 405 error put below.