Re: [Help] How to solve this problem(Urgent)

2005-07-01 Thread Richard Yee
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

Re: [Help] How to solve this problem(Urgent)

2005-06-30 Thread Duc Vo
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

Re: Help with JDBC query

2005-01-23 Thread Richard Yee
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

Re: Help with JDBC query

2005-01-23 Thread Bob Withers
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,

Re: Help with JDBC query

2005-01-23 Thread Richard Yee
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

Re: help regarding oracle

2003-10-03 Thread Lambert Behnke
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

Re: help regarding oracle

2003-10-03 Thread Hyne, David
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

Re: help regarding oracle

2003-10-03 Thread Narayanan Ravi Chandran
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

Re: help regarding oracle

2003-10-03 Thread shashi kanth goud
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

Re: help

2003-09-29 Thread vikramjit singh
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

Re: help deploying war file

2003-09-25 Thread Shivanjali Bhutkar
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

Re: help deploying war file

2003-09-22 Thread Burke, Timothy R
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

Re: help

2002-12-31 Thread Kaykay
                                                                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

Re: help

2002-12-30 Thread Chen, Gin
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) ?

Re: help

2002-12-29 Thread Sandeep Gain
wot help do u want?? -Original Message-From: Senthoor [mailto:[EMAIL PROTECTED]]Sent: Monday, December 30, 2002 9:13 AMTo: [EMAIL PROTECTED]Subject: help  

Re: Help running servlet!

2002-11-08 Thread Fawaz Ahmad
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

Re: Help running servlet!

2002-11-07 Thread Richard Yee
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

Re: Help running servlet!

2002-11-07 Thread Padhu Vinirs
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

Re: Help running servlet!

2002-11-07 Thread Fawaz Ahmad
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

Re: Help running servlet!

2002-11-07 Thread Milt Epstein
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.

Re: Help running servlet!

2002-11-07 Thread Fawaz Ahmad
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

Re: Help running servlet!

2002-11-07 Thread Padhu Vinirs
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

Re: Help running servlet!

2002-11-07 Thread Reece Whittaker
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

Re: help required regarding serialisation of a bean

2002-10-11 Thread Chris Pratt
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

Re: Help with MultipartParser and File Uploads...

2002-09-10 Thread Michael Weller
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

Re: Help with replacing a quotes

2002-08-28 Thread Raghupathy, Gurumoorthy
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

Re: Help with replacing a quotes

