Posts

Showing posts with the label Iis

"Access To The Registry Key 'Global' Is Denied" When Accessing Performance Counters

Answer : I found the solution. Whereas various links around the Internet tell you to use the identity IIS APPPOOL\DefaultAppPool , that is NOT the full story. That will only work if you are in fact assigning your applications to an app pool named "DefaultAppPool". This link at ServerFault has the answer. You must use the name of your app pool. In my case, the app pool's name was "staging", so the correct user was IIS APPPOOL\staging . Putting this user in the Performance Monitor Users group fixed my issue.

Cannot Start Service W3SVC On Computer '.'

Answer : Go to Task Manager --> Processes and manually stop the W3SVC process. After doing this the process should start normally when restarting IIS I found the solution: Run -> appwiz.cpl -> Turn windows features on or off -> Uncheck "Internet Information Services" and "Windows Process Activation Service" Restart your machine. Run -> appwiz.cpl -> install both "Internet Information Services" and "Windows Process Activation Service" Reference I came across the same problem. It got solved with following steps: Go to admin DOS command prompt -- ( Ctrl + X ) will give the option to go to admin DOS prompt use command " iisreset " This will solve the problem.

(413) Request Entity Too Large | UploadReadAheadSize

Answer : That is not problem of IIS but the problem of WCF. WCF by default limits messages to 65KB to avoid denial of service attack with large messages. Also if you don't use MTOM it sends byte[] to base64 encoded string (33% increase in size) => 48KB * 1,33 = 64KB To solve this issue you must reconfigure your service to accept larger messages. This issue previously fired 400 Bad Request error but in newer version WCF started to use 413 which is correct status code for this type of error. You need to set maxReceivedMessageSize in your binding. You can also need to set readerQuotas . <system.serviceModel> <bindings> <basicHttpBinding> <binding maxReceivedMessageSize="10485760"> <readerQuotas ... /> </binding> </basicHttpBinding> </bindings> </system.serviceModel> I was having the same issue with IIS 7.5 with a WCF REST Service. Trying to upload via POST any file above 65k...

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

Answer : Solution 1: When configured with two or more hostnames, the correct virtual host name and username must both be sent in the username by the ftp client. Separate the site name and user with the vertical line symbol: | www.example.com|MyUser So, in your FTP Client use this for the username: ftp.telefonievergelijken.nl|tv_ftp Solution 2: It appears that you're attempting to connect to the FTP site using a hostname which is not currently configured in any of the bindings to the FTP site within IIS. I base this only on the error output from Filezilla which you have included, as you have censored the hostname (even in example form) from the output, so there isn't much more to go on. You'll need to configure a binding on the FTP site which matches the hostname you are using to connect to the FTP site (whether that be from Filezilla or any other FTP client). EDIT: From your updated post information, I notice that your bindings for the FTP site are indeed in...