Re: Parsing text to date - Urgent

2001-01-20 Thread Tim Hengst
ps.setDate(2,new java.sql.Date(request.getParameter("publishdate"))); -Original Message- From: Venkata Ratnam Vadlamannati [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 20, 2001 8:19 AM To: [EMAIL PROTECTED] Subject: Parsing text to date - Urgent Dear All I am taking date from an

Re: Any free Application server for EJB

2001-01-20 Thread Chuck Taylor
Sivakumar, check out www.orionserver.com it's free for development purposes, and $1500/app. server for commercial purposes. chuck taylor Sivakumar Chiluvuri wrote: > > hi all > > pl. tell, is there any free application server for EJB > > thanks / regards > > siva kumar > >

[ANN] jo1.0a11

2001-01-20 Thread Hendrik Schreiber
Hi! I would like to announce the availability of version 1.0a11 of the free web server jo! Download: http://www.tagtraum.com/ In the current version jo! supports: * JSP 1.1 * Servlet API 2.2 * HTTP/1.1 including persistent connections, pipelining, byte ranges, virtual hosts, etc. * Memory sens

Re: [Way Off Topic] Form Submission to new window

2001-01-20 Thread Doug Turner
This is not a JSP question at all, i.e., way off topic. However, for a quick-and-dirty approach, add the TARGET="_blank" attribute to your tag; this works in NS and IE from 4.x on (I think). Solutions that give you control over the positioning and size of the window will require Javascript, and

Re: JBuilder JSP Configuration

2001-01-20 Thread Fetyko Jan
Did you try to change your hosts file in Windows dir. ? PPut there something like : 127.0.0.1 localhost This might help. I have it in mine and I can work on JSPs localy without problems. Jf Michael Sweeney <[EMAIL PROTECTED]To: [EMAIL PROTE

Re: Any free Application server for EJB

2001-01-20 Thread Kevin Jones
EJBoss, Enhydra Kevin Jones DevelopMentor www.develop.com > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Sivakumar Chiluvuri > Sent: 20 January 2001 08:16 > To: [EMAIL PROTECTED] > Subject: Any free

Re: doPost vs doGet.

2001-01-20 Thread Kevin Jones
> GET: is faster - but the Max size of your data is 128 bytes only. > - The browser sends information to the server in 1 transmission- data is > included in the header > - The Get passes the form values as command-line: ex > www.sa.com/servlet/myservlet?param1=xx&parm2=ccc > > POST: is slower >

Re: Any free Application server for EJB

2001-01-20 Thread Kevin Duffey
Orion is free for everything except for deployment..which is a mere $1500 per server. JBoss is another open-source app server. > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Sivakumar Chiluvuri > Se

Re: doPost vs doGet.

2001-01-20 Thread homai
GET: is faster - but the Max size of your data is 128 bytes only. - The browser sends information to the server in 1 transmission- data is included in the header - The Get passes the form values as command-line: ex www.sa.com/servlet/myservlet?param1=xx&parm2=ccc POST: is slower - The browser

Re: Any free Application server for EJB

2001-01-20 Thread ivan
try "orion"... www.orionserver.com _Ivan -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Sivakumar Chiluvuri Sent: Saturday, January 20, 2001 12:16 AM To: [EMAIL PROTECTED] Subject: Any free Application ser

Re: Fetching Data from Bean

2001-01-20 Thread homai
- Original Message - From: "kishore" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, January 19, 2001 8:24 PM Subject: Re: Fetching Data from Bean > try this way ... > > > > name > address > > <% > try { > // > Connection c = DriverManager.getConnection("jdbc:odbc:TABLE

Parsing text to date - Urgent

2001-01-20 Thread Venkata Ratnam Vadlamannati
Dear All I am taking date from an HTML form in 01/01/2001 format and take read this in a jsp page as request.getParameter("date") I try to put this in my MSSQL Server 7 table (table column is date with 8 characters width - default) with a prepared statement, it gives the following error: **

Re: how to access the contents of a session object from another s ession object directly

2001-01-20 Thread John Thomas
Thanks a lot kevin Kevin Duffey <[EMAIL PROTECTED]>@java.sun.com> on 01/20/2001 02:32:30 PM Please respond to A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]> Sent by: A mailing list about Java Server Pages specification and reference <[EMAIL

Any free Application server for EJB

2001-01-20 Thread Sivakumar Chiluvuri
hi all pl. tell, is there any free application server for EJB thanks / regards siva kumar === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set

Re: how do I to go out from this list???

2001-01-20 Thread Sivakumar Chiluvuri
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Marcelo Mathias Lima <[EMAIL PROTECTED]> on 01/18/2001 05:09:48 PM Please respond to A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc:(bcc: S

Re: how to access the contents of a session object from another s ession object directly

2001-01-20 Thread Kevin Duffey
Here ya go: public class bean1 { } public class bean2 { private HttpSession session = null; public bean2() { } public init(HttpSession session) { this.session = session; } public String getBean1SessionName() { Bean1 b1 = (Bean1) session.getAttribute("Bean1Name");

Re: how to access the contents of a session object from another s ession object directly

2001-01-20 Thread John Thomas
Hi, Can u please show a sample code which would retrieve the b1 session object, in bean b2 once session has been passed as a parameter to an instance variable in b2. Do i have to use the session.getAttribute method to retrieve the object or is htere a better method. hanks for the help Regard