[java ee programming] Re: Servlet Advanced 3

2009-02-26 Thread Karl
Hi Biljana, What I did was simply reverse the directions that were given to output the statements, e.g., re-comment out the blocks in doBefore and doAfterProcessing methods (the things that begin with:     for (Enumeration en = request.getParameterNames(); en.hasMoreElements(); ) {         Strin

[java ee programming] Problem with lab 1020

2009-02-26 Thread skhare
I have downloaded the JDBC lab1020 . But when I open the JDBCSamples in Netbean , I get reference problem "JDK_1.5" platform could not be found. I have JDK6.0 installed and was assuming all the sample code is compatible with JDK6.0 Is anybody else having the same problem??Any solutions --~--~---

[java ee programming] Hello2 run

2009-02-26 Thread Biljana Biljana
I delete filters, because can' t  wait the ansswer, and somthign changed. I add myOwnEventListener, and changed everything, like they sad, and try to run hello2 project. The output was in title Sun GlassFish and was writteg this: HTTP Status 503 - type Status report message descriptionThe reque

[java ee programming] Re: Servlet Advanced2

2009-02-26 Thread Mick Timony
What are the error messages? On Thu, Feb 26, 2009 at 2:02 PM, Biljana Biljana wrote: > Hi! > Am I seein well? > > I try to run hello2 project, from servletadvanced after I add myOwnFilter > and uncoment what they said. I saw that I have five bugs, because don't > have defined class Enumeration

[java ee programming] Re: Servlet Advanced2

2009-02-26 Thread Karl
add, import java.util.*; to your class file input statements. --- On Thu, 2/26/09, Biljana Biljana wrote: From: Biljana Biljana Subject: [java ee programming] Servlet Advanced2 To: "J2EE Passion Group" Date: Thursday, February 26, 2009, 11:02 AM Hi! Am I seein well?   I try to run hello2 pr

[java ee programming] LAB-4004 Session Tracking

2009-02-26 Thread Karl
Waaa! Okay, everything's going fine up until here... (2.5) Modify "Carts" part of the application to use application scope 1. Modify carts.jsp under under JSPExamples->Web Pages->sessions to use application scope. The code fragments that need to be changed are highlighted in bold and blue colo

[java ee programming] Re: Digital signature

2009-02-26 Thread Victor Ott
Because it's 1. faster [imagine some megabytes of attachments having to be decrypted every time you click on that mail], and 2. much easier to handle some readable text than arrays of bytes. On Thu, Feb 26, 2009 at 4:40 AM, axeldx...@gmail.com wrote: > > [...] > The question that I ca

[java ee programming] Servlet Advanced2

2009-02-26 Thread Biljana Biljana
Hi! Am I seein well?   I try to run hello2 project, from servletadvanced after I add myOwnFilter and uncoment what they said. I saw that I have five bugs, because don't have  defined class Enumeration  enywhere, even in imported package, even in that package.I think OK, the don't siad enything a

[java ee programming] Re: Input String Values

2009-02-26 Thread cyclemaniaque
Not to be a party pooper, but wouldn't there be a better forum for this thread? It would seem out of context of the J2EE material. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Java EE (J2EE) Programming with Pass

[java ee programming] Re: Glassfish Server messages...

2009-02-26 Thread Ridvan Lakas ng Bayan S. Baluyos
I also encountered this. I'm sure I did enter the my correct username and password but still it displays those message. On Thu, Feb 26, 2009 at 1:29 PM, mayur wrote: > I think it just keeps on trying to login in few steps of interval till you > enter correct credentials > > Tilll that point

[java ee programming] Servlet Advanced

2009-02-26 Thread Biljana Biljana
Hi! Is it only my problem? Why in Lab -4005 I can't see picture , many of them, almost all? How I can see I that I am doing exactly what they saying to do.   Regards,     --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goog

Fwd: [java ee programming] Re: Problem with Expression Language's Homework (homework #7).

2009-02-26 Thread JULIAN ENRIQUE OSORIO AMAYA
-- Forwarded message -- From: JULIAN ENRIQUE OSORIO AMAYA Date: 2009/2/25 Subject: Re: [java ee programming] Re: Problem with Expression Language's Homework (homework #7). To: leofdecarva...@gmail.com Cc: julian.oso...@gmail.com, "Java EE (J2EE) Programming with Passion!" < java-ee

[java ee programming] Servlet Advanced 3

2009-02-26 Thread Biljana Biljana
Hi! In Lab-4005,what  this means: Remove the logging statements of the filters in the code so that you don't see them in the next exercise.   To  just delete MyOwnFilter and myOwnFilter2, erase part for filter in web.xml in Cofiguration Files.Where is that logging statement?   Regards, Biljana

[java ee programming] Re: Input String Values

2009-02-26 Thread gir...@gmail.com
Hi, As the symbol entered is string so you please check the condition of string using .equals()/.equalsIgnoreCase(). Whenever you try to check the condition with two stringObjects uising == it will always return false. Hope this is helpful regards, Girish Limaye On Thu, Feb 26, 2009 at 4:29 PM,

[java ee programming] Re: Input String Values

2009-02-26 Thread Nelson Rodrigo - LHQ
No Sampath Problem is in elseif it should be as else if (separate by space) :-) So not it's working. thanks lot for your corporation. Nelson Rodrigo Staff Officer - Software Development LOADSTAR (PRIVATE) LIMITED Sri Lanka | Tel: +94 11 483 7914 | Fax: +94 11 224 0892 | Mobile: +94 77 311 65

[java ee programming] Re: Input String Values

2009-02-26 Thread Nelson Rodrigo - LHQ
Dear Sampath, Thanks its working Can you please check following code? there are small problem in else part if (str.equals("+")) { addval( no1, no2);

[java ee programming] Re: Input String Values

2009-02-26 Thread Waldemar Quincke
Look at this: http://java.sun.com/docs/books/tutorial/java/nutsandbolts/switch.html Waldemar Nelson Rodrigo - LHQ escribió: Yes Dear Thanks I got the result Now my problem is I have crating simple Calculator program   Input two numbers and one Operator (+

[java ee programming] Re: Input String Values

2009-02-26 Thread Nelson Rodrigo - LHQ
Yes Dear Thanks I got the result Now my problem is I have crating simple Calculator program Input two numbers and one Operator (+ , - , * ) So against operator separate method will call by the program Still I unable to find how to catch entered operator This is one way Sy