tickling Posted June 4, 2006 Share Posted June 4, 2006 Hi,I am trying to write an autoit script that uses this apihttp://dev.box.net/api-documentationI am lost as to which library function to use and if this is possible at allcan anyone give me some pointers on how to go about it ? Thanks Link to comment Share on other sites More sharing options...
Uten Posted June 4, 2006 Share Posted June 4, 2006 It is probably a SOAP (MS version of xml-rpc) api since it is used by something called NET.Take a look at the xml-rpc site for explanations.You have to implement a http client in AutoIt or find a library simplifying xml-rpc calls. You can find vb (COM) implementations that could work with AutoIt.If you find a reasonable solution please post it as this is something that others will benefit from Please keep your sig. small! Use the help file. Search the forum. Then ask unresolved questions :) Script plugin demo, Simple Trace udf, TrayMenuEx udf, IOChatter demo, freebasic multithreaded dll sample, PostMessage, Aspell, Code profiling Link to comment Share on other sites More sharing options...
tickling Posted June 6, 2006 Author Share Posted June 6, 2006 (edited) Thanks Uten What I understood is that there is a whole level missing here between Autoit TCP functions and the XML-operated thing. I found some vb code that posts via http but there seem to be some headers and wrappers and this is a bit beyond me. Maybe some heavy weight here on the forum can look at it ? Having online storage (and free up to 1Gb) operated via autoit can be a cool addition for many - this is probably not just me (btw I have no affiliation with them, just a free account) Edited June 6, 2006 by tickling Link to comment Share on other sites More sharing options...
tuape Posted October 31, 2006 Share Posted October 31, 2006 Thanks UtenWhat I understood is that there is a whole level missing here between Autoit TCP functions and the XML-operated thing. I found some vb code that posts via http but there seem to be some headers and wrappers and this is a bit beyond me.Maybe some heavy weight here on the forum can look at it ? Having online storage (and free up to 1Gb) operated via autoit can be a cool addition for many - this is probably not just me (btw I have no affiliation with them, just a free account)At least SOAP:Lite has COM interface Link to comment Share on other sites More sharing options...
daluu Posted July 26, 2007 Share Posted July 26, 2007 (edited) Except for SOAP and XML-RPC, which require you to format the HTTP calls in XML, you can use my HTTP library that's a wrapper to the XmlHttpRequest object.http://www.codeproject.com/useritems/httpautomationlibs.aspGet the VBScript or Javascript library. I'm in the process of updating the Javascript library.Unfortunately, if you get XML as the HTTP response, you will have to parse that out yourself.Also a look at the box.net site tells me that it supports plain HTTP via REST interface. But the return data could still be XML though. Edited July 26, 2007 by daluu Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now