Quantcast
Channel: All Forums
Viewing all 28504 articles
Browse latest View live

Upload files with 1GB or more

$
0
0

Hello,

I want to upload files large files using c#.net and iis7 server, but at the moment, the maximun that I can upload is 30 megas.

I already change the maxAllowedContentLength and the maxRequestLength, to allow bigger files, but nothing seems to work.

I already change the limits in IIS, but still, doesn't work.

Some links that I have followed:

https://blogs.msdn.microsoft.com/friis/2013/06/19/uploading-large-file-to-iis-7-5-or-8-using-file-input-element/

https://stackoverflow.com/questions/3853767/maximum-request-length-exceeded/

https://forums.asp.net/t/1680176.aspx?httpRuntime+maxRequestLength+vs+requestLengthDiskThreshold+

https://www.webtrenches.com/iis7-file-upload-size-limits/

Anymore configuration that I am missing ?

Any help is much appreciated.


Anonymous access with hidden folders

$
0
0

Dear all,

I want to setup an FTP with IIS with anonymous access.

I'm struggling to get the correct behavior for the FTP which is :

  • - Anonymous users can upload files but when they do the folder then gets hidden.
  • - To retrieve the files they need to have the full path to the folder/files.

If someone has an idea on how to do this on Windows server 2016.

Thanks a lot!

Invoke-Command Enable-IISConfig Password Invalid Error

$
0
0

Hi Guys,

I'm having a bit of trouble with some PS code I've been working on.  The error I'm getting is:

Invalid password
+ CategoryInfo : NotSpecified: (:) [Enable-IISSharedConfig], ArgumentException
+ FullyQualifiedErrorId : System.ArgumentException,Microsoft.IIS.Powershell.Commands.EnableIISSharedConfigCommand
+ PSComputerName : ISSERVER06

Here is my code and I get the same error for all the servers.

$serverlist = @("ISSERVER04","ISSERVER05","ISSERVER06")$sharedconfig = "\\DOMAIN\dfs\IISCentralConfig"$Credentials = (Get-Credential -Message "Please enter the Login credentials for app pool inc domian name").GetNetworkCredential()$username = $Credentials.Domain + "\" + $Credentials.UserName$password = $Credentials.SecurePassword$sharedconfigpassword = Read-Host -AsSecureString -Prompt "Please Enter a password for encrypting the IIS config."


Export-IISConfiguration -PhysicalPath "C:\IISExport" -KeyEncryptionPassword $sharedconfigpassword

Move-Item -Path "C:\IISExport\*" -Destination $sharedconfig -Force


#Enable IIS Shared Configuration for each web server

$sb2 = {
            Enable-IISSharedConfig -PhysicalPath $args[0] -UserName $args[1] -Password $args[2] -KeyEncryptionPassword $args[3]

}

foreach ($server in $serverlist){

Invoke-Command -ComputerName $server -ArgumentList $sharedconfig,$username,$password,$sharedconfigpassword -ScriptBlock $sb2 -Force

}

I've tested manually on each web server with the credentials and they work just fine.  Also, if I run Enable-IISConfig on the local server I'm working from it works so I believe its the invoke-command.  I've ran $password.GetType and I can see its a SecureString.

The account I'm running this PS script from is my domain admin account too.

Any ideas,

Appreciate the help.

Brad

First Redirect Rule Overwritten by 2nd Rule

$
0
0

Hi all

I have this REDIRECT rule set up:

https://mydomain/sites/somesite/subsite/doclibrary/page.html to:

https://tenant.sharepoint.com/sites/SiteCollection/Subsite/SitePages/page.aspx

with Exact Match, Matches the pattern, Ignore Case, and Permanent Redirect type settings.

I have a 2nd REDIRECT rule set up which follows this:

/somesite/subsite to:

https://tenant.sharepoint.com/sites/SiteCollection/Subsite{R:2}

with Ignore Case, Matches the Pattern, Wildcards and Permanent settings.

