Re: Permission question

2006-01-19 Thread Jacob Lund
Hmm - did you add the jurnalist role to the publisher role using DAV:group-member-set? It should work. There is a setting in the domain.xml: parameter name=nested_roles_maxdepth2/parameter I think the default value here is 0 so you would have to change that. /jacob - Original Message

Re: MERGE Method

2006-01-16 Thread Jacob Lund
Hi Ulker! Slide only supports the Basic Versioning part of the Delta V specification. /jacob - Original Message - From: U. Ozgen [EMAIL PROTECTED] To: Slide Users Mailing List slide-user@jakarta.apache.org Sent: Monday, January 16, 2006 2:19 PM Subject: MERGE Method Hi all; I

Re: non-ASCII chars in resource names (e.g. german umlauts)

2005-09-24 Thread Jacob Lund
in Japanese, Slide doesn't work with Japanese Windows clients because of the above problem. If the local encoding is UTF-8 or UTF-8 compatible like in many European languages then you don't have these problems. Maybe this explains why. Carlos Jacob Lund wrote: I do not think it is a OS problem

Re: non-ASCII chars in resource names (e.g. german umlauts)

2005-09-23 Thread Jacob Lund
I do not think it is a OS problem either - it was just to check if slide stored the files correctly. The only difference between you store configuration and mine it that I have not defined any encoding for the store. I am not really sure what is going on. Try to use the TcpTrace program from

Re: non-ASCII chars in resource names (e.g. german umlauts)

2005-09-20 Thread Jacob Lund
in the Tomcat startup In tomcat monitor, under Java tab, added this option into 'Java Options' box. however, the result is still the same. Not sure if what I did is correct. On 9/19/05, Jacob Lund [EMAIL PROTECTED] wrote: There are several issues with utf-8 and slide. The filestore and windows will only

Re: non-ASCII chars in resource names (e.g. german umlauts)

2005-09-19 Thread Jacob Lund
There are several issues with utf-8 and slide. The filestore and windows will only support utf-8 if you have the java runtime parameter -Dfile.encoding=UTF-8 set. Windows Explorer in windows 2000 does not support utf-8 by default. In you install the latest service pack for office XP then it

Re: non-ASCII chars in resource names (e.g. german umlauts)

2005-09-19 Thread Jacob Lund
-19 at 11:42 +0200, Jacob Lund wrote: There are several issues with utf-8 and slide. The filestore and windows will only support utf-8 if you have the java runtime parameter -Dfile.encoding=UTF-8 set. Windows Explorer in windows 2000 does not support utf-8 by default. In you install the latest

Re: Put and propatch

2005-08-16 Thread Jacob Lund
The binary content of the file and the meta data are considered as one resource. You always have to checkout before add/update a resource. I think there is a parameter somewhere the can disable this for meta tags, but it will break compatibility with the delta-v standard. /jacob -

Re: Windows XP mapping

2005-08-10 Thread Jacob Lund
In the server.xml file: Context path= docBase=slide debug=99 / /jacob - Original Message - From: Tobias Maier [EMAIL PROTECTED] To: Slide Users Mailing List slide-user@jakarta.apache.org Sent: Wednesday, August 10, 2005 12:07 PM Subject: Re: Windows XP mapping Well, and how con I

Re: acl question

2005-07-21 Thread Jacob Lund
Hi Kevin! Maybe I missed something. But if you have allow all to authenticated users - then why should your case with user A and B not be allowed? /jacob - Original Message - From: [EMAIL PROTECTED] To: Slide Users Mailing List slide-user@jakarta.apache.org Sent: Thursday, July 21,

Re: file locking and events (Newby)

2005-07-18 Thread Jacob Lund
see inside /jacob - Original Message - From: Patrick Ruhkopf [EMAIL PROTECTED] To: slide-user@jakarta.apache.org Sent: Monday, July 18, 2005 4:11 PM Subject: file locking and events (Newby) Hi all, Maybe this is more like a WebDAV newby question, but I couldn't find anything

Re: Effort to use/enhance Slide

2005-07-06 Thread Jacob Lund
well, 2,3,4,6,7 is a part of WebDAV, DeltaV and ACL and is thereby directly supported by slide. 1. I am not sure about. Slide does not support transaction control on several webdav requests from a client. 5. Slide is purely java. You might want to look at another opensource project for

