IBM Content Navigator customization - ecm

Is there any technical tutorial on the net for customizing the Filenet Content Navigator except the tutorial from RedBooks?
Any help will be appreciated.

There's the redbook and in case you missed it, you can get the plugins and source code from the book right here:
Redbook source code (10 projects)
It should be enough to learn how to make a plugin yourself after going through all the code.

The Redbook for customizing ICN is the only published resource for ICN currently. Throughout my customization work, I've found the ICN forum on DeveloperWorks to be invaluable.

Also you might be interested by Not Only An ECM Place.

Related

Is there a way to automatically create doc for classes and Methods in OpenEdge Developer Studio?

OpenEdge Developer Studio is built on Eclipse where usually the shortcut Ctrl+Alt+J can be used to create JavaDoc for classes and methods.
For Progress however I am unable to figure out how this should work.
Could someone help me out here?
To create an html documentation (like http://help.consultingwerkcloud.com/smartcomponent_library/release/) use this here:
https://github.com/Riverside-Software/pct/wiki/ClassDocumentation
https://github.com/Riverside-Software/pct/wiki/HtmlDocumentation
For documentation comments in PDSOE, I'd suggest you have a look at:
https://www.hh-berlin.de/oedt/features/editor
It's going to be commercial. I'm beta-testing it since a while. And it's working really, really nice.

Is there a beginner introduction to writing Eclipse plugins?

I have tried and failed to create to find any good tutorials on writting plugins for Eclipse and the closest I have assumed a large degree of knowledge about the internals of Eclipse.
For what it is worth I have the programming skills to write the plugin. I need help with getting it plugged into Eclipse correctly.
The best tutorial I've found is Lars Vogels Plugin tutorial. Have a look at his other other Eclipse tutorials aswell. Alot of good content there.
Maybe this could be an interesting site for you:
http://www.eclipsepluginsite.com/
It covers setting up your plugin to advanced plugin tutorials.
I personally use it all the time.

Eclipse RCP - good Eclipse Forms tutorial/resource

I'm looking for resources to learn how to use effectively Eclipse forms within an Eclipse RCP application. I was trying to use the newest SWT Window Builder plugin on Indigo but building forms this way doesn't really work for me eg. cannot put anything inside expandable composite etc. (I have Swing background with Netbeans designer) and I'm new to SWT.
All I can find so far is this quite old tutorial from 2005.
Any help, point to good tutorial/book/source code sample will be highly appreciated.
I've found http://www.vogella.de/ to be invaluable.
Not much changed actually since the old 2005 tutorial so it's still very usable.
Check these out in addition too:
Eclipse Forms: New in 3.3
DeveloperWorks article on making forms Web-like
Cheers,
Max
I've also got the hint to start with vogella but after the first 2 topics I realized It's to hard to start with.
What helped me much more was to create each example/sample project and look for the source. Once you understood how all works you can lookup at vogella what you exactly need.

Eclipse RCP terminologies and concepts

I am just starting to develop some application using Eclipse RCP. I was able to hack out a prototype by reading some tutorials. Although I was able to hack out some working code, I found myself shaky on some of the RCP concepts like:
What is a page? I see a lot of getActivePage() API calls, so I am assuming there can be multiple pages am I correct?
In the IWorkbechPart API there is an API called getSite(), which is being use a lot, but I am not sure what is a "site"
The above are just a sample of questions I am having, so it would really help me if someone can point me to some articles explain these type of concepts (I did google around without success).
I would also appreciate it if someone can point me to some articles that can educate me on how to write clean RCP code; kind of like the "Effective Java" for RCP.
You may want to check this as well:
Take a look at the JavaDoc for the Interfaces, they are well documented and give you an idea of the terminology. For example:
What is a page?
Look at the Javadoc at org.eclipse.ui.IWorkbenchPage
called getSite(),
Look at the Javadoc at org.eclipse.ui.IViewSite

JBoss gettingstarted.zip

I am looking for the gettingstarted.zip or the examples in the jboss tutorial, but could not find them, especially the sources for the jsfejb3 example. Are these examples removed from the distribution or am I to stupid to find them?
Do you mean the example shown in http://docs.redhat.com/docs/en-US/JBoss_Enterprise_Application_Platform/4.3/html-single/Getting_Started_Guide/index.html#About_the_Example_Applications ?
If so it's available in the "Application Platform 4.3.0.GA_CP09 documentation" available from https://access.redhat.com/downloads/
this might be what you are looking for JBOSS Start Guide.zip, also maybe try JBoss Sourceforge page
edit: try this maybe JSF-EJB3 Example
and these guys LINK seem to have got working what you are having trouble with maybe something in thier posts can help