When installing Runway on 4.0.2.1 I get the following error:
"The request failed with HTTP status 417: Expectation failed"
Description: An
unhandled exception occurred during the execution of the current web
request. Please review the stack trace for more information about the
error and where it originated in the code.
Exception Details: System.Net.WebException: The request failed with HTTP status 417: Expectation failed.
Source Error:
An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of
the exception can be identified using the exception stack trace below.
I have tried numerous times to install and it always stops at this error when opting to install Runway. If I opt not to install, then go to developer-packages-install runway, I get the same error. What am I doing wroing?
I am using IIS 6.0 on Windows 2003 with SQL server 2005 express - I have dotnet 1.1 through 3.5 installed. Everything seems to be OK except the last step of the installation...
Error installing Runway on Umbraco 4.0.2.1
When installing Runway on 4.0.2.1 I get the following error:
"The request failed with HTTP status 417: Expectation failed"
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Net.WebException: The request failed with HTTP status 417: Expectation failed.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
I have tried numerous times to install and it always stops at this error when opting to install Runway. If I opt not to install, then go to developer-packages-install runway, I get the same error. What am I doing wroing?
I am using IIS 6.0 on Windows 2003 with SQL server 2005 express - I have dotnet 1.1 through 3.5 installed. Everything seems to be OK except the last step of the installation...
You might have a permission problem, try Chris Houston's umbPermissions script.
Also check out other threads on the forum (like this one) by using the search, they might give you some clues.
try putting this in your web.config
<configuration>
<system.net>
<settings>
<servicePointManager expect100Continue="false" />
</settings>
</system.net>
</configuration>
Hey sitech, it's great that you're trying to help, but you might want to explain how that solution is related to this problem?
Just confirming that expect100Continue="false" fixed it for me on Windows 7 with Umbraco 4.5.2.
is working on a reply...