Re: Slide authentification

2005-05-26 Thread Jacob Lund
I would suggest that you use the jaas module - not the slide realm. The jaas module will also let you use the slide users for tomcat authentication: http://jakarta.apache.org/slide/howto-jaas.html /jacob - Original Message - From: Bertrand Tignon [EMAIL PROTECTED] To: Slide Users

Re: Bind method and accents

2005-05-20 Thread Jacob Lund
Are you sure that the DAV:segment should be escaped? Normally only the href elements are escaped. Try to send the request with the DAV:segment utf-8 encoded but not escaped. /jacob - Original Message - From: Laurent Michenaud [EMAIL PROTECTED] To: Slide Users Mailing List

Re: Bind method and accents

2005-05-20 Thread Jacob Lund
this segment a path? /Jacob - Original Message - From: Julian Reschke [EMAIL PROTECTED] To: Slide Users Mailing List slide-user@jakarta.apache.org Sent: Friday, May 20, 2005 11:46 AM Subject: Re: Bind method and accents Jacob Lund wrote: Are you sure that the DAV:segment should be escaped

Re: Bind method and accents

2005-05-20 Thread Jacob Lund
ahh - missed that. Thanks. :) - Original Message - From: Julian Reschke [EMAIL PROTECTED] To: Slide Users Mailing List slide-user@jakarta.apache.org Sent: Friday, May 20, 2005 12:31 PM Subject: Re: Bind method and accents Jacob Lund wrote: Hi Julian! Is the DAV:segment considered a part

Re: Role/User using Webdavlib

2005-05-19 Thread Jacob Lund
Adding users to groups or roles in slide is simply to use proppatch. Add a list of href user elements to the DAV:group-member-set property on the specific group. e.g.: adding users /user/john and /user/joe to /roles/users property DAV:group-member-set on /roles/users must be set to

Re: Binding store rename accents

2005-05-18 Thread Jacob Lund
WebdavResource(oHttpURL); oWebdavResource.startTransaction(SLIDE_ADMIN, SLIDE_TIMEOUT ); if ( oWebdavResource.moveMethod( /slide/files/test, /slide/files/testéàù)) { oWebdavResource.commitTransaction(); } else oWebdavResource.abortTransaction(); oWebdavResource.close(); -Message d'origine- De : Jacob

Re: Binding store rename accents

2005-05-18 Thread Jacob Lund
configured -Dfile.encoding=UTF-8. I have seen that some methods need the parameters to be UTF-8 encoded, others don't. The move method doesnot need the parameters to be encoded. I don't have the problem with the standard store. -Message d'origine- De : Jacob Lund [mailto:[EMAIL PROTECTED] Envoyé

Re: Binding store rename accents

2005-05-18 Thread Jacob Lund
Forgot to mention: I am using 2.1 and the filestore with bindings. Encoding set to UTF-8. The move shown below will move /files/test to /files/testéàù on my slide instance. /jacob - Original Message - From: Jacob Lund [EMAIL PROTECTED] To: Slide Users Mailing List slide-user

Re: using JAAS

2005-05-09 Thread Jacob Lund
First of all - try to verify that you can logon to the server using a normal internet browser. Have you remembered the jaas.config file? This file should contain: slide_login { org.apache.slide.jaas.spi.SlideLoginModule required namespace=slide; }; And you must have a java runtime parameter:

Re: Non us-ascii character in filenames break. Was: French accent, getting crazy....

2005-05-02 Thread Jacob Lund
I cannot help this - are you sure that you client is using utf8? I am Danish, and I can store filenames using special Danish letters. I have also tested with Russian letter in filenames, and it is working fine! What you describe sound to me like you client is sending non utf8 encoded data to

Re: Non us-ascii character in filenames break. Was: French accent, getting crazy....

2005-05-02 Thread Jacob Lund
/h3/body/htmlConnection closed by foreign host. -- David Delbecq Royal Meteorological Institute of Belgium Le Lundi 2 Mai 2005 09:02, Jacob Lund a écrit : I cannot help this - are you sure that you client is using utf8? I am Danish, and I can store filenames using special Danish letters. I have

