[java ee programming] Necesito ayuda con la primer practica de WJ-3102-EE5

2009-03-23 Thread rgarciaor...@gmail.com
En principio, seria esta parte: Using the HttpResponse’s PrintWriter, create a navigational menu along the top that includes links to the following pages (created in subsequent exercises): ● Customer Details ● All Customers ● Stocks ● Attempt to get a request attribute of type Customer from the Ht

[java ee programming] Slides for section 4205 Struts Basic.

2009-03-23 Thread Karl
Going through the slides for this module, the tutorial begins to refer to the "MailReader example application" somewhere around page #45. Can someone let me in the secret of where this example application can be found? thanks, Karl --~--~-~--~~~---~--~~

[java ee programming] Re: GlassFish V2 server error

2009-03-23 Thread Darío Alvarez
Hi everybody, thanks for the advices. Actually the problem disappeared after I did a "clean" re-install (*), and ALSO modified my hosts file to explicitly indicate 127.0.0.1 = localhost. Only after that were NetBeans able to start Glassfish again. Thanks for all the advices btw, Darío. (*)

[java ee programming] Re: How can i set my classpath permanently

2009-03-23 Thread Vasile Braileanu
Hi, Here http://ist.berkeley.edu/as-ag/technology/howto/install-java-sdk-win.html search "CLASSPATH". When setting, add (not erase the other paths) Best regards, Vasile Braileanu --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goog

[java ee programming] How can i set my classpath permanently

2009-03-23 Thread denimabhishek
Hi, I install my jdk in c drive, but i make one java file just like hello.java. i keep this file in d drive , how can i complie this file, and how can i set my classpath permanently. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[java ee programming] Re: Lab-1020 Version problem with the JDBCSample

2009-03-23 Thread 4engineershelp
ok, as far as i am concern I think Class.forName(); is used for loading the driver with driver manager.. U may get help on http://4-engineers-help.blogspot.com/2009/03/what-is-class-loader-in-java-its.html Thanks.. 4 ENGINEERS HELP On Mar 20, 2:12 pm, "Don Brumbaugh" wrote: > Ok

[java ee programming] Re: Troble with program in JDBC

2009-03-23 Thread 4engineershelp
dear.. this main function i.e public static void main (String arg[]) {} is the entry point for any program & must for any program to run... Signature must be the same as above.. other wise compiler will take it as any other main function.. For any type of help related to java u can vi

[java ee programming] Re: Optimization in java for String

2009-03-23 Thread fredrik
Strings are interned in Java, so this is taken care of automatically. I.e. all "42" strings are the same instance. See, e.g. http://en.wikipedia.org/wiki/String_intern_pool http://java.sun.com/docs/books/jls/second_edition/html/lexical.doc.html#19369 /Fredrik On 22 Mar, 06:41, "Kapil.dalwani" w