Issue 81583

Summary: disconnect a user from OpenOffice to a webdav server
Product: General Reporter: nfrisoni <nfrisoni>
Component: codeAssignee: AOO issues mailing list <issues>
Status: UNCONFIRMED --- QA Contact:
Severity: Trivial    
Priority: P3 CC: elish, issues, pagalmes.lists
Version: OOo 2.3.0 RC1Keywords: needhelp
Target Milestone: ---   
Hardware: All   
OS: All   
Issue Type: ENHANCEMENT Latest Confirmation in: ---
Developer Difficulty: ---

Description nfrisoni 2007-09-14 14:11:20 UTC
When I use a FilePicker to have a view on a webdav server, I use the following
code : 

With oFilePicker
	.DisplayDirectory = ConvertToUrl(davUrl)

This action will lauch an OOo webdav authentication dialog. So, I can connect
one user. If the user has finished and leave his computer, I would like to be
able to authentify another user.

To resume the issue is that I would like to be able to connect a user on a
server through webdav protocol, disconnect him and connect another user.
Currently, the only way to do that is to close OpenOffice and leave OOo systray
bar, lauch it again and athenticate a new user. 
I would like to be able to authentify any user in a macro using the following code :

	With oFilePicker
		.DisplayDirectory = ConvertToUrl(davUrl)
		.appendFilter("Textes","*.txt")
		.appendFilter("Texte OpenDocument (.odt)","*.odt", "*.sxw", "*.sxc") '*.sxw;
*.sxc;
		.appendFilter("All","*; ")
		.CurrentFilter = "Texte OpenDocument (.odt)"

And I would like to add: 
                .connectToWebdav(login, password)
If I could use authentication like this, I will be able to connect as many users
as I want to a webdav server without restarting OpenOffice.Org.
Is there a way to do that? If not is it possible to add this functionality to
futur version of OpenOffice.Org

Thank you
Comment 1 thorsten.martens 2007-10-15 12:04:33 UTC
TM->requirements: please have a look, thanks.