Use a source level debugger in an IDE.
At 08:21 PM 6/30/2005, you wrote:
Hai,
i have a problem like this. In my result the data not display perfect.
in my suspicion
1. i have a problem in ResultSet
2. i have problem in StringBuffer
so i test my suspicion in point 1, i remark inside while lo
Do you homework on local variable pal ...
-Original Message-
From: A mailing list for discussion about Sun Microsystem's Java Servlet
API Technology. [mailto:[EMAIL PROTECTED] On Behalf Of Andy
Susanto
Sent: Friday, 1 July 2005 1:22 PM
To: SERVLET-INTEREST@JAVA.SUN.COM
Subject: [Help] How
Oops, my mistake, I see the VALUES clause is there but it seems that the
close parenthesis is missing.
-> "?, ?, ?, ?");
} else {
-Richard
At 07:32 PM 1/23/2005, you wrote:
I'm getting the following error in an insert, the update works fine.
Is there a way to get a more informative error messa
Hard to tell but is there a space between ) and VALUES?
Bob
Sent from my Dell Axim X30
-Original Message-
>From: "Jack Lauman"<[EMAIL PROTECTED]>
>Sent: 1/23/05 9:32:45 PM
>To: "SERVLET-INTEREST@JAVA.SUN.COM"
>Subject: Help with JDBC query
>
>I'm getting the following error in an insert,
You are missing the "VALUES" clause before the open parenthesis.
-Richard
At 07:32 PM 1/23/2005, you wrote:
I'm getting the following error in an insert, the update works fine.
Is there a way to get a more informative error message about the error?
Does anyone see a syntax error that I missed?
I'm
ot;some
value");
David
-Original Message-
From: shashi kanth goud [mailto:[EMAIL PROTECTED]
Sent: Friday, October 03, 2003 4:39 AM
To: [EMAIL PROTECTED]
Subject: Re: help regarding oracle
hi everybody,
iam working on oracle 7 . i want to use auto counter field in oracle
can
anyone tel
Title: RE: help regarding oracle
Please use SEQUENCE. You need to have DBA privilege to create this.
Syntax is:
CREATE SEQUENCE seq_name
START WITH 1
INCREMENT BY 1
NOMINVALUE
MAXVALUE 1.000E+27
NOCYCLE
NOCACHE
ORDER
/
In your query, you can get next value
EMAIL PROTECTED]Subject: Re: help regarding
oracle
hi everybody, iam working on oracle 7 . i want to use auto
counter field in oracle can anyone tell me how to do itthanx in
advance RegardsShashi
___ To
unsubs
hi everybody,
iam working on oracle 7 . i want to use auto counter field in oracle can anyone
tell me how to do it
thanx in advance
Regards
Shashi
___
To unsubscribe, send email to [EMAIL PROTECTED] and include in
u cud
use the _javascript_ option for printing... the exact syntax i dont
remember,
but
its like window.print().. check it out
-Original Message-From: A mailing list for
discussion about Sun Microsystem's Java Servlet API Technology.
[mailto:[EMAIL PROTECTED]On Behalf Of Shek
what's a war file? what is it used for? how is it different from jar?
-Original Message-
From: A mailing list for discussion about Sun Microsystem's Java Servlet
API Technology. [mailto:[EMAIL PROTECTED] Behalf Of
Carter, Scott
Sent: Monday, September 22, 2003 12:49 PM
To: [EMAIL PROTECTED
Scott
Just a guess, but this type of thing bit me when I didn't use relative URLs in my web
app.
Hope this helps you.
--
__
Timothy Burke <[EMAIL PROTECTED]> DSS id 0xF4C2D990
DSS F20 = B5AD 6495 D7B8 381F 91F8 D929 E47A A82D F4
hi ,
Full functionality is what i mean is "Mapping the request parameters directly to the bean's properties",etc . ( "just for explaination, setProperty() tags in JSP").
thanks
"Chen, Gin" <[EMAIL PROTECTED]> wrote:
what
what do you
mean by "JavaBean's full functionality"?
-Tim
-Original Message-From: Kaykay
[mailto:[EMAIL PROTECTED]]Sent: Monday, December 30, 2002 7:16
AMTo: [EMAIL PROTECTED]Subject:
help
hi,
How can i use the JavaBean's full functionality in Servlets ( like in JSP)
?
wot
help do u want??
-Original Message-From: Senthoor
[mailto:[EMAIL PROTECTED]]Sent: Monday, December 30, 2002 9:13
AMTo: [EMAIL PROTECTED]Subject:
help
Padhu,
Thank you for your help. My errors were cause due to the invoker servlet
not being turned on. In the version of Tomcat that I use, it was not
turned off by default, so I was not aware of that change. Since the
invoker servlet is turned off by default, is there a security concern
regardi
Fawaz,
You shouldn't even have to edit the server.xml file. I'd suggest just
copying the example web app to a different name, under
/webapps, putting your servlet class file under
the WEB-INF/classes directory, and then altering a servlet entry in the
web.xml file to match your servlet name.
What
1. Do you have the invoker servlet on ? It is switched off by default.
The invoker servlet is used for accessing servlets using the URI of type
/YourWebApp/servlet/ClassName. If yes, then you should be able to access
using a url like http:///WebUrl/YourWebApp/servlet/ClassName.
2. If no to (1), th
Milt,
the actual path for the class files is WebOEAdmin/WEB-INF/classes
I have a web.xml file. Aside from my servlet, i created a simple
test servlet that prints hellow world. It works fine from the example
folder, but not from my folder. I have the path set in server.xml as
well. I have tried
On Thu, 7 Nov 2002, Fawaz Ahmad wrote:
> Padhu,
>
> I do have a web.xml file in my directory. It actually has some
> parameters in it as well. My classes are in the /web-inf/classes
> folder. However, I still can not get it to run.
Is it really "web-inf", or "WEB-INF" -- because case matters.
Padhu,
I do have a web.xml file in my directory. It actually has some parameters
in it as well. My classes are in the /web-inf/classes folder. However, I
still can not get it to run.
Fawaz
On Thu, 7 Nov 2002, Padhu Vinirs wrote:
> Create a default web.xml in WEB-INF and put your class in
> W
Create a default web.xml in WEB-INF and put your class in
WEB-INF/classes. Reload the web app, either using the manager web app,
or restarting Tomcat.
-- padhu
Fawaz Ahmad wrote:
Hello,
I am having major problems running servlets, and can not seem to solve!
I am running Tomcat on Win2K. I h
Not without knowing more about your file system.
Just create a directory under webapps and it will automatically become a
context, no need to modify server.xml
--
Mike W
-Original Message-
From: A mailing list for discussion about Sun Microsystem's Java Servlet
API Technology. [mailto:SE
Serializable only means that it CAN be saved to disk, not that it will be.
You need to either deserialize/serialize the object in the Servlet's init()
and destroy() methods, or instruct the object to load/save it's state from
those methods. It won't be done for you.
(*Chris*)
- Original Me
hi!
fileStore.exists() returns true on your local machine because the file you
want to upload is already "uploaded" (fp.getFilePath() returns the full path
(on the client) of the file to upload, on your local machine the client is
the server, too). On the server-side you cannot check for existance
use
String title = TITLE.replace('"', '\'');
-Original Message-
From: Lance Prais [mailto:[EMAIL PROTECTED]]
Sent: 27 August 2002 21:57
To: [EMAIL PROTECTED]
Subject: Help with replacing a quotes
I am trying to replace '"'(Double quotes) with in a substring with
'''(Single quo
use \' instead of ' .
Babak Vandad
--- Lance Prais <[EMAIL PROTECTED]> wrote:
> I am trying to replace '"'(Double quotes) with in a
> substring with
> '''(Single quotes).
> This is the code I thought I should use but tends to
> error out. Can any one
> help me?
> String title = TITLE.replace('"',
n <[EMAIL PROTECTED]> wrote:
> > > -Original Message-
> > > From: Mark E. Zawadzki [mailto:[EMAIL PROTECTED]]
> > > Sent: Thursday, August 01, 2002 11:18 AM
> > > To: [EMAIL PROTECTED]
> > > Subject: Re: Help! Patching compiled code not taking in T
> From: Mark E. Zawadzki [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, August 01, 2002 11:18 AM
> > To: [EMAIL PROTECTED]
> > Subject: Re: Help! Patching compiled code not taking in Tomcat server
> >
> > A red herring.
> > The setting should not matter if you
> -Original Message-
> From: Mark E. Zawadzki [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, August 01, 2002 11:18 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Help! Patching compiled code not taking in Tomcat server
>
> A red herring.
> The setting should not matt
o?
> >
> > -Original Message-
> > From: Nigh, Bill [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, August 01, 2002 10:36 AM
> > To: [EMAIL PROTECTED]
> > Subject: Re: Help! Patching compiled code not taking in Tomcat server
> >
> >
> > Ch
TED]]
Sent: Thursday, August 01, 2002 11:18 AM
To: [EMAIL PROTECTED]
Subject: Re: Help! Patching compiled code not taking in Tomcat server
A red herring.
The setting should not matter if you have restarted. Reloadable set to true
will allow you, under certain circumstances to reload your servlet w/o
to false. What does the Context path do?
>
> -Original Message-
> From: Nigh, Bill [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, August 01, 2002 10:36 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Help! Patching compiled code not taking in Tomcat server
>
>
> Check the
file to update its timestamp, and
that may cause Tomcat to reload the whole app, I'm not sure. (touch
is a UNIXism -- not sure of the equivalent on Windows.)
> -Original Message-
> From: Nigh, Bill [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, August 01, 2002 10:36 AM
&
You need to redploy your WAR file. May be you need write a make file or use ANT to do
that.
Albert Pi
Corp IS System Delivery
516-803-3762
>>> [EMAIL PROTECTED] 08/01/02 12:29PM >>>
I'm running into what I think of as a strange problem. Can someone give me
some pointers?
I have a program bu
x27;/.YourServletname.class' was modified;"
That is how you can check that the reload worked.
Bill Nigh
Great Atlantic & Pacific Tea Company
Teaconet 320-4744
> -Original Message-
> From: Margaret Fisk [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, August 01, 2002 1
It is set to false. What does the Context path do?
-Original Message-
From: Nigh, Bill [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 01, 2002 10:36 AM
To: [EMAIL PROTECTED]
Subject: Re: Help! Patching compiled code not taking in Tomcat server
Check the server.xml file in, probably
om: Margaret Fisk [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, August 01, 2002 1:20 PM
> To: [EMAIL PROTECTED]
> Subject: Re: Help! Patching compiled code not taking in Tomcat
> server
>
> I'll check for that. Thanks.
>
> -Original Message-
> From: Mark E. Z
I'll check for that. Thanks.
-Original Message-
From: Mark E. Zawadzki [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 01, 2002 10:05 AM
To: [EMAIL PROTECTED]
Subject: Re: Help! Patching compiled code not taking in Tomcat server
Well, if you started and stopped the server, a
, 2002 11:55 AM
To: [EMAIL PROTECTED]
Subject: Re: Help! Patching compiled code not taking in Tomcat server
Yeah, I'm afraid I've tried the basics:
1) Stop and Start the application service
2) Delete the Tomcat work folder (I know its just JSPs compiled there,
but...)
3) Restarted the wh
ole server.
>
> Is there any place that Tomcat logs changes so I can see if it really isn't
> seeing the file?
>
> Thanks,
> Margaret
>
> -Original Message-
> From: Mark E. Zawadzki [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, August 01, 2002 9:40 AM
&g
e file?
Thanks,
Margaret
-Original Message-
From: Mark E. Zawadzki [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 01, 2002 9:40 AM
To: [EMAIL PROTECTED]
Subject: Re: Help! Patching compiled code not taking in Tomcat server
did you restart the server ?
--- Margaret Fisk <[EMAIL PROTEC
did you restart the server ?
--- Margaret Fisk <[EMAIL PROTECTED]> wrote:
> I'm running into what I think of as a strange problem. Can someone give me
> some pointers?
>
>
> I have a program build with servlets and java code using a Tomcat servlet
> engine and web server.
>
> I need to replace a
On Fri, 31 May 2002, Luca Ventura wrote:
> Hello everybody!
>
> I have the following problem
>
> I have two servlets: servlet A and a servlet B. Servlet B is running on a
> Web Server that supports SSL protocol, so I can crypt and send all the data
> of a HTML form to it using "https" protoc
PROTECTED]
Subject: Re: help me ...
You can't (and I have no idea why you would want to), and conform to the
Servlet and J2EE specifications for web applications. This is why every
servlet and EJB container available today automatically creates the
directory structure and why they all know what to d
You can't (and I have no idea why you would want to), and conform to the
Servlet and J2EE specifications for web applications. This is why every
servlet and EJB container available today automatically creates the
directory structure and why they all know what to do with EAR and WAR files.
You vio
viado el: Monday, May 20, 2002 4:30 PM
Para: [EMAIL PROTECTED]
Asunto: Re: Help!!!
certificate.verify("one");
I hope that helps.
JM
> -Original Message-
> From: A mailing list for discussion about Sun Microsystem's Java Servlet
> API Technology. [mailto:[EMAIL PROTEC
certificate.verify("one");
I hope that helps.
JM
> -Original Message-
> From: A mailing list for discussion about Sun Microsystem's Java Servlet
> API Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of Tapia
> Marcelo
> Sent: Monday, May 20, 2002 4:28 PM
> To: [EMAIL PROTECTED]
> Subj
"Alexander V. Yug" <[EMAIL PROTECTED]> writes:
> hi, guys!
> i have one serios problem with my servlets.
> i've just began to study servlet technology and i want to know how to
> run servlets in tomcat.
Then you should read through the help that comes with Tomcat.
In general you have to compile
You are running servlet exec on the microsoft vm, which doesnt support RMI. You need
to switch VM's or get IBM's rmi addon.
URL: http://www.westpoint.ltd.uk/ - internet recon.
___
To unsubscribe, send email to [EMAIL PROTEC
Thanks! Yest that will work. I checked the xml tutorial on sun and it have
< for <, & for &
Gang
- Original Message -
From: "Flavio de Sousa"
<[EMAIL PROTECTED]
R>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 09, 2002 8:33 AM
Subject: Re: help on
Have you tried something like 'some
value'?
I´m not sure about < and > being valid entities under basic XML, but
you could declare them if not.
- Original Message -
From: "Gang Zhang" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 09, 2002 12:36 AM
Subject:
this is not a servlet question at all is it?
But to not make this a pointless remark: you can't do it. What you
wrote as an example with two endings is incorrect XML
you have to enclose it in comments like this:
d.
Gang Zhang wrote:
> Hi:
> I am just wondering what should I do if I want
Hi Sourabh,
Much Thanks .
I'll try that.
ASalam.
- Original Message -
From:
Sourabh Kulkarni
To: [EMAIL PROTECTED]
Sent: Tuesday, March 26, 2002 1:20
PM
Subject: Re: help with apache and
tomcat
hi asalam,
check the docBase.. It should
hi asalam,
check the docBase.. It should be
"webapps/examples" if your examples dir is in webapps.
crossContext="true">
-sourabh
Please do.
-Original Message-
From: Zahid Rahman [mailto:[EMAIL PROTECTED]]
Sent: Monday, February 18, 2002 9:10 PM
Until Karthick and his buddys are removed from the servlet-line
I for one is staying away.
___
To u
yeah,
just stay in the serene world of JAVA
Kaustubh Vaze
Internet Programmer
[EMAIL PROTECTED]
- Original Message -
From: Simon Devlin <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, February 19, 2002 5:25 PM
Subject: Re: Help - BEWARE
> here lads u g
Tuesday, February 19, 2002 11:19 AM
Subject: Re: Help - BEWARE
> TV Karthick Kumar <[EMAIL PROTECTED]> writes:
>
> > Hi,
> >
> > What ?. What did you just say ?. What point you are trying to drive,
> > here in this technical mailing list etc. ?. Anti muslim
TV Karthick Kumar <[EMAIL PROTECTED]> writes:
> Hi,
>
> What ?. What did you just say ?. What point you are trying to drive,
> here in this technical mailing list etc. ?. Anti muslim etc. etc. I HATE
> it...and your attitude, as well. There are so many human beings in this
> world and you
Hi,
What ?. What did you just say ?. What point you are trying to drive,
here in this technical mailing list etc. ?. Anti muslim etc. etc. I HATE
it...and your attitude, as well. There are so many human beings in this
world and you just can't name each and everybody and who the HELL are y
nsane.
SORRY LIST MEMBERS. PLEASE FORGIVE FOR THIS TIME, I JUST
COULDN'T STAND ANYMORE.
PLEASE JUST IGNORE HIS NONSENSE MESSAGES.
REGARDS
- Original Message -
From: "Zahid Rahman" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, February 19, 2002 10:10 AM
I notice that you still have the anti - Muslim Karthick Kumar
manning the servlet-interest line. I have met him.
The one who goes around fabricating emails to look after his
Indian buddys.
He is essentiantly saying please help me and my Indian
friends because although we cannot understand but
STFW
Mark
-Original Message-
From: lupul alb [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 14, 2002 5:43 AM
hi
does enybody know a good JIT java compiler or for win
___
To unsubscribe, send email to [EMAIL PR
hi!
you probably call your beans method which was designed and implemented for
that purpose.
sth. like this:
User user = new User();
user.setUserName(loginid);
if (theUserValidatorBean.validate(user))
dosth...
else
dosthelse
in UserValidatorBean you eighter have a list (or a map, or...) to
Is IBM's Lotus DOM-based? It sure sounds like it. My only suggestion (if
you have optimized the creation and deletion of the XML objects) is to
use a SAX-based parser instead. I havn't done much XML parsing but I
just know that the cons with DOM-based parsers are that they demand a
lot of memory.
Take a look at the java.io.RandomAccessFile class.
Cheers!
Mark
-Original Message-
From: Bikash Paul
Sent: Friday, January 18, 2002 2:07 AM
Hi all friends,
I am facing problem with my uploading of file
programme.In my client side interface I want to give
facility to client that they c
tomcat.
The same restart procedure also cured my red arrow problems.
Hope that helps.
-Tim
-Original Message-
From: Anthony Diodato [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 03, 2002 9:49 AM
To: [EMAIL PROTECTED]
Subject: Re: Help with loading Tomcat on IIS
When you
AM
To: [EMAIL PROTECTED]
Subject: Re: Help with loading Tomcat on IIS
Assuming that you set proper permissions. Go to Services and restart IIS
Admin Server.. this will shut down and restart FTP Server if ur running one
and Web Publishing ... as well.
After those restart.. look at the arrow again.
Assuming that you set proper permissions. Go to Services and restart IIS
Admin Server.. this will shut down and restart FTP Server if ur running one
and Web Publishing ... as well.
After those restart.. look at the arrow again.
-Tim
-Original Message-
From: Anthony Diodato [mailto:[EMAIL
Hi,
>
> reloadable="true">
Removing the spaces from the path and docBase attributes might help:
Further details at:
http://jakarta.apache.org/tomcat/tomcat-4.0-doc/config/context.html
http://jakarta.apache.org/tomcat/tomcat-4.0-doc/appdev/deployment.html
Good luck,
Chris
__
Title: Message
You Need.
webapps
examples
harweb
-->WEB-INF
-->classes
Title: RE: Re: Help needed on invoking JNI within Servlet (WebSphere)
Hi,
I set the "LIBPATH" and put my library file underneath but it still didn't work.
So you guys are indicating the servlet engine will locate dynamic libraries by the global environment variable
On Wed, 21 Nov 2001, Richard Yee wrote:
> It appears that you are running on a Unix/Linux OS. If that is the
> case, you need to set your LD_LIBRARY_PATH environment variable so
> that it includes the directory where libtestar.a is located.
FWIW: He mentions that he's using AIX; on AIX, the rel
It appears that you are running on a Unix/Linux OS. If that is the case,
you need to set your LD_LIBRARY_PATH environment variable so that it
includes the directory where libtestar.a is located.
Regards,
Richard
At 10:59 PM 11/21/2001 -0700, you wrote:
>Hi,
>
>I've been trying to run a Servlet
Hi Javier,
seems like your requesting a column which is not within your resultset.
For testing and debugging you may try this sketched approach (please
check method names, I did my best to recall them correct :-) )
stmt = conn.createStatment();
rs = stmt.execute("...");
ResultSetMetaData rsMeta
why not use "target" in the form of the main window...
eg. using the javascript open a blank window
then submit the form to the new window. an u can get the data in the new
window using the request object..
the code
function OnclickOfButtonopenPopup()
{
var win = window.open('' , "nameof
This is a Java Servlet list not a Java Script list
but if you want to receive anything from previous page
you have to post it with the request
alt 1) by hidden field or as a value in a form field if it is a submit
button
alt 2) by adding the variable in the post if its a "standalone" post
or ou
Write window.opener.document.form1.IDText.value
-Original Message-
From: A mailing list for discussion about Sun Microsystem's Java Servlet
API Technology. [mailto:[EMAIL PROTECTED]] On Behalf Of Dick
Wong
Sent: Friday, October 05, 2001 2:29 PM
To: [EMAIL PROTECTED]
Subject: Help on ret
;Sent: Thursday, September 06, 2001 10:22 PM
>To: [EMAIL PROTECTED]
>Subject: Re: help with servlet error
>
>Peter,
>I'm not exactly sure what this line:
>2001-09-06 09:09:19 - Ctx( ): 400 R( /) null
>
>means but I'll bet that your problem is with this line:
>
-
From: A mailing list for discussion about Sun Microsystem's Java Servlet API
Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of Richard Yee
Sent: Thursday, September 06, 2001 10:22 PM
To: [EMAIL PROTECTED]
Subject: Re: help with servlet error
Peter,
I'm not exactly sure what this
Peter,
I'm not exactly sure what this line:
2001-09-06 09:09:19 - Ctx( ): 400 R( /) null
means but I'll bet that your problem is with this line:
>2001-09-06 09:09:02 - Ctx( ): File not found C:\Documents and
>Settings\Administrator\jbproject\CreditCardAuthServlet\conf\tomcat-users.xml
Your p
increase the inital environment in memory tab . you
will find it by right cliking and see properties.
Sharad
--- raju punith <[EMAIL PROTECTED]> wrote:
> Hello Friends,
> As i was setting up my system to learn about
> servlets,
> the following error was encountered by me when i
> tried
> to star
If I were to hazard a guess you will need to will need to adjust your
memory settings - a quick search of the archives would have yielded a
solution to your problem. See the link below:
http://archives.java.sun.com/cgi-bin/wa?A2=ind9909&L=servlet-
interest&P=R1618
And in the future use a better
jaime arturo vargas pereyra at [EMAIL PROTECTED] wrote:
>
> Yo hablo muy poco ingles, por eso escribo en español para las personas que me
> entiendan. De todad formas voy a escribir despues usando un traductor.
>
> I speak ingles very little.I am going to write using a translator.
(Ningún proble
has intentado hacer un upload de la imagen al momento de registrar, y en
la base de datos solo guardas la ruta relativa de la imagen
> -Mensaje original-
> De: jaime arturo vargas pereyra [SMTP:[EMAIL PROTECTED]]
> Enviado el: Thursday, August 09, 2001 5:19 AM
> Para: [EMAIL PROTECTE
put c:/jsdk2.1/servlet.jar in classpath not in path.
Sharad
--- anie pothen <[EMAIL PROTECTED]> wrote:
> hello,
> I have a problem with servlets.I switched on to
> Java 1.3.1.My problem is that whenever I compile a
> program for servlets I get a listing of error
> messages
> led by the erro
you need to set the
classpath to the path of the jar file
SET CLASSPATH= (path of the class.jar)
V.T.R. RAVI KUMAR.,
ITX,HEEP,BHEL,Hardwar, Uttraanchal (UA), INDIA. PIN-249 403.
==
Even if he is command-line-challenged, he could at least have
taken a look at readme.html in the JDK root directory!
Cheers!
Mark
- Original Message -
From: "Christopher K. St. John" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, May 31, 2001 10:40 AM
Hi! Mark or Nic,
Give me one reason for stopping JWS?
Cheers!
Mahesh Devendran
-Original Message-
From: Ashwini Bhat [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 18, 2001 4:34 AM
To: [EMAIL PROTECTED]
Subject: Re: Help needed reg: Tomcat--thanks
thank you very much for your inputs
tom booster wrote:
>
> I am really new to JSP technology and I'm having
> problems with the unfamiliar dos-like interface of
> jdk1.3 please help!!
>
Since your questions have nothing to do with servlets,
SERVLET-INTEREST really isn't the right place to be
asking them.
Instead, go to:
http
thank you very much for your inputs.
Regards,
Ashwini
-Original Message-
From: A mailing list for discussion about Sun Microsystem's Java Servlet
API Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of Gokul
Singh
Sent: Thursday, May 17, 2001 6:29 PM
To: [EMAIL PROTECTED]
Subjec
- Original Message -
From: "Ashwini Bhat" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
> I could not make out why exactly Tomcat is used for?
It is the container which runs servlets and jsps.
> It is specified that
> it can be used with any web server(apache/IIS)? What can we achieve
> Hi,
>
> Can I have a look at your Dealer class. The whole thing. The problem may be
> there.
> As you are not having a ClassCastException neither a null pointer exception,
> I am assuming that you are getting the object back to the applet.
> The problem may be with the Dealer class. Can you seri
As requested Dealer class:
import java.util.*;
import java.io.*;
public class Dealer implements Serializable {
static int[] letterDist =
{18,4,4,8,24,4,6,4,18,2,2,8,4,12,16,4,2,12,8,12,8,4,4,2,4,2,4};
static Vector bag; // the tile bank of Integer objects
static int bagQuant=0; //
lt;[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: Re: Help with Visual Age for Java
>Date: Mon, 7 May 2001 08:58:58 -0400
>
>IBM JSP Execution Monitor 1.1 and IBM WebSphere Test Environment in Version
>3.02 is combined into just IBM WebSphere Test Environment (WTE).
>
>T
Noel
I did what you said - works like a charm!
Thanks a lot
Ken
>From: "Noel E. Lecaros" <[EMAIL PROTECTED]>
>Reply-To: "A mailing list for discussion about Sun Microsystem's Java
>Servlet API Technology." <[EMAIL PROTECTED]>
>To:
>From: Manish Shah <[EMAIL PROTECTED]>
>hello everyone,
>I did go through the RequestDispatcher buthow do I
>get a direct reference to a servlet instance and call
>its methods directly.
>
>Using the deprecated getServlet method it was done
>this way...
>myLogonApp = (AppLogonServlet)
>getServl
hould do it.
Cheers,
JoeKee.
- Original Message -
From: "Sriram Narayanan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, May 07, 2001 1:48 AM
Subject: Re: Help with Visual Age for Java
> Or you might try importing Tomcat. A colleague tried this in our
Or you might try importing Tomcat. A colleague tried this in our office and it works.
There's even a paper in the developerworks library that tells you how to do this. Go
to www.ibm.com/developerworks/, and search their library there.
Sriram
5/7/01 8:55:11 AM, Raghavendran_c <[EMAIL PROTECTED]
Hi Manish,
The entry edition of VAJ does not have the Websphere Test Environment.
You may have to use a higher edition(like full enterprise or
professional)
to use Websphere Test Environment.
Hope this helps.
Raga
-Original Message-
From: Manish Shah [mailto:[EMAIL PROTECTED]]
Sent: Sund
1 - 100 of 585 matches
Mail list logo