The 2nd Rule appears to be overriding the first one. How can I stop this?

Thanks

Andrew

Problems converting apache's ProxyPass and ProxyPassReverse to IIS

$
0
0

Hello!

I try to start using IIS instead of Apache for applications and so far it has been a treat.

But now im stuck trying to create ProxyPass functionality as in apache for IIS.

Config in apache:

ProxyPass /image/ http://127.0.01:8080/

ProxyPassReverse /image/ http://127.0.0.1:8080/

What above creates is a possibility for me to publish stuff locally ex: <img src"/image/ flower.jpg"> onhttps://serverurl/index.html

from other platform and run this thru Apache on SSL.

I would like to perform the same on IIS, but is this possible?

Ive come so far to try create a reverseproxyonboundrule and one revereproxyoutboundrule:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="ReverseProxyInboundRule1" stopProcessing="false">
<match url="/image/(.*)" ignoreCase="true" />
<action type="Rewrite" url="http://127.0.0.1:8080/{R:1}" />
</rule>
</rules>
<outboundRules>
<rule name="ReverseProxyOutboundRule1" preCondition="">
<match filterByTags="A, Form, Img" pattern="http://127.0.0.1:8080/(.*)" ignoreCase="false" />
<action type="Rewrite" value="https://serverurl/{R1}" />
</rule>
<preConditions>
<preCondition name="ResponseIsHtml1">
<add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
</preCondition>
</preConditions>
</outboundRules>
</rewrite>
</system.webServer>
</configuration>

But all above is giving me is an broken link for the image...

If I input the original URL in the browser locally on the server: http://127.0.0.1:8080/flower.jpg it loads the image. (Source is a node app)

All I want is to know that this is possible for IIS and how. I need it in my "toolbox" and it drives me nuts.

BR / Emanuel

MSdeploy to Server 2016/IIS 10 Unauthorized

$
0
0

Setup:

We use a script employing msdeploy to deploy our applications to remote servers. This works fine when we deploy to Server 2008R2 servers with IIS 7.5. However, when trying to utilize this script to deploy to Server 2016 with IIS 10 we always get the following error. I have tested versus several 2016 servers with IIS 10. The account we use to run the command is Administrator on both servers

This is the command utilized:

msdeploy.exe' -verb:sync -source:package="<SourceRedacted>" -dest:auto="<DestRedacted>",wmsvc="<Server.domain>",AuthType='negotiate',includeAcls='False' -setParamFile:<ParamFileRedacted> -allowuntrusted -verbose

Error Code: ERROR_USER_UNAUTHORIZED
More Information: Connected to the remote computer ("<Server.domain>") using the Web Management Service, but could not authorize. Make sure that you are using the correct user name and password, that the site you are connecting to exists, and that the credentials represent a user who has permissions to access the site. Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_USER_UNAUTHORIZED.
Error: The remote server returned an error: (401) Unauthorized.

Interesting to note when explicitly entering the username/password it does work

msdeploy.exe' -verb:sync -source:package="<SourceRedacted>" -dest:auto="<DestRedacted>",wmsvc="<Server.domain>",username='<Admin>',password='<Password>',includeAcls='False' -setParamFile:<ParamFileRedacted> -allowuntrusted -verbose

So obviously something with the 'negotiate' fails, I have tried changing to 'ntlm' but run into the same error.

Logs don't seem to offer me any clue further for resolution, any ideas here?

How do I Debug Custom Rewrite Module?

$
0
0

Is any way to debug my custom rewrite rules with visual studio 15.9?

I have refer this link to create providet into IIS 

I want to right custom rules base on url pattern but I can able to debug my code any how.

Please help me :)

Thanks in advance.

 

IIS Deadlocked

$
0
0

<div class="wrapper"> <div id="ng-view"> <div class="grid-container"> <div class="row"> <div> <div> <div class="analysisSummarySection"> <div id="analysisSummaryGroup"> <div class="summaryGroup mt20 normalText" id="errorsAnalysisSummarySection"> <div class="group mt20">

