[java ee programming] reply to bharateeyudu

2010-03-23 Thread Yong Qui zheng
Correct me if I'm wrong; however, I believe you can transfer control by using a sending parameter method. I'm not too sure about the actually syntax for it. -- You received this message because you are subscribed to the Google Groups "Java EE (J2EE) Programming with Passion!" group. To post to th

Re: [java ee programming] database connection

2010-03-23 Thread Ovidijus
SQLCODE -204 means "object does not exist". DB2 is looking for the object "DB2INST1.USERS" The DB2 assumes that db2inst1 is the schema name. You can use the SET SCHEMA statement or use the userid with the same name as your schema. Regards, Ovidijus. On Tue, 2010-03-23 at 18:59 +0800, ANUJ KUMAR

[java ee programming] how to call JSP/Servlet from a ordinary java class.

2010-03-23 Thread thanooj bharateeyudu
hi all. i need to call or transfer control from a java class to a JSP /servlet. i mean ... what i am asking is .. can we call a JSP from a java class. if possible ... please send me the possible ways. waiting for your re

[java ee programming] database connection

2010-03-23 Thread ANUJ KUMAR
My database name is TEST usename is db2inst1 password is db2inst1 table name is USERS when i execute this code i get com.ibm.db2.jcc.b.nm: DB2 SQL Error: SQLCODE=-204, SQLSTATE=42704, SQLERRMC=DB2INST1.USERS, DRIVER=3.50.152 please help String username=request.getParameter("user"); username.tr

Re: [java ee programming] What is J2EE in few words? (EOM)

2010-03-23 Thread Mihai DINCA
Hi To return to the origins, Java was not conceived as a dedicated language for business applications (like Cobol), but rather as a general-purpose language (like Pascal - to perpetuate the analogy). But there is a big advantage to use Java for business applications because of its portability

Re: [java ee programming] JAVA Bar code Reader with USB Barcode Scanner

2010-03-23 Thread Anand
On Tue, Mar 23, 2010 at 1:08 PM, lanre afod wrote: > once you point the barcode scanner to an object that has a barcode, the > reader would transfer the unique value into a jtextfield object. (assuming > you are using j2se). you can now compare the values retrived with that > stored in a database

[java ee programming] Wicket problem

2010-03-23 Thread RafaƂ Laczek
Hi, I have welcome following page Home.java public class HomePage extends WebPage { public HomePage(){ add(new Drift("panel")); } } It seems that everything should work but I receive exception that "Can't instantiate page using constructor p