1

I checkout source code to centos machine use svn. my repo url:

https://121.5.21.250/!/#wms/view/head/trunk/WMS_SOURCE/AllInOne/WMS_WS.zip

This url contain special character: "!".

I use this svn command to checkout:

svn co https://121.5.21.250/\!/#wms/view/head/trunk/WMS_SOURCE/AllInOne

I got error:

svn: URL 'https://121.5.21.250/!/#wms/view/head/trunk/WMS_SOURCE/AllInOne' is not properly URI-encoded

Please help me.

Ivan Zhakov
  • 3,981
  • 28
  • 24
Thelinh Truong
  • 564
  • 1
  • 8
  • 19
  • I use this url with svn. not encode with java or c# – Thelinh Truong Jan 20 '16 at 03:00
  • 1
    Right, but the point is the same. You need to encode it, just like the error message is telling you. The "possible duplicate" link has multiple links to source documents explaining URI encoding. – shoover Jan 20 '16 at 07:27
  • @shoover the problem has nothing to do with the thread you linked. – bahrep Jan 20 '16 at 20:23

1 Answers1

1

The "!/#" URLs is not Subversion repository URL. It's URL of VisualSVN Server's rich web interface with syntax highlighting, log viewer etc.

You may find Subversion URL by clicking on "Checkout" icon on top-right: enter image description here

Ivan Zhakov
  • 3,981
  • 28
  • 24