I've implemented WebDAV server using WebDAV-Servlet. I open a document by through WebDAV and I make a change on it,when I want to save the document, word alert me that this document changed by another user while no one had edited this document. I don't understand the problem. Who has edited this document? Is there any problem with my Lock implementation?
MS Word prevents edit protected document because word says document changed by another author while no one has edited it
574 views Asked by Amir Amiri At
1
There are 1 answers
Related Questions in JAVA
- I need the BIRT.war that is compatible with Java 17 and Tomcat 10
- Creating global Class holder
- No method found for class java.lang.String in Kafka
- Issue edit a jtable with a pictures
- getting error when trying to launch kotlin jar file that use supabase "java.lang.NoClassDefFoundError"
- Does the && (logical AND) operator have a higher precedence than || (logical OR) operator in Java?
- Mixed color rendering in a JTable
- HTTPS configuration in Spring Boot, server returning timeout
- How to use Layout to create textfields which dont increase in size?
- Function for making the code wait in javafx
- How to create beans of the same class for multiple template parameters in Spring
- How could you print a specific String from an array with the values of an array from a double array on the same line, using iteration to print all?
- org.telegram.telegrambots.meta.exceptions.TelegramApiException: Bot token and username can't be empty
- Accessing Secret Variables in Classic Pipelines through Java app in Azure DevOps
- Postgres && statement Error in Mybatis Mapper?
Related Questions in MS-WORD
- VBA query - sort text in alphabetical order in Word
- Can you programmatically generate a link to open a Word document and navigate to a particular location within it (preferably a comment)?
- How can I create an automatic table of contents in docx without the text being bold?
- Does MS Word secretly upload my file to cloud?
- How to use VBA to bold just some text
- Find text and numbers Formatted: "Case: BE########" and format them, regardless of the number
- Access all documents for Word from multiple instance using Excel VBA
- Using document.Application.PixelsToPoints will give different results
- Error: "Document_KeyUp" event not working
- Word macro for reversing selected text
- Make a table of remarks/figures, and format it as a table
- Add custom ribbon button to dotm file that runs macro
- Inline pictures: Add margin
- Excel VBA: Action logging on label click (like Audit Trail)
- Custom referencing format in CSL document, Want to add whitespace into bibliography
Related Questions in WEBDAV
- Cannot load modules/mod_dav_svn.so into server
- How to properly disable certificate verification?
- Publicly-accessible WebDAV
- I have problem importing ITHit from 'webdav.client'
- Apache/webdav: "client used wrong authentication scheme"
- Problems saving excel documents with my custom wsgidav server
- Apache Jackrabbit WebDAV Put xml file successful but download empty file
- Doing a scripted batch rename of many files on a WebDAV (e.g. Nextcloud) share?
- Sharing browser cookies with an external application like "viewinfileexplorer" feature
- How can I upgrade the major version of Fedora CoreOS while excluding the davfs2 package?
- WebDAV - '/mnt/jfrog/': Transport endpoint is not connected
- Can I use WOPI instead of WEBDAV with MS Word desktop application
- WebDAV xml callback using PHP - sabre/dav
- How to configure IIS to allow HttpDelete without Removing WebDAVModule
- Why does Windows show restricted WebDAV directories?
Related Questions in ITHIT-WEBDAV-SERVER
- MS Office URL-authentication information missing
- How to add an Administration/Monitoring interface to an ASP.net Core WebDAV Service
- Chrome asks if an application should be opened
- IT-Hit WebDAV Library: passing Access-Token from webapp through WebDAV-Client to webDAV-Server possible?
- Different file name in URL and display original in Ms-office Webdav
- When editing a Word document on a WebDAV server, where is the file written to locally?
- Windows 10 Explorer displays wrong values for total size and free space for WebDAV drive
- WebDav Word 2016 Checkin Button
- Latest version of Microsoft Office block MS-OFBA requests
- MS Word prevents edit protected document because word says document changed by another author while no one has edited it
- MS office client sends no cookie after MS-OFBA Succeeds
- In ITHit WebDAV server how do I make it use the CORS allowed origins list configured in startup.cs
- Get file Versions in ITHit WebDav Server Engine Library using AJAX Browser in ASP.NET
- What is causing the HTTP 500 errors on LOCK commands in the Windows Application event log?
- Write files changes made when opening file through windows explorer in a mapped drive
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)

After a while I found out the solution.
The root cause of this problem is changing lastmodified date between lock and unlock requests. last modifieddate and createddate will combine in numeral form. Then this numeric will be inserted into Head request, response which call "Etag". in my caste it's like ETag: W/"1234--9223372036854775808" Microsoft word will get Etag value and will insert it in If-None-Match request header. The Etag value If-None-Match should be same else ms word suppose the word content had changed so the combine alert is ms word will show.
Another point is that you should add your website in trusted site. If you don't do this an alert will raise before word opens.