jegroupware - Egroupware Java Client libary, use to control and remote your egroupware, in backend work http client, all function represent as api.
This client is testing by EGroupware (14.2 old and new 17.1) last update to 2017-12-18.
http://www.egroupware.org
add Filemanager:
- delete
- dir
- upload file
- download file
bugfix and code clear, remove/change deprecated
http://opensource.org/licenses/GPL-2.0 GPL2 - GNU General Public License, version 2 (GPL-2.0)
I used this library for my projects:
- EgwWinLogin & ELogin EGroupware App/Module
- Notificater for OS System (new version in future)
- EGroupware Workflow Java Node Server (future)
- Android Client (future)?
View to: https://www.hw-softwareentwicklung.de/projekte/egwwinlogon/
First open the project in Netbeans (Version 8.0.2+) with java version 8.
Then clean and build this project in netbeans.
By Run and Debug you open the example 1.
Open your Netbeans project and click right "Properties".
Then click "libraries" -> "Add Jar/Folder" select "jegroupware.jar".
Finish to use EGroupware Java Client.
- report errors
- report ideas
- talk with me
- fork and commit new code :)
- help egroupware ;)
Egroupware egw = Egroupware.getInstance(new EgroupwareConfig( "http://mydomain/egroupware/", "default", "admin", "password" )); try { egw.login(); if( egw.isLogin() ) { ......
See/Check Example1 (login, delete file, dir file list, upload file and download file):
- com.jegroupware.example.test_egw_1.java