Connect to FTP Server with .net 2.0 [closed] - vb.net

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm looking to connect to an existing FTP server, upload a file, wait while the server generates a report on it, and download that report back to the local machine in a VB.NET 2.0 WinForms project.
Is there an existing FTP library that would be helpful to me for this? My task seems simple enough that I'd rather not get into the world of active vs. passive, sockets, etc.

Look into System.Net.FtpWebRequest/FtpWebResonse

System.Net.FtpWebRequest and System.Net.WebClient can both do this.
WebClient is simpler but supports less features. I haven't run into many situations that FtpWebRequest can't handle.

You need to use FtpWebRequest.

Have you tried the FtpWebRequest class
http://msdn.microsoft.com/en-us/library/system.net.ftpwebrequest.aspx

Related

Dropbox API for Erlang [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
is there a good dropbox API for erlang ?
It is possible to use REST to work with dropbox.
Is there a good REST helper library for erlang ?
Thank you.
Erlang definately has its own HTTP client, but I haven't come across a client REST library, but it shouldn't be too hard to roll your own on top of the client. There isn't an SDK for Erlang but AFAIK all the dropbox API SDK's revolve around wrapping the REST API anyway.
If you still interested, I've been working on it, and here is result — https://github.com/StepanKuzmin/erlang-dropbox

Native API into Mozilla Thunderbird [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am making an application and would like for this application to be able to retrieve data from Mozilla Thunderbird. However, I have only been able to find an API for Thunderbird extensions. Is there an API that will allow native applications, outside of Thunderbird to interact with Thunderbird's databases?
No. But you could create a Thunderbird extension and communicate with it via TCP sockets (see nsIServerSocket). That extension would do the "dirty work" for you. If you want to get the data while Thunderbird isn't running then the only solution will be redoing the database reading logic in your application (Thunderbird is open-source of course but reusing its code will be hard). Btw, the .msf files use the infamous Mork file format.

Limewire API: does it exist? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Does anyone know if there is something like a Limewire API? I need to be able to make Limewire download files programmatically.
EDIT: It seems Limiwire doesn't have an API. Is there any other Gnutella P2P cliente that does?
I suppose focusing a little more upon your requirement, you've got the Gnutella downloader service/class/package API thing.
http://wiki.limewire.org/index.php?title=Gnutella_downloader
It allows you to query and download direct to the network.
Then extending that idea - you have jTella, API source for Gnutella network.
http://sourceforge.net/projects/jtella/
Unfortunately, there is not. Also, unfortunate: the source code is terribly difficult to read/modify. If, however, you're up to the challenge, then you can simply write your own application on top of limewire-core, which is seperate form the GUI.
Not sure about a true api - but I found this by googling your title:
http://wiki.limewire.org/index.php?title=Javadocs
Seems to be built in Java. Entire set of packages seem to be there too.

Load testing tool that can send PUT/DELETE methods [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am finding load testing tool that can send PUT/DELETE requests.
Neither ApacheBench nor JMeter supports these methods.
After several hours' googling, I found SoapUI that looks good.
Do you have any other recommendation?
Command line tool like ApacheBench will be better for me.
The Grinder is a decent load testing framework that also supports PUT and DELETE.
Jmeter supports put and delete methods as of of versions > to 2.5 ( didn't Check for others)

looking Rapid application development / application builder for non programmers [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
is there any tool that can produce me simple application something like access
but without the need for access or open office to be installed
some thing that will save the data in real stand alone executable file with embedded simple db for non programmers.
I believe Filemaker does what you want. It's not free, however you could always download the trial and see if it fits.
If you are familiar with Access, you should look into compiling it into a standalone app using the Access runtime. Here's a thread on it.
Bear in mind that non-programmers will be quite limited in what they'll be able to accomplish, so calling this "rapid application development" is probably way overstating things.