We need to have documents shared between clients (CRM-like functionality). Users need to be able to:

  • Edit the documents and save them again
  • Attach new documents

Our application is coded in WPF with WCF for data-transport and NHibernate/SQL for data on the server.

what we're thinking is to use SVN and have the app create a local check-out of parts of the repository (when they click a document, it is checked out by SVN in the background and opened from the local path) - When saved it will silently (using monitoring of the path) be committed back to the repository.

Question: Is this feasible - or are there better solutions to this?

EDIT 1: Summary so far:

  • I'll look into using Git/Mercurial instead of SVN
  • Document size (revisions) might be prohibitive pending tests
  • SharePoint is an option (although not viable in my case as the cost alone is prohibitive) - I will look into the alternatives for SharePoint, tho.
  • Not much experience out there about using repositories for many users although it works for small teams..
  • Wiki software might be an alternative to SVN.

Thanks for all the feedback - I'll keep it open a bit longer.

EDIT 2: Summary after a few days of work - I have a client working - see my progress here.

link|improve this question

2  
Somewhat similar question: stackoverflow.com/questions/2494082 – Michael Stum Oct 6 '10 at 20:28
Nice! Missed that one doing the search. – Goblin Oct 6 '10 at 20:40
2  
What sort of documents, text or binary? – Josh Lee Oct 6 '10 at 20:50
Mostly binary but with many reads/few writes – Goblin Oct 7 '10 at 8:10
feedback

6 Answers

up vote 1 down vote accepted

It depends on the kind of documents you are using. If you have lots of changing, compressed binary files, then don't use it.

However, if the documents are in an open format like a Wiki language, (X)HTML, LaTeX or uncompressed ODF, then using a version control system makes absolutely sense. Also, a bunch of compressed ODF files or PDF files are handled very well, especially if the files are mostly smaller than 5 MB or so.

In addition, make sure to check some more recent version control systems like Mercurial and Git before sticking to the conceptually outdated SVN. In your scenario, you won't profit much from the "distributed" part of Mercurial and Git, but they are nevertheless easier to setup - at least to my experience. And they provide very advanced version control features which can save your day in the rare cases when you need them.

In case you stick to SVN, and if your client software runs under a modern Unix system, you can also try SVN-FS. This is a filesystem that uses a remote SVN server. Each read goes to the latest revision. Each write creates a new commit. This seems to be exactly what you wanted to build around SVN.

link|improve this answer
3  
Subversion is not "conceptually outdated" because it operates on a different paradigm than Mercurial and Git. Subversion is a "centralized" system, where Mercurial and Git are "decentralized". In many enterprise environments, decentralized systems are not desirable for a whole set of reasons. – Mark Oct 6 '10 at 21:16
1  
@vog: Why should it matter whether the documents are in an open format or not? I'd say that SVN or another SCM is very useful for any document format unless you have really huge documents that have many revisions. – the_mandrill Oct 6 '10 at 21:34
thanks for the input. The client is støtten in wpf so svn fs isn't really an option – Goblin Oct 7 '10 at 5:09
støtten = written (stupid spelling-suggester on Andriod :)) – Goblin Oct 7 '10 at 5:59
@Mark: It's not about decentralization. Mercurial and Git are even preferable in centralized scenarios. While Subversion has still problems with basic things like making branching/merging easier, the modern VCS build lots of incredibly useful features that would be even harder to implement in Subversion. That's why I call Subversion not just outdated, but conceptually outdated. Regarding modern VCS, I strongly recommend you to give them a try, especially in centralized as well as single-developer scenarios. – vog Oct 8 '10 at 19:59
show 10 more comments
feedback

Based on the heavy .NET references, are you all set up with MSDN? Perhaps you can make use of SharePoint...which may already be included within your MSDN account.

link|improve this answer
It is for us - but not for our clients - and the price-tag is pretty hefty, sadly :/. Also, we've had really bad experiences with the performance of the versioning/corruption in SharePoint – Goblin Oct 6 '10 at 20:23
1  
Gotcha...we used SVN for our Tech Pubs team for each project, it was not automated however it worked without hitch. Had some minor issues when they published the documents in an automatic fashion as it purged the .svn directories...however that was identified and corrected. No issues going forward... – Aaron McIver Oct 6 '10 at 20:27
Ah nice - How many clients in the Tech Pubs team? And did the data-consumption climb exponentially or proportionately? – Goblin Oct 6 '10 at 20:32
1  
Team was small...3 people at max capacity. Never had any data consumption issues but that is contingent on what is being created of course. – Aaron McIver Oct 6 '10 at 20:54
Okay thanks for information! – Goblin Oct 7 '10 at 5:10
feedback

