Urgent help needed

2001-06-05 Thread M Sankar
Hi all, I am using Netscape Iplanet Web Server and JSP.I am trying out a cryptography module. Now my application is made and is working fine using Tomcat on a trial basis. But when I put these application on iPlanet, JSP Compiler is throwing an Classformat error. It is showing the message fo

Re: Double submit

2001-06-05 Thread Mayuresh Kadu
well .. there's one more thing that could be done .. Let us say the customers trying to make a transaction .. the transaction entry form itself can have a "hidden" pre-generated transacton_id in the form itself. That on being submitted twice could be check to raise an error or ignore .. Mayures

Re: Hi

2001-06-05 Thread Mayuresh Kadu
why would u want to give a customized name to the servlet ?! Just curious ! Mayuresh -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Rajeshwar Rao.V Sent: Thursday, May 17, 2001 16:16 To: [EMAIL PROTECTED

Pushing the Data into JSP page.

2001-06-05 Thread [Jwas J]
Hi All, Is there any way to push data into a JSP page? I have a set of classes to interact with a Server.I will send some request to that server through these classes.My class has an observer which notifies the class when the response comes from the server,which takes some time.So only when

Re: Passing objects to tag-libs?

2001-06-05 Thread Hans Bergsten
"Duffey, Kevin" wrote: > > Is it possible to pass in any Object other than a String to a taglib? I > thought something like: > > > > would be perfectly legal. As someone pointed out to me, the <%= %> returns a > String type. The example above is perfectly legal, assuming that the custom action a

Re: Passing objects to tag-libs?

2001-06-05 Thread Jann VanOver
yes, you can -Original Message- From: Duffey, Kevin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 05, 2001 3:46 PM To: [EMAIL PROTECTED] Subject: Re: Passing objects to tag-libs? So are you saying that you can pass objects using the syntax of <%= Object %>? > -Original Message

Re: Passing objects to tag-libs?

2001-06-05 Thread Duffey, Kevin
So are you saying that you can pass objects using the syntax of <%= Object %>? > -Original Message- > From: Roger Cuddy [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 05, 2001 12:44 PM > To: [EMAIL PROTECTED] > Subject: Re: Passing objects to tag-libs? > > > No automatic conversion to s

Re: Passing objects to tag-libs?

2001-06-05 Thread Roger Cuddy
No automatic conversion to strings occurs for expressions used in a tag attribute. Check out 'Tag attribute interpretation semantics' in the JSP spec for a complete reference. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTEC

Re: simple mysql connection error

2001-06-05 Thread Supreme Being
xin, i'm having a successfull connection to mysql db using JSP... this is the code i'm using : Class.forName("org.gjt.mm.mysql.Driver").newInstance(); Connection con=DriverManager.getConnection("jdbc:mysql://localhost/mydb?user=mydbuser&password=mydbpwd"); No problem with this. If there's not

Re: Who know how to create a "Connection Pool" in Java?

2001-06-05 Thread Duffey, Kevin
I do..but why would you have to? If your migrating towards any Servlet 2.2 or J2EE app server, almost all of them have built-in connection pooling. Part of J2EE is connection pool management of database connections and of entity and session beans, so you don't have to do it. =

Passing objects to tag-libs?

2001-06-05 Thread Duffey, Kevin
Is it possible to pass in any Object other than a String to a taglib? I thought something like: would be perfectly legal. As someone pointed out to me, the <%= %> returns a String type. Is there another way to pass in an object other than String? Seems odd to me since JSP turns into a servlet t

Write to CSV using JSP

2001-06-05 Thread Blaney, Colin (CAP, CORP Contractor)
I want to be able to write some web form values to a CSV (or txt) file. I know ho to do this easily in ASP, anyone know the easiest way to do it in JSP? Here is the ASP I have used. WRITE <% set FSO = Server.CreateObject("scripting.FileSystemObject")

Write to a CSV using JSP

2001-06-05 Thread Blaney, Colin (CAP, CORP Contractor)
I want to be able to write some web form values to a CSV (or txt) file. I know ho to do this easily in ASP, anyone know the easiest way to do it in JSP? Here is the ASP I have used. WRITE <% set FSO = Server.CreateObject("scripting.FileSystemObject") set myFile = fso.CreateTextFile("C:\te

simple mysql connection error

2001-06-05 Thread xin_kang
hi£¡ when i connect mysql use jdbc use code String conurl = "jdbc:mysql://"+ host + ":" + port + "/" + dbname; try{ con = DriverManager.getConnection(conurl, dbuser, dbpass); i got: SQLException: java.sql.SQLException: Server configuration denies access to data so

Re: printing table border in ms-word generate from jsp

2001-06-05 Thread Winnie Leung
sorry all, it works fine, just my stupid mistakes... code is just : <% response.setContentType("application/vnd.ms-word"); response.setHeader("Content-disposition","attachment;filename=testing.doc"); %> Heading 1 Testing Testing Testing Testing Testing -Origi

Re: Who know how to create a "Connection Pool" in Java?

2001-06-05 Thread VoiD
If you are refering to a database connection pool, i recommend looking at http://www.javaexchange.com and their Connection Broker which is really good, and i have used for some time now... /D - Original Message - From: "lancelot" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday,