prasad valeti

Greenhorn
+ Follow
since Oct 18, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by prasad valeti

I'm doing a sample example for form based authentication by using tomcat4.1 web server.

for that one i wrote some users and corresponding passwords in tomcat_users.xml.

i created two jsp's 1.default.jsp
2.login.jsp

In default.jsp page i'm taking the username and password and those values passing to login.jsp.

In login.jsp i'm taking those values from default.jsp and checking those values in userDatabase ie by defaulty maintained by tomcat for users(tomcat-users.xml).
while i'm checking(username and password) in that userdatabase i'm
getting some errors
1.org.apache.commons.dbcp.SQLNestedException: Cannot create JDBC driver of class '
' for connect URL 'null'


2..com.opensymphony.module.user.EntityNotFoundException
17 years ago
JSP
overriding concept is for only object behaviours not class level behaviours.The following example is working fine but that is not come under
overriding concept because static is class level not object level.

class A{
static void test(){
System.out.println("in class A");
}
}
class B extends A{
static void test(){
System.out.println("in class B");
}}
class C{
public static void main(String s[]){
A a = new B();
a.test(); // in class A
A a = new A();
a.test();// in class A
B b = new B();
b.test(); // in class B
}
}
if static methods are overridden at that moment it gives "in class B " but in the above example it is giving "in class A" means here considering

the referencing A not the object(new B()).
17 years ago
Here i'm writing one example where System class ,out object & println() method are explained

class A{

static B b;

}
class B{
void example(){
System.out.println("prasad");
}
}
class C{
public static void main(String s[]){
A a = new A();
a.b.example();
}
}
output:
prasad.

A-------->System class
b--------->out is a static variable of type PrintStream
B.........>PrintStream class
example()..........>println()
17 years ago
how can i integrate jasper reports with portlets by using RAD ide.
please give me the following
requirements for doing jasper reports,
integrating procedure for jasper reports with portlets,
sample examples
17 years ago
i'm preparing for scwcd please tell me some good books & urls.if any one have good material please forward to me.This is my id
prasad.v@kengroup.co.in
i create an application(jasper) in wasad and i set the following jar files to that application
jasperreports-1.2.7.jar
itext-2.0.1.jar
commons-logging-1.0.3.jar
commons-digester-1.8.jar
commons-beanutils.jar

commons-beanutils-bean-collections.jar
commons-beanutils-core.jar
commons-collections-3.2.jar
commons-digester-1.8.jar
poi-bin-2.5.1-final-20040804.jar

and i create xml file like catalog.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE jasperReport
PUBLIC "-//JasperReports//DTD Report Design//EN"
"http://jasperreports.sourceforge.net/dtds/jasperreport.dtd">

<jasperReport name="Simple_Report">
<detail>
<band height="20">
<staticText>
<reportElement x="180" y="0" width="200" height="20"/>
<text><![CDATA[Hello World!]]></text>
</staticText>
</band>
</detail>
</jasperReport>
and i write a jsp file like test.jsp

<%@ page contentType="text/html;charset=windows-1252"%>
<%@ page import="java.io.*,
java.util.*,
java.sql.*,
javax.sql.DataSource,
javax.naming.InitialContext,
net.sf.jasperreports.engine.*,
net.sf.jasperreports.engine.fill.*,
net.sf.jasperreports.engine.design.JasperDesign,
net.sf.jasperreports.engine.xml.JRXmlLoader,
net.sf.jasperreports.engine.xml.*"
%>

<%
System.out.println("1st statement.....");
%>
Hi
HI


<%
try{
InputStream input=new FileInputStream(new File("/catalog.xml"));

System.out.println("2nd statement.....");
JasperDesign design = JRXmlLoader.load(input);
System.out.println("3rd statement.....");
JasperReport report = JasperCompileManager.compileReport(design);

System.out.println("4th statement.....");



Map parameters = new HashMap();

}
catch(Exception e)
{ System.out.println("exception....."+e);
}
%>
when i run the application i'm getting the errors like

package net.sf.jasperreports.engine does not exist
package net.sf.jasperreports.engine.fill does not exist




