<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2800.1170" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY style="COLOR: #000000; FONT-FAMILY: Arial" bgColor=#ffffff>
<DIV><FONT size=2>Hi,</FONT></DIV>
<DIV><FONT size=2></FONT> </DIV>
<DIV><FONT size=2>I am using JSP template to build my html pages. In offline 
mode everything works fine. But when I publish them I see a system error! My 
problems begin when I add this code:</FONT></DIV>
<DIV><FONT size=2></FONT> </DIV>
<DIV><FONT size=2> // Create a string contains an owner of 
resource<BR>CmsObject cmsObject =cms.getCmsObject();<BR>CmsResource 
res=cmsObject.readFile(filename);   <BR>String 
authorId=cmsObject.readOwner(res).getName();</FONT></DIV>
<DIV> </DIV>
<DIV><FONT size=2>//Translation of user_name to full name<BR>Vector users = 
cmsObject.getUsers();<BR>String author = "";<BR>for (int i=0; i < 
users.size(); i++) {<BR> CmsUser user = (CmsUser) 
users.elementAt(i);<BR> if (user.getName().equals(authorId)) 
{<BR>  author = author + user.getFirstname() + " " + 
user.getLastname();<BR> }<BR>}</FONT></DIV>
<DIV> </DIV>
<DIV><FONT size=2>//Get last modified date for the requested page<BR>Date 
dateOfLastChanged = new Date(res.getDateLastModified());<BR>Calendar cal = 
Calendar.getInstance();<BR>cal.setTime(dateOfLastChanged);<BR>String 
lastModified=cal.get(Calendar.DAY_OF_MONTH)+"."+(cal.get(Calendar.MONTH)+1)+"."+cal.get(Calendar.YEAR);<BR></FONT></DIV>
<DIV><FONT size=2>Please help!</FONT></DIV>
<DIV><FONT size=2>Best regards, Ivan.</DIV></FONT>
<DIV><FONT size=2></FONT> </DIV></BODY></HTML>