Re: Passing Query String with URL

2000-07-31 Thread Suriya Narayan Varatharajan
try like this... onclick="go_to()"> function go_to() { var u=user.value; var p=pass.value; document.location.href="http://localhost:8181/LoginCRMPrj/Change_Pwd.jsp?use r=u&pwd=p" } regards suriya *Q try for everything Q* Suriya narayanan V Software Engineer Contech Software Ltd E-3/1,

Re: Basic help..urgent..

2000-07-31 Thread SRINIVAS RAO
Hi guys, I have a stupid unique problem. Pls help me. I created a .jsp file and stored it in public_html of JWS 2.1. (time.jsp) I have a simple bean that sets and gets time whose class file i stored in C:\javawebserver2.1\servlets.(TimeBean.java) now i invoke TimeBean.java from time.jsp. then i t

Re: Referrer URL

2000-07-31 Thread Manish Bijay Kumar
if the following doesn't work..then try history.go(-1) > -- > From: TODD HARNEY[SMTP:[EMAIL PROTECTED]] > Reply To: A mailing list about Java Server Pages specification and > reference > Sent: Monday, July 31, 2000 5:35 PM > To: [EMAIL PROTECTED] > Subject: Re:

Forms question

2000-07-31 Thread Rahul Naithani
Hi friends, I want to know how can I set the property in a bean using setProperty and at the same time give an action page on the submit. These 2 things are possible separately. But how to do it together? Regards, Rahul. ===

Re: Connection to a database - failure

2000-07-31 Thread Manish Bijay Kumar
where is the method signature. You have directly coded evrything in the class body. Put your code within method body and then compile...it won't give such error > -- > From: Marcel van Kooy[SMTP:[EMAIL PROTECTED]] > Reply To: A mailing list about Java Server Pages specific

Passing Query String with URL

2000-07-31 Thread B.V.Murali Krishna
hi all, I am using a javascript function in Jsp, where i am calling another Jsp and passing a query string with it. The problem is that the query string paramater values which are javascript variables are not converted to their values. onclick="go_to(user.value,pwd.value)"> function go_to(u,p)

Re: Nested JavaBeans

