Make your Android app more popular Advertise on Google Play with AppBrain app promotion Check it out
AppBrain Best Android Apps
AppBrain
Dashboard Statistics Stats Documentation Docs
Sign up
Log in
Android Apps > Tools > WebDAV Server
WebDAV Server icon

WebDAV Server

WebDAV Server
by The Olive Tree
Google Play
Google Play
100+
Thousand
Downloads
PREMIUM
Est. downloads
PREMIUM
Recent d/loads
3.63
735
Rating
Unranked
Ranking
10
Libraries
2.1+
Android version
2/3/15
Last updated
2012
February
App age
2.41 MB
App size
Everyone
Content rating
FREE
Price

Google Play Rating history and histogram

345
88
117
51
132

Changelog

  • Feb 25, 2018 Installs 100,000+ installs
  • Oct 27, 2015 Installs 50,000+ installs
  • Feb 3, 2015 Update Version 1.17
  • Nov 5, 2014 Update Version 1.16
  • Oct 4, 2014 Update Version 1.15
  • Feb 22, 2014 Update Version 1.14
  • Jan 29, 2014 Update Version 1.13
  • Oct 14, 2013 Update Version 1.12
  • Jul 18, 2013 Update Version 1.11
  • May 18, 2013 Installs 10,000+ installs
  • Apr 23, 2013 Update Version 1.9
  • Jan 25, 2013 Update Version 1.8
  • Nov 25, 2012 Installs 5,000+ installs
  • Jul 13, 2012 Update Version 1.7
  • Jun 4, 2012 Update Version 1.6
  • May 5, 2012 Update Version 1.5
  • Apr 28, 2012 Installs 1,000+ installs
  • Mar 30, 2012 Installs 500+ installs
  • Mar 8, 2012 Update Version 1.4
  • Feb 22, 2012 Installs 100+ installs
  • Feb 15, 2012 Update Version 1.2
  • Feb 11, 2012 Installs 50+ installs
  • Feb 1, 2012 New App Version 1.1 in Tools for Free
View more View less

Developer information

The Olive Tree

[email protected]

Vine Cottage
Horton Road
HORTON, BERKSHIRE SL39NU
Reino Unido

Are you the developer of this app? Join us for free to see more information about your app and learn how we can help you promote and earn money with your app.
I'm the developer of this app

Description

With this application you can mount any directory on your phone, including memory card, as a drive on Windows or Linux. You can also use a WebDAV client to browse a phone directory.

This application has been tested using Windows8 Explorer (should also work with Windows7 but it will not work on WindowsXP) and WebDAV client bitkinex. You can download it from http://www.bitkinex.com/

Special thanks to: Beatriz Vera, Peter Ulrich, Gabor Fodor, Manuela Merino García and Anna Rainieri.

Implemented Intents
com.theolivetree.webdavserver.StartWebDavServer
com.theolivetree.webdavserver.StopWebDavServer

You can find a lock setting to specify how the device should be kept awake while server is running. There are three modes available:
New locks used
*SCREEN_DIM_WAKE_LOCK : Existing mode. Screen is on so energy consumption is higher. Use this mode if connections is dropped.
*WIFI_MODE_FULL : New mode. Screen is off so device will use less energy while server is running but data connection can be dropped. It is not recommended to use this mode.
*WIFI_MODE_FULL_HIGH_PERF: New mode only available on Android >= 3.1. Screen is off so energy consumption should be less than in the first mode. This mode is recommended to save energy but you might find problems so you might to select default lock mode.

How to connect with WebDAV server using USB cable:

This can useful when you have USB cable and no network available.
1) On your phone go to Settings->Applications->Development and set option "USB debugging".
2) Connect your phone to your PC using USB cable.
3) Start adb server. On your PC run command "adb start-server".
adb is a program that you can find on android sdk. Usually you will find it on android-sdk\platform-tools\adb.
4) Forward needed ports from your PC to your phone. On your PC run command "adb forward tcp:8080 tcp:8080"
With this, any connection in your pc to 127.0.0.1:8080 will be forwarded to your phone in port 8080.
5) Run WebDAV server in your phone, open settings and in "Network interfaces" select "Loopback (127.0.0.1)"
6) Start WebDAV server.
7) In your PC connect your WebDAV client to http://127.0.0.1:8080 (port might be different, it depends on your WebDAV Server configuration).

