I had a question regarding the comparison of Jsp/ Php. What are the
advantages of using Php for developing a complex web site in 5 weeks as
opposed to using Jsp/servlets.
Thanks
Irfan
===
To unsubscribe: mailto [EMAIL PROTE
Sent: Thursday, November 16, 2000 7:34 PM
To: [EMAIL PROTECTED]
Subject: Re: Java: make EXE
Hi,
this one sounds nice.. where I can get the sdk? is it freeware?
can pls you tell me how to get rid of 'deprecated API' warning message when
compiling java source?
Thanks & regards,
Muliawan
You can convert a .class file to an .exe file if you use a tool provided by
microsoft's now defunct sdk. You need to install the sdk before you use it
though.
Heres some documentation from it.
Jexegen
The Java Win32® Executable Generator (jexegen) converts Java classes into a
fully executable M
You could try something like this,
capture the time when the dialog asking the user for input was displayed.
After the specified time interval if the response is not received the you
could log the user out. You'll have to figure if you'd do a busy wait for
the time interval or you could do it so
It means that you are working with version 2.1
Irfan
-Original Message-
From: Sushil Singh [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 28, 2000 11:55 AM
To: [EMAIL PROTECTED]
Subject: Re: How to know the JSP Version
Thanks for your reply.
I executed the JSP with the code which
Comparing String with == operator does not work. In such a comparison only
the references are checked for equality rather than the values. In order to
check for equality based on value try
if(key.equals("AT")){
}
Irfan
-Original Message-
From: Aaron Prohaska [mailto:[EMAIL PROTECTED]]
S
The system.out.println would be displayed in the jvm_stdout file of the logs
of websphere. It should be under the log directory of Websphere
Irfan
-Original Message-
From: Vinay Kulkarni [mailto:[EMAIL PROTECTED]]
Sent: Friday, June 16, 2000 12:18 PM
To: [EMAIL PROTECTED]
Subject: Need H
I am setting some cookies in a servlet with default path and default domain.
When I try to view the cookie in a jsp page in a directory, the cookies are
not visible. However when I try to view the cookies in the same directory
as the login page I can see them.
Any clues why I am be seeing this b
in order to read all the records returned by the execution of a query do
this
while(rs.next()){
do whatever
}
rs.next() advances the pointer to the next record in the result set and that
way you can go till the end of the result set.
You could read the api under java.sql.* to understand this fun
getParameters would return all the parameter Try getParameter() to get
individual parameters. This would work in both cases of get as well as post
Irfan
-Original Message-
From: Scott Evans [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 08, 2000 1:54 AM
To: [EMAIL PROTECTED]
Subject: R
Are there application servers that have a web server built in them ??? My
understanding is that both are different components and have to be installed
separately.
Irfan
Hi there,
Thanks Brevsville Administrator for your views. However, two doubts still
remain
unsolved. I repeat them here again:
Try servlet chaining
Irfan
-Original Message-
From: Alarcon Fabio [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 07, 2000 1:45 PM
To: [EMAIL PROTECTED]
Subject: Invoke a servlet from another servlet
Hi guys!
Help me please, how can I invoke a servlet from another servlet?
Thanks in a
The strings that you have declared X1 and Y1 exist in the scope of the if
statement only. once out of the if statement these variables no longer
exist. if you did a println on those variables out of the if clause, you
wouldn't see them.
A solution is to define those strings as class variables.
MVC pattern is a three tier pattern where we differentiate between the
display, logic and data access. Typically the jsp's are the view layer, the
servlets the controller and the beans or EJB's the model. The jsp merely
display content with very little code in them, the servlets are controllers
a
14 matches
Mail list logo