Hi, Relating example: http://msdn2.microsoft.com/en-us/library/aa123570.aspx It works great but how is the syntax for User Properties in WebDAV sql queries? Stefan
Hello, what type of user properties are you referring to? The ones created by Outlook forms? They are available in the empty xml namespace. In your search Select "mycustomproperty" from scope(...)" They are returned as follows: <?xml version="1.0"?><a:multistatus xmlns:b="urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/" xmlns:a="DAV:"> <a:response> <a:href>http://server.tld/vroot/folder/item2.txt</a:href> <a:propstat> <a:status>HTTP/1.1 200 OK</a:status> <a:prop> <mycustomproperty>foo bar</mycustomproperty> </a:prop> </a:propstat> </a:response> </a:propstat> </a:response> </a:multistatus> Notice the empty namespace for the property. Best regards, Henning Krause "Stefan Uhlemann" wrote in message news:OFfjfuhYHHA.2320@TK2MSFTNGP03.phx.gbl... > Hi, > > Relating example: http://msdn2.microsoft.com/en-us/library/aa123570.aspx > It works great but how is the syntax for User Properties in WebDAV sql > queries? > > Stefan > >