Re: Non us-ascii character in filenames break. Was: French accent, getting crazy....

2005-05-02 Thread Jacob Lund
oracle database here is configured to use a unicode character set as the default charset for all text fields. Le Lundi 2 Mai 2005 13:26, Jacob Lund a écrit : I just noticed something - is the sql scheme for oracle using Unicode? In order to make SQLServer support utf8 I had to change varchar

Re: French accent, getting crazy....

2005-04-29 Thread Jacob Lund
I have slide 2.1 working with utf8. But you should notice that windows 2000 with office 97 and DAVExplorer does not support utf8. Have a look at: http://greenbytes.de/tech/webdav/webfolder-client-list.html /jacob - Original Message - From: Alexandre Clavaud [EMAIL PROTECTED] To:

Re: French accent, getting crazy....

2005-04-29 Thread Jacob Lund
I have tested slide 2.1 and utf8 with filestore and SQLServer store - both are working fine. Make sure that slide has been set to utf8 in slide.priperties file, that the connector in server.xml is set to utf8, and the store is using utf8. The only bug I have found in slide 2.1 with resprct to

utf8 bug in 2.1

2005-04-27 Thread Jacob Lund
I think that I have discovered a UTF8 bug in the report webdav command in 2.1 The xml responcebody claims to be UTF8 encoded but the content of the body is encoded in local characterset. Does anyone know if this is corrected in 2.2? /jacob

custom properties in ACEs

2005-04-25 Thread Jacob Lund
Hi All! Has anyone been looking a custom properties in ACEs? From what I can see only the owner property is supported. Is this store specific? /jacob - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: Supporting Japanese charecters in file names.