You might also want to consider using a Wiki for document management - I've seen this done and do it myself for my own organisation. We're using Atlassian's Confluence Wiki. Confluence provides for the versioning and general management of documents.

link|improve this answer
Thanks, I'll take a look at the wiki as well. – Goblin Oct 7 '10 at 5:06
There are some interesting Wikis that use a VCS (like Subversion or Git) internally to store the pages. This has that advantage of having a mature backend, and you can access to them with external tools. For instance, you could edit the wiki pages with your favorite editor offline in your local working copy. – vog Oct 9 '10 at 20:47
feedback

I wouldn't use SVN for this, SVN is not very efficient when dealing with binary files. By using SVN as a back channel for some content in your application you just complicate things by adding another technology and dependency, but you will not use much of its real potential.

I would store the documents as blobs in the database and get/store them through WCF.

link|improve this answer
It would kill the database in our scenario just from the amount of data plus it scales really poorly. But thanks for the suggestion. – Goblin Oct 6 '10 at 20:28
2  
This is only a problem if you have lots of changing binary files. Things are different if the document are in an open format like a Wiki language, LaTeX or uncompressed ODF. Also, make sure you check some more recent version control systems like Mercurial and Git before sticking to SVN. – vog Oct 6 '10 at 20:37
@Vog - I'll be sure to check out those too, thanks! – Goblin Oct 6 '10 at 20:39
feedback

Generally I don't think that SVN or any version control system is a good thing to use for sharing documents. Main disadvantage is the diff system on binary files... Your SVN repo will grow rapidly..

Maybe you should try using some of the commercial tools designed for document sharing (eg. Microsoft Sharepoint). Or some Open Source alternatives... Perhaps you should read this post...

link|improve this answer
How do you mean the diff system on binary files is particularly bad? Does it save the full bit-stream for every commit? – Goblin Oct 6 '10 at 20:30
2  
Binary document files are not that well structured (as opposed to source code files), so doing many small revisions of documents, would modify a few different chunks of the file, and some diff systems might not recognize for example 3 words changes as few characters diff, but rather a few blocks diffs, and the SVN commit would be larger than those few characters. Some diff systems would even detect 30% file diff, while you changed just a few sentences and images... – Miljenko Barbir Oct 6 '10 at 20:37
Ahh, I see - thanks for the heads-up! – Goblin Oct 6 '10 at 20:38
2  
-1: See (help.collab.net/index.jsp?topic=/faq/svnbinary.html): "Note that whether or not a file is binary does not affect the amount of repository space used to store changes to that file, nor does it affect the amount of traffic between client and server." – SnOrfus Oct 6 '10 at 20:40
1  
I am pretty carefull (size-wise) when comitting binary files. I try to do as less as possible especially with images, because sometimes SVN made 90% diffs. Just as images some documents are encoded in a way that the previous revision is harldy simmilar to the slightly modified file (for example image)... Try changing just one pixel in an image and see the difference. And some document formats are similarly encoded... – Miljenko Barbir Oct 6 '10 at 20:49
show 1 more comment
feedback

I think that using ready made and proven tech is great idea. Would like to see it's progress if you really go that way.

I would strongly go AGAINST SharePoint - you'll tie yourself to Microsoft in manners that are hard to describe here. From my point of view, SharePoint is a tech that needs taking care of just for itself.

link|improve this answer
I'll be sure to share our progress, if we end up going this way :). – Goblin Oct 6 '10 at 20:33
@ Daniel You're going against SharePoint for what reason...? Of course it is a technology that needs attendance, it's not something that maintains itself, hence dedicated SharePoint admins. But saying you'll not tie yourself to Microsoft as though that is always a negative..not sure I agree... – Aaron McIver Oct 6 '10 at 20:53
2  
@ Aaron: you can end up as SharePoint Maintainer, not ISV developer. Learning curve for it is something that will distract small teams of its course, and I noticed that UI and presentation layer for the Goblin's system is something that he wants to do himself. Not by means of some plug-in or something for SP. – Daniel Mošmondor Oct 7 '10 at 7:03
I've updated the question with my current progress. – Goblin Oct 30 '10 at 23:13
Thanx! I'm very pleased that you in fact DID use SVN! Hope you won't hit the wall later :) – Daniel Mošmondor Oct 31 '10 at 13:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.