Best Of
Re: Exstream Migration (CAS)
Sorry to say - I think the post above from BrockHamill is spam. I have reported it. (All open forums suffer from this).

Re: Exstream Migration (CAS)
Was just typing, that it sounds a whole lot like AI, but you were faster.
Re: Exstream Migration (CAS)
Hi there - great question.
You should look into the scripting tools (ss_scm.exe and ss_deploy.exe) to help you create new services and deploy them via script. Mixed with standard Powershell script you can also change startup mode and service account at the same time. Scripting deployment is good practice anyway and can save you a lot of time on initial set-up and further development moving on. You can also script in other actions (say housekeeping or start.arg file manipulation) along the way.
If your CAS is on a separate server then you just need to point to that. If on the same server then you could look into a DB copy to the new server.
There may be a new Exstream version coming in September (25.3) so you may wish to wait for that.
Good luck!

Re: Timeout on long running WR via API call
Not quite OTDSTicket is issued by the OTDS server, but luckily, you have a swagger endpoint with that, so head over to OTDS login and change the URL
to http(s)://server/otds-admin when logged in, change the URL to read otdsws/rest, then authorize and use the authentication section
If successful you will get a ticket that starts with
*OTDSSSO* This is what you will tag into your PowerShell
$header = @{"otdsticket" = '*OTDSSSO*'}
if this works in your testing then amend your code properly…i wouldn't change your code for my vague theory

Re: How to add new attachment during a lifespan of a running workflow?
If you have a reference to the Attachment or the Workflow (from which you can get over to the Attachment) then you can use the Add Version REST API call to add the version into the workflow.
Is there a reason that you are not using the provided eSign or DocuSign integrations ?
Application Xtender Index Image Import question regarding PDF Documents
Lately I've been encountering issues with Index Image Import freezing up when attempting to import certain PDF documents.
The only way to stop this is to kill the process in task manager.
I'm using the "@@" import option so that multi-page PDF documents have each page imported as individual pages into AX.
Appears to be encountered with certain types of PDFs that appear to contain image pages.
Has anyone else encountered this and what did you do to resolve this?
How to download prebuilt Docker imges for InfoArchive
I am new to this but hoping to get help from all the gurus here, I need to download prebuild docker images for Info Archive -
• otia-ias:24.1.0.n-m
• otia-iawa:24.1.0.n-m
• otia-mgmt:24.1.0.n-m
• otia-otds-ia-init:24.1.0.n-m
and download the packege -
infoarchive-24.1.0-n-k8s-helm. zip
I have signed-up and created an open text account (using my personal email address) . Please help, I am helping a client setup InfoArchive in Azure cloud using Kubernetes, and I am doing this for the first time :(

Re: Fatal error: Device type no longer supported
The issue is line 3: Driver "Zpl2Pulse" Zpl2
I think it should be
Driver "Zpl2Pulse” Zpl2 Drivermodule
E.g.
I like to keep the ID’s the same all the way through… e.g.
Can you check your set-up?

Re: OpenText Web Report to apply permission to subfolders
If you are in one folder and have 500 things underneath it in different folders and subfolders, you need to iterate that using WR or LR combination, so an example of such a query will be
Select Name, DataiD from DTREE where PARENTID=1234 // just the direct descendants of a folder
Since OT is now selling thousands of accounts of extended ECM, each workspace is a Volume and has an owner ID concept.BTW, for you to kno,w the Volume concept is not part of XECM but has been in the livelink schema for thirty-plus years and is a proper RDBMS construct. Enterprise WKSP , Personal WKSP, and Project WKSP were the earlier ones before the 848 subtype was invented. There are also thousands of other Volumes any object whoes parentid =-1 is a volume(in simpler terms you cant go higher)
SELECT * FROM [CS25DB].[csdbuser].[DTREE] where PARENTID=64307 does not mean anything that 64307 is an ECM workspace or any Volume
so what you need in that case is to get the workspaceid and query on ownerid
SELECT * FROM [CS25DB].[csdbuser].[DTREE] where OWNERID=64307 //all objects owned by the workspace. This is how OT used to teach us fundamentals. Also, an interview question on jobs in XECM.
Now this will work if your subfolders are part of workspaces, but OT has a convenient table called DTREEANCESTORS that knows the immediate parent :)
If you have a WR applying the correct permission on the folder, just call the same code on the DataIds returned by one of these queries, as the case may be.You can actually parse the children of a container but that maybe for your own reaserch :)