2000-07-31 Thread Hans Bergsten
Drake Pyrosius wrote: > > Hello all, > > Does anyone have any recommendations on handling nested JavaBeans in a JSP? > For example: > > public class Address > { > private String firstLine, secondLine; > private String city, state, zip; > > set/get() ... > } > > public class Person > { > private St

Re: Connection to a database - failure

2000-07-31 Thread Ravichandran Govindasamy
Hello Please use main function and everthinh will be resolved. okey >From: Marcel van Kooy <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Connection to a database - failure >Date: Mon,

Re: JSP + Servlets and getLastModified()

2000-07-31 Thread Oleg V Alexeev
Try to use one of listed below methods: 1. Insert code to JSP <% response.reset(); response.sendError(SC_NOT_MODIFIED); %> 2. Write any tag implementation as class TestMidifiedTag extends TagSupport { ... public int doStartTag() throws JspException { HttpServletResponse resp = (Ht

Re: Scanner

2000-07-31 Thread R.B. Gurung
hi, I am really interested in knowing how to read the bar code How to do that . I am planning the to implement the same after having the views. Need info thanks/regards gurung - Original Message - From: Philip Moschovas <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 0

Re: Compilation

2000-07-31 Thread Suriya Narayan Varatharajan
hiuse this command to store the output... java Hello>error.txt... this will create txt file which will have error about the Hello program if any... use it let me know... regards suriya *Q try for everything Q* Suriya narayanan V Software Engineer Contech Software Ltd E-3/1,2,3, GIDC E

Re: JSP Books

2000-07-31 Thread Martin Cooper
> The are currently none eBook available. Not true. Web Development with JavaServer Pages, by Fields & Kolb (perhaps the best JSP book available) can be purchased as an eBook. See: http://www.manning.com/Fields/ -- Martin Cooper Tumbleweed Communications ===

Nested JavaBeans

2000-07-31 Thread Drake Pyrosius
Hello all, Does anyone have any recommendations on handling nested JavaBeans in a JSP? For example: public class Address { private String firstLine, secondLine; private String city, state, zip; set/get() ... } public class Person { private String name; getName/setName() ... } And in the JSP:

Re: JSP and ASP

2000-07-31 Thread Alex Amies
1. COM components referenced from ASP's hang the web server and possibly the system if they have fatal errors. 2. COM components made from VB are not thread safe. 3. Programming COM components in C++ involves some hairy ATL programming with multiple inheritance and template classes. 4. The V

JSP and ASP

2000-07-31 Thread V.Vasant
hi, Can someone point out to me how does jsp perform better than asp.I am a newcomer to jsp even though I've worked with java for quite some time.Apart from the portability issue , I don't find something convincing in using jsp than learning asp. Please help. -V.Vasant =

Re: Compilation

2000-07-31 Thread B R Nair
Dear Manish, Thanks for your input. I changed your first command a little bit because the first command that you gave me (javac -J-Djavac.pipe.output=true *.java>error.txt) was not working. Sorry for disturbing you. Your revised command javac -J-Djavac.pipe.output=true Hello.java>error.txt runs b

Re: Error in catching Param Variables

2000-07-31 Thread John Luk
You should also check for nulls on the request.getParameter. If you are passing in null values it will give you the error. "Matthews,Paul" wrote: > at a guess it is a compiler error cos string should be String... > > rgds, Paul > > > -Original Message- > > From: wap@asl [mailto:[EMAIL

Re: Scanner

2000-07-31 Thread Arun Thomas
Most barcode scans also tend to be number oriented - there are coding schemes that allow letters, but the basic translation is into a number. Your scanner will probably be responsible for transforming the barcode into an (alpha)numeric string, which will be the value inserted in the web form fiel

JSP + Servlets and getLastModified()

2000-07-31 Thread Stuart Maclean
In the HTTPServlet world, the servlet container gives my servlet the chance build a response based around the '304 Not Modified' message, via a long valued integer specifying a last modified time (getLastModified()). Great stuff, invaluable for servlets which format some data once and then serve

Re: Scanner

2000-07-31 Thread Louis
I try the hand-held scanner b4, it just like a keyboard but it will automatically fill in the number for you. - Original Message - From: "Gutman, Larry" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 31, 2000 10:51 PM Subject: Re: Scanner > I believe it just fills in th

Re: Scanner

2000-07-31 Thread Gutman, Larry
I believe it just fills in the text just as if you were typing it in. At least that is my experience. There is no special action that is done. -Original Message- From: Hu Jeff [mailto:[EMAIL PROTECTED]] Sent: Monday, July 31, 2000 4:00 PM To: [EMAIL PROTECTED] Subject: Re: Scanner A

Re: Scanner

2000-07-31 Thread Hu Jeff
As far as I know, a barcode scann reads an image and stores the string (The string is what that image represents). I think you have to download the barcode info to your computer first. J.H -Original Message- From: Philip Moschovas [mailto:[EMAIL PROTECTED]] Sent: Monday, July 31, 2000 3:

Tomcat and Date

2000-07-31 Thread krishna Patel
i am using tomcat, sqlserver 7.0, servlets it messes up date time instead of '2000-07-02' it shows 2002-06-13 in the result set Code: DateSubmited = rs.getDate(i); It works fine if i use java web server 2.0 with the same servlet. i have tried to catch field in object etc. nothing works. any i

Installing Cocoon into JRun 3.0

2000-07-31 Thread Aaron Prohaska
Han anyone successfully installed the Apache Software Foundations Cocoon with JRun 3.0? I am going to attempt to do this and any help would be greatly appreciated. thanks, Aaron <<:::..:::...::: Aaron Prohaska :::..:::...:::>> VerdeSoft Internet Services mailto:[EMAIL PROTECTED]

Scanner

2000-07-31 Thread Philip Moschovas
Hi, I'm doing a web project using a hand held scanner that reads barcodes. I don't have the scanner yet and I was wondering if anyone has any experience with one of these. I need to know what sort of event is triggered when the barcode is scanned into a textbox. I need to get a jump on this proj

Re: Proprtionate String Padding

2000-07-31 Thread Frederik Delacourt
Moreover, a StringBuffer is used for doing the concatenation of two String. So better save sometime and use the StringBuffer from the beginning. Frédérik Delacourt --- "A mind once stretched by a new idea never regains its original dimension." --Oliver Wendell Holmes -Ori

Re: jsp:forward

2000-07-31 Thread Raghavendra i Rao
Hi, I am using JSP1.1 and I am implementing this now in Weblogic 5.1 and later planning to shift to iplanet. The files I use are in the same directory under weblogic\myserver\public\html . Rao. - Original Message -- Hans Bergsten <[EMAIL PROTECTED]> wrote: To:[EMAIL P

Re: Proprtionate String Padding

2000-07-31 Thread Richard Yee
Using a StringBuffer is more efficient than using a String because a StringBuffer can be appended to. If a String is used, all of the contents in the String must be copied each time it is created. With a StringBuffer, you re-use the same object as you append to it. When using a String, you are

Re: jsp plugin help

2000-07-31 Thread Naresh Thawani
Sure Todd is right. That is the problem. -Original Message- From: TODD HARNEY [mailto:[EMAIL PROTECTED]] Sent: Monday, July 31, 2000 1:12 PM To: [EMAIL PROTECTED] Subject: Re: jsp plugin help Is the codebase attribute relative to the web server root? If so, this won't work. >>> [EMAIL

Re: jsp plugin help

2000-07-31 Thread TODD HARNEY
Is the codebase attribute relative to the web server root? If so, this won't work. >>> [EMAIL PROTECTED] 7/31/00 1:44 >>> I am havaing trouble using the jsp plugin with an applet. I get a class not found error. Test.class in located in C:/programs/Test.class here is (part of) the code I'm using h

Re: jsp:forward

2000-07-31 Thread TODD HARNEY
Sounds like the web server cannot find your User.jsp file and it is forwarding to what it knows...nothing! Is there maybe an issue with where the files are located in relation to each other...same directory, different directory? >>> [EMAIL PROTECTED] 7/31/00 1:31 >>> Hi, I have a jsp that show

Re: [Re: Proprtionate String Padding]

2000-07-31 Thread abhishek shodhan
Java Strings are not advisable as far as possible as each new String Object will need to be Created in the Memory, and hence will slow down the Application/Page. and considering that we are programming on the web, we might assume that we would get a lot of Hits on the JSP page. That will create ev

Re: forward

2000-07-31 Thread Naresh Thawani
Request parms need to be stored in the session and retreived for next session/jsp. also make sure both the jsp are in same path. -Original Message- From: Raghavendra i Rao [mailto:[EMAIL PROTECTED]] Sent: Monday, July 31, 2000 12:31 PM To: [EMAIL PROTECTED] Subject: jsp:forward Hi, I

Re: Proprtionate String Padding

2000-07-31 Thread Naresh Thawani
That is true for Java but not for javascript. Did you get over the problem. -Original Message- From: B R Nair [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 30, 2000 10:29 PM To: [EMAIL PROTECTED] Subject: Re: Proprtionate String Padding Thanks a lot Santosh, Naresh & Richard for your i

Re: jsp:forward

2000-07-31 Thread Hans Bergsten
Raghavendra i Rao wrote: > > Hi, > I have a jsp that shows a form (User.jsp)and on submitting the form , it goes to >another page action.jsp. Now if there is any error in the form (which I check in >action.jsp), I want to transfer control back to the first jsp page (User.jsp. >Something like a

Re: jsp plugin help

2000-07-31 Thread Naresh Thawani
try codebase="C:/programs/Test.class" -Original Message- From: Brad Miley [mailto:[EMAIL PROTECTED]] Sent: Monday, July 31, 2000 12:45 PM To: [EMAIL PROTECTED] Subject: jsp plugin help I am havaing trouble using the jsp plugin with an applet. I get a class not found error. Test.class in

Re: Proprtionate String Padding

2000-07-31 Thread B R Nair
Thanks a lot Santosh, Naresh & Richard for your invaluble input. "Strings are constant; their values cannot be changed after they are created. String buffers support mutable strings." & "A string buffer is like a String, but can be modified." Whenever I read the above Java lanuage documentation

jsp plugin help

2000-07-31 Thread Brad Miley
I am havaing trouble using the jsp plugin with an applet. I get a class not found error. Test.class in located in C:/programs/Test.class here is (part of) the code I'm using http://www.hotmail.com === To unsubscribe: mailto [

jsp:forward

2000-07-31 Thread Raghavendra i Rao
Hi, I have a jsp that shows a form (User.jsp)and on submitting the form , it goes to another page action.jsp. Now if there is any error in the form (which I check in action.jsp), I want to transfer control back to the first jsp page (User.jsp. Something like a loop ). I use in action.jsp to d

Re: Writing long strings in Oracle

2000-07-31 Thread Ellis Miller
You should use a CLOB or BLOB. You should also check out Oracle technet...there is a very good example of loading LOBs using jdbc. The complete syntax is there. From the technet site, look for "code samples" or something like that and you will see a link for using jdbc to load a BLOB CLOB. Ellis

Re: Writing long strings in Oracle

2000-07-31 Thread Thor Heinrichs-Wolpert
1. do not use LONG, use CLOB instead. 2. look at the examples that come with Oracle for writing CLOBs via JDBC 3. copy/paste it into your code. Thor HW - Original Message - From: "José Antonio Quiles" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 31, 2000 12:42 AM Subject

Where is the dtd for jsp

2000-07-31 Thread Alex Amies
Does anyone know where the dtd for jsp is? I am looking into making an wyswyg xml based editor for jsp pages to graphically manipulate custom tags that we are making for our product. Is there anyone else out there trying to do anything like this? Alex Amies

UNSUBSCRIBE

2000-07-31 Thread Max Jakobs
=== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html htt

Re: JSP Books

2000-07-31 Thread Atchutarao Killamsetty
Check free online books section and Books section at http://karao.tripod.com/myjava.html With regards, Atchutarao Killamsetty, http://karao.tripod.com/myjava.html -Original Message- From: Luc Saint-Elie <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Monday, July 31,

Re: Connection to a database - failure

2000-07-31 Thread Atchutarao Killamsetty
public class TestBean { should be replaced by public class TestBean throws IOException, ClassNotFoundException { /* Note : add the exceptions that my be thrown if . */ With regards, Atchutarao Killamsetty, http://karao.tripod.com/myjava.html -Original Message- From: Marcel van K

Re: JSP editor

2000-07-31 Thread Juergen Mayrbaeurl
Forte for Java CE has a really nice editor for Java Server Pages. Greetings Juergen "Varadharajan.K.V,AMB Chennai" <[EMAIL PROTECTED]> on 29.07.2000 12:14:07 Please respond to A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]> To: [EMAIL PROTECTE

JSP and frames

2000-07-31 Thread Steingoetter, Jochen
I'm using JSPs within frames and now I'm confronted with a strange behaviour by IE 5 (seem to work right in Netscape). In one of the frames my JSP runs a query with the help of a JavaBean and displays the result in form of a table. The result is returned in chunks of about 15 rows at a time (dete

Re: Writing long strings in Oracle

2000-07-31 Thread wayne allison
Jose, If you are getting an exception raised by Java, your error should be on the Java side of the equation. Oracle 8i database "Longs" are up to 2 gig, but you have to get into the database column. What does Java support for a long? What version of Oracle are you using? What are you usin

Re: Referrer URL

2000-07-31 Thread Richard Brooks/JHC
thanks, that will work for my back link But in order to be able to log the url of the page that the error occurred in I need to get access to it in the jsp code that runs on the server, so javascript is no good TODD HARNEY cc:

Re: Connection to a database - failure

2000-07-31 Thread Suriya Narayan Varatharajan
hello give the try block with in the function or make it as static... it will work.. try and let me know... regards suriya *Q try for everything Q* Suriya narayanan V Software Engineer Contech Software Ltd E-3/1,2,3, GIDC Electronics Estate, Sector - 25, Gandhinagar - 382 044, INDIA Tel.

Re: problem with msacess

2000-07-31 Thread Jaspreet Singh
catroot directory is present in only Windows98 OS not in Windows NT. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Ionel Condor Sent: Monday, July 31, 2000 5:01 PM To: [EMAIL PROTECTED] Subject: Re: prob

Re: Referrer URL

2000-07-31 Thread TODD HARNEY
In Javascript it is like this... window.history.back() Hope this helps... >>> [EMAIL PROTECTED] 7/31/00 7:34 >>> Is it possible to get the url of the referring page, that is, the page before this one ? I thought this was possible when I previously used isapi. What I am trying to do is to put

Referrer URL

2000-07-31 Thread Richard Brooks/JHC
Is it possible to get the url of the referring page, that is, the page before this one ? I thought this was possible when I previously used isapi. What I am trying to do is to put a 'retry' link on my error page, and more importantly to log the url of the page that generated the error. thanks,

changing http header

2000-07-31 Thread Stephen Toner
Hi, I'm trying to refresh a page using a javascript function, but want to change the accept-language parameter in the HTTP header to a value specified in a form on the page. I can't seem to find any way to do this in Javascript. Does anyone know how to do this? Thanks, Stephen __

Re: problem with msacess

2000-07-31 Thread Ionel Condor
MSAccess keeps its info in winnt\catroot directory. Open that database and in options select to show also the system tables. There is a table which contains accounts. The mdb is called lcatalog.mdb. Ciao, Ionel. Srinivas Rao Eadhara wrote: > I have a typical problem , I am using MS-acess as

Re: Limiting user entered value

2000-07-31 Thread Oren Klichevsky
You should use javascript on your HTML form. Best Regards, Oren Klichevsky www.mannainc.com -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of praveen reddy Sent: Thursday, July 2

Re: JSP editor

2000-07-31 Thread Geert Van Damme
The time you win in faster loading, you lose in lack of features that make life easier. Don't compare it with the big dinosaur IDE's. They can be very annoying at times (e.g. during startup), but there are a lot of good editors that fall in between. Geert Van Damme > -Original Message- >

Re: problem with database

2000-07-31 Thread Oren Klichevsky
what do you mean by that ? passwords are a way to keep your information secured, so if someone defined a password for the database, you need to use the regular user name + password security system of the database. you should ask for the password or define a new DB user that will be granted the rig

intranet list

2000-07-31 Thread Shrikumar R
Hi can somebody tell me if there is a mailing list for discussions on "intranet" issues. Thanks for any help rsk __ Do You Yahoo!? Kick off your party with Yahoo! Invites. http://invites.yahoo.com/

problem with msacess

2000-07-31 Thread Srinivas Rao Eadhara
I have a typical problem , I am using MS-acess as database in one of the application. Some body set the password for the database, Now I am unable to acess that database, please suggest me how to bipass or break that password ==

Re: JSP editor

2000-07-31 Thread Guilherme Zambon
Use cute html... You can personalize the colors. - Original Message - From: Varadharajan.K.V,AMB Chennai <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, July 29, 2000 8:14 AM Subject: JSP editor > Hi all, > > i would like to know some JSP editor with syntax coloring.

Re: JSP editor

2000-07-31 Thread Jaspreet Singh
Try to use TextPad Editor... you can download it from http://www.textpad.com Really cool. this what I think... -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Joseph B. Ottinger Sent: Monday, July 31,

Re: Connection to a database - failure

2000-07-31 Thread Kumail Rizvi
Hi I think u r using JDBC-ODBC bridge. If it is, its mean Studio_Bezoekers is ur DSN. now it depends on what data base u r using if Oracle then define user name and password in DSN and is Access then no need for User name and Password. just use DriverManager.getConnection("jdbc:odbc:Studio_Bez

Re: Connection to a database - failure

2000-07-31 Thread TODD HARNEY
The code needs to be inside of a method...you have no method defined. >>> [EMAIL PROTECTED] 7/31/00 6:02 >>> Hi all, Can somebody please help me with this problem. When I compile this source-code, for making a connection to a database, I'll receive the error "type expected" in the first TRY-stat

Re: JSP editor

2000-07-31 Thread Joseph B. Ottinger
On Mon, 31 Jul 2000, Geert Van Damme wrote: > Come on. Grow up. > What does notepad offer? Nothing. You can load, type and save. That's all. > Every editor lets you do that. Hey, but notepad is quick and easy. What more do you *want?* An editor that doesn't load or save, but runs slowly? (Sounds

Connection to a database - failure

2000-07-31 Thread Marcel van Kooy
Hi all, Can somebody please help me with this problem. When I compile this source-code, for making a connection to a database, I'll receive the error "type expected" in the first TRY-statement. How can I solve this and what does it mean? Thanks, Marcel van Kooy import java.sql.*; public class T

Re: JSP Books

2000-07-31 Thread Phan Nghiem Long
thank very much. It's nice Luc Saint-Elie wrote: > >I have to learn JSP in my work. Can you send me > >a e-book about this subject. > > The are currently none eBook available. > One projetc has been laucnched but seem to lack support (and > this is a pitty). > > If you want books they are now a

Re: Accessing (only) form parameters.

2000-07-31 Thread TODD HARNEY
You could employ a naming convention for your form parameters such that if you have a form named "myForm" and a field named "userName", you could change the field name (ion this example) to "myForm.userName", then call request.getParameterNames() and in your form loop, filter for names beginnin

Re: How to refresh a JSP-Page

2000-07-31 Thread TODD HARNEY
Yes, I forgot to mention that I do have a Boolean stored in the session variable that is false initially and then set to true before I send the refresh meta tag...I then remove it that next time through. Yes, if you just send this meta tag as is, it will loop endlessly...sorry about that. Todd

Re: JSP Books

2000-07-31 Thread Luc Saint-Elie
>I have to learn JSP in my work. Can you send me >a e-book about this subject. The are currently none eBook available. One projetc has been laucnched but seem to lack support (and this is a pitty). If you want books they are now a lot available (have a look at the book section at http://www.inte

Re: Accessing (only) form parameters.

2000-07-31 Thread SANDIPAN DUTTA
I have tried all that. But the problem is that I have to get (ALL) the form parameters only and store it. If I do request.getParameterNames and then try to loop through it, it gives me stuff like query-strings, HTTP headers like Host , gx_session_id etc. I need something like request.getParamete

Re: JSP & DB2

2000-07-31 Thread Kl Ooi
Use 2 separate data source to connec to 2 different DB Ionel Condor cc: Sent by: A Subject: JSP & DB2 mailing list about Java Server Pa

Re: JSP Books

2000-07-31 Thread Caspar van Vroonhoven
I suggest you start here: http://www.findtutorials.com/list.asp?category=606 but any good search on the net will reveal a lot of info about JSP. Regards, Caspar van Vroonhoven ([EMAIL PROTECTED]) www.tradingcars.com -Original Message- From: Phan Nghiem Long [mailto:[EMAIL PROTECTED]] S

JSP Books

2000-07-31 Thread Phan Nghiem Long
I have to learn JSP in my work. Can you send me a e-book about this subject. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.su

JSP & DB2

2000-07-31 Thread Ionel Condor
Hi, If someone uses IBM DB2 as his DBMS for JSP here is a question: I have two databases, each with a few tables. Somewhere in a bean I write a query which must use a table from DB1 and a table from DB2 is a select statement. Does anyone know how to configure DB2 (grant statements I suppose) in o

Re: Writing long strings in Oracle

2000-07-31 Thread Lakshminarayanan.A, AMB Chennai.
Hi, If you insert your string values thru' SQL query the maximum allowable string size is 4000 chars( Oracle 8.x). Solution : Use oracle bind variables.(please refer Oracle documentation ) ORA-01704 string literal too long Cause:

Re: Writing long strings in Oracle

2000-07-31 Thread Jaspreet Singh
Hi Jose, Send us the exception raised by the JDBC exception. Theoratically it should support as you said. Jaspreet Singh -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of José Antonio Quiles Sent: Monday,

Writing long strings in Oracle

2000-07-31 Thread José Antonio Quiles
Hello, we are trying to insert a huge string in an Oracle LONG field via JDBC; we are using PreparedStatement.setString(). However, when the string length is longer than 2000 characters, a JDBC exception is raised. We thought that Oracle LONG field supports any string length... What is the problem

Re: 18yr-old INDIAN Challenge Bill Gates with New Operating Syste m

2000-07-31 Thread Aggarwal, Pawan
fuck w # > -Original Message- > From: ralhan > Sent: Wednesday, May 31, 2000 12:48 PM > To: [EMAIL PROTECTED] > Subject: Re: 18yr-old INDIAN Challenge Bill Gates with New Operating > System > > see thing is if you don;t know such and this mail has been reaching me now > for a year

Recall: 18yr-old INDIAN Challenge Bill Gates with New Operating S ystem

2000-07-31 Thread Aggarwal, Pawan
Aggarwal, Pawan would like to recall the message, "18yr-old INDIAN Challenge Bill Gates with New Operating System". === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Ser

Re: 18yr-old INDIAN Challenge Bill Gates with New Operating System

2000-07-31 Thread ralhan
see thing is if you don;t know such and this mail has been reaching me now for a year okay.are u mad ? if there is anything like that i think i will myself unsubscribe from this mailing list making operating system is not a joke and that to so much faster and all claimed is certainly not okay forg

How to stop WebSphere reloading Servlets

2000-07-31 Thread Marc Krisjanous
Hi all, I have a couple of beans that are stored in WebSphere's servlet directory. The beans use properties files - which are also stored in the servlet directory. When I make changes to the properties files Websphere seems the reload the Servlets! Is there a way to stop Websphere reloading Serv

Re: 18yr-old INDIAN Challenge Bill Gates with New Operating System

2000-07-31 Thread SRINIVAS RAO
hey relhan, give us a break. He just shared his views in a big conglomerate. We welcome the news. May be its pure jsp but still appreciation with good heart counts. pls dont use harsh words against anyone here, Its one of our jsp groups vendataa, right regards, srinivas. ___