Answered 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 PM
    Owner
     
     Proposed Answer

    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

  • Friday, April 06, 2012 4:35 PM
     
     Answered Has Code
    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


    • Marked As Answer by DJ尐舞 Friday, April 06, 2012 4:35 PM
    • Edited by DJ尐舞 Friday, April 06, 2012 4:36 PM
    •