2002-08-27 Thread Babak V.
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('"',

Re: Help! Patching compiled code not taking in Tomcat server

2002-08-01 Thread Milt Epstein
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

Re: Help! Patching compiled code not taking in Tomcat server

2002-08-01 Thread Mark E. Zawadzki
> 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

Re: Help! Patching compiled code not taking in Tomcat server

2002-08-01 Thread Milt Epstein
> -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

Re: Help! Patching compiled code not taking in Tomcat server

2002-08-01 Thread Mark E. Zawadzki
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

Re: Help! Patching compiled code not taking in Tomcat server

2002-08-01 Thread Margaret Fisk
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

Re: Help! Patching compiled code not taking in Tomcat server

2002-08-01 Thread Mark E. Zawadzki
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

Re: Help! Patching compiled code not taking in Tomcat server

2002-08-01 Thread Milt Epstein
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 &

Re: Help! Patching compiled code not taking inTomcat server

2002-08-01 Thread Albert Pi
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

Re: Help! Patching compiled code not taking in Tomcat server

2002-08-01 Thread Nigh, Bill
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

Re: Help! Patching compiled code not taking in Tomcat server

2002-08-01 Thread Margaret Fisk
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

Re: Help! Patching compiled code not taking in Tomcat server

2002-08-01 Thread Nigh, Bill
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

Re: Help! Patching compiled code not taking in Tomcat server

2002-08-01 Thread Margaret Fisk
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

Re: Help! Patching compiled code not taking in Tomcat server

2002-08-01 Thread Yedil Workeneh
, 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

Re: Help! Patching compiled code not taking in Tomcat server

2002-08-01 Thread Mark E. Zawadzki
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

Re: Help! Patching compiled code not taking in Tomcat server

2002-08-01 Thread Margaret Fisk
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

Re: Help! Patching compiled code not taking in Tomcat server

2002-08-01 Thread Mark E. Zawadzki
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

Re: HELP! Exchange data between servlets using HTTPS protocol.

2002-05-31 Thread Milt Epstein
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

Re: help me ...

2002-05-31 Thread Balasubramaniyan K
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

Re: help me ...

2002-05-31 Thread Galbreath, Mark
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

Re: Help!!!

2002-05-20 Thread Tapia Marcelo
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

Re: Help!!!

2002-05-20 Thread JM
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

Re: help

2002-05-20 Thread Nic Ferrier
"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

Re: Help...UnsatisfiedLinkError

2002-04-17 Thread Tim Panton
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

Re: help on web.xml file, what if the parameters contains ?

2002-04-12 Thread Gang Zhang
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

Re: help on web.xml file, what if the parameters contains ?

2002-04-09 Thread Flavio de Sousa
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:

Re: help on web.xml file, what if the parameters contains ?

2002-04-09 Thread David Mossakowski
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

Re: help with apache and tomcat

2002-03-26 Thread ASALAM
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

Re: help with apache and tomcat

2002-03-25 Thread Sourabh Kulkarni
hi asalam,     check the docBase.. It should be "webapps/examples" if your examples dir is in webapps.     crossContext="true">      -sourabh

Re: Help - BEWARE

2002-02-20 Thread Galbreath, Mark
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

Re: Help - BEWARE

2002-02-19 Thread kaustubh
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

Re: Help - BEWARE

2002-02-19 Thread Simon Devlin
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

Re: Help - BEWARE

2002-02-19 Thread Nic Ferrier
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

Re: Help - BEWARE

2002-02-19 Thread TV Karthick Kumar
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

Re: Help - BEWARE

2002-02-18 Thread yilmaz
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

Re: Help - BEWARE

2002-02-18 Thread Zahid Rahman
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

Re: help jit plssssssssss

2002-02-14 Thread Galbreath, Mark
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

Re: help

2002-02-01 Thread Michael Weller
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

Re: Help: out of memory

2002-01-31 Thread Markus Kirsten
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.

Re: Help me plz..............Confused:

2002-01-18 Thread Mark Galbreath
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

Re: Help with loading Tomcat on IIS

2002-01-03 Thread Chen, Gin
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

Re: Help with loading Tomcat on IIS

2002-01-03 Thread Anthony Diodato
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.

Re: Help with loading Tomcat on IIS

2002-01-03 Thread Chen, Gin
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

Re: Help Needed for new JSP application using Tomcat 4.0.1

2001-12-20 Thread Christian Roslawski
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 __

Re: Help Needed for new JSP application using Tomcat 4.0.1

2001-12-20 Thread Jorge Rodriquez
Title: Message You Need.     webapps     examples     harweb     -->WEB-INF     -->classes  

Re: Help needed on invoking JNI within Servlet (WebSphere)

2001-11-21 Thread 徐正流
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

Re: Help needed on invoking JNI within Servlet (WebSphere)

2001-11-21 Thread Milt Epstein
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

Re: Help needed on invoking JNI within Servlet (WebSphere)

2001-11-21 Thread Richard Yee
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

Re: Help at putting the Result Set in a Vector.

2001-11-20 Thread Peter Huber
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

Re: Help on retrieve value

2001-10-05 Thread Raghupathy, Gurumoorthy
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

Re: Help on retrieve value

2001-10-05 Thread Tonnie Philipsson
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

Re: Help on retrieve value

2001-10-05 Thread Purav
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

Re: help with servlet error

2001-09-06 Thread 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 line: >2001-09-06 09:09:19 - Ctx( ): 400 R( /) null > >means but I'll bet that your problem is with this line: >

Re: help with servlet error

2001-09-06 Thread Peter Boivin
- 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

Re: help with servlet error

2001-09-06 Thread Richard Yee
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

Re: help

2001-08-15 Thread sharad mohan
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

Out of environment space [was: Re: help]

2001-08-15 Thread T.A. Flores
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

Re: help-servlet-pgsql

2001-08-09 Thread Pier Fumagalli
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

Re: help-servlet-pgsql

2001-08-09 Thread Henry Ortiz
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

Re: help

2001-06-16 Thread sharad mohan
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

Re: help

2001-06-16 Thread V.T.R.Ravi Kumar
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. ==

Re: HELP with the basics please

2001-05-31 Thread Mark Galbreath
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

Re: Help needed reg: Tomcat--thanks

2001-05-31 Thread Mahesh Davendran
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

Re: HELP with the basics please

2001-05-31 Thread Christopher K. St. John
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

Re: Help needed reg: Tomcat--thanks

2001-05-17 Thread Ashwini Bhat
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

Re: Help needed reg: Tomcat

2001-05-17 Thread Gokul Singh
- 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

Re: HELP retrieve a serialized object

2001-05-11 Thread Mike Whittaker
> 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

Re: HELP retrieve a serialized object (Dealer class supplied)

2001-05-11 Thread Mike Whittaker
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; //

Re: Help with Visual Age for Java

2001-05-08 Thread Gareth Jones
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

Re: help with direct servlet reference

2001-05-07 Thread ken dias
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:

Re: help with direct servlet reference

2001-05-07 Thread Bo Xu
>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

Re: Help with Visual Age for Java

2001-05-07 Thread Joe Kee
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

Re: Help with Visual Age for Java

2001-05-06 Thread Sriram Narayanan
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]

Re: Help with Visual Age for Java

2001-05-06 Thread Raghavendran_c
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   2   3   4   5   6   >