Issue 81583 - disconnect a user from OpenOffice to a webdav server
Summary: disconnect a user from OpenOffice to a webdav server
Status: UNCONFIRMED
Alias: None
Product: General
Classification: Code
Component: code (show other issues)
Version: OOo 2.3.0 RC1
Hardware: All All
: P3 Trivial (vote)
Target Milestone: ---
Assignee: AOO issues mailing list
QA Contact:
URL:
Keywords: needhelp
Depends on:
Blocks:
 
Reported: 2007-09-14 14:11 UTC by nfrisoni
Modified: 2014-02-23 18:44 UTC (History)
3 users (show)

See Also:
Issue Type: ENHANCEMENT
Latest Confirmation in: ---
Developer Difficulty: ---


Attachments

Note You need to log in before you can comment on or make changes to this issue.
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.