Re: Plugin for Activex in JavaWebserver

2001-03-22 Thread veda
- Original Message - From: "R.Muthukumar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 23, 2001 1:33 PM Subject: Plugin for Activex in JavaWebserver > Hi! > Is there any plugin for the Javawebserver for running the Activex? > If so, Please let me know the URL. > Thanks

Plugin for Activex in JavaWebserver

2001-03-22 Thread R.Muthukumar
Hi! Is there any plugin for the Javawebserver for running the Activex? If so, Please let me know the URL. Thanks in advance. Muthu === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: ma

Re: running java code in a batch file

2001-03-22 Thread anuj
thanx a lot sachin for your help Regards Anuj - Original Message - From: "Sachin S. Khanna" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 23, 2001 12:14 PM Subject: Re: running java code in a batch file > Assuming you need to run a java application from a .bat file. >

Re: can't find servlets

2001-03-22 Thread Sachin S. Khanna
You don't need to add a / (slash) to the tag value. The correct syntax would be : CHT.Control.CHTcontroller Have a nice day. With regards, Sachin S. Khanna. www.emailanorder.com - Original Message - From: Ivan Handler <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, Mar

Re: running java code in a batch file

2001-03-22 Thread Sachin S. Khanna
Assuming you need to run a java application from a .bat file. Create a anuj.bat file with the following line of code java [your class file] save it and double click it to start your java application. Have a nice day. With regards, Sachin S. Khanna. www.emailanorder.com - Original Message

Re: iPlanet ? Please help me ?????????/

2001-03-22 Thread Shahaji Kadam.
you have to install JDK to run the JSP pages. solaris-- JDK 1.2x and higher. hp-ux 11.0 -- JDK 1.1x if it is installed then you have to set JDK path as JDK installation directory. your CLASSPATH should include the references to the diff Jar files in /server_root/bin/https/jar/ *.jar al

Re: AW: how to save output of jsp to html file before it returned to client?

2001-03-22 Thread Manu.M.R
kgb, i think u cant read files which have session variables bla bla things other wise it also get the dynamic part also the best option for u is to use pseudo-session in that case that is variable are stored in text files look into www.onjava.com/pub/a/onjava/2001/03/01/pseudo_sessions.html but i

(no subject)

2001-03-22 Thread Peter Rajesh
"signoff JSP-INTEREST" === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found

Re: Dreamweaver & JSP

2001-03-22 Thread Shane Geiger
> This is my first J2ee project, and i was wondering - Can I use Dreamweaver > 3 for editing my jsp files, or should I get Dreamweaver Ultradev? I'm > pretty good at using DW 3. > I don't need dreamweaver to do any coding itself - I am eager to do every > bit of the jsp coding myself. But I'm wond

running java code in a batch file

2001-03-22 Thread anuj
Hi, How do we run java code in a batch file ? Can it be done? thanx Anuj === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DI

Re: Dreamweaver & JSP

2001-03-22 Thread Arun Kumar
yes u can do, only thing is DW3 show JSP as ASP but every thing remain as it is. Cheers Arun - Original Message - From: "Erwin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 23, 2001 8:40 AM Subject: Dreamweaver & JSP > Hi guys, > > This is my first J2ee project, and i

Dreamweaver & JSP

2001-03-22 Thread Erwin
Hi guys, This is my first J2ee project, and i was wondering - Can I use Dreamweaver 3 for editing my jsp files, or should I get Dreamweaver Ultradev? I'm pretty good at using DW 3. I don't need dreamweaver to do any coding itself - I am eager to do every bit of the jsp coding myself. But I'm wond

AW: how to save output of jsp to html file before it returned to client?

2001-03-22 Thread Sebastian Cremers
hi, how about saving all the output in a string before sending it back to the client? regards, sebastian -Ursprüngliche Nachricht- Von: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]Im Auftrag von hua ge Gesendet: Donnerstag, 22. März 2001

Re: Simultaneous Username/Password Detection

