Is there documentation on how I can create a URL to open a specific document for a specific user in Web Access. What are the URL syntax options ?
Is there documentation on how I can create a URL to open a specific document for a specific user in Web Access. What are the URL syntax options ?
Here's a link to the online help files which details things pretty well.
*updated link to point to WebAccess 10 online help instead of 9.1
Cheers,
Carl
Hi,
I have a workflow that generates de URL address and store it in a token, then, invoke a new workflow with a web service (an “HTTP Form Post” workflow activity) and copy the URL in a SAP FI document. So, in a SAP document, we can go to the Laserfiche document through web access.
HTTP Form Post body content:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:cre:bc:hipervinculo_documento">
<soapenv:Header/>
<soapenv:Body>
<urn:crear_hipervinculo_documento_bc_req_mt>
<tipo_objeto>%(tipo_objeto)</tipo_objeto>
<id_objeto>%(id_objeto)</id_objeto>
<descripcion_objeto>%(descripcion_objeto)</descripcion_objeto>
<url_objeto>%(url_objeto)</url_objeto>
</urn:crear_hipervinculo_documento_bc_req_mt>
</soapenv:Body>
</soapenv:Envelope>
It was working ok in Laserfiche 9.
The URL was: http://ServerName/laserfiche/DocView.aspx?db=RepositoryName%26docid%3D(Entry Id)%23
After upgrade to Laserfiche 10.1 (Web Access 10) the web service gets an error, so we change the URL to:
http://servername/laserfiche/index.aspx?db=RepositoryName#id=(Entry id);view=pages
We tried also with the workflow activity ”Generate Laserfiche Web Client URLs” but in both cases the URL generated only works in GOOGLE CHROME, in Internet Explorer only shows a blank screen, in Microsoft EDGE no changes at all.
Does anybody knows if this is a normal behavior for URLs web access 10? It seems not working with Internet explorer 11 neither Microsoft Edge
The syntax for opening a document in Web Access 10 should be: https://ServerName/laserfiche/docview.aspx?db=dbName&id=EntryID. It looks like you should be able to take your initial URL and change docid to id.
Edited to add: That said, docid should work as well. What sort of error were you getting?
I am receiving the same thing. The link is like:http://servername/laserfiche/index.aspx?db=RepositoryName#id=(Entry id);view=pages.
In Internet Explorer it doesn't display anything. It's just a blank screen. The URL is the example provided. I have tested with Chrome and that link works fine. But with Internet Explorer its just blank. Has anyone had better luck?
Hi guys, we are seeing the same behavior too using Web Client 10. Workflow generates the following link in the "Generate Web Access URLs" activity:
https://FQDN/laserfiche/index.aspx?db=RepositoryName#id=EntryID;view=metadata;type=Fields
The link works fine in Chrome and Firefox, but IE just displays a blank page.
I have noticed that in both Chrome & Firefox the URL get "re-written" from the above to become:
https://FQDN/laserfiche/Browse.aspx?db=RepositoryName&repo=RepositoryName#/?id=EntryID
Is this something anyone else is able reproduce?
Thanks, Dan
This is a bug in Web Access. The fix for it was released as part of KB 1013894.
Thanks Miruna! Must have missed that article in my search before...