Re: Jsp in WebLogic 5.1

2000-11-19 Thread Vineet K Jain
Edit the weblogic property file located in the weblogic directory Search for the word JSP and note down the temp directory for compiling the JSP files. Delete the this directory before running the JSP file. This way weblogic will recreate the directory if it does not exists and then recompile

Re: Applying style sheets to JSP

2000-11-19 Thread Graham Robinson
JSP has nothing to do with whether or not the style will be applied to the text i'd check your broswer and your code. style interpretation is all browser side in your case. Graham/ - Original Message - From: "Nivedita" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, November

Re: Applying style sheets to JSP

2000-11-19 Thread Manos M. Batsis
Your syntax is wrong. This: b { color="red" } Should be: b { color:red; } -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Graham Robinson Sent: Sunday, November 19, 2000 1:54

Re: Applying style sheets to JSP

2000-11-19 Thread JSP Insider
No, it means you are not using a style sheet? CSS are on the client-side not the server. Your JSP is on the server side. This means what ever your JSP returns to the client will have the style sheet applied to it. http://www.w3c.org has the official syntax for CSS. You do not need to specify

Re: where to put bean class files in weblogic

2000-11-19 Thread HEMANT MALLEPEDDI
Hi, Use the include directive for calling the bean call tye methods in the scriptlets part of the jsp. This will solve the problem. Hemant From: "Gunaseelan , R." [EMAIL PROTECTED] Reply-To: A mailing list about Java Server Pages specification and reference [EMAIL PROTECTED] To: [EMAIL

Re: Elizabeth Castro books... look pretty good

2000-11-19 Thread M. Simms
Simple solution: scan book to cd. Save in PDF format. one-hundredth the weight. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Robert Nicholson Sent: Saturday, November 18, 2000 12:27 AM To: [EMAIL

Re: Which one is recommended Web Server with JSP engine?

2000-11-19 Thread M. Simms
Tomcat is about 3 or 4 times slower than Resin or Weglogic. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Raman Sent: Sunday, November 19, 2000 5:11 AM To: [EMAIL PROTECTED] Subject: Which one is

Re: Which one is recommended Web Server with JSP engine?

2000-11-19 Thread Duffey, Kevin
I would go with Orion application server (www.orionserver.com). Fully J2EE and is very fast, clusterable, scalable, and so on.. Free to use for all use and only $1500 per server for production use. -Original Message- From: M. Simms [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 19,

Re: Which one is recommended Web Server with JSP engine?

2000-11-19 Thread John Foulds
How does it compare to JRun? - Original Message - From: "Duffey, Kevin" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, November 19, 2000 7:03 PM Subject: Re: Which one is recommended Web Server with JSP engine? I would go with Orion application server (www.orionserver.com).

Re: Which one is recommended Web Server with JSP engine?

2000-11-19 Thread John Foulds
Pardon my ignorance of Resin, but why use Tomcat then? - Original Message - From: "M. Simms" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, November 19, 2000 5:54 PM Subject: Re: Which one is recommended Web Server with JSP engine? Tomcat is about 3 or 4 times slower than

Re: Which one is recommended Web Server with JSP engine?

2000-11-19 Thread Duffey, Kevin
I wouldn't even compare the two. Orion is far better. I take it you are talking about JRUn 3.0? I haven't run any comparisons lately, but Orion is much easier to get up and running, and has wider support than JRun. Performance wise I would have to say Orion is a magnitude better..but I don't know

Re: Which one is recommended Web Server with JSP engine?

2000-11-19 Thread John Foulds
Something must be missing, given that JRun 3.0 won best-of-show at Fall Internet World - Original Message - From: "Duffey, Kevin" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, November 19, 2000 7:32 PM Subject: Re: Which one is recommended Web Server with JSP engine? I

Re: Which one is recommended Web Server with JSP engine?

2000-11-19 Thread Duffey, Kevin
Ofcourse something is missing..Orion wasn't there. :) Orion overall is a far better product, however, Orion lacks the documnetation and some packaged tools that other vendors provide..in favor of a more solid engine for J2EE development and deployment. Also, JRun is $5000 per cpu, Orion is $1500

How to map String to Oracle Number for prepared Statement

2000-11-19 Thread Fred Balcom
Dear All, I want to search an Oracle number through a prepared statement. Could you tell me how to map the String to the Oracle number please? The code I used: String myStr = "SELECT CUSTOMERS.NUMBER FROM CUSTOMERS WHERE CUSTOMERS.NUMBER = ?"; PreparedState selectStatement =

Re: How to map String to Oracle Number for prepared Statement

2000-11-19 Thread Livaditis, Nicholas
Use the setLong method. -- Sent from my BlackBerry Wireless Handheld (www.BlackBerry.net) === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL

Re: keeping track of user connections

2000-11-19 Thread M. Simms
There are session monitor events which you can register listeners for to get a response when a browser closes. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Raman Sent: Sunday, November 19, 2000 7:18

Re: How to write Bean with indexed property

2000-11-19 Thread Sreejesh
ujghjkhgj lhlh JJJ - Original Message - From: "Mustaq Pradhan" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, November 19, 2000 11:26 AM Subject: How to write Bean with indexed property I need to write a bean to reference from a jsp. I am reading multiple rows from a table

Re: Applying style sheets to JSP

2000-11-19 Thread Deepak C S
Hi, Try giving as: b{color:red;} rather than color=red tr, deep -- From: Nivedita[SMTP:[EMAIL PROTECTED]] Reply To: A mailing list about Java Server Pages specification and reference Sent: Sunday,

Re: Which one is recommended Web Server with JSP engine?

2000-11-19 Thread John Foulds
Wow. That's brilliant. Do you have any problems porting to Resin, or is it normally pretty smooth? And why Orion, if Resin clocks much faster? John - Original Message - From: "M. Simms" [EMAIL PROTECTED] To: "A mailing list about Java Server Pages specification and reference" [EMAIL

Re: where to put bean class files in weblogic

2000-11-19 Thread hamid
Hi, Use the tag like : jsp:useBean id="conBean" scope="page" class="com.xyz.beanName"/ The beans path will be : \weblogic\classes\com\xyz\beanName.class Hamid Hassan VSDI -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL

jsp pages with japanese charactes

2000-11-19 Thread Alexius Luke
I had previously asked about displaying japanese characters in the jsp pages.It is turning out to be a crusial situation for me. So if someone has used some methodology in your works would you kindly let me know the way in which it has to be done.It would be more helpful if I get a quicker