Permissions needed:

INTERNET
ACCESS_NETWORK_STATE
ACCESS_WIFI_STATE

Network permission to enable server to open network communication with WebDAV clients.

WRITE_EXTERNAL_STORAGE

Enables WebDAV server write received files from WebDAV clients on sdcard.

WAKE_LOCK

Keeps phone wake only while server is running. If phone is not wake WebDAV server can not be accessed.

Problems with big files:

If you have problems handling big files it might be due to a limitation in Windows webdav client. You can try the following to increase the size of files that Windows webdav client is able to manage:

1) You have to turn on BasicAuth via regedit to allow accessing the App's server by username and password.

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\WebClient\Parameters]
"BasicAuthLevel"=dword:00000002

2) You have to change Window's limit to file size when using the integrated WebDAV client.

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\WebClient\Parameters]
"FileAttributesLimitInBytes"=dword:000f4240

3) Restart windows.

This allows file sizes up to 4 Gigabytes handled by the client.

Recent changes:
Material design
Bug fixing
With this application you can mount any directory on your phone, including memory card, as a drive on Windows or Linux. You can also use a WebDAV client to browse a phone directory.

This application has been tested using Windows8 Explorer (should also work with Windows7 but it will not work on WindowsXP) and WebDAV client bitkinex. You can download it from http://www.bitkinex.com/

Special thanks to: Beatriz Vera, Peter Ulrich, Gabor Fodor, Manuela Merino García and Anna Rainieri.

Implemented Intents
com.theolivetree.webdavserver.StartWebDavServer
com.theolivetree.webdavserver.StopWebDavServer

You can find a lock setting to specify how the device should be kept awake while server is running. There are three modes available:
New locks used
*SCREEN_DIM_WAKE_LOCK : Existing mode. Screen is on so energy consumption is higher. Use this mode if connections is dropped.
*WIFI_MODE_FULL : New mode. Screen is off so device will use less energy while server is running but data connection can be dropped. It is not recommended to use this mode.
*WIFI_MODE_FULL_HIGH_PERF: New mode only available on Android >= 3.1. Screen is off so energy consumption should be less than in the first mode. This mode is recommended to save energy but you might find problems so you might to select default lock mode.

How to connect with WebDAV server using USB cable:

This can useful when you have USB cable and no network available.
1) On your phone go to Settings->Applications->Development and set option "USB debugging".
2) Connect your phone to your PC using USB cable.
3) Start adb server. On your PC run command "adb start-server".
adb is a program that you can find on android sdk. Usually you will find it on android-sdk\platform-tools\adb.
4) Forward needed ports from your PC to your phone. On your PC run command "adb forward tcp:8080 tcp:8080"
With this, any connection in your pc to 127.0.0.1:8080 will be forwarded to your phone in port 8080.
5) Run WebDAV server in your phone, open settings and in "Network interfaces" select "Loopback (127.0.0.1)"
6) Start WebDAV server.
7) In your PC connect your WebDAV client to http://127.0.0.1:8080 (port might be different, it depends on your WebDAV Server configuration).

Permissions needed:

INTERNET
ACCESS_NETWORK_STATE
ACCESS_WIFI_STATE

Network permission to enable server to open network communication with WebDAV clients.

WRITE_EXTERNAL_STORAGE

Enables WebDAV server write received files from WebDAV clients on sdcard.

WAKE_LOCK

Keeps phone wake only while server is running. If phone is not wake WebDAV server can not be accessed.

Problems with big files:

If you have problems handling big files it might be due to a limitation in Windows webdav client. You can try the following to increase the size of files that Windows webdav client is able to manage:

