Sorry, too vague,

I am doing a reportMethod  as follows

Vector properties = new Vector();
properties.addElement("version-name");
properties.addElement("getlastmodified");
properties.addElement("owner");
properties.addElement("creationuser");
properties.addElement("displayname");

setPath("/AJCS/files/Matrix/SalesForce/t1448/100.doc");
                
Enumeration propertyValues;
try {
        path = checkUri(path);
        System.out.println(
                "Getting version-tree Report of '" + path + "':");

        if ((properties != null) && (properties.size() > 0)) {
                propertyValues =
                        webdavResource.reportMethod(
                                        new HttpURL(path),
                                        properties,
                                        DepthSupport.DEPTH_INFINITY);
        } else {
                propertyValues =
                        webdavResource.reportMethod(
                                        new HttpURL(path),
                                        DepthSupport.DEPTH_INFINITY);
        }
        String propertyValueStr = "";

        if (propertyValues.hasMoreElements()) {
                while (propertyValues.hasMoreElements()) {
                        propertyValueStr =
propertyValues.nextElement().toString();
                        System.out.println(propertyValueStr);
                }
        }
...

And this is the output

Getting version-tree Report of
'/AJCS/files/Matrix/SalesForce/t1448/100.doc':

/AJCS/history/79/1.0
D:version-name: 1.0
D:getlastmodified:      Fri, 09 Jul 2004 21:50:06 GMT
D:owner: 
D:creationuser:                 
D:displayname:  100.doc

/AJCS/history/79/1.1
D:version-name: 1.1
D:getlastmodified:      Sun, 11 Jul 2004 16:11:24 GMT
D:owner:
D:creationuser:                 
D:displayname:  100.doc

So looking at the /history/79.def.xml , I can see these elements have
values, so the question is...

Is there a configuration setting that controls the display of these
values?

Michael Oliver
CTO
Matrix Intermedia Inc.
3325 N. Nellis Blvd, #1
Las Vegas, NV 89115
Phone:(702)643-7425
Fax:(520)844-1036

-----Original Message-----
From: Michael Oliver [mailto:[EMAIL PROTECTED] 
Sent: Sunday, July 11, 2004 10:01 AM
To: Slide Users Mailing List
Subject: creationuser and modificationuser null

Is there a configuration setting that controls these properties?  I am
looking at some VCRs and expected to see these populated with the user
that created the new versions.

 

Michael Oliver

CTO

Matrix Intermedia Inc.

3325 N. Nellis Blvd, #1

Las Vegas, NV 89115

Phone:(702)643-7425

Fax:(520)844-1036

 



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to