2005-04-20 Thread Jacob Lund
that the content and the metadata stored in File Store is correct. But the resource properties retrived using propfind (ReportMethod) method shows garbled characters. Do you know anything about it? Regards, Abhijeet -Original Message- From: Jacob Lund [mailto:[EMAIL PROTECTED] Sent: Saturday

Re: Supporting Japanese charecters in file names.

2005-04-16 Thread Jacob Lund
Well I can answer some of your questions: The server does support utf8. I don't know about the client. The file store does support uft-8 if you add following parameter to your java runtime Dfile.encoding=UTF-8. I know some has slide running on Jbossm jetty, weblogic and websphere - you clould

Re: LDAP Connection Error

2005-03-14 Thread Jacob Lund
, Miguel Figueiredo -Original Message- From: Jacob Lund [mailto:[EMAIL PROTECTED] Sent: segunda-feira, 28 de Fevereiro de 2005 8:46 To: Slide Users Mailing List Subject: Re: LDAP Connection Error Well - you mentioned exactly what I have been wondering about! Most companies split users

Re: slide config help

2005-03-10 Thread Jacob Lund
You should look at the slide wiki: http://wiki.apache.org/jakarta-slide One way to go might be jaas: http://jakarta.apache.org/slide/howto-jaas.html /jacob - Original Message - From: Kumaran [EMAIL PROTECTED] To: slide-user@jakarta.apache.org Sent: Thursday, March 10, 2005 5:04 AM

Re: UTF-8 URIs Revisisted

2005-03-02 Thread Jacob Lund
Hi Brian! The useURIValidationHack=false is only relevant in TC4. In TC5 it is not secessary - dont know if that would disturb anything! Also you may want to add JVM parameter -Dfile.encoding=UTF-8 /jacob - Original Message - From: Brian Ferris [EMAIL PROTECTED] To:

Re: LDAP Connection Error

2005-02-28 Thread Jacob Lund
a battle. From: Jacob Lund [mailto:[EMAIL PROTECTED] Sent: Fri 2/25/2005 5:53 AM To: Slide Users Mailing List Subject: Re: LDAP Connection Error Hi John! I would like to create a Wiki on how to integrate slide with an AD! Would you mind sharing your configuration

Re: LDAP Connection Error

2005-02-25 Thread Jacob Lund
Hi John! I would like to create a Wiki on how to integrate slide with an AD! Would you mind sharing your configuration of the JNDIPrincipalStore, realm and other experiences on this integration? Thanks /Jacob - Original Message - From: John Gilbert [EMAIL PROTECTED] To: Slide Users

Re: max revision limit?

2005-02-11 Thread Jacob Lund
What database are you using? I assume that the problem you are talking about is regarding the size of properties?? I changed the datatype in my MSSQL server to ntext (max size is around 1 GB) - myssql has an equivalent data type. /jacob - Original Message - From: Luke Noel-Storr

Re: turkish filenames

2005-01-17 Thread Jacob Lund
I am not sure why you want to comment out any fixes?? I did some testing with russian characters and it worked fine. Here is what I did: - Make sure that encoding in slide.properties is set to utf-8. (this should be default so there is no problem here) - Datasore must support the characters

Re: txFileStore and encoding (WAS: Re: turkish filenames)

2005-01-17 Thread Jacob Lund
Hi again! I just tested with your in my setup. I use the standard slide 2.1 with no encoding modifications and the tx files store. Could you please try with a standard slide 2.1 and the txfilestore? The uft-8 tests that I have done both with sql stores and file stores are working fine.

Re: history-collection-hack bug

2004-12-09 Thread Jacob Lund
that this should be fixed in later versions of slide, but for now I guess we have to state that these two settings are not compatible. /jacob - Original Message - From: Jacob Lund [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, December

Re: history-collection-hack bug

2004-12-09 Thread Jacob Lund
4:11 PM Subject: Re: history-collection-hack bug After all it is just a hack... Oliver On Thu, 9 Dec 2004 16:08:44 +0100, Jacob Lund [EMAIL PROTECTED] wrote: Hi! I have been looking more into this and it seems that Oliver's conclusion was right. In order to get the correct history path you need

ACL on history content

2004-12-09 Thread Jacob Lund
Hi, A while back there was a discussion about how to control access on history resources. The idea was that the ACL of the history resource should somehow reflect the ACL of the origin resource! Did anyone find or have a solution on this - I guess that it could be done from the client, but I am

Re: history-collection-hack bug

2004-12-08 Thread Jacob Lund
yet. /jacob - Original Message - From: Jacob Lund [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, December 07, 2004 3:42 PM Subject: Re: history-collection-hack bug I am looking into it now - i just found out! It does not throw

Re: history-collection-hack bug

2004-12-08 Thread Jacob Lund
on / off are incompatible? Oliver On Wed, 8 Dec 2004 15:41:02 +0100, Jacob Lund [EMAIL PROTECTED] wrote: OK - I think I found the origin of the problem. In the HistoryPathHandler class there are 2 getHistoryPathHandler functions, but only one of them are handling the situation where the history

ACL bug in 2.1rc1?

2004-12-07 Thread Jacob Lund
Hi All! I was just playing with the ACL setting in the new rc1 and I found the following behaviour: I took the tomcat-slide bundle as offsett and enabled the JAAS realm. Also I mapped slide to the root of the server in the server.xml. Using the standard users from the default domain.xml

history-collection-hack bug

2004-12-07 Thread Jacob Lund
Hi all, When slide is configured to split the history collection into seperate stores parameter name=historypath/history/${store}/parameter, then the history-collection-hack breaks the versioning part of slide. I have attached an example domain.xml file. When history-collection-hack is set to

Re: history-collection-hack bug

2004-12-07 Thread Jacob Lund
Subject: Re: history-collection-hack bug Any idea what the problem with the hack is? Oliver On Tue, 7 Dec 2004 12:33:16 +0100, Jacob Lund [EMAIL PROTECTED] wrote: Hi all, When slide is configured to split the history collection into seperate stores parameter name=historypath/history/${store

acl_inheritance_type - how does it work?

2004-12-02 Thread Jacob Lund
Hi Can someone explain the parameter acl_inheritance_type in the domain.xml? Thanks Jacob - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

version numbers

2004-11-30 Thread Jacob Lund
Hi All! Is it possible to change the version numbering? The fact that all versions starts with 1.number seems very strange?!? Or am I missing something? /jacob

Re: the question about checkout and lock

2004-11-25 Thread Jacob Lund
Have a look at: http://greenbytes.de/tech/webdav/rfc3253.html#PROPERTY_auto-version /jacob - Original Message - From: Tim Frank [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED] Sent: Thursday, November 25, 2004 3:33 PM Subject: Re: the question about checkout and lock

Re: Real filenames in slide tx store

2004-11-25 Thread Jacob Lund
to create a bug report and if that is preferred. --Andy On Wed, 24 Nov 2004 09:52:44 +0100, Jacob Lund [EMAIL PROTECTED] wrote: The url-encode-path was originally added to enable you to save files using characters not available in your operating system. I did some testing with russian

Re: Real filenames in slide tx store

2004-11-24 Thread Jacob Lund
The url-encode-path was originally added to enable you to save files using characters not available in your operating system. I did some testing with russian filenames and it only worked when this parameter was set to true. /jacob - Original Message - From: Warwick Burrows [EMAIL

Re: About using LDAP server to store user info

2004-10-29 Thread Jacob Lund
Hi Stefan! What realm are you using against your AD? /jacob - Original Message - From: Stefan Fromm [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED] Sent: Thursday, October 21, 2004 2:41 PM Subject: Re: About using LDAP server to store user info Hi Jun, I've set up a

Re: Japanese language support in Slide/Webfolders?

2004-10-15 Thread Jacob Lund
files or were they all code changes/fixes? Thanks, Warwick -Original Message- From: Jacob Lund [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 13, 2004 2:19 AM To: Slide Users Mailing List Subject: Re: Japanese language support in Slide/Webfolders? I am using slide with Danish characters

Re: Japanese language support in Slide/Webfolders?

2004-10-13 Thread Jacob Lund
I am using slide with Danish characters in an UTF-8 setup! With respect to WebFolders then have a look at: http://greenbytes.de/tech/webdav/webfolder-client-list.html I have a windows XP with office 2003 and most of the problems seems to be solved. With tomcat 4.1 I had to use the

Re: Japanese language support in Slide/Webfolders?

2004-10-13 Thread Jacob Lund
Slide stores you're using or did you have to develop your own? Thanks, Warwick -Original Message- From: Jacob Lund [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 13, 2004 2:19 AM To: Slide Users Mailing List Subject: Re: Japanese language support in Slide/Webfolders? I am using slide

Re: AW: Document Extension

2004-09-24 Thread Jacob Lund
For TC 5: In the connector in server.xml add parameter: URIEncoding=UTF-8 Slide should be default set to utf-8 otherwise look in slide.properties. When you say windows box - what client are you talking about? Webfolders, IE or something else? Be sure that your client is using utf-8 too! /jacob

Re: AW: Document Extension

2004-09-24 Thread Jacob Lund
Windows 2000 has some issues when it comes to webfolders! Have a look at: http://greenbytes.de/tech/webdav/webfolder-client-list.html /jacob - Original Message - From: Martin, Stefan [EMAIL PROTECTED] To: 'Slide Users Mailing List' [EMAIL PROTECTED] Sent: Friday, September 24, 2004 2:24

Re: AW: Document Extension

2004-09-24 Thread Jacob Lund
? -Ursprüngliche Nachricht- Von: Jacob Lund [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 24. September 2004 14:45 An: Slide Users Mailing List Betreff: Re: AW: Document Extension Windows 2000 has some issues when it comes to webfolders! Have a look at: http://greenbytes.de/tech/webdav/webfolder

Re: DASL and scope

2004-09-24 Thread Jacob Lund
specify this. /jacob - Original Message - From: Guido Casper [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED] Sent: Friday, September 24, 2004 6:44 PM Subject: Re: DASL and scope I believe, your scope should be /slide/files/docs. Guido Jacob Lund wrote: Hi I have some problems

office extractor

2004-09-23 Thread Jacob Lund
I was just testing the office extractor. It seems that when a non office file is uploaded the server returns a 406 response. Why not just ignore it if the user uploads other types of files? /jacob - To unsubscribe, e-mail:

DASL and scope

2004-09-23 Thread Jacob Lund
Hi I have some problems getting the scope part of my query to work. If I want a search to only search through the /files/docs collection then I set scope to /files/docs/ and the uri in the header to /files/docs (see request below). Server returns: 23 Sep 2004 12:46:10 -

DASL - like

2004-09-22 Thread Jacob Lund
Does the slide (2.1) implementation of DASL support like? I am trying the following request: D:searchrequest xmlns:D=DAV: D:basicsearch D:select D:allprop/ /D:select D:from D:scope D:href//D:href D:depthinfinity/D:depth

Re: DASL - like

2004-09-22 Thread Jacob Lund
Thanks Guido! Is this store independent? /jacob - Original Message - From: Guido Casper [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, September 22, 2004 10:33 AM Subject: Re: DASL - like Jacob Lund wrote: Does the slide (2.1) implementation of DASL

Re: DASL - like

2004-09-22 Thread Jacob Lund
- Original Message - From: Guido Casper [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, September 22, 2004 12:30 PM Subject: Re: DASL - like Jacob Lund wrote: Thanks Guido! Is this store independent? Basically yes, but DASL performance heavily depends

Re: max revision limit?

2004-09-06 Thread Jacob Lund
PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, September 03, 2004 12:41 PM Subject: Re: max revision limit? thanks for your reply, Lund. I use slide2M1, and orcale database. could you help me to solve the problem? thanks very much. jingrui From: Jacob Lund [EMAIL

Re: Multilple jdbcstores in domain.xml

2004-09-06 Thread Jacob Lund
I think you have the same problems as I had. I was able to configure several different store (jdbc) without a problem, but when I tried to create the collections in domain.xml then slide hang during startup. I was able to add one store at a time if I only added one collection (objectnode) at a

Re: max revision limit?

2004-09-01 Thread Jacob Lund
This might be a know problem with the datastore and the max length of property values. This should be solved i the latest database schemas! What version of slide and what store are you using? /jacob - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday,

Re: max revision limit?

2004-09-01 Thread Jacob Lund
Some revision information is stored in a property field! If the property length is set to 255 (or some other small length), then you will see truncation problemes after while! This is why it varies with store and schema version! /jacob - Original Message - From: Miguel Figueiredo

Re: roles of users, users in a role again, ANY CLUE?

2004-08-02 Thread Jacob Lund
I am not using the slide client, only the slide server. And both 2.0 and the 2.1 versions are working fine. /jacob - Original Message - From: [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED] Sent: Friday, July 30, 2004 4:52 PM Subject: Re: roles of users, users in a role

Re: roles of users, users in a role again, ANY CLUE?

2004-07-30 Thread Jacob Lund
What do you mean when you say group-member-set cannot be read! If I do a propfind on DAV:group-member-set then I get a list of users in a group. /jacob - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, July 30, 2004 9:55 AM Subject: roles of users, users

Re: DeltaV and Slide

2004-07-28 Thread Jacob Lund
Slide supports what the DeltaV documentation refers to as Basic Versioning! /jacob - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 28, 2004 3:24 AM Subject: DeltaV and Slide Hi! I'm looking for information on how well Slide 2.0 is compliant

Re: MSSql error - String or binary data will be truncated

2004-07-16 Thread Jacob Lund
This problem should be solved if you use latest version of the SQLServer schema. /jacob - Original Message - From: Oliver Zeigermann [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED] Sent: Friday, July 16, 2004 11:22 AM Subject: Re: MSSql error - String or binary data

Re: MSSql error - String or binary data will be truncated

2004-07-16 Thread Jacob Lund
You should use ntext instead. ntext is a variable length data type. /jacob - Original Message - From: Michael Gluckman [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED] Sent: Friday, July 16, 2004 11:51 AM Subject: RE: MSSql error - String or binary data will be truncated

Re: Using a JDBCRealm for authentication on slide?!

2004-07-15 Thread Jacob Lund
* to true under Configuration Node in Domain.xml. The user authenticated by your JDBCRealm will be auto-created in Slide if it does not already exist. -Original Message- From: Jacob Lund [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 14, 2004 6:09 PM To: Slide

Re: Problem with slash in usernames in an NT Domain

2004-07-14 Thread Jacob Lund
Hi Andy! Thy to add following parameter to the file and descriptors store in the domain.xml (I assume by your mail that you are using the TxFile store): parameter name=url-encode-pathtrue/parameter That should solve the problem with backslash in windows file system. This will also solve some

Re: How to create nested properties

2004-06-07 Thread Jacob Lund
What you are referring to is not nested properties but xml elements placed in the string value of a property. The WebDAV protocol does not support nested properties directly. /jacob - Original Message - From: Lanto Randriamiharisoa [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday,

Re: How to create nested properties

2004-06-07 Thread Jacob Lund
nested properties Jacob Lund wrote: What you are referring to is not nested properties but xml elements placed in the string value of a property. The WebDAV protocol does not support nested properties directly. /jacob What would be the definition of nested property? Best regards

Re: Is it possible to use HTTPS/SSL authentication on slide web folder access?

2004-06-04 Thread Jacob Lund
SSL has nothing to do with slide or webdav, but with the engine running slide. If you are using Tomcat then have a look at: http://jakarta.apache.org/tomcat/tomcat-5.0-doc/ssl-howto.html /jacob - Original Message - From: KeyEvent [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday,

Re: Could not parse DAV:version-set:

2004-05-19 Thread Jacob Lund
The TEXT type has a 64K limit, the MEDIUMTEXT has a16MB limit and LONGTEXT has a 4GB limit! MEDIUMTEXT should be enough, but will TEXT do as default in the MySQL scheme? /jacob - Original Message - From: Luke Noel-Storr [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED]

Re: Strange problem with files over 64K and Webfolders/Office

2004-05-13 Thread Jacob Lund
List [EMAIL PROTECTED] Sent: Wednesday, May 12, 2004 11:28 AM Subject: Re: Strange problem with files over 64K and Webfolders/Office Shouldn't we change this in the MySQLSchema, anyway? Oliver Jacob Lund wrote: Hi Luke! MySQL has as 64K limit in blob fields! Change the database scheme

Re: Strange problem with files over 64K and Webfolders/Office

2004-05-12 Thread Jacob Lund
Hi Luke! MySQL has as 64K limit in blob fields! Change the database scheme - replace blob with longblob! /jacob - Original Message - From: Luke Noel-Storr [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, May 12, 2004 11:12 AM Subject: Strange problem

Re: Create New Users

2004-05-10 Thread Jacob Lund
Hi Jeff! The WebDAV protocol does not contain any support for creating users. However Slide does have a way of solving this - if you use mkcol in you users collection, slide will automatically add DAV:principal element to the DAV:resourcetype property! Adding users to groups can be done using

Re: Slide Compatibility

2004-05-10 Thread Jacob Lund
I am not sure if I am understanding you questions correctly, what do you mean when you say compatibility? Have you read the content of http://jakarta.apache.org/slide ?? To your question about character support then slide does support UTF-8. /jacob - Original Message - From: Renato

Re: Microsoft Web Folders and authentication

2004-05-05 Thread Jacob Lund
] To: 'Slide Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, May 05, 2004 1:36 PM Subject: RE: Microsoft Web Folders and authentication Thanks for help. Here is my server.xml file attached to this mail. Olivier -Message d'origine- De : Jacob Lund [mailto:[EMAIL PROTECTED] Envoyé

Re: Microsoft Web Folders and authentication

2004-05-04 Thread Jacob Lund
It sounds like your sliderealm is configured incorrectly in your server.xml! Did you set the sliderealm for the slide webapp only or for the entire server - maybe you could post your server.xml so we can see it! /jacob - Original Message - From: Olivier CAUSSE [EMAIL PROTECTED] To:

multible store definition problem in 2RC1

2004-04-29 Thread Jacob Lund
Hi all! I have a problem with multiple stores in slide 2.0RC1. Here is what I am trying to do: 1. Make a TX-file store as default. 2 Define a project store at /files/project1 where files are stored in a MSSQL server. I have modified the history path to /history/${store}to separate the history

Re: Slide and multiple languange??

2004-04-21 Thread Jacob Lund
and multiple languange?? thx for your email. then do you know how to solve the problem in mySQL? From: Jacob Lund [EMAIL PROTECTED] Reply-To: Slide Users Mailing List [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED] Subject: Re: Slide and multiple languange?? Date: Tue, 20 Apr

Re: Slide and multiple languange??

2004-04-21 Thread Jacob Lund
. then do you know how to solve the problem in mySQL? From: Jacob Lund [EMAIL PROTECTED] Reply-To: Slide Users Mailing List [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED] Subject: Re: Slide and multiple languange?? Date: Tue, 20 Apr 2004 13:03:11 +0200 MySql 4.0 does

Re: Slide and multiple languange??

2004-04-20 Thread Jacob Lund
what version of slide are you using and what servlet engine are you using? I have slide 2RC1 working fine with utf-8 encoding on a tomcat 5. Here is what I did to make it work: In slide: Add a parameter url-encode-path in the tx content and descriptors store and set it to true. (in domain.xml) In

Re: Exception when launching Tomcat

2004-04-19 Thread Jacob Lund
Try to move your slide jar's into the common/lib directory - it worked for me! /jacob - Original Message - From: Jean-Baptiste Lièvremont [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, April 19, 2004 3:06 PM Subject: Exception when launching Tomcat Hi, I have the following

Re: how to define store

2004-04-01 Thread Jacob Lund
Hi Tao! A good place to start is the slide-user archives. In here you will find configuration examples for the different stores. When you have some more specific questions, then you are welcome to direct them to this list. /jacob - Original Message - From: Slide Tao [EMAIL PROTECTED]

RE: Search for the groups that a user belongs to

2004-03-11 Thread Jacob Lund
What version of slide are you using? For slide 2 beta: You will have to look in the DAV:group-membership on a given principal, and the DAV:group-member-set of the group to check for nested group relations. /jacob -Original Message- From: Gaurav Khanna [mailto:[EMAIL PROTECTED] Sent:

RE: structure of History and how to clean up

2004-03-04 Thread Jacob Lund
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 4. marts 2004 08:55 To: [EMAIL PROTECTED] Subject: RE: structure of History and how to clean up So, didn't my answer from yesterday help? Did I misunderstand your question? Regards, Peter -Original Message- From: Jacob Lund [mailto

structure of History and how to clean up

2004-03-03 Thread Jacob Lund
Hi! One of my concerns with slide in production is the handling of history versions. How do I clean up in my history files? I would really like to keep the collection hierarchy between /files and /history. That way I would be able to separate a collection and its history versions in the same

RE: UTF-8

2004-02-27 Thread Jacob Lund
I have had the same problems! Here is what to check: 1. Slide must be set to UTF-8. (In the slide.properties file) 2. The tomcat connector must be set to UTF-8. (URIEncoding=UTF-8 as parameter to the connector). 3. Make sure that the store you are using supports UTF-8. If you use the default

RE: UTF-8

2004-02-27 Thread Jacob Lund
Forgot to mention! If you use TC4.1 you have to use the coyote connector and have the useURIValidationHack=false parameter set. /jacob -Original Message- From: Jacob Lund [mailto:[EMAIL PROTECTED] Sent: 27. februar 2004 13:32 To: 'Slide Users Mailing List' Subject: RE: UTF-8 I have had

RE: TXFileStore and local filesystem

2004-01-30 Thread Jacob Lund
). This was my understanding of the UTF standards and unicode - am I wrong here? /Jacob -Original Message- From: Michael Smith [mailto:[EMAIL PROTECTED] Sent: 30. januar 2004 01:44 To: Slide Users Mailing List Subject: Re: TXFileStore and local filesystem Oliver Zeigermann wrote: Jacob Lund

RE: TXFileStore and local filesystem

2004-01-29 Thread Jacob Lund
(or widechar or nchar). Please tell me if I am way off here! /Jacob -Original Message- From: Oliver Zeigermann [mailto:[EMAIL PROTECTED] Sent: 29. januar 2004 10:02 To: Slide Users Mailing List Subject: Re: TXFileStore and local filesystem Jacob Lund wrote: No, the filestore works correctly

RE: TXFileStore and local filesystem

2004-01-29 Thread Jacob Lund
into/from bytes... Oliver Jacob Lund wrote: The patch did not make any difference - it still throws the same exception! What I meant about converting from UTF-8 to Unicode is that the database driver can handle Unicode. In the filestore UTF-8 is converted to local character set in order to create

RE: TXFileStore and local filesystem

2004-01-29 Thread Jacob Lund
2004 13:12 To: Slide Users Mailing List Subject: Re: TXFileStore and local filesystem The old problem with attachments :( It is missing... Could you try to create a new bugzilla entry and add the attachment there? Thanks :) Oliver Jacob Lund wrote: First of all - the patch you just checked

  1   2   3   >