The remote server returned an error: (417) Expectation failed..
My Redmine is set in subdomain (e.g. redmine.myserver.in.th). I try to connect and it shows as above error. What should I do?
Looks like your webserver or proxy doesn't properly handle the Expect HTTP headers .NET implicitly sends. Changing your RedmineClient.exe.config could help you get around this problem:
<configuration> ... <system.net> <settings> <servicePointManager expect100Continue="false" /> </settings> </system.net> </configuration>
Maybe it's a little late but thank you. :)
Log in to post a comment.
The remote server returned an error: (417) Expectation failed..
My Redmine is set in subdomain (e.g. redmine.myserver.in.th). I try to connect and it shows as above error. What should I do?
Looks like your webserver or proxy doesn't properly handle the Expect HTTP headers .NET implicitly sends. Changing your RedmineClient.exe.config could help you get around this problem:
<configuration>
...
<system.net>
<settings>
<servicePointManager expect100Continue="false" />
</settings>
</system.net>
</configuration>
Maybe it's a little late but thank you. :)