What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Upload to FTP

Upload to FTP
Author: Message:
rob_botch
Full Member
***

Avatar

Posts: 180
Reputation: 4
33 / Male / Flag
Joined: Apr 2006
RE: Upload to FTP
OK. Please forgive me if this is wrong in any way! This is ripped from my script.

Variables at the top:

code:
var XMLPath = MsgPlus.ScriptFilesPath+ "\\file.xml";
var ConfigServer = "";
var ConfigPort = 21;
var ConfigUsername = "";
var ConfigPassword = "";
var ConfigDirectory = "";
var ConnectionHandle;


To open a connection:

code:
ConnectionHandle = Interop.Call('wininet', 'InternetOpenW', 'ScriptName', 0, 0, 0, 1);


And to upload:

code:
try
{
var result = Interop.Call('wininet', 'InternetConnectW', ConnectionHandle, ConfigServer, ConfigPort, ConfigUsername, ConfigPassword, 1, 1, 0);
var test = Interop.Call('wininet', 'FtpSetCurrentDirectoryW', result, ConfigDirectory);
var test = Interop.Call('wininet', 'FtpPutFileW', result, XMLPath, "file.xml", 2, 0);
Interop.Call('wininet', 'InternetCloseHandle', result);
MsgPlus.DisplayToast("","Uploaded"); // Only for debugging!
}
catch(err)
{
MsgPlus.DisplayToast("", "Error");
}


Hope this helps

Robert
11-03-2006 09:00 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Upload to FTP - by SnuZZer on 11-03-2006 at 01:32 PM
RE: Upload to FTP - by ins4ne on 11-03-2006 at 01:34 PM
RE: Upload to FTP - by SnuZZer on 11-03-2006 at 01:37 PM
RE: Upload to FTP - by ins4ne on 11-03-2006 at 01:39 PM
RE: Upload to FTP - by Felu on 11-03-2006 at 01:41 PM
RE: Upload to FTP - by SnuZZer on 11-03-2006 at 01:45 PM
RE: Upload to FTP - by rob_botch on 11-03-2006 at 06:47 PM
RE: Upload to FTP - by SnuZZer on 11-03-2006 at 08:55 PM
RE: Upload to FTP - by rob_botch on 11-03-2006 at 09:00 PM
RE: Upload to FTP - by SnuZZer on 11-04-2006 at 09:11 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On