tags:

views:

58

answers:

1

Is there an open implementation of a SMB/CIFS server in Java? The only implementation I can find at all is Alfresco's but it isn't open source.

A related question: assuming there is no such implementation, I'm surprised there isn't a library providing even a subset of SMB e.g. for simple file transfer. My intuition is that it wouldn't be massively difficult to implement a simple server (but of course would be very difficult to implement a complete solution like Samba). The fact that no one seems to have done it makes me suspicious that it is harder than I'd guess. Is there no implementation because it is difficult or because no one cares?

A: 

Regarding your second question, you should check the jCIFS library, "an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java".

Tomas Narros
I think JCIFS may be client side only. I'm looking for a server side implementation.
monorailkitty