- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
these links should help:
http://help.adobe.com/en_US/livecycle/9.0/componentXMLRef/webframe.html
http://help.adobe.com/en_US/livecycle/9.0/programLC/help/index.htm?content=001379.html
http://www.adobe.com/devnet/livecycle/articles/dsc_development.html
- note that for the import-packages, it must be explicit. specifying <package>a.b.c</package> will not import classes in a.b.c.d.
- for any classes you import, you cannot have the jar in the component.xml classpath and do not want it in included in your components jar.
- if you use ServiceClientFactory.createInstance() without a context, then you will get the current context. Who this is depends on how your service operation is invoked. I direct invocation by a user will be have the user context. If invoked by the workflow engine as part of a long-lived process then it will be run as a system context. Since you are calling TaskManager to get the data for a task, access rights will apply so you need to be aware of the context. The system context has full access rights so it can get the desired results. But if running under a calling user's context, that user must be the owner of the task or the request will fail.