2001-03-22 Thread Kevin Duffey
There are numerous ways to implement this that I am sure of. Probably the easiest is to keep a vector or hashtable of logged in users in the application scope (ServletContext). Upon logging in, check this first for the user/pass being logged in. If it exists, check the last login time. If it was r

Simultaneous Username/Password Detection

2001-03-22 Thread David Morton
I am building a system that protects content by username and password. No problem there. The more complicated part of the system prevents two people using the same username and password at the same time on our web site. I have a plan to do this, but I haven't seen if there are any commo

How do I ..??

2001-03-22 Thread Surendra Kumar
Hi, Could any of you help... I want to change the default examples directory to my own directory ( eg. mydirectory ) in JSWDK. How do I do it ?? I tried inserting another web application in the webserver.xml file --> - - But the problem I face is, when I try to invoke a ser

Re: character to byte

2001-03-22 Thread Zeng, Feng_Hua (CAP,CEF)
Hello, Ranjan, 0, Really another much more neat solution, isn't it? 1, However, don't you think it a little less understandable, and performance might also be a little worse affected due to the "replace" of strings ? ^_^ (Just kidding) 2, Moreover, the function "escape" seems incompatible wi

Angela Carstensen/PLZ/CSC ist außer Haus.

2001-03-22 Thread Carstensen Angela
I will be out of the office from 22.03.2001 until 26.03.2001. Ich werde Ihre Nachrichten nach meiner Rückkehr beantworten. Gruß, Angela Carstensen === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTERE

Re: Servlet form question ?? Thanks

2001-03-22 Thread Amit Aggarwal
The correct format will be out.println("\"); or out.println(""); - Original Message - From: "Hall, Philip" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 22, 2001 2:45 PM Subject: Re: Servlet form question ?? Thanks > > Could you please tell me what's wrong her

Re: Servlet form question ?? Thanks

2001-03-22 Thread Hall, Philip
> Could you please tell me what's wrong here : > > TempServlet.java:64: ')' expected > out.println(""); Programming 101 - How to use quotes in string values: Embbeded quotes must be prefixed with the escape character '\', for example; out.println(""); ==

Re: AutoCompilation of JSP's at AppServer startup

2001-03-22 Thread Sushil Singh
By "AutoCompilation", I meant "PreCompilation". My mistake. If we are able to pre-compile the JSP's then for the first hit it will not take time to compilation. Brad Rhoads wrote: > This might get you started: > > http://www.alphasierrapapa.com/IisDev/Components/AspTouch/ > > by you'll need

Re: AutoCompilation of JSP's at AppServer startup

2001-03-22 Thread Brad Rhoads
This might get you started: http://www.alphasierrapapa.com/IisDev/Components/AspTouch/ by you'll need to build a Java intface to it w/ http://www.infozoom.de/IE/home.html which works great. > -Original Message- > From: M. Simms [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 22, 2

JSP Inheritance

2001-03-22 Thread Subha Desikan
Hi, The JSP specification discourages the use of inheritance in JSP. It says for sharing common look and feel, try using includes. For sharing utility methods, try using utility classes. So, then what are the scenarios under which JSP inheritance is the only best option. Thanks in Advance, sd. =

Re: AutoCompilation of JSP's at AppServer startup

2001-03-22 Thread M. Simms
I heard the only way to do this is to "touch" the filestamps on the JSP source code so that the file system "modified" flag is throw or there is a timestamp/datestamp change. I'm amazed no one has developed a utility for doing this yet ! > -Original Message- > From: A mailing list about

Questions for the list (was: problem with javaBean and jsp)

2001-03-22 Thread Rob L'Estrange
Yeah, these are important questions. I don't have a definitive, all encompassing answer for you, but I can make a couple of comments. JRun has the ability for hosting services to offer a fine grained approach, where they can setup a servlet/jsp container for each individual domain customer. JRun

HTML Parser

