[java ee programming] problen in homework3.....

2009-09-29 Thread Genious
how can i forward parameters along with acceoted data to middle.jsp.. however i have done this using include method..but what do author mean by forwarding ?? is there any other method by which i can post the data from index.jsp to middle.jsp and then furthur to response .jsp.. plzz help me for the

[java ee programming] Re: problen in homework3.....

2009-09-29 Thread suraj dangol
Hi, You can pass parameter just like username, hobby and you just have to include response.jsp in middle.jsp. You can set it as hidden text if you want. Hope that helps. On 9/29/2009 2:09 PM, Genious wrote: > how can i forward parameters along with acceoted data to middle.jsp.. > however i ha

[java ee programming] advise for a jsf login application

2009-09-29 Thread merve t
hello, i want to develop an application using jsf that user can log in and log out. i searched a little and see the alternatives; Servlet Filter, Phase Listener, and session control. i know a little jsf so i want to know which of these is more easy to adapt to my project. thanks --~--~-~--

[java ee programming] Struts 2

2009-09-29 Thread Alfredo Torres
Hi, I have to format and reinstall my pc. I have XP sp 3, Netbeans 6.7.1 with Java , Java Web and EE. With Apache tomcat and Glassfish Prelude V3. When i try to open and run the Strut2-Hellotime project from the lab folder i receive the page in the attachments. In any on the web servers

[java ee programming] Re: could some explain the error cannot make a static refrence to a non static method

2009-09-29 Thread tedpottel
Thanky you for the help, -Ted On Sep 28, 7:33 pm, "Moria Shebsovich" wrote: > Hello, > > You are receiving this error because you call add() method to class > instead of to instantiated object when your method add () is not static > and must be called to an instance. > > Try this: > > Horizontal

[java ee programming] jsf-how to control authentication

2009-09-29 Thread merve t
hi, i want to disable the access to a jsp page by writing a rule in faces-config.xml file. is it possible? and where can i find the specification of tags that i can write in faces-config file? thanks. --~--~-~--~~~---~--~~ You received this message because you are s

[java ee programming] database normalization

2009-09-29 Thread ANUJ KUMAR
In 3nf table if we have to change something then do we need to write queries for changing in each table --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Java EE (J2EE) Programming with Passion!" group. To post to this

Odp: [java ee programming] Re: Lab4005 - problem with hello2 - SOLUTION

2009-09-29 Thread Rafał Laczek
I have found a solution. I have scrolled down Libraries folder and noted that GlassFish is missing. As the original project is locked for edition I couldn't add this missing GlashFish. I have solved the problem by just coping the original project Hello2 under the name Hello2a and automatically th

[java ee programming] Expression Language - 4006 homework

2009-09-29 Thread Dhwani Patel
Hey there, I am stuck with this project... I initially got the output for customers But when i added the two lines below, Person person = new Person("Dhwani","patel"); sce.getServletContext().setAttribute("person", person); I am getting an error like, INFO: SharedSecrets.getJavaNetAccess()=j

[java ee programming] Re: Struts 2

2009-09-29 Thread Karl
I suspect the resource you are using in web.xml for your is stated incorrectly. I suspect it should be index.html so like this: index.html ~Karl --- On Tue, 9/29/09, Alfredo Torres wrote: > From: Alfredo Torres > Subject: [java ee programming] Struts 2 > To: "Java EE (J2EE

[java ee programming] Re: problen in homework3.....

2009-09-29 Thread Adaptive Jaat
please help me: i have used tag in this homework but it displays an blank screen..can anyone help me in this.. however this code works well if i use <%...@include page="middle.jsp">...but i want to know the significance of forward page...!!please help me out my index.jsp page is:-> Hello

[java ee programming] Unknow Java statement

2009-09-29 Thread peeter brunch
Hi, Can someone explain the meaning of the highlighted Java statement in the following code especially the meaning of the @ sign in front of the PersistenceUnit? Thanks. import database.BookDBAO; import javax.servlet.*; import util.Counter; import javax.ejb.*; import javax.persistence.*

[java ee programming] Re: Unknow Java statement

2009-09-29 Thread stefan.brunig
hi peeter, in this context the '@' sign is a so-called annotation. it was introduced as 'metadata' facility in release 5.0 of the java platform. please check: http://java.sun.com/docs/books/tutorial/java/javaOO/annotations.html or http://java.sun.com/j2se/1.5.0/docs/guide/language/annotations.