Re: cannot find the package

2001-05-25 Thread Mayuresh Kadu
maybe u've already answered this by now (i came in late on this one) has the path /webapps/JSP/Web-inf/classes/ been added to ur CLASSPATH ?! Mayuresh -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of

Re: cant start j2ee server

2001-05-25 Thread EJB ForAll
Hi go to the c:\j2sdkee1.3\bin directory and then execute the following commands j2ee -verbose Regards Deepak Kumar http://www.geocities.com/deepak_38 --- cupid1 <[EMAIL PROTECTED]> wrote: > Hi every one, > > when I try to start j2ee server using command: > > j2ee -verbose > > I get "bad c

This mail ID has been changed to rajeshk@erunway.com ,Please amend your address book for

2001-05-25 Thread rajesh khanna
This mail ID has been changed to [EMAIL PROTECTED] ,Please amend your address book for future use. Thanking you for your co-operation MIS eRUNWAY India === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-IN

Re: How to install SSL onto Tomcat?

2001-05-25 Thread Jann VanOver
Please checkout the tomcat mailing list. And check the archives first, this is a VERY COMMON question that is answered there many times over. See http://mikal.org/interests/java/tomcat/index.jsp -Original Message- From: RuaidhrĂ­ Fernandes [mailto:[EMAIL PROTECTED]] Sent: Friday, May 25,

cant start j2ee server

2001-05-25 Thread cupid1
Hi every one, when I try to start j2ee server using command: j2ee -verbose I get "bad command or file name" message. I have following lines in autoexec.bat file to set evviroment variables: SET JAVA_HOME=C:\jdk1.3 set J2EE_HOME=c:\j2sdkee1.3 set path=c:\j2sdkee1.3\bin; c:\jdk1.3\bin; Any clue

java.sql.SQLException error

2001-05-25 Thread John Wilson
Hello Everyone, I have a BugTracking project I generated from CodeCharge that is up and running on our WebLogic6.0 server. I have the tables on a SQL Server 2000 database and the program works fine, except when I go to enter a new bug report, which is an INSERT operation on the table - I get this

ODBC Microsoft ACCESS and JBDC

2001-05-25 Thread Nguyen, Thang P
Hi, I have a question related to ODBC Microsoft Access Driver. It gave me the below error. What I have is an Access Database with has one column (SelForDistrInSession) of type: Long Integer. My web server is tomcat3.2.1 running on an NT box. I was able to query all my data from this databas

Re: why servlet not working from package ????

2001-05-25 Thread horwat
I would check your web.xml file. The servlet element establishes a mapping between a servlet name and the fully-qualifed name of the servlet class: myservlet/servlet-name> mypackage.MyServlet When a request is received by Tomcat it must determine which servlet should handle

How to install SSL onto Tomcat?

2001-05-25 Thread RuaidhrĂ­ Fernandes
Hi, Does anyone know a quick,easy way to install SSL onto TOMCAT or if they know a web site that explains it clearly and well. Somebody told me I might have to integrate Tomcat with Apache web server and then put SSL on. Is this true? Any help on the topic is welcomed. thanks Rui = "If a rabb

Re: Question About events in java beans

2001-05-25 Thread Nguyen, Thang P
Hi, I have a question related to ODBC Microsoft Access Driver. It gave me the below error. What I have is an Access Database with has one column (SelForDistrInSession) of type: Long Integer. My web server is tomcat3.2.1 running on an NT box. I was able to query all my data from this databas

Re: MVC, EJBs and Oracle

2001-05-25 Thread Nevarez, Benjamin
Well, I am not saying that my solution is the best and that other solutions are bad. I am just saying that this solution looks very good to me. But anyway it will be interesting to compare the two choices you say, and probably others. I think I'll do it, later. I do not know about the tools to '

Re: Question About events in java beans

2001-05-25 Thread horwat
The javabeans tutorial has a section on events which includes a good example. http://java.sun.com/docs/books/tutorial/javabeans/events/index.html Justy - Original Message - > Hi all, > Does any one of you know a link to a good example about events in java > beans. > I undestand the the

Re: MVC, EJBs and Oracle

2001-05-25 Thread M. Simms
1) You of course "stress tested" with implementation with something like Mercury's tools and such that would simulate 1000+ users hitting the submit button at the same time ? 2) You of course compared this design to an MVC servlet/JSP implementation using regular Beans and a pooled connection to

MVC, EJBs and Oracle

2001-05-25 Thread Nevarez, Benjamin
Hello, I am writing an MVC application accessing an Oracle database. I am using a servlet as controller, JSP only for presentation (view) and EJBs for accessing data. I have seen that even with just a few records in the database the performance of the application is really good. So maybe it is a

Question About events in java beans

2001-05-25 Thread Lenin Lopez
Hi all, Does any one of you know a link to a good example about events in java beans. I undestand the theory behind events but I feel like I need an example to completely understand it I have done some search but it has been unsuccesful. Please help ==

Re: JRun

2001-05-25 Thread Celeste Haseltine
If your using JRUN with IIS, you should put your jsp's during the development process in C:\Inetpub\wwwroot\\WEB-INF\jsp The compiled jsp's (servelets) from your JSP's are automatically put by JRUN into the directory that you installed JRUN on your machine. In my case, its: C:\Program Files\Al