We did a crash dump analysis on w3wp and following are the results. Is it something related to Microsoft or is it our software code? The application is in Classic ASP and the application pool fails to respond to a ping only for one client.

Detected a serious critical section related problemin w3wp.exe__Ashutosh__PID__6224__Date__04_23_2019__Time_10_35_17AM__191__Manual Dump.dmp
Lock at combase!g_MTAInitLock+14 owned by thread 69 isDeadlocked with lock at combase!g_mxsSingleThreadOle+14 owned by thread105

Impact analysis

85.97% of threads blocked

(Threads 275767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548)

The following functions are involved in the root cause
combase!COleStaticMutexSem::Request+17 [d:\blue\com\combase\common\olesem.cxx @ 197]

The following modules are involved in the root cause
C:\Windows\System32\combase.dll from Microsoft Corporation

</div> </div> </div> </div> </div> </div> </div> </div> </div> </div>


enumerate connection strings

$
0
0

I wrote a vbscript to enumerate all the virtual directories of websites on our web server I have now been asked to add what databases the website are using to that script. In the GUI it's called the " Connection String " but , I can't find where that information is stored. Does anyone know what object do I need to connect to and what is the name of the item that holds that information or is there any example code I can reference? Thank you for any help I can get it will be greatly appreciated.

Encountering error 401 1 2148074254 while accessing the webservice from webserver in NLB environment

$
0
0

Hello All,

Hello All,


I have an ASP.Net web application hosted in NLB infrastructure with 2 web servers and 2 app servers. I have 3 web services running in the application server with windows authentication enabled. Other settings as follows

Anonymous authentication is disabled
Basic authentication is disabled
Digest authentication is disabled
ASP.NET Impersonation is disabled.
Windows authentication is enabled
Negotiate is on priority with both Negotiate, NTLM is enabled.
using custom identity : DOmain\UserID2
useAppPoolCredentials set to true
useKernelMode set to False
Registered serviceprincipa1Names for CN-UserID2.CN-Users.DC-XX.DC-XXXX.DC-COM:

HTTP/AppServerName2 : 10443

HTTP/AppServerName1 : 10443

HTTP/AppServerName2 : 443

HTTP/AppServerName1 : 443

 

As per my observation, user encounter error 401 1 2148074254 when website access a specific webservice(lets say webservice 1). When user access the same function again then there is no recurrence of 401 error.

Noticed the Start Mode was set to “On Demand” mode in app pool settings. Tried changing the Start Mode to “Always Running” and Idle Time-Out to “0” but still encountered the same error and the same pattern.

Environment used

Server: Windows Server 2012 R2 standard edition.
IIS Version: 8.5  Extract from IIS log

2019-05-07 06:16:27 172.29.7.211 POST /SecSvc/SecWebService.asmx - 10443 - XXX.XX.XXX.XXX Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.42000) - 401 1 2148074254 2906

2019-05-07 06:16:27 172.29.7.211 POST /SecSvc/SecWebService.asmx - 10443 - XXX.XX.XXX.XXX Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.42000) - 401 1 2148074254 3453

2019-05-07 06:16:30 172.29.7.211 POST /SecSvc/SecWebService.asmx - 10443 domain\UserID1 XXX.XX.XXX.XXX Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.42000) - 200 0 0 3281

Barça v Liverpool

IIS SMTP Not always use TLS for outbound

$
0
0

Hello,

I have an IIS SMTP email relay server configured to use TLS for outbound traffic from inside my cage.  I have a couple customers that won't accept TLS traffic.  Is there any way to configure the IIS server to try sending emails over un-encrypted methods if encryption methods failed?

Using Windows 2012 R2.

Thanks.

Dan

2012 R2 IIS 8.5 and 4.7.2 framework

$
0
0