2001-03-22 Thread Ryan, Jeff J (Comm Lines, IT)
Hi, I've tried using a SAX Parser to pull some pertinent information from a HTML file and run into trouble because the file was generated from Microsoft Word and is not well formed. I'd prefer to use SAX if possible. Any ideas on how to make it more forgiving? I can't guarantee that the files

Re: Servlet form question ?? Thanks

2001-03-22 Thread Alison Dent
Try removing the double quotes and use single quotes i.e. out.println(""); A. Dent FedEx sufi malak wrote: > > Could you please tell me what's wrong here : > > C:\tomcat4\webapps\displayRecord\WEB-INF\classes>javac TempServlet.java > TempServlet.java:64: ')' expected > out.println(""); >

Multiple AppServer: Session Problem

2001-03-22 Thread Sushil Singh
Hi: We have developed an e-commerce site using "MVC Model 2" architecture: Classes/JavaBeans - Model Servlet - Controller JSP - View We are running Six WebSphere 3.02 AppServer on six difference unix box (AIX) . We are facing a severe architecture problem. Here all AppServer are having differen

Re: Servlet form question ?? Thanks

2001-03-22 Thread Prashant Karmarkar
u have to add additional escape character for double qoutes inside out.println statement. So your out.println () should be like this, out.println(""); -Original Message- From: sufi malak [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 22, 2001 1:04 PM To: [EMAIL PROTECTED] Subject: Se

Re: Servlet form question ?? Thanks

2001-03-22 Thread Satyanarayan Divakar
You will have to use an escape character So instead of this out.println(""); use this out.println(""); Hope this will help you. Divakar -Original Message- From: sufi malak [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 22, 2001 1:04 PM To: [EMAIL PROTECTED] Subject: Servlet for

Re: Servlet form question ?? Thanks

2001-03-22 Thread Jitu Sarwate (CFIS)
out.println(""); OR out.println(""); > From [EMAIL PROTECTED] Thu Mar 22 11:08:50 2001 > X-Originating-IP: [192.250.112.134] > Mime-Version: 1.0 > X-OriginalArrivalTime: 22 Mar 2001 19:03:49.0371 (UTC) >FILETIME=[D3F4B4B0:01C0B302] > Date: Thu, 22 Mar 2001 19:0

Re: Servlet form question ?? Thanks

2001-03-22 Thread Nishit Trivedi
you have to escape double quotes (using backslash character) used in out.println because if you won't escape it, the compiler confuses between actual string( you want to display) and end of out.println... Use this instead: out.println(""); out.println(""); it should work.. Nishit -Origina

Re: Servlet form question ?? Thanks

2001-03-22 Thread Rodrigo Gevaerd
To use double quotes inside a String use \" instead of ". for example: out.println(""); []'s, Rodrigo. > -Mensagem original- > De: sufi malak [mailto:[EMAIL PROTECTED]] > Enviada em: Quinta-feira, 22 de Março de 2001 16:04 > Para: [EMAIL PROTECTED] > Assunto: Servlet form question

AutoCompilation of JSP's at AppServer startup

2001-03-22 Thread Sushil Singh
Hi, Is there any way to compile all the JSP's whenever we restart the AppServer. For Servlet we can specify "Load at startup as TRUE". Thanks. Sushil === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-IN

Servlet form question ?? Thanks

2001-03-22 Thread sufi malak
Could you please tell me what's wrong here : C:\tomcat4\webapps\displayRecord\WEB-INF\classes>javac TempServlet.java TempServlet.java:64: ')' expected out.println(""); ^ TempServlet.java:65: ')' expected out.println(""); ^ 2 errors Thanks _

Re: Off topic(JSP in iPlanet) ????

2001-03-22 Thread Satyanarayan Divakar
Hi, If you go to server configuration you have an option to set the default/primary directory for JSP.You can set any folder as the default or Primary directory for JSP from ther. You can place the JSPs in that folder. Hope this solves your problem Regards, Divakar -Original Message---

Re: Off topic(JSP in iPlanet) ????

