FTP Server written in C# [closed] - c#

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I stumbled accross this site today
http://blogs.msdn.com/joelpob/archive/2004/02/16/74433.aspx
which is a C# command line FTP server, unfortunately the download points to the old gotdotnet site which is now closed ..
Does anybody know where I could find it, or another FTP Server implementation written in C# ?
Thanks

You could give this one a try: http://www.codeguru.com/csharp/csharp/cs_network/sockets/article.php/c7409
or
http://www.c-sharpcorner.com/UploadFile/psingh/FTPServerinCSharp11162005015958AM/FTPServerinCSharp.aspx

http://www.codeproject.com/Articles/380769/Creating-an-FTP-Server-in-Csharp-with-IPv6-Support
Supports FTPS (FTP over SSL) and IPv6

Personally I recommend active products maintained by nice companies, such as
http://www.remobjects.com/ip.aspx

Related

Can anyone give an example of server side implementation of OAuth 2.0? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Can anyone give an example of server side implementation of OAuth 2.0? Basically im creating an API where the API users could authenticate them self and use apis same way we do on Facebook. so need an OAuth server implementation for WCF REST service.
Search GitHub, there are lots of examples there.
https://github.com/search?utf8=%E2%9C%93&q=oauth+server
You should do some research and work before posting questions like this here.

SignalR as a Game Server [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have a board game application that I would like to add multiplayer options, I'm considering using SignalR to do a persistant connection. I'm wondering whether anyone has done something like this, or whether there is an opensource project available that I can have a look at ?
There is a game written in SignalR - SignalR ShootR
You can take a look at the source code here - SignalR ShootR Source Code

How to set up a back end application on a server [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I would like to develop a back-end application in C# and install it on a server.
While I know C# and also have done a small Java based back-end for Android App on AWS developed with Eclipse, I do not know where to start with C# and mySql.
Is there a tutorial or any other good place to get a head start?
Seems like you're looking for ASP.Net WebAPI

Programming Dell Tape Drive with C# [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Has anyone got experience in writing files to tape drives. i'm writing some tar files from a c# windows service to a dell powervault 124t.
I was hoping there was an API or some tool I could use (pay for potentially).
I had a look at symanntecs open netbackup api but not sure it that is the correct route.
That's my job :-), except that I use C and not C#.
But there's a API in the Visual C.
Here's some functions:
CreateFile() & CloseHandle()
ReadFile && WriteFile
PrepareTape ()
GetTapeParameters ()
GetTapePosition() && SetTapePosition()
DeviceIoControl()
WriteTapemark()
GetLastError()
Looks on msdn.com for help on how to use the functions.
Hope that helps...

Which Memcached client library should I use for .NET? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I've noticed there are a few solutions to allow the use of memcached on C# / ASP.NET:
memcacheddotnet
enyim.com Memcached Client
BeIT
Which one should I use? It seems like the enyim port has more active development, but I wanted to see what you guys recommend.
I use BeIT and i am happy with it.
Take a look at Velocity. Its Microsofts new alternative, its not stable yet but looks promising.

Categories