Questions tagged [milton]

Milton is an open-source server-side WebDAV API for Java.

Milton is an open-source (Apache License, Version 2.0.) server-side Java API to implement WebDAV (Web-based Distributed Authoring and Versioning) Its homepage is http://milton.ettrema.com.

14 questions
3
votes
2 answers

slf4j logging in console instead of file

I'm testing Milton WebDAV API and I need to log when some document is opened. I can have it logging on Eclipse's console, but can't make it put the message on a external file. Found several links here at SO and Google, but none worked. I've spent…
paulochf
  • 690
  • 2
  • 11
  • 21
2
votes
1 answer

Remote file edit and saving without downloading/editing/uploading?

This is a problem I've faced recently. I have a Java application which give the facility to create user accounts and then the user can upload files to the remote server which the application is hosted. At some point the user can do the followings…
prime
  • 14,464
  • 14
  • 99
  • 131
2
votes
1 answer

Milton.io Authentication

i have written a small grails webapp. I am using milton.io to access some content via webdav. So webdav is still working and i am able to put, get, delete files - and so on. But now i want to add authentication and authorization. And here is the…
1
vote
2 answers

How to get HTTP 100 Continue to work for WebDAV on embedded Grizzly?

I am using the Milton WebDAV server (1.6.8) with an embedded Grizzly servlet container (2.1.7), and in their default configuration, PUT requests (at least as issued by Cyberduck) do not work. I have tracked the issue down to a problem with how HTTP…
Thilo
  • 257,207
  • 101
  • 511
  • 656
1
vote
1 answer

How can I initialize milton to use non-standard path?

I tried to initialize milton in spring-boot app to have the path \\localhost@8080\webdav\DavWWWRoot instead of \\localhost@8080\DavWWWRoot My configuration: @Configuration open class MiltonBeanConfig { @Bean open fun…
mihalis
  • 33
  • 6
1
vote
1 answer

why Spring Security firewall rejects WebDav methods like "PROPFIND"?

I've written a project by spring boot, now I'm using Milton Project to add webdav support. there is some simple example that works well. but when I add this example to my project, Spring Security Firewall rejects requests. thank you in advance for…
askari88
  • 48
  • 1
  • 7
1
vote
0 answers

Combining Milton WebDav with a cloud node

With our project we are trying to implement Milton in combination with a jetty based cloud. The problem we have is that the cloud slot can only be stopped and started, we cannot change any configuration. We do have the ability to add libraries to…
1
vote
1 answer

how milton webdav work with ms office 2013

how milton webdav work with ms office 2013? webdav work fine,but can't open ms word. if I need milton enterpise editon? window.open("ms-excel:ofe|u|"+url, '',''); Any suggestion?thanks advance.
wilson
  • 281
  • 6
  • 22
1
vote
1 answer

Sonatype Nexus: Cannot proxy http://milton.io/maven/

We are using Nexus to proxy remote maven repositories. It works well except with the maven repository of milton.io. If I add the repository to my maven settings.xml without using Nexus it works well, artifacts are correctly pulled:
Olivier Masseau
  • 778
  • 7
  • 23
1
vote
2 answers

How can i increase upload and download speed of milton webdav server?

I'm using milton server to support webdav protocol in my project but there is a problem. This is my upload (PUT) method code: public DavFile upload(InputStream is, String name) { DavFile davFile = null; if (is != null) { File…
S.Yavari
  • 876
  • 8
  • 25
1
vote
1 answer

How do you upload a file to a Milton WebDAV server using curl?

When I try to curl using the -T option, I get an empty reply: $ curl --digest -u me:pwd -H "Content-Type:application/xml" -T test.xml http://localhost:8085/ curl: (52) Empty reply from server Anyone know the incantation? The server works fine when…
1
vote
2 answers

To understand Milton WebDAV server working with cloud environment load balancer

We want to use Milton WebDav to transfer files in our web application which eventually is going to be deployed on cloud environment (most likely azure) as IaaS. Now we are aware that WebDAV standard is stateless and hence it should not create any…
csn
  • 376
  • 7
  • 18
0
votes
1 answer

@PutChild Upload file with milton webdav in Mac Finder failed

I'm using milton, and my upload code as follows: @PutChild @Transactional public FileContentItem uploadFile(FolderContentItem parent, String name, byte[] bytes){ String traceId = UuidGenUtil.createUuid(); try { …
chou
  • 344
  • 3
  • 17
0
votes
1 answer

Different WebDav resource paths for same resource when using different clients

I am in the process of testing a web dav enabled view my system using anumber of different clients. One particular client seems to do sometimes do strange things and I was wonder is this to be expected.. The log below shows how it has somehow…
mP.
  • 18,002
  • 10
  • 71
  • 105