<div><div>Hi Maria. I strongly recommend you to use an Development
Enviroment such as Eclipse or NetBeans to develop your code. For
instance with Eclipse and the WTP (Web Tools Project) installed you can
write your jsps with code assist, code completion and even suggestions
for fixing errors. The you can paste the developed code into OpenCMS.<br>
<br>
Regarding your code, the line <br>
</div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">    CmsObject cmsObject = cmsJspActionElement.getCmsObject();<br>
</blockquote><div>should be<br>
 CmsObject cmsObject = CmsJspActionElement.getCmsObject();<br>
in terms of spelling (all classes start with capitals).<br>
<br>
I wonder which OpenCMS version you are using, or which javadocs version
you are reading, because the class CmsJspActionElement doesn't have a
getCmsObject() method anymore, nor there is a CmsWorkplaceAction class.
<br>
<br>
I recommend you use the online javadocs from OpenCMS to keep updated at:<br>

<a href="http://www.opencms.org/export/javadoc/core/index.html">http://www.opencms.org/export/javadoc/core/index.html</a><br>
and if you are looking for methods that return "CmsObject" for
instance, locate the CmsObject and click in "Use" and then search for
"methods that return".<br>
</div></div><br>
Hope this helps and sorry if I sounded a bit edgy (having a bad day). Greetings,<br>
<br>
Nacho.<br>