1 Sep 15:05
1 Sep 21:21
Re: Getting All Properties Std. and Custom
Julian Reschke <julian.reschke <at> gmx.de>
2006-09-01 19:21:11 GMT
2006-09-01 19:21:11 GMT
Aslam Bari schrieb: > Dear all, > In Slide there are some standard properties like dispalayname, > contentlenght... etc. A user also can make some custom properties. I user > make custom properties in DAV: namespace then my question is:- Bad idea. Do not put custom properties into the DAV: namespace. > Is there is any way to get all DAV: properties including Standard as well as > userdefined properties in the slide. > I ONLY WANT UNIQUE PROPERTIES. means First get STD. properties i.e. 12-15 > and user defined properties , no duplicate. IN ALL THE RESOURCES. > ... Is this question about the Slide API or WebDAV? In the latter case, just check the documentation on PROPFIND in RFC2518. Best regards, Julian
2 Sep 17:53
Retrieve workpath and/or rootpath of store without hacking
dkurilenko <at> Gmail.com <dkurilenko <at> gmail.com>
2006-09-02 15:53:43 GMT
2006-09-02 15:53:43 GMT
Hi ALL. I have small problem : I want access workpath and/or rootpath of store (exatly it is class AbstractTxFileStoreService - really I need know location of repository ) but agains architecture of Slide we haven't direct access to Namespace/Stores etc --- it is allow access us only over Proxy NameSpaceAccessToken. I want do it without hacks (means editing certains classes or reparsing Domain.xml again manually to retrive this params). Any help would be appreciated. Thank you.
2 Sep 18:04
Multiplie Namespaces
dkurilenko <at> Gmail.com <dkurilenko <at> gmail.com>
2006-09-02 16:04:49 GMT
2006-09-02 16:04:49 GMT
Hi All. I want setup two namespace in the Domain.xml file : one with versioncontrol support and other without it. Is it possible disable versioncontrol without setting global variable :org.apache.slide.versioncontrol=false for specific namespace or store ? Thank you.
2 Sep 21:07
Classloader problem using WCK
Gregory McFall <gmcfall <at> totalwisdom.com>
2006-09-02 19:07:45 GMT
2006-09-02 19:07:45 GMT
I have successfully installed WCK (Slide 2.2), and I have created a custom implementation for SessionAuthenticationManager which gets invoked just fine. My problem is that my implementation uses classes that are defined in tomcat/shared/lib, and these classes do not seem to be accessible to the slide webapp. Can anyone explain why classes from "shared/lib" are not available from the slide ClassLoader? ~ Greg
3 Sep 08:05
Propfind <allprop> problem
Aslam Bari <iamaslamok <at> yahoo.co.in>
2006-09-03 06:05:07 GMT
2006-09-03 06:05:07 GMT
Dear ll, I am requesting to get all properties for all resources (infinity). It gives me properties for all resources. But i want to get unique property names. Means I want to know only properteis names available in standard DAV: and user cutomized properties in slide. Is there is any way to get all unique properteis llist? Thanks... -- -- View this message in context: http://www.nabble.com/Propfind-%3Callprop%3E-problem-tf2209494.html#a6119468 Sent from the Jakarta Slide - User forum at Nabble.com.
3 Sep 08:09
Re: Getting All Properties Std. and Custom
Aslam Bari <iamaslamok <at> yahoo.co.in>
2006-09-03 06:09:35 GMT
2006-09-03 06:09:35 GMT
Hi Julian, Thanks for reply. I am making cusotm properteis using DAVExplore and now i am making the properties in "CUSTOM:" namespace. Now the questions are:- 1.) I am giveing propfind method with <allprop/> , it is giving me all the properteis of all the resources. The properties names like displayname, creationdate .. repeated for every resource. But i want only to get unique names of properties. If i am giving this request, then it is performance issue and very havy. Is not there is a way to get all unique properties names. 2.) How to search or get allprop in my Custom namespace. Julian Reschke wrote: > > Aslam Bari schrieb: >> Dear all, >> In Slide there are some standard properties like dispalayname, >> contentlenght... etc. A user also can make some custom properties. I user >> make custom properties in DAV: namespace then my question is:- > > Bad idea. Do not put custom properties into the DAV: namespace. > >> Is there is any way to get all DAV: properties including Standard as well >> as >> userdefined properties in the slide. >> I ONLY WANT UNIQUE PROPERTIES. means First get STD. properties i.e. 12-15 >> and user defined properties , no duplicate. IN ALL THE RESOURCES.(Continue reading)
3 Sep 16:23
Re: Getting All Properties Std. and Custom
Julian Reschke <julian.reschke <at> gmx.de>
2006-09-03 14:23:15 GMT
2006-09-03 14:23:15 GMT
Aslam Bari schrieb: > Hi Julian, Thanks for reply. > > I am making cusotm properteis using DAVExplore and now i am making the > properties in "CUSTOM:" namespace. Now the questions are:- > > 1.) I am giveing propfind method with <allprop/> , it is giving me all the > properteis of all the resources. The properties names like displayname, > creationdate .. repeated for every resource. But i want only to get unique > names of properties. If i am giving this request, then it is performance What do you mean by "unique" names? > issue and very havy. Is not there is a way to get all unique properties > names. > > 2.) How to search or get allprop in my Custom namespace. You can select properties by property names, but that doesn't allow wildcards (such as all properties in a certain namespace). See <http://greenbytes.de/tech/webdav/draft-reschke-webdav-search-09.html#rfc.section.5.3>. Best regards, Julian
4 Sep 05:11
Re: Getting All Properties Std. and Custom
aslam bari <iamaslamok <at> yahoo.co.in>
2006-09-04 03:11:21 GMT
2006-09-04 03:11:21 GMT
Hi Julian, I think you are not getting my point. Let me explain what i need:- I want to make a List Box on a form which will show all the properties available in slide for all resources. We know some STD. properties like displayname, contentlenght etc, they should come in List Box. If other user have added their properties, they should also come in the List Box. May be some users made property with same name. But In List Box Property names should come only one time no duplicate means (Unique). How can i achive this? If i use allProp that is very expensive by the performance point of view. I have found a solution. I first Add All the STD. property in List Box that will be 15 or 16. And tell user to add their CUSTOM property in different namespace. But now how can i propfind allprop in that custom namespace. Now i hope for the positive response. Thanks in advance. Julian Reschke <julian.reschke <at> gmx.de> wrote: Aslam Bari schrieb: > Hi Julian, Thanks for reply. > > I am making cusotm properteis using DAVExplore and now i am making the > properties in "CUSTOM:" namespace. Now the questions are:- > > 1.) I am giveing propfind method with , it is giving me all the > properteis of all the resources. The properties names like displayname, > creationdate .. repeated for every resource. But i want only to get unique > names of properties. If i am giving this request, then it is performance What do you mean by "unique" names? > issue and very havy. Is not there is a way to get all unique properties(Continue reading)
4 Sep 11:35
RE: Getting All Properties Std. and Custom
Miguel Figueiredo <mfigueiredo <at> maisis.pt>
2006-09-04 09:35:31 GMT
2006-09-04 09:35:31 GMT
Hello Aslam, I believe it's possible, but not sure, that DASL supports your query (Julian is the expert there). And it doesn't need to be very performance expensive if you activate slide's integrated indexing. You can find some instructions for that in here: http://wiki.apache.org/jakarta-slide/DaslConfiguration The link also suggests another option, witch would be accessing the metainformation database directly, and perform your 'DISTINCT' sql query. Hope this helps, Miguel Figueiredo -----Original Message----- From: aslam bari [mailto:iamaslamok <at> yahoo.co.in] Sent: segunda-feira, 4 de Setembro de 2006 4:11 To: Slide Users Mailing List Subject: Re: Getting All Properties Std. and Custom Hi Julian, I think you are not getting my point. Let me explain what i need:- I want to make a List Box on a form which will show all the properties available in slide for all resources. We know some STD. properties like displayname, contentlenght etc, they should come in List Box. If other user have added their properties, they should also come in the List Box. May be some users made property with same name. But In List Box Property names(Continue reading)
RSS Feed