Hi Tony,
I think the simplest way to check this would be to do the following:
1. If you are using
JSP as the view technology then check that the portlet tag library does not point to the Portlet 2.0 URI:
If you see the above taglib declaration then change value of uri attribute to
http://java.sun.com/portlet instead to make your portlet compatible with Portlet 1.0.
2. If you are using @ProcessAction or @RenderMode annotations in your code then it means you are using Portlet 2.0 features. Annotations were introduced in Portlet 2.0. Remove the annotations and re-write the methods as doView and processAction methods to make it Portlet 1.0 compatible.
Just curious, when you deploy your portlet in the corporate portal is the portlet successfully registered with the portal server ?
regards
ashish
Author:
Portlets in Action