2001-03-22 Thread Dylan Rosario
Look here for the documentation for running and administering IPlanet. http://docs.iplanet.com/docs/manuals/enterprise.html Also you need to set up a default server in the iPlanet admin usally available at http://www.yourserver.com: here you can configure your document diorectory and the su

A best practice for moving data from table to db

2001-03-22 Thread joe smith
Say I have a plain old HTML table and I want to get all the data from this table, using a JSP, and send that data off to a class that does database processing. Is it 'normal practice' to define some sort of a collection within the JSP and use that to store all the data from the table. Then, send

No Subject

2001-03-22 Thread Swaminathan Gopal
Hi, How do i disable the refresh button from the JSP ? Rgds, Swami === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". S

No Subject

2001-03-22 Thread Swaminathan Gopal
Hi, How do i disable the refresh button from the JSP ? Rgds, Swami === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". S

Off topic(JSP in iPlanet) ????

2001-03-22 Thread sufi malak
Hi, all the jsp code is not interpreted by iPlanet server, could you please help me , and where exactly should I put my jsp pages ? Thanks _ Get your FREE download of MSN Explorer at http://explorer.msn.com =

can't find servlets

2001-03-22 Thread Ivan Handler
I have an application that I am switching to MVC. I suspect my provider has not configured my server correctly, but I have no idea. If anyone has any insight on what I have done wrong or what could be wrong, I would greatly appreciate it. I have a context declared in my server.xml (I am using T

Re: problem with javaBean and jsp

2001-03-22 Thread cupid1
If we have to shutdown and restart the application server every time we change our bean or .class files, how could it be done if there are other applications running and being used on that server. Secondly, how could we ask a host company to shutdown and restart their server because we modified on

which web server other than tomcat4.0 can suport servlet2.3 API

2001-03-22 Thread hua ge
hello, does anyone know which web server other than tomcat4.0 can suport servlet2.3 api? _ Get your FREE download of MSN Explorer at http://explorer.msn.com ===

Re: sessions - variable

2001-03-22 Thread Rui Santos António
You can do it with Javascript, assuming you don't need to "do" anything at the sever with each new value (increased or decreased). If that's the case then you should do it with Javascript, to spare a round trip to the server just to modify a number in the user interface. you can have something l

how to save output of jsp to html file before it returned to client?

2001-03-22 Thread hua ge
hello, I been frustrating with saving a jsp output to an html file before it send back to client. how can I implement it? I heard servlet2.3 javax.servlet.ServletResponseWrapper class can make it happen by making your own outputStream. anyone has experience on it? can someone post a sample code o

sharing a connection pool

2001-03-22 Thread A.C.
I'm trying to implement a connection pool. I've a vector containings all the available connections: how/where/when should i declare it to share it with all the sessions? I tried to declare the vector as bean with scope application, but it doesn't work.

Re: problem with javaBean and jsp

2001-03-22 Thread Nishit Trivedi
it a tomcat behaviour too...i am using tomcat 3.2.1 Nishit -Original Message- From: cupid1 [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 21, 2001 11:01 PM To: [EMAIL PROTECTED] Subject: Re: problem with javaBean and jsp It makes sense now. thanks. Is this only the jws behavior or t

Re: sessions - variable

2001-03-22 Thread Kare Nuorteva
Hello, It might be a good idea to save the current value of the variable into a URL parameter and access it with: <%= request.getParameter("param_name") %> if this returns null, then the visit is the first one and the value should be translated to 1. Functionality for buttons is just a normal POS

out.println(TAG-LIB)?

2001-03-22 Thread Rodrigo Gevaerd
If I use in a JSP something like: <% String tagLib = ""; out.println(tagLib); %> That tag lib will be executed and substituted on the server or the browser will receive directly that String? If it is not executed on the server, is there a way to make it do it? []'s, Rodrigo.

Re: JSP & NES4.0 ??

2001-03-22 Thread Shahaji Kadam.
Vinay, thanks for your reply. I have resolved the problem. It was because of the multiple copies of start-jre file. Admin had taken backup of start-jre file as start-jre.*. The startup script reads start-* files in that directory.. which was setting old (wrong) values of NSES_JDK and NSES_JR

Antwort: taglibs again....with tomcat 3.2.1

2001-03-22 Thread Steffen Morawietz
actually the problem is exactly as described: enter a whitespace after ' Kopie: Gesendet von: A Thema: taglibs againwith tomcat 3.2.1 mailing list about Java Server Pages

Re: problem with javaBean and jsp

2001-03-22 Thread anurag dewan
hi, I was not able to find the set property. U have to first set the proprty before getting it. use the setProperty directive or call the func. using scriplets. Hope it helps -anurag --- cupid1 <[EMAIL PROTECTED]> wrote: > Hello every one, > > Please help with a small problem. I have this jsp >

sessions - variable

2001-03-22 Thread S. Jyotinarayan
I have a jsp page with 'increase' and 'decrease' buttons and a variable. I want the variable to be initalised to 1 when this jsp page is first opened. And the variable should increase and decrease as I press on the respective buttons and be displayed on the same page. How could I do this. Thanx a

Re: SQL Server

2001-03-22 Thread Rob L'Estrange
Righto. My suspicion was that maybe your DSN was setup to use NT, rather than SQL Server, authentication, but you've said below that you've set it up with SQL Server authentication, so that blows that theory. One thing though... You say that you've created a User DSN. I can't really comment on th

Re: JSP & NES4.0 ??

2001-03-22 Thread Vinay Talwar
try jdk 1.2 or later to support jsp Vinay Talwar [EMAIL PROTECTED] [EMAIL PROTECTED] "Shahaji Kadam." cc: Sent by: A mailingSubject: JSP & NES4.0 ?? list about Java Se

taglibs again....with tomcat 3.2.1

2001-03-22 Thread anurag dewan
hi, I am trying to run a jsp page that calls a taglib. I am now using tomcat3.2.1 and jdk1.2.2. It gives an error-unable to open tag library-parse error in tag library descriptor: Missing Whitespace after PUBLIC keyword. My tld is... http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">

No Subject

2001-03-22 Thread Fady Antoine Kaddoum
Hi Rob Yes, you're right sql7 and sql2000 have the same logon distinction. Moreover I am using the JDBC-ODBC bridge provided by SUN Microsystems in their jdk. I am using a User DSN in ODBC, with SQL Server logon. this is a part of the code: ... Connection con = null; Driver drv = (Driver) Class

disable refresh button

2001-03-22 Thread Swaminathan Gopal
Hi, How do i disable the refresh button from the JSP ? Rgds, Swami === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". S

Re: How to delete files

2001-03-22 Thread Henki Lubis
Read the API, there's a method called File.delete() that will return boolean. ~ HL ~ -Original Message- From: Balkrishna R.Parab [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 22, 2001 12:54 PM To: [EMAIL PROTECTED] Subject: How to delete files Can I delete file using java.io.File ?

Re: The SQL Server problem

2001-03-22 Thread Rob L'Estrange
Fady Just need a bit more info bud... What type (1, 2, 3 or 4) of driver are you using? And, are you going through a DSN? Is the user you are trying to login with setup as an NT logon or SQL Server logon (the last version of SQL Server I've used is SQL Server 7; I'm assuming that SQL Server 2000

Re: cannot find "javax.activation.*"

2001-03-22 Thread Sachin S. Khanna
http://java.sun.com/products/javabeans/glasgow/jaf.html It would be better if you have the http://developer.java.sun.com in your list of most frequently visited sites. Have a nice day. With regards, Sachin S. Khanna. www.emailanorder.com - Original Message - From: Jean Chiang (¦¿²Q§g) <[

No Subject

2001-03-22 Thread Fady Antoine Kaddoum
Hi guys, I am currently working on a project for an intranet application: JSP pages on a Tomcat3.2 server accessing Microsoft SQL2000, the problem is that when a user tries to access the information of a certain database with it's own login and password entered on the browser, Tomcat always conn