Programming Dell Tape Drive with 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
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...

Related

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

C# burning DVD+-VR with IMAPI2 [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 would like to find some information about DVD+-VR with IMAPI2. I guess it is possible to create and burning DVD-VR with IMAPI2 but I can not find examples how to do.
Do you have some idea or some example code?
Thank you very much.
Have a look at the following C# codeproject articles:
Burning and Erasing CD/DVD/Blu-ray Media with C# and IMAPI2, By Eric Haddan.
Creating a tool with the basic functionality of Nero Burning Room.
How to Create Optical File Images using IMAPIv2.0, By dmihailescu.
Example on how to create and burn ISO image files.
Creating Audio CDs using IMAPI2, By Eric Haddan.
Shows how to use IDiscFormat2TrackAtOnce interface for creating audio CDs.

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

Have you seen library for flexible working with terminal(Unix like)? [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
Have you seen library for flexible working with terminal(Unix like)?
I want to implement autocompletion, history, help params in my console application same operations you can see in the Unix terminals.
C#, Mono library.
Thanks.
Here you go, GNU Readline support for Mono, Mono-Readline.
See also, Is there a .Net library similar to GNU readline?

FTP Server written in 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
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

Categories