List of Contributions

Michael Seaman

Contact Details

My Content

1 to 20 of 23 total
Posted By Michael Seaman Tue December 19, 2023 04:30 AM
Found In Egroup: Content Management and Capture
\ view thread
Check out the documentation for the INFOLDER query operator. ------------------------------ Mike ------------------------------
Posted By Michael Seaman Tue October 25, 2022 04:24 AM
Found In Egroup: Content Management and Capture
\ view thread
The way this works over EJB is that the content is divided up into chunks of 1Mb and each chunk is sent to the server by a separate RPC. Then after all the content has been uploaded a further RPC is issued to execute the transaction which creates the document(s). Hence at least N+1 RPCs in the description ...
Posted By Michael Seaman Mon October 24, 2022 04:12 AM
Found In Egroup: Content Management and Capture
\ view thread
Michael K is correct, that there is generally very little difference in performance between the WSI and EJB transports. There's a slight amount of additional overhead in the WSI transport for serializing/deserializing XML rather than the binary serialization used by EJB, but that is probably mostly lost ...
Posted By Michael Seaman Mon April 25, 2022 06:16 AM
Found In Egroup: Content Management and Capture
\ view thread
The answer depends on what role permissions you assign to an object. In the example you gave, if you assign only a role permission for A then all of the members of A and B will be granted the access defined by the role class of A. In other words, only the membership of B is included in the membership ...
Posted By Michael Seaman Fri July 16, 2021 05:22 AM
Found In Egroup: Content Management and Capture
\ view thread
Create Instance access right only has any effect in the Permissions (not Default Instance Permissions) of a Class Definition, and controls the ability to create instances of the class defined by that Class Definition. The fact that Create Instance is shown as an option in other cases, such as the ...
Posted By Michael Seaman Tue June 15, 2021 04:26 AM
Found In Egroup: Content Management and Capture
\ view thread
If you mean based on the RetrievalName property of a content element of a document, no, there is no way to do that. ------------------------------ Mike ------------------------------
Posted By Michael Seaman Fri May 14, 2021 08:32 AM
Found In Egroup: Content Management and Capture
\ view thread
Although UPPER is applied in some internally generated queries it is not applied to the database query for user searches unless that expression is used explicitly in the incoming (API) CE SQL. So these queries must be coming from some application and you would have to identity what and why. If you post ...
Posted By Michael Seaman Fri April 09, 2021 05:03 AM
Found In Egroup: Content Management and Capture
\ view thread
I suggest at this point you open a support case and supply your code and full details of the exception you're getting. This has gone beyond the level of detail for which this forum is suited. However, the problem here may be simply that you haven't specified the correct required class id (of your ...
Posted By Michael Seaman Thu April 08, 2021 09:45 AM
Found In Egroup: Content Management and Capture
\ view thread
Yes, unfortunately at this point ACCE does not have support for creating dependent list properties, either templates or definitions. You have to do the whole thing programmatically (template as well). ------------------------------ Mike ------------------------------
Posted By Michael Seaman Thu April 08, 2021 04:40 AM
Found In Egroup: Content Management and Capture
\ view thread
Dependent objects can only be inserted into a property with cardinality LIST (i.e. one which the API represents on instances as a PropertyDependentObjectList). That's what the exception is telling you, that you cannot make the dependent MyBO class required for a property of cardinality SINGLE or ENUM. ...
Posted By Michael Seaman Wed April 07, 2021 05:09 AM
Found In Egroup: Content Management and Capture
\ view thread
If you're creating a PropertyDefinitionObject (from a PropertyTemplateObject), then prior to saving the Class Definition to which you're adding that property definition, simply set_RequiredClassId() to the id of the class of object to which the object-valued property should refer. ------------------------------ ...
Posted By Michael Seaman Wed February 17, 2021 04:41 AM
Found In Egroup: Content Management and Capture
\ view thread
Seems like you're asking two largely orthogonal questions, how (i.e. using what CE SQL) do I search across multiple document classes, and how do I do searches (generally) programmatically (using SearchScope). On the first part, a query of the Document base class (as in 'SELECT ... FROM Document WHERE ...
Posted By Michael Seaman Fri January 15, 2021 09:41 AM
Found In Egroup: Content Management and Capture
\ view thread
As far as I am aware, the only published material is that in the knowledge centre. ------------------------------ Mike ------------------------------
Posted By Michael Seaman Wed January 13, 2021 07:46 AM
Found In Egroup: Content Management and Capture
\ view thread
If I understand correctly what you're asking for, you can do this exactly as you described: - create three ASAs each with one primary relica and one secondary - create a storage policy which selects those three ASAs - define that storage policy as the default for your document classes. Incoming content ...
Posted By Michael Seaman Tue January 12, 2021 05:03 AM
Found In Egroup: Content Management and Capture
\ view thread
To answer the first question, asynchronous replication (to the second storage device) is operated by a queue sweep, which can be tuned/scheduled in various ways in common with all queue sweeps (refer to the documentation). However, in the case of a down connection a couple of additional factors apply: ...
Posted By Michael Seaman Mon January 11, 2021 09:37 AM
Found In Egroup: Content Management and Capture
\ view thread
There is no mechanism by which one user can see what objects another user has access to, even if the first user is an administrator. And even for a user wanting to find that information for themself, the only way as through a CE API search executed while logged in as that user. (ACCE search uses the ...
Posted By Michael Seaman Fri January 08, 2021 11:51 AM
Found In Egroup: Content Management and Capture
\ view thread
Have you considered using an Advanced Storage Area with two file system storage devices? See https://www.ibm.com/support/knowledgecenter/SSNW2F_5.5.0/com.ibm.p8.planprepare.doc/p8ppi267.htm ------------------------------ Mike ------------------------------
Posted By Michael Seaman Tue December 29, 2020 05:12 AM
Found In Egroup: Content Management and Capture
\ view thread
Do you have the tablespace configured with 32k page size? ------------------------------ Mike ------------------------------
Posted By Michael Seaman Wed November 18, 2020 04:39 AM
Found In Egroup: Content Management and Capture
\ view thread
Sorry, content retrieval is not supported in a change pre-processor. ------------------------------ Mike ------------------------------
Posted By Michael Seaman Mon November 02, 2020 05:01 AM
Found In Egroup: Content Management and Capture
\ view thread
https://www.ibm.com/support/knowledgecenter/SSNW2F_5.5.0/com.ibm.p8.ce.dev.ce.doc/class_procedures.htm#class_procedures__creating_a_subclass ------------------------------ Mike ------------------------------