[java ee programming] JSP Homework working but with doubts.

2009-03-11 Thread cruzc
I understand that servlet and JST technologies work together to the web application design. Although servlet works better to controlling and dispatching, and JSP works better to displaying. In the homework 3 only JSP files are used to build the basic web application. I did the homework 3 but I f

[java ee programming] Re: hai ia

2009-03-11 Thread Evans
Ah, that explains alot :) -- Evans http://www.javawug.org - Original Message - From: "Karl" To: Sent: Wednesday, March 11, 2009 4:59 PM Subject: Re: [java ee programming] Re: hai ia > > I think this is that guy in last Sunday's Dilbert cartoon. > > --- On Wed, 3/11/09, Evans wro

[java ee programming] Re: hai ia have run ejb in weblogic . i have successfully set in all paths and compile. Jar file was created also done. But finally i have compile the client program. compilati

2009-03-11 Thread Evans
Balu, just wondering why you placed your message in the subject area and not the body? -- Evans http://www.javawug.org - Original Message - From: balu balu To: java-ee-j2ee-programming-with-passion@googlegroups.com Sent: Wednesday, March 11, 2009 11:59 AM Subject: [java ee p

[java ee programming] Re: Dear Senior Memebers

2009-03-11 Thread Artashes Hovasapyan
As an intro please take some time and read the calss FAQ: http://www.javapassion.com/coursefaq.html. -- Regards, Artashes Hovasapyan On Wed, Mar 11, 2009 at 10:12 AM, mrnano wrote: > > Today I joined this site.I'm a fresh member.would I do home works and > sent to java passion. > > regards > j

[java ee programming] hai ia have run ejb in weblogic . i have successfully set in all paths and compile. Jar file was created also done. But finally i have compile the client program. compilation w

2009-03-11 Thread balu balu
--~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Java EE (J2EE) Programming with Passion!" group. To post to this group, send email to java-ee-j2ee-programming-with-passion@googlegroups.com To unsubscribe from this

[java ee programming] Re: HttpServletRequest , HttpServletResponse

2009-03-11 Thread patrox
Yes, Artashes is right, Because as you said HttpServletRequest & HttpServletResponse are interfaces, and as you may know you can assign to interface type parameter an object of a class which is implementing this interface so you shouldn't worry about these. If you would like to learn about it m

[java ee programming] Re: HttpServletRequest , HttpServletResponse

2009-03-11 Thread patrox
Artashes is right, As you may know if you hav an interface type variable, you can assign any object of a class which is implementing this interface to this variable. If you'd like to learn about it more, you can check this section of Sang's java programming course: http://www.javapassion.com/ha

[java ee programming] Dear Senior Memebers

2009-03-11 Thread mrnano
Today I joined this site.I'm a fresh member.would I do home works and sent to java passion. regards jul...@gmail.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Java EE (J2EE) Programming with Passion!" group.

[java ee programming] Re: I'm overdue

2009-03-11 Thread patrox
Hi Victor, I've also started the course few days ago as you've and I'm pretty certain that the most important in order to gain the certificate is to submit all your homework before the deadline which is two weeks after the last class. you can check it out in the java passion FAQ on: http://www.j

[java ee programming] Re: I'm overdue

2009-03-11 Thread patrox
Hello Victor, I've also joined the course few days ago as you have and as I've read in the FAQ the most important is to submit all your homework before two weeks after the last class. You can check it out on: http://www.javapassion.com/coursefaq.html#I_did_not_register_before_or_on_the Kind re

[java ee programming] Re: Homework Lab 4006 - Not sure what I'm doing wrong

2009-03-11 Thread Vinod Rawat
Hi, The way you are saying is working but in the home work if you check the below is written: . The response.jsp displays following information - the display format can be in any form - using the Expression Language notation as following o ${person.name.firstname} o ${person.na

[java ee programming] Using JConsole to Monitor Applications

2009-03-11 Thread abhishek parikh
A nice article about monitoring your application remotely. http://java.sun.com/developer/technicalArticles/J2SE/jconsole.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Java EE (J2EE) Programming with Passion!"

[java ee programming] Re: HttpServletRequest , HttpServletResponse

2009-03-11 Thread Artashes Hovasapyan
The implementation of HttpServlerRequest and HttpServlerResponse are provided by application server vendor and you should not worry about it. The actual object, an instance of HttpServlerRequest/HttpServlerResponse is instantiated and populated with corresponding data by web container. All you nee