Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
Is there a GetDoc.aspx parameter to bypass the Document Actions page?
MarcelVanKempen
If you click on a GetDoc.aspx link like the one below
http://interwovenweb/WorkSite/scripts/GetDoc.aspx?latest=1&nrtid=!nrtdms:0:!session::!database::!document:,1:&ext=1
then you are directed to a worksite page with over a dozen option buttons with document actions. You have to select one and click OK to open your document in Word.
Can you add parameters to the link to bypass this page, maybe something like "&View" or "&documentaction=1"? Is there any documentation for the GetDoc.aspx and Home.aspx pages?
Find more posts tagged with
Comments
Migrateduser
There is documentation as part of the SDK, look for "iManage WorkSite Web Application Integration Toolkit Developer’s Guide", and the section you want is
"Addressable URLs for WorkSite Web Components Server"
Sounds like you want either
http://localhost/worksite/scripts/ViewDoc.aspx
or
http://localhost/worksite/scripts/Export.aspx
Both use a nrtid={objectID} and redirect={some other url}, with viewdoc requiring isHtml=1 or 0, and "command=ok"
for example:
http://win716/WorkSite/scripts/viewdoc.aspx?nrtid=!nrtdms:0:!session
erver:!database:TEST:!document:900003029,1:&redirect=
http://www.google.com&isHtml=0&command=ok
Hope this helps
Arwin
Was just looking for this, thanks.