SvnBridge Server will raise error,when the file name include '+' symbol
-
16 марта 2012 г. 7:44
SvnBridge Server will raise error,when the url include '+' symbol.
I deploy a svnbridge in iis 7.5. if the file name does not include '+' symbol ,it work fine.
Any solution to solve this problem? Thank for the help~
djbone
Все ответы
-
20 марта 2012 г. 15:46Владелец
You might want to try raising an issue with the SvnBridge open source project here:
http://svnbridge.codeplex.com/workitem/list/basic
Many thanks,
Martin.
http://www.woodwardweb.com
- Предложено в качестве ответа Edward A ThomsonMicrosoft Employee, Moderator 3 апреля 2012 г. 14:06
-
6 апреля 2012 г. 16:35
set the node in web.config:
<system.webServer> <validation validateIntegratedModeConfiguration="false" /> <modules> <remove name="WebDAVModule" /> <remove name="ServiceModel" /> </modules> <handlers> <clear /> <add name="SvnBridgeHandler" path="*" verb="*" responseBufferLimit="0" type="SvnBridgeServer.SvnBridgeHttpHandler" resourceType="Unspecified" preCondition="integratedMode" /> </handlers> <security> <requestFiltering allowDoubleEscaping="true" > <requestLimits maxAllowedContentLength="262144000" /> <!-- 250 MB --> <fileExtensions> <clear /> </fileExtensions> <hiddenSegments> <clear /> </hiddenSegments> </requestFiltering> </security> </system.webServer>
add
the allowDoubleEscaping="true" attribute in the requestFiltering node
djbone

