The following forum question is exactly what I am looking for:
http://devnet.interwoven.com/forums_vb/showthread.php?t=12484&forumid=46&highlight=search+serviceHowever, the reply was to a link that seems to be no longer valid and I'm not able to find it via search.
The question is... When using the Web Services API to search, I need to be able to create compound search statements as follows:
(meta1 = "blah" OR meta1 = "blah2") AND (meta2 = "asdf" OR meta2 = "asdf2")
Is this possible in the Web Services API?
Currently, the only way I see to generate something close is:
meta1 = "blah" OR meta1 = "blah2" AND meta2 = "asdf" OR meta2 = "asdf2"
which obviously is not the same and does not work at all.
Thanks,
Steve