I have been trying to find information on how to get IIS 8.5 on a Windows 2012R2 server to recognize 4.7.2 framework so I can set up the application pool for 4.7.2.  Not finding consistent information.  I have 4.7, 4.71, 4.72 installed on the server.

Can this be done?  If so how?

Thanks!

IIS server control of browser cache expiration timeout

$
0
0

We're running Windows server 2012, IIS 7, a classic ASP portal serving up online training. We sometimes find learners can't properly view online content without clearing browser cache.

Is there an IIS 7 option to serve up files with a cache expiration timeout, like 3 hours? 

attachments

$
0
0

As with this page, I cannot find how to send an attachment with a reply post.
Please advise.

Ron


IIS 10 App Pools using high memory

$
0
0

Good afternoon,

I am having a really weird issue and I have been trying to Google answers for the last few days and nothing I am coming up with is the same as what I am encountering. 

It is also kind of hard to explain:
So here is the low down -
I have multiple web servers hosting a bunch of different user portals/web sites. 

Each of my servers has 2x web server VM's that I use to load balance the web portals. 

All of my servers are that have web servers are running perfectly normal except for 1 server.

This one server that is causing me problems has give or take 75 App Pools on it.
Process Hacker is telling me almost every single one of these app pools is doing something. They are also using upwards of 180MB of memory (Which is normal for a site that is actually in use). However, there is no CPU load on this and when I view a site there is no active requests being sent to the site.

On any of my other web servers process hacker shows little to no activity on all the sites and they hover around 4mb of memory being used.

This is what PH looks like on my server using a bunch of memory:
https://imgur.com/OEgIhQ5


This is what my behaving servers look like:

https://imgur.com/0I2Hrw6

The first photo is the w3wp process just being active and using a ton of memory, but nothing is actually going on.
It seems to be almost all the app pools are "pretending" to do things.
I have rebooted this server a couple of times at night to see if it fixes the issue, but as soon as it comes back on all the app pools just start running and chewing up memory. 

I have also just tried killing the w3wp process and also stopping and restarting each app pool individually with no luck.

Thank you for any help you might be able to provide.

Not able to install PHP Manager (iis8)

$
0
0

Dear all,

I have installed .NET framework 3.5 Features and HTTP Activation under [Roles and Features]

But I still get the following error message when I installing PHP manager. (via Web Platform Installer 5.1)

Any idea?

DownloadManager Information: 0 : Loading product xml from: https://aka.ms/webpifeed51
DownloadManager Information: 0 : https://aka.ms/webpifeed51 responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Location: https://webpifeed.blob.core.windows.net/webpifeed/5.1/WebProductList.xml
Server: Kestrel
Request-Context: appId=cid-v1:26ef1154-5995-4d24-ad78-ef0b04f11587
X-Response-Cache-Status: True
X-Powered-By: ASP.NET
Content-Length: 0
Expires: Wed, 08 May 2019 01:48:35 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Wed, 08 May 2019 01:48:35 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000 ; includeSubDomains


DownloadManager Information: 0 : https://webpifeed.blob.core.windows.net/webpifeed/5.1/WebProductList.xml responded with 304
DownloadManager Information: 0 : Response headers:
HTTP/1.1 304 The condition specified using HTTP conditional header(s) is not met.
Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-request-id: 5d75f05e-f01e-00b9-0d40-05db67000000
x-ms-version: 2009-09-19
Date: Wed, 08 May 2019 01:48:35 GMT


DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\882714282.xml.temp
DownloadManager Warning: 0 : Could not resolve keyword ID 5nine
DownloadManager Warning: 0 : Could not resolve keyword ID Security
DownloadManager Warning: 0 : Could not resolve keyword ID 5nine
DownloadManager Warning: 0 : Could not resolve keyword ID Security
DownloadManager Warning: 0 : Could not resolve keyword ID Backup
DownloadManager Warning: 0 : Could not resolve keyword ID Portal
DownloadManager Warning: 0 : Could not resolve keyword ID Backup
DownloadManager Warning: 0 : Could not resolve keyword ID Portal
DownloadManager Warning: 0 : Could not resolve keyword ID Backup
DownloadManager Warning: 0 : Could not resolve keyword ID Resource Provider
DownloadManager Warning: 0 : Could not resolve keyword ID VMWare
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID VMWare
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID VMWare
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID Usage
DownloadManager Warning: 0 : Could not resolve keyword ID Billing
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID Usage
DownloadManager Warning: 0 : Could not resolve keyword ID Billing
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID Usage
DownloadManager Warning: 0 : Could not resolve keyword ID Billing
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID Usage
DownloadManager Warning: 0 : Could not resolve keyword ID Billing
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Cruiser
DownloadManager Warning: 0 : Could not resolve keyword ID Billing
DownloadManager Warning: 0 : Could not resolve keyword ID Showback
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Cruiser
DownloadManager Warning: 0 : Could not resolve keyword ID Billing
DownloadManager Warning: 0 : Could not resolve keyword ID Showback
DownloadManager Warning: 0 : Could not resolve keyword ID Terawe
DownloadManager Information: 0 : Filtering by current OS
DownloadManager Information: 0 : Loading product xml from: https://aka.ms/webapplicationlist
DownloadManager Information: 0 : https://aka.ms/webapplicationlist responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Location: https://webgallery.microsoft.com/feed/webapplicationlist.xml
Server: Kestrel
Request-Context: appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e
X-Response-Cache-Status: True
X-Powered-By: ASP.NET
Content-Length: 0
Expires: Wed, 08 May 2019 01:48:39 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Wed, 08 May 2019 01:48:39 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000 ; includeSubDomains


DownloadManager Information: 0 : https://webgallery.microsoft.com/feed/webapplicationlist.xml responded with 304
DownloadManager Information: 0 : Response headers:
HTTP/1.1 304 Not Modified
ETag: "057d0e14b1d51:0"
Date: Wed, 08 May 2019 01:48:39 GMT


DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\1138067037.xml.temp
DownloadManager Information: 0 : Filtering by current OS
DownloadManager Information: 0 : Sucessfully loaded the feed 'https://aka.ms/webapplicationlist' after preprocessing, location on disk: 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\preprocessor\1138067037.xml'
DownloadManager Information: 0 : Loading product xml from: https://webpifeed.blob.core.windows.net/webpifeed/MediaProductList.xml
DownloadManager Information: 0 : https://webpifeed.blob.core.windows.net/webpifeed/MediaProductList.xml responded with 304
DownloadManager Information: 0 : Response headers:
HTTP/1.1 304 The condition specified using HTTP conditional header(s) is not met.
Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-request-id: 5d75fa5b-f01e-00b9-2340-05db67000000
x-ms-version: 2009-09-19
Date: Wed, 08 May 2019 01:48:41 GMT


DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\1733029559.xml.temp
DownloadManager Information: 0 : Filtering by current OS
DownloadManager Information: 0 : Sucessfully loaded the feed 'https://webpifeed.blob.core.windows.net/webpifeed/MediaProductList.xml' after preprocessing, location on disk: 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\preprocessor\1733029559.xml'
DownloadManager Information: 0 : Loading product xml from: https://webpifeed.blob.core.windows.net/webpifeed/ToolsProductList.xml
DownloadManager Information: 0 : https://webpifeed.blob.core.windows.net/webpifeed/ToolsProductList.xml responded with 304
DownloadManager Information: 0 : Response headers:
HTTP/1.1 304 The condition specified using HTTP conditional header(s) is not met.
Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-request-id: 5d75fa99-f01e-00b9-5a40-05db67000000
x-ms-version: 2009-09-19
Date: Wed, 08 May 2019 01:48:41 GMT


DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\-1148081224.xml.temp
DownloadManager Information: 0 : Filtering by current OS
DownloadManager Information: 0 : Sucessfully loaded the feed 'https://webpifeed.blob.core.windows.net/webpifeed/ToolsProductList.xml' after preprocessing, location on disk: 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-1148081224.xml'
DownloadManager Information: 0 : Loading product xml from: https://webpifeed.blob.core.windows.net/webpifeed/EnterpriseProductList.xml
DownloadManager Information: 0 : https://webpifeed.blob.core.windows.net/webpifeed/EnterpriseProductList.xml responded with 304
DownloadManager Information: 0 : Response headers:
HTTP/1.1 304 The condition specified using HTTP conditional header(s) is not met.
Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-request-id: 5d75faed-f01e-00b9-1f40-05db67000000
x-ms-version: 2009-09-19
Date: Wed, 08 May 2019 01:48:41 GMT


DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\2036870298.xml.temp
DownloadManager Information: 0 : Filtering by current OS
DownloadManager Information: 0 : Sucessfully loaded the feed 'https://webpifeed.blob.core.windows.net/webpifeed/EnterpriseProductList.xml' after preprocessing, location on disk: 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\preprocessor\2036870298.xml'
DownloadManager Information: 0 : Sucessfully loaded the feed 'https://aka.ms/webpifeed51' after preprocessing, location on disk: 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\preprocessor\882714282.xml'
DownloadManager Information: 0 : Getting ratings file from http://go.microsoft.com/?linkid=9752395
DownloadManager Information: 0 : http://go.microsoft.com/?linkid=9752395 responded with 302
DownloadManager Information: 0 : Response headers:
HTTP/1.1 302 Moved Temporarily
Location: http://www.microsoft.com/web/handlers/WebPI.ashx?command=getatomfeedwithavgratingquery
Server: Kestrel
Request-Context: appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e
X-Response-Cache-Status: True
X-Powered-By: ASP.NET
Content-Length: 0
Expires: Wed, 08 May 2019 01:48:42 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Wed, 08 May 2019 01:48:42 GMT
Connection: keep-alive


DownloadManager Information: 0 : Number of bytes downloaded over the internet: '0'
DownloadManager Information: 0 : Number of bytes after possible decompression: '0'
DownloadManager Warning: 0 : Error getting last-modified header, error code: 12150
DownloadManager Warning: 0 : HttpQueryInfoWithRetry for HTTP_QUERY_LAST_MODIFIED failed.
DownloadManager Error: 0 : Error loading rating files: System.Xml.XmlException: Root element is missing.
   at System.Xml.XmlTextReaderImpl.Throw(Exception e)
   at System.Xml.XmlTextReaderImpl.ParseDocumentContent()
   at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
   at System.Xml.XmlDocument.Load(XmlReader reader)
   at System.Xml.XmlDocument.Load(String filename)
   at Microsoft.Web.PlatformInstaller.ProductServiceImpl.GetAppRatings()
DownloadManager Information: 0 : Adding product PHP Manager for IIS (PHPManager) to cart
DownloadManager Information: 0 : Adding product 'PHPManager'
DownloadManager Information: 0 : Setting current install to 1
DownloadManager Information: 0 : Starting install sequence
DownloadManager Information: 0 : Downloading file 'http://phpmanager.codeplex.com/Project/Download/FileDownload.aspx?DownloadId=253209' to: C:\Users\Administrator\AppData\Local\Temp\2\tmp7887.tmp
DownloadManager Information: 0 : http://phpmanager.codeplex.com/Project/Download/FileDownload.aspx?DownloadId=253209 responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Type: text/html; charset=UTF-8
Location: https://phpmanager.codeplex.com/Project/Download/FileDownload.aspx?DownloadId=253209
Server: Microsoft-IIS/10.0
Date: Wed, 08 May 2019 01:48:54 GMT
Content-Length: 0


