Re: WebDAV library for LC community available which does not depend on tsNet

2020-04-12 Thread matthias rebbe via use-livecode
Of course it´s Ralf Bitter and not  Ralf Bitte.



-
Matthias Rebbe
Life Is Too Short For Boring Code

> Am 11.04.2020 um 22:09 schrieb matthias rebbe via use-livecode 
> :
> 
> Hi,
> 
> Ralf Bitte released a  WebDAV library , which does not depend on tsNet and 
> can therefore also be used
> with the Community Edition.
> 
> https://github.com/revig/livecode-webdavlib
> 
> 
> 
> -
> Matthias Rebbe
> Life Is Too Short For Boring Code
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: WebDAV library for LC community available which does not depend on tsNet

2020-04-11 Thread JeeJeeStudio via use-livecode

Awesome!

thank you very much.

Regards,

JErry

Op 11-4-2020 om 22:09 schreef matthias rebbe via use-livecode:

Hi,

Ralf Bitte released a  WebDAV library , which does not depend on tsNet and can 
therefore also be used
with the Community Edition.

https://github.com/revig/livecode-webdavlib



-
Matthias Rebbe
Life Is Too Short For Boring Code


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


WebDAV library for LC community available which does not depend on tsNet

2020-04-11 Thread matthias rebbe via use-livecode
Hi,

Ralf Bitte released a  WebDAV library , which does not depend on tsNet and can 
therefore also be used
with the Community Edition.

https://github.com/revig/livecode-webdavlib



-
Matthias Rebbe
Life Is Too Short For Boring Code


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: WebDAV

2020-02-07 Thread Matthias Rebbe via use-livecode
Not yet, but for a prototype i played around with tsNet and Webdav some time 
ago.

I used

tsNetGetSync to list the content of a folder

tsNetCustomSync to do actions like delete, create and so on

tsNetUploadfilesync for uploading

Worked fine so far, but i did not work further on it, because the customer 
decided to put the final project on hold for  some time.

-
Matthias Rebbe
Life Is Too Short For Boring Code

> Am 07.02.2020 um 19:11 schrieb Richard Gaskin via use-livecode 
> :
> 
> Anyone have a client library for working with a WebDAV server in LC?
> 
> Bonus (not needed now, but might be fun down the road): Anyone have a library 
> for implementing WebDAV in LC Server?
> 
> -- 
> Richard Gaskin
> Fourth World Systems
> Software Design and Development for the Desktop, Mobile, and the Web
> 
> ambassa...@fourthworld.comhttp://www.FourthWorld.com
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


WebDAV

2020-02-07 Thread Richard Gaskin via use-livecode

Anyone have a client library for working with a WebDAV server in LC?

Bonus (not needed now, but might be fun down the road): Anyone have a 
library for implementing WebDAV in LC Server?


--
 Richard Gaskin
 Fourth World Systems
 Software Design and Development for the Desktop, Mobile, and the Web
 
 ambassa...@fourthworld.comhttp://www.FourthWorld.com

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: data transfer with webDAV

2011-01-13 Thread Phil Davis

Hi Jack,

On Mac or Windows, you can navigate to files on a mounted WebDAV server like you 
would to a file on any other mounted volume (e.g. external HD).


answer file "Pick a file:"
if it = empty then exit to top
put it into fld "pickedFileName"

If you do this once, then you'll see the path as LC sees it and can move forward 
from there.


On Mac, mounted webDAV servers are listed in "the volumes" and can be treated 
like any other mounted drive.
On Windows 7 (after you have modified registry settings so it lets you use 
webDAV servers), webDAV server names don't show up in "the volumes" as far as I 
can tell. But you can access files on a mounted webDAV server by using the 
file's UNC path, like this (after LC converts the slashes):


//projects.myserver.com/DavWWWRoot/MountedVolumeName/MyFolder/MyFile.pdf

I forget exactly how webDAV access works on earlier Windows versions, but it's 
all doable. (Digging around...) Here's the step-by-step I set up for the 
customers of one client - use at your own risk, but I've never received a 
trouble report on it:


http://projects.nweta.com/

Maybe these hints will get you started.

Phil Davis



On 1/13/11 9:18 AM, JACK RARICK wrote:

Hi all!

I am writing a program that moves data (TEXT FILES) across the 'net - usually 
from schools. Most of these schools have pretty restrictive firewalls. I am 
able to use webDAV - but am totally confused on the correct line/lines of code 
to use to send data out and get data back.

I would have liked to use FTP ... but alas, I can't get through.

Any help, ideas, places to look would be greatly appreciated.


Jack Rarick
Freshmen Center - Holt Public Schools
Earth Science
Technology Coodinator
Varsity Men's Track&  Field
Varsity Football - Offensive Line Coach, Peanut Butter Coordinator

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode



--
Phil Davis

PDS Labs
Professional Software Development
http://pdslabs.net


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


data transfer with webDAV

2011-01-13 Thread JACK RARICK
Hi all!

I am writing a program that moves data (TEXT FILES) across the 'net - usually 
from schools. Most of these schools have pretty restrictive firewalls. I am 
able to use webDAV - but am totally confused on the correct line/lines of code 
to use to send data out and get data back.

I would have liked to use FTP ... but alas, I can't get through. 

Any help, ideas, places to look would be greatly appreciated.


Jack Rarick
Freshmen Center - Holt Public Schools
Earth Science
Technology Coodinator
Varsity Men's Track & Field
Varsity Football - Offensive Line Coach, Peanut Butter Coordinator

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode