SvnBridge Server will raise error,when the file name include '+' symbol
-
Friday, March 16, 2012 7:44 AM
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
All Replies
-
Tuesday, March 20, 2012 3:46 PMOwner
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
- Proposed As Answer by Edward A ThomsonMicrosoft Employee, Moderator Tuesday, April 03, 2012 2:06 PM
-
Friday, April 06, 2012 4:35 PM
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