Re: Generate a JSP database "access bean" through table interrogation?

2001-05-25 Thread Gopi Mandava
Check Town-2.2 from http://www.working-dogs.com/town/ It creates beans from a database, and generate the insert/update/delete/retrieve methods. Gopi >I was thinking of a utility that would interrogate a set of database tables, >and then generate java beans that would be able to get/set, update,

Re: JRun

2001-05-25 Thread Daryani Santosh
What version of JRun are you running ? In JRun 3.0 JRun\servers\default\default-app -> maps to http://servername:portnumber/ If you have a firstjsp.jsp under JRun\servers\default\default-app you should be able to serve it with this url http://servername:portnumber/firstjsp.jsp You can put JSPs

Re: Generate a JSP database "access bean" through table interrogation?

2001-05-25 Thread erik morton
Hi Keith. You're talking about implementing a persistence layer - still one of the hottest topics in OO development. I'll point you in the direction of some of the best work in this area - http://www.ambysoft.com. Exolab is developing a java based persistence layer (Castor) that is gaining allot

Generate a JSP database "access bean" through table interrogation?

2001-05-25 Thread Keith Kwiatek
Hello, I was thinking of a utility that would interrogate a set of database tables, and then generate java beans that would be able to get/set, update, delete, insert, and validate.. the beans could then be "dropped" onto an html page (as in Macromedia Ultradev 4). Has anyone found anything

JRun

2001-05-25 Thread [Qari Qasim]
Does anyone know where to put JSP files in Jrun. According to document, we should put the JSP files under: /servers/default/default-app I have put a jsp file in this directory, however, when I try to run this file, I get the following error: 404 Not Found /firstjsp.jsp: allaire.jrun.JRunServle

why servlet not working from package ????

2001-05-25 Thread sufi malak
Hi, I am trying to call a servlet from a package like this : http://mil2wwds10/formprocess/servlet/mypackage.MyServlet BUT I got ERROR : The page cannot be found Here is the structure of this application : tomcat\webapps\formprocess\WEB-INF\lib\form.jar tomcat\webapps\formprocess\WEB-INF\classes

signoff JSP-INTEREST

2001-05-25 Thread Narendra Kumar
On Thu, 24 May 2001, "Sreemushta, Santhosh (c)" wrote: > > -Original Message- > From: Mahale, Mahesh [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 24, 2001 2:16 PM > To: [EMAIL PROTECTED] > Subject: signoff JSP-INTEREST > > > -Original Message- > From: Agarwal, Shekhar (MED, TC

Re: Jsp and Swing??

2001-05-25 Thread Karau, Joe
tried what exactly, you really need to be more specific. If you are talking about using Swing components to create the GUI for the client... You can, but shouldn't unless you have a small number of users that will be using your app, and/or until browsers start shipping with a Java2 JVM. The JVM'

Re: xmlhttp & jsp

2001-05-25 Thread Erwin Kodiat
You should install the JAXP package, the latest version is 1.1. You can download it from http://java.sun.com under Product & API choose XML Erwin Kodiat Mitrais Software Development Center Bali, Indonesia Tel: +62 361 755025 Fax: +62 361 755024 http://www.mitrais.com This transmission is for the

xmlhttp & jsp

2001-05-25 Thread Randeep Singh Sidhu
hello friends well my problem is that i am sending xml from client side to a jsp page through xmlhttp object, but i don't know where could i get the xml in jsp ,in asp we can directly get it from Request object plz help me in this regard thanks in advance =

Re: Custom Tags on WebLogic 6.0

2001-05-25 Thread Peter Pilgrim
I will only add to Hans note this: If fact with BodyTag implementation put your tag output code in the "doEndTag()" and not in the "doAfterBodyTag()" as I have seen some TagHandler author wrongly do. /** * The method above gets called at the end of the BodyTag. * We can either retu

Re: How to prevent IE from cacheing a JSP page

2001-05-25 Thread Peter Pilgrim
1) Have you look at Hans Bergsten site http://www.thejspbook.com/? 2) Is there something in Microsoft IE Preferences Dialog that overrides caching? Have you checked the preferences dialog? It would be typically MICROSOFT bullshit to not follow the standard. -- Peter Pilgrim "Putting PLEASE HELP M

Re: CACHE CONTROL EXAMPLE

2001-05-25 Thread ems vasudevan
Set the Following before sending any content, response.setHeader("Cache-Control","no-cache"); response.setHeader("Cache-Control","no-cache"); response.setHeader("Pragma","no-cache"); response.setDateHeader ("Expires", 0); This prevents caching. Addi

Re: off topic (package compilation) ???

2001-05-25 Thread EJB ForAll
Hi Dear, go to C:\Program_Files\tomcat321\webapps\formprocess\WEB-INF\classes put your java files in C:\Program_Files\tomcat321\webapps\formprocess\WEB-INF\classes\mypackage\fieldcontroll\ and user the following command to compile the java files C:\Program_Files\tomcat321\webapps\formproces