[3/30/07 10:41:34:859 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:18: cannot resolve symbol
symbol : class JREvaluator
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:34:859 GMT+05:30] 1fbd750f SystemErr R public class PDFReport_1175231494203_914947 extends JREvaluator
[3/30/07 10:41:34:859 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:34:859 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:25: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:34:859 GMT+05:30] 1fbd750f SystemErr R private JRFillParameter parameter_REPORT_VIRTUALIZER = null;
[3/30/07 10:41:34:859 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:34:859 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:26: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:34:859 GMT+05:30] 1fbd750f SystemErr R private JRFillParameter parameter_REPORT_SCRIPTLET = null;
[3/30/07 10:41:34:859 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:34:875 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:27: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:34:875 GMT+05:30] 1fbd750f SystemErr R private JRFillParameter parameter_REPORT_MAX_COUNT = null;
[3/30/07 10:41:34:875 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:34:875 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:28: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:031 GMT+05:30] 1fbd750f SystemErr R private JRFillParameter parameter_REPORT_PARAMETERS_MAP = null;
[3/30/07 10:41:35:031 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:031 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:29: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:031 GMT+05:30] 1fbd750f SystemErr R private JRFillParameter parameter_REPORT_CONNECTION = null;
[3/30/07 10:41:35:031 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:031 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:30: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:031 GMT+05:30] 1fbd750f SystemErr R private JRFillParameter parameter_ReportTitle = null;
[3/30/07 10:41:35:031 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:031 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:31: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:047 GMT+05:30] 1fbd750f SystemErr R private JRFillParameter parameter_IS_IGNORE_PAGINATION = null;
[3/30/07 10:41:35:047 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:047 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:32: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:047 GMT+05:30] 1fbd750f SystemErr R private JRFillParameter parameter_REPORT_CLASS_LOADER = null;
[3/30/07 10:41:35:047 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:062 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:33: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R private JRFillParameter parameter_REPORT_LOCALE = null;
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:34: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R private JRFillParameter parameter_REPORT_RESOURCE_BUNDLE = null;
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:35: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R private JRFillParameter parameter_REPORT_URL_HANDLER_FACTORY = null;
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:36: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R private JRFillParameter parameter_REPORT_DATA_SOURCE = null;
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:37: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R private JRFillParameter parameter_REPORT_TIME_ZONE = null;
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:38: cannot resolve symbol
symbol : class JRFillField
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R private JRFillField field_Author = null;
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:39: cannot resolve symbol
symbol : class JRFillField
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R private JRFillField field_Edition = null;
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:094 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:40: cannot resolve symbol
symbol : class JRFillField
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R private JRFillField field_Title = null;
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:41: cannot resolve symbol
symbol : class JRFillField
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R private JRFillField field_Publisher = null;
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:42: cannot resolve symbol
symbol : class JRFillField
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R private JRFillField field_Journal = null;
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:43: cannot resolve symbol
symbol : class JRFillField
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R private JRFillField field_CatalogId = null;
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:44: cannot resolve symbol
symbol : class JRFillVariable
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R private JRFillVariable variable_PAGE_NUMBER = null;
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:45: cannot resolve symbol
symbol : class JRFillVariable
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R private JRFillVariable variable_COLUMN_NUMBER = null;
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:46: cannot resolve symbol
symbol : class JRFillVariable
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R private JRFillVariable variable_REPORT_COUNT = null;
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:47: cannot resolve symbol
symbol : class JRFillVariable
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:109 GMT+05:30] 1fbd750f SystemErr R private JRFillVariable variable_PAGE_COUNT = null;
[3/30/07 10:41:35:125 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:141 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:48: cannot resolve symbol
symbol : class JRFillVariable
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:141 GMT+05:30] 1fbd750f SystemErr R private JRFillVariable variable_COLUMN_COUNT = null;
[3/30/07 10:41:35:141 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:141 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:71: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:141 GMT+05:30] 1fbd750f SystemErr R parameter_REPORT_VIRTUALIZER = (JRFillParameter)pm.get("REPORT_VIRTUALIZER");
[3/30/07 10:41:35:141 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:72: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R parameter_REPORT_SCRIPTLET = (JRFillParameter)pm.get("REPORT_SCRIPTLET");
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:73: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R parameter_REPORT_MAX_COUNT = (JRFillParameter)pm.get("REPORT_MAX_COUNT");
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:74: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R parameter_REPORT_PARAMETERS_MAP = (JRFillParameter)pm.get("REPORT_PARAMETERS_MAP");
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:75: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R parameter_REPORT_CONNECTION = (JRFillParameter)pm.get("REPORT_CONNECTION");
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:76: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R parameter_ReportTitle = (JRFillParameter)pm.get("ReportTitle");
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:77: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R parameter_IS_IGNORE_PAGINATION = (JRFillParameter)pm.get("IS_IGNORE_PAGINATION");
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:156 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:78: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R parameter_REPORT_CLASS_LOADER = (JRFillParameter)pm.get("REPORT_CLASS_LOADER");
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:79: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R parameter_REPORT_LOCALE = (JRFillParameter)pm.get("REPORT_LOCALE");
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:80: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R parameter_REPORT_RESOURCE_BUNDLE = (JRFillParameter)pm.get("REPORT_RESOURCE_BUNDLE");
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:81: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R parameter_REPORT_URL_HANDLER_FACTORY = (JRFillParameter)pm.get("REPORT_URL_HANDLER_FACTORY");
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:82: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R parameter_REPORT_DATA_SOURCE = (JRFillParameter)pm.get("REPORT_DATA_SOURCE");
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:83: cannot resolve symbol
symbol : class JRFillParameter
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R parameter_REPORT_TIME_ZONE = (JRFillParameter)pm.get("REPORT_TIME_ZONE");
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:92: cannot resolve symbol
symbol : class JRFillField
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R field_Author = (JRFillField)fm.get("Author");
[3/30/07 10:41:35:172 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:188 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:93: cannot resolve symbol
symbol : class JRFillField
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:188 GMT+05:30] 1fbd750f SystemErr R field_Edition = (JRFillField)fm.get("Edition");
[3/30/07 10:41:35:188 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:188 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:94: cannot resolve symbol
symbol : class JRFillField
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R field_Title = (JRFillField)fm.get("Title");
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:95: cannot resolve symbol
symbol : class JRFillField
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R field_Publisher = (JRFillField)fm.get("Publisher");
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:96: cannot resolve symbol
symbol : class JRFillField
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R field_Journal = (JRFillField)fm.get("Journal");
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:97: cannot resolve symbol
symbol : class JRFillField
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R field_CatalogId = (JRFillField)fm.get("CatalogId");
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:106: cannot resolve symbol
symbol : class JRFillVariable
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R variable_PAGE_NUMBER = (JRFillVariable)vm.get("PAGE_NUMBER");
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:107: cannot resolve symbol
symbol : class JRFillVariable
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R variable_COLUMN_NUMBER = (JRFillVariable)vm.get("COLUMN_NUMBER");
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:203 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:108: cannot resolve symbol
symbol : class JRFillVariable
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:219 GMT+05:30] 1fbd750f SystemErr R variable_REPORT_COUNT = (JRFillVariable)vm.get("REPORT_COUNT");
[3/30/07 10:41:35:219 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:219 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:109: cannot resolve symbol
symbol : class JRFillVariable
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:219 GMT+05:30] 1fbd750f SystemErr R variable_PAGE_COUNT = (JRFillVariable)vm.get("PAGE_COUNT");
[3/30/07 10:41:35:219 GMT+05:30] 1fbd750f SystemErr R ^
[3/30/07 10:41:35:219 GMT+05:30] 1fbd750f SystemErr R C:\Program Files\IBM\WebSphere Studio\PDFReport_1175231494203_914947.java:110: cannot resolve symbol
symbol : class JRFillVariable
location: class PDFReport_1175231494203_914947
[3/30/07 10:41:35:219 GMT+05:30] 1fbd750f SystemErr R variable_COLUMN_COUNT = (JRFillVariable)vm.get("COLUMN_COUNT");
[3/30/07 10:41:35:219 GMT+05:30] 1fbd750f SystemErr R ^
17 years ago
is the object size is same in all operatig systems