1) You have to turn on BasicAuth via regedit to allow accessing the App's server by username and password.

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\WebClient\Parameters]
"BasicAuthLevel"=dword:00000002

2) You have to change Window's limit to file size when using the integrated WebDAV client.

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\WebClient\Parameters]
"FileAttributesLimitInBytes"=dword:000f4240

3) Restart windows.

This allows file sizes up to 4 Gigabytes handled by the client.

Recent changes:
Material design
Bug fixing
Show full description Hide full description
adb basicauth cable client connect currentcontrolset dword energy fileattributeslimiti files forward hkey_local_machine might mode phone port run sdk server tcp usb webclient webdav wifi_mode_full_high_ windows

Comments

Tag cloud

android card custom drive files folder map phone windows works

Positive comment tag cloud

android card copying ext folder phone storage wifi windows works

Negative comment tag cloud

able drive files folder map password phone set windows work

Google Play Rankings

This app is not ranked

Permissions

Development tools
test access to protected storage
Network communication
view network connections, view Wi-Fi connections, full network access
Storage
modify or delete the contents of your USB storage
System tools
prevent phone from sleeping

Libraries

Ad network libraries

AdMob

Social libraries

None found

Development tools

Android Jetpack core Google Maps SDK Google Analytics Apache Commons I/O Simple Logging Facade for Java (SLF4J) Apache Commons Codec Apache Commons Logging JUnit JDOM

Related apps

Total Commander - file manager
C. Ghisler
89
Free
10,000,000+
WebDAV plugin-Total Commander
C. Ghisler
89
Free
100,000+
Call Recorder - ACR
NLL
70
Free
10,000,000+
X-plore File Manager
Lonely Cat Games
91
Free
10,000,000+
Keepass2Android Password Safe
Philipp Crocoll (Croco Apps)
91
Free
1,000,000+
WiFi/WLAN Plugin for Totalcmd
C. Ghisler
88
Free
500,000+
ASR Voice Recorder
NLL
89
Free
5,000,000+
Ghost Commander File Manager
Ghost Squared
86
Free
1,000,000+

More from The Olive Tree

Ftp Server
The Olive Tree
81
Free
1,000,000+
Ssh server
The Olive Tree
63
Free
50,000+
Ftp Server Pro
The Olive Tree
83
$0.99
10,000+
Wear File Transfer
The Olive Tree
76
Free
10,000+
BikeLight
The Olive Tree
68
Free
5,000+
Ftp Server Pro TV
The Olive Tree
84
$0.99
1,000+
WebDAV Server Pro
The Olive Tree
79
$0.99
1,000+
Ssh Server Pro
The Olive Tree
80
$1.16
500+

Want more apps?

Find the Android apps that are trending right now

AppBrain Intelligence premium content

Subscribe now to get full and unlimited access to AppBrain Intelligence. You'll have access to:

  • Unlimited pageviews (both app and developer details)
  • Recent install count per app (last 30 days)
  • Detailed ranking data per app
  • Recent install count per developer (last 30 days)
  • Full timeline per developer
  • Device market shares data per country

1 Month

$75/mo
(billed every month)

SAVE 0%
Subscribe

3 Months

$65/mo
($195 billed every 3 months)

SAVE 13%
Subscribe

1 Year

$57.50/mo
($690 billed every year)

SAVE 23%
Subscribe
Each subscription will automatically renew 3 days before the expiration date for the same time period. Subscriptions can be cancelled at any time before the renewal.

Developer services

  • Android App Promotion
  • Monetize Your Android App
  • Track ranking of your Android App
  • AppBrain SDK
  • Apptimizer

Android Statistics

  • Android statistics
  • Google Play Developer stats
  • Trending Apps
  • All-time Popular Apps

About AppBrain

  • Contact
  • Blog
  • Privacy
  • Documentation
  • Android App Marketing: Learn how to better market your Android app
© 2010-2020 - AppBrain