DownloadManager Error: 0 : Error while downloading file 'http://phpmanager.codeplex.com/Project/Download/FileDownload.aspx?DownloadId=253209'. Exception: System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
   at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
   at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
   at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
   at Microsoft.Web.PlatformInstaller.InstallManager.WinInetDownloadInstallerFile(InstallerContext currentInstall, String& failureReason)
DownloadManager Warning: 0 : WinInet failure: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.. Retrying download for 'PHP Manager for IIS'
DownloadManager Information: 0 : WebClient downloading file 'http://phpmanager.codeplex.com/Project/Download/FileDownload.aspx?DownloadId=253209' to: C:\Users\Administrator\AppData\Local\Temp\2\tmp7ED1.tmp
DownloadManager Warning: 0 : WebClient failure while contracting tracking URL http://go.microsoft.com/fwlink/?LinkId=153671&referrer=inetmgr. Error: System.Net.WebException: The remote server returned an error: (404) Not Found.
   at System.Net.WebClient.OpenRead(Uri address)
   at Microsoft.Web.PlatformInstaller.InstallManager.WebClientContactTrackingUrl(Uri trackingUri)
DownloadManager Information: 0 : File 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\PHPManager\7DF760D5D4600D6FC8E6C18D58E7BF9D74DC81FD\FileDownload.aspx-DownloadId=253209' already exists, deleting old copy of the file
DownloadManager Information: 0 : Moving downloaded file 'C:\Users\Administrator\AppData\Local\Temp\2\tmp7ED1.tmp' to: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\PHPManager\7DF760D5D4600D6FC8E6C18D58E7BF9D74DC81FD\FileDownload.aspx-DownloadId=253209
DownloadManager Error: 0 : Signature verification failed on downloaded file. URL: http://phpmanager.codeplex.com/Project/Download/FileDownload.aspx?DownloadId=253209. File location: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\PHPManager\7DF760D5D4600D6FC8E6C18D58E7BF9D74DC81FD\FileDownload.aspx-DownloadId=253209. File size: 1 kb
DownloadManager Information: 0 : Product PHP Manager for IIS done install completed
DownloadManager Information: 0 : Increasing current install to 2
DownloadManager Information: 0 : Product: PHPManager, Install Status: InstallCompleted-Failure, Install Time: 00:00:00



Load Balancing with F5's

$
0
0

Hello,

I'm currently setting up 2 web servers behind an F5 Load Balancer. The 2 web servers host multiple web apps and we are able to make successful calls to these web apps remotely but when we are on the actual web server and its making calls to another web app on the same server we get a "Remote connection refused" when its resolving to the VIP but if we resolve to an IP binding on the server it works just fine. Is there something I'm missing here? I would really hate to add entries to host files.

Help please my first url rewriting

$
0
0

Hi all and thanks for support.

My scenario is IIS as a front-end of tomcat connected via isapi on windows server 2016..

What I need to configure is something like:

mysite.it/fake_path/anything_that_must_remain?parameters

Rewrited into:

mysite.it/real_path/anythings_that_must_remain?parameters&landing=name

Outbound: what my customer have to see is just mysite.it/fake_path

I have tried to follow this doc but it sounds real hard to me https://docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/url-rewrite-module-configuration-reference

Can someone help me? Thank you

Slow Performance on API call

$
0
0

Hi,

Getting the slow response for the API call, FRT shows it happening during the getting response header. Please help to troubleshoot

<div class="content-container"> <div class="hidden" id="section_compact">
141.AspNetHttpHandlerEnter12:12:58.947
142.GENERAL_SET_RESPONSE_HEADERHeaderName="Cache-Control", HeaderValue="private", Replace="true"12:13:08.900
143.GENERAL_SET_RESPONSE_HEADERHeaderName="X-AspNet-Version", HeaderValue="4.0.30319", Replace="true"12:13:08.900
144.AspNetHttpHandlerLeave
</div> </div>
Viewing all 28504 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>