Hi,
Can some one please explain how to work with the Oracle Store.
I have installed / deployed slide.war (slide 2.1 b1) on WebLogic Server 8.1.
This slide server libraries also works fine with DAVExplorer Client.
I also created the db_scema on Oracle 8i.
Also, now the OracleRDBMSAdapter.java ge
Hi, Kiran!
I suspect that the incorrect behavior of the copy method might be just one
more consequence of the big flaw in Slide's architecture - some important
parts of WebDAV's logic (including versioning) are implemented in the
"wedav" layer only - see the org.apache.slide.webdav package and its
I am facing issues with using copy macro for copying versioned objects. Here
is a sample scenario:
Original object:
Name: XYZ.doc
Number of Versions: 3 v1, v2 and v3
Checked-in property value: v3
1. Copy the object using the copy macro. The Destination copied object has
the following pro
I am facing issues with using copy macro for copying versioned objects. Here
is a sample scenario:
Original object:
Name: XYZ.doc
Number of Versions: 3 v1, v2 and v3
Checked-in property value: v3
1. Copy the object using the copy macro. The Destination copied object has
the following pro
NodeStore and ContentStore should be enough for what you're wanting. You
may also need to implement NodeRevisionDescriptorsStore (note the extra
's'), but that one's a gimme.
Take a look at the JNDIPrincipalStore from the 2.1 milestones for an
example of Store that doesn't implement most of the
Bug fixes should be in the 2.1 Release branch. If there are bug fixes
that are only in HEAD someone needs to get a scolding :). There may be
some new feature in HEAD that won't be part of the 2.1 release, but
otherwise you're certainly free to use that code.
It would be best (for the community)
Some properties can get very long. 8000 may be enough, but I think it
depends on how you're using Slide. Version numbers, for instance, just
keep on getting larger if you have versioning enabled.
You can always modify the schema and try it. 8000 characters seems like
it should be enough for mos
Ok. I thought that updating the tree would be enough to pick those extra
branches up but it wasn't :-) I finally stumbled upon the way to do it and
added the extra labels to my choices.
So given that, where should I be picking up 2.1 bug fixes? From the
SLIDE_2_1_RELEASE_BRANCH or from the HEAD?
Those patches are submitted with defect numbers: 30900, 30902, 30903, 30904
and 30907.
Warwick
-Original Message-
From: Ingo Brunberg [mailto:[EMAIL PROTECTED]
Sent: Friday, August 27, 2004 6:17 AM
To: [EMAIL PROTECTED]
Subject: Re: Slide fixes to be reviewed
I'm pretty sure there's
You could use the WebDAV client API or the Jakarta Commons HTTP
client to connect to Slide from your service. Get the
InputStream and copy it to the OutputStream of the user's
request. Of course Slide must be accessible for the service, not
for the users.
Things become interesting when you imp
On 27 Aug 2004 at 13:19, Ritu Kedia wrote:
> :( ... The distinguishing factor in my requests is neither the user
> credential nor the resource being accessed. The same user should be able to
> access the Slide Repository either via my WebService or via
> MS-Word/Excel/etc. I.e. The same user could
Yes, its called a "lock-null" resource. The idea is that you can reserve a
name for future use. You can PUT and MKCOL against it (ans also execute
OPTION, PROPFIND I think) but cannot do anything else. Look at the section
"Locks and Null resources" or something to that effect ...
- Original Me
I just wrote a unit test that tries to lock a
nonexistent file on the server. The HTTP return
status is 200 and the body of the response is:
infinity
Infinite
Just downloaded 2.1b1 Tomcat 5 and got the same error.
Steps I did:
1. startup server
2. connect to server:8080/slide as root on Windows XP
machine
3. put MS Word file on server in /files folder
4. connect to server:8080/slide as root on Mac OS X
10.3.4 (shows up in Finder just fine)
5. Click to op
I'm definitely game to try.
http://jakarta.apache.org/slide/javadoc/org/apache/slide/store/Store.html
Are we talking about implementing the Store interface with no-ops for
many of the methods?
Alon
On Thu, 26 Aug 2004 23:43:39 -0700, James Mason <[EMAIL PROTECTED]> wrote:
> Alon,
> I know what
hi slide-users
summary about my situation:
first of all, i have a slide-installation that runs in tomcat on a
webserver. there is NO direct access for anybody (because
user-management is already done outside of slide).
all except content is stored in a database on a db-server. content is
stored
James, I'm using the eclipse CVS client (v2.1.1 it seems) and it doesn't
show either of these branches or labels. I'm connecting with
:pserver:[EMAIL PROTECTED]:/home/cvspublic. The only branches it lists
are:
SLIDE_1_0
SLIDE_2_0_RELEASE_BRANCH
SLIDE_2_1_EXTERNAL_TX
The
thanks for the answer james!
i need to check the security-issues myself in any case - in my actual
case it's an "access-all-or-nothing-approach".
searching in the database works fine - except that the
property-value-field is of the type "text" in ms-sqlserver. therefore it
is not possible to co
Searching the database should be no problem. Keep in mind though that
you'll need to do security checks on the returned resources yourself. If
you search through Slide it won't return resources the user doing the
search doesn't have access to. Depending on your needs this may not be
an issue.
Well i couldn't wait, so i got my hands dirty, and started debugging the
code. It was really easy to solve after all, the bug thas i was experiencing
has nothing to do with WebdavResource. In org/apache/webdav/cmd/Client.java
there's a method named "uriToHttpURL" that calls the commons library like
I'm pretty sure there's no bug related to spaces in pathnames in
WebdavResource. But the commmand line client and the LockMethod may
well have problems.
I will have a look at the patches as soon as Warwick submits them.
Ingo
> Hi
> I was having trouble with pathnames and spaces too, i'm designin
Stefan Fromm wrote:
1. Is the security implementation class configurable via Domain.xml?
There
is a security store configuration in Domain.xml but I haven't seen the
entry
for the security helper class.
It is configurable. Under XPath /slide/namespace/configuration you can
set parameters for t
Hi
I was having trouble with pathnames and spaces too, i'm designing an app,
and started by implementing the methods on top of the slide client, but some
didn't seem to work at all.
Later i associated the bad behaviour with the spaces in the filenames.
For instance, using the commandline client I'm
1. Is the security implementation class configurable via Domain.xml? There
is a security store configuration in Domain.xml but I haven't seen the entry
for the security helper class.
It is configurable. Under XPath /slide/namespace/configuration you can set parameters for the security helper.
It i
hi slide-users
i'm fighting around with the dasl-search in a slide-repository. so first
of all i would be glad to find a code-example how to create the
http-request with jakarta http-client to do a dasl-search :-)
additionally i was looking around for alternatives. since i'm putting
all except
:( ... The distinguishing factor in my requests is neither the user
credential nor the resource being accessed. The same user should be able to
access the Slide Repository either via my WebService or via
MS-Word/Excel/etc. I.e. The same user could access the same resource in
either mode. When acces
> Could somebody explain reportMethod for me? If I have file with uri
> http//localhost:8080/slide/files/test.txt, how could I get all information
> about this one, for example: version number, history.
Take the time to read the Delta-V spec you can find at www.webdav.org
and search the slide-us
27 matches
Mail list logo