SIGN OFF

2002-05-14 Thread Arockia Joseph
Title: SIGN OFF SIGN OFF " ZenSar Technologies Ltd. Mail Disclaimer: This e-mail and any files transmitted with it are confidential and the views expressed in the same are not necessarily the views of ZenSar Technologies Ltd., and its Directors, Management or Employees. This communication r

Re: web.xml - is it mandatory in a WAR?

2002-05-14 Thread Bhushan_Bhangale
As such not mandatory. But if you want to deploy servlets, EJB, etc then you need to define web.xml. -Original Message- From: Dion Gillard [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 15, 2002 9:35 AM To: [EMAIL PROTECTED] Subject: web.xml - is it mandatory in a WAR? I've had a look

Re: Apache Tomcat Configuration problem

2002-05-14 Thread Bhushan_Bhangale
I am successfully able to do the Apache 1.3.9 and Tomcat 4.0.3 configuration using the following link. http://jakarta.apache.org/tomcat/tomcat-3.3-doc/mod_jk-howto.html Now I have one doubt over the configuration. This is the entry which I did in Virtual host section of httpd.conf file of Apach

web.xml - is it mandatory in a WAR?

2002-05-14 Thread Dion Gillard
I've had a look through the servlet 2.3 spec, and I can't see where it specifies that the WEB-INF/web.xml is a mandatory file for a WAR file? Can someone tell me whereabouts this is defined? -- dIon Gillard, Multitask Consulting Work: http://www.multitask.com.au Developers: http://adslgatewa

help

2002-05-14 Thread kongtao
  Hello,every one!     A configuration problem confuse me.I use the Jbuilder5.0 tool to develop a java Servlet.I integrate BEA application Server("weblogic6.1") with Jbuilder5.0 tool.When I "WEB run" the Servlet after finish the java source code in Jbuilder5.0 ,the error oc

[no subject]

2002-05-14 Thread kongtao
Hello,every one!     A configuration problem confuse me.I use the Jbuilder5.0 tool to develop a java Servlet.I integrate BEA application Server("weblogic6.1") with Jbuilder5.0 tool.When I "WEB run" the Servlet after finish the java source code in Jbuilder5.0 ,the error occurs.Following is t

RES: Learn Java

2002-05-14 Thread Marcos Lyra
Try http://java.sun.com/docs/books/tutorial/information/resources.html#general -Mensagem original- De: Tapia Marcelo [mailto:[EMAIL PROTECTED]] Enviada em: terca-feira, 14 de maio de 2002 18:00 Para: [EMAIL PROTECTED] Assunto: Learn Java hi, sorry but my english is not very good

Jbuilder integrating with BEA weblogic 6.1

2002-05-14 Thread kongtao
Hello,every one:     A configuration problem confuse me.I use the Jbuilder5.0 tool to develop a java Servlet.I integrate BEA application Server("weblogic6.1") with Jbuilder5.0 tool.When I "WEB run" the Servlet after finish the java source code in Jbuilder5.0 ,the error occurs.Following is th

SIGN OFF

2002-05-14 Thread Shih-Yun Peng
SIGN OFF ___ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun

socket write error, connection reset by peer

2002-05-14 Thread bill tao
Hello, I have one urgent problem which really need someone to help me out. Thanks in advance. I am building online application. using java servlet, html with mysql as the backend. when i call to run some servlet, it giving me error message as follows, connection reset by peer socket write error. al

Re: filter is not setting Transfer-encoding: chunked

2002-05-14 Thread Dmitry Beransky
Thanks Gang, Although, setting the buffer size didn't help in this case. After some more digging around I finally found that the problem was caused by a call to flushBuffer made by the jsp engine at the end of processing a page. By default, this call was passed by the wrapper object to the orig

[OT] Intertwingle

2002-05-14 Thread Abeille Petite
Thought you might be interested. http://guests.evectors.it/zoe/ PA __ Do You Yahoo!? LAUNCH - Your Yahoo! Music Experience http://launch.yahoo.com ___ To unsubscribe, send em

Re: Learn Java

2002-05-14 Thread Angel \"Java\" Lopez
Hi people! http://www.jspinsider.com http://www.theserverside.com http://www.kevinboone.com and in Spanish: http://www.javahispano.com http://java.programacion.net Angel "Java" Lopez - Original Message - From: "Tapia Marcelo" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday,

Re: Learn Java

2002-05-14 Thread Michael Weller
hi! > hi, sorry but my english is not very good.Somebody know good > url for learn Java, J2EE, etc > go read the Java Tutorial: http://java.sun.com/docs/books/tutorial/ Have fun! -mw > Thanks... > > Marcelo.

Learn Java

2002-05-14 Thread Tapia Marcelo
hi, sorry but my english is not very good.Somebody know good url for learn Java, J2EE, etc Thanks... Marcelo. ___ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signo

Re: persistent objects : a bit off topic

2002-05-14 Thread Michael Weller
hi! why can't you simply do it all with ONE applet ? i think this goes thread goes too off-topic! -mw - Original Message - From: "Kumar Sameer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 14, 2002 3:15 PM Subject: Re: persistent objects : a bit off topic > good advic

Re: persistent objects : a bit off topic

2002-05-14 Thread Kumar Sameer
good advice. I just tried it if I store a Rowset object, I am able to retrieve it in another applet !!! I can also access the result of query fired from the previous applet ! But Alas I can't fire a new query using the same object I get an error : [Microsoft][ODBC driver

Re: persistent objects : a bit off topic

2002-05-14 Thread Dmitrij Trunikov
Excuse me, but my last proposition is not right :((( Dmitrij Trunikov wrote: > Michael Weller wrote: > > > This won't work for sure: java.sql.Connection is an interface, so a class > > can't extend it :) > > > For connection serialization try somwthing like this: > > > > > > public class SerConn

Re: persistent objects : a bit off topic

2002-05-14 Thread Dmitrij Trunikov
Michael Weller wrote: > This won't work for sure: java.sql.Connection is an interface, so a class > can't extend it :) > > For connection serialization try somwthing like this: > > > > public class SerConnection extends Connection implements Serializable { > > } You are right! :) But in princip

Re: persistent objects : a bit off topic

2002-05-14 Thread Kumar Sameer
well the question was a bit off topic becoz i am not allowed to use a servlet :)) or a port either. The applet class will be loaded on individual machines and the objects will be saved on the local hard disk. If u r further interested in knowing why the requirement is so !!! Well this is a backu

Re: persistent objects : a bit off topic

2002-05-14 Thread ^BoyInterrupted^
One of the reasons behind the creation of the RowSets specification was this very feature of Connection objects , viz. that they cant be serialized. And it does make some sense , since a connection is a logical binding between two specific entities. I am sure that you could always design a workaro

SIGN OFF

2002-05-14 Thread Peng Shih-Yun
Title: SIGN OFF SIGN OFF - Original Message - From: Arockia Joseph To: [EMAIL PROTECTED] Sent: Tuesday, May 14, 2002 3:47 PM Subject: SIGN OFF signoff SERVLET-INTEREST " ZenSar Technologies Ltd. Mail Disclaimer: This e-mail and any files transmitted with it

Re: persistent objects : a bit off topic

2002-05-14 Thread Michael Weller
hi! This won't work for sure: java.sql.Connection is an interface, so a class can't extend it :) A concrete implementation of Connection comes with your jdbc-driver (just like HttpSession is an interface which is implemented by the author of your servlet-container). Anyway: Where would you save th

Re: Apache Tomcat Configuration problem

2002-05-14 Thread Bhushan_Bhangale
Thats what I also think but when i give the context name and the jsp name in the url, the error.log of Apache says file not found. Probably at present the configuration is not right, it is giving me this error. At present I don't have net connection so will try the URLs sent by you guys later an

Re: Apache Tomcat Configuration problem

2002-05-14 Thread Raghupathy, Gurumoorthy
hi ya, now you can run jsp on tomcat ( as standalone ) and using apache ( using mod_jk ) the document root ( per application ) will as specified in your server.xml ( as per your context settings ) ... actually what happens is ( if you request a jsp from apache ) th

Re: Apache Tomcat Configuration problem

2002-05-14 Thread Bhushan_Bhangale
Yups I used this only and my Tomcat is running fine as i tested with some examples. But from Apache when I call a JSP it doesn't work. This is workers.properties workers.tomcat_home=D:\Tomcat workers.java_home=D:\j2sdk1.4.0 ps=\ worker.list=test worker.test.port=8009 worker.test.host=localhost w

Re: Apache Tomcat Configuration problem

2002-05-14 Thread Raghupathy, Gurumoorthy
hummm how did you configure ? using mod_jk ? using worker.properties ? if that the case then give me any question about this ... i am quite good at this type of configuration... guru -Original Message- From: Bhushan_Bhangale [mailto:[EMAIL PROTECTED]] Sent: 14 M

Re: Apache Tomcat Configuration problem

2002-05-14 Thread Bhushan_Bhangale
Thanks Peter I will look into this document also. Could you please answer my one more query? When Apache will be able to run JSP using Tomcat, would it be able to run the Web Application deployed in tomcat also? If yes then what will be the document root of Apache? -Original Message- Fr

Re: Apache Tomcat Configuration problem

2002-05-14 Thread Peter Smiley (EEI)
Hi, You should be able to configure both to run on NT 4.0. There's a fairly good description of how to do this at http://www.moreservlets.com/Using-Tomcat-4.html Regards Peter -Original Message- From: Bhushan_Bhangale [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 14, 2002 11:30 AM To:

Apache Tomcat Configuration problem

2002-05-14 Thread Bhushan_Bhangale
Hi All, Does Tomcat 4.0.3 and Apace Web Server 1.3.9 works on Windows NT 4.0? I configured Apache WS with Tomcat but unable to run JSP and Servlet. Can anybody help me? Thanks & Regards Bhushan Bhangale Programmer Analyst Infosys Technologies Ltd. Pune - 411042 Tel: (Office) +91 (20) 2932800/0

Re: persistent objects : a bit off topic

2002-05-14 Thread Dmitrij Trunikov
Kumar Sameer wrote: > I want to save the Connection object so that another applet can use it. I > And if yes well can u advise me of any other > method to achieve my objective. For connection serialization try somwthing like this: public class SerConnection extends Co

persistent objects : a bit off topic

2002-05-14 Thread Kumar Sameer
Hi ! I am connecting to a database in an applet. After I come out of the applet, I want to save the Connection object so that another applet can use it. I tried to save the Connection object using Serializable interface but got the "java.io.NotSerializableException: sun.jdbc.odbc.JdbcOdbcConnecti

Re: Running Servlet in Tomcat

2002-05-14 Thread Raghupathy, Gurumoorthy
can you send me the error message ? and make sure the that dir WEB-INF is in upper case GURU -Original Message- From: Bhushan_Bhangale [mailto:[EMAIL PROTECTED]] Sent: 14 May 2002 07:28 To: [EMAIL PROTECTED] Subject: Running Servlet in Tomcat Hi All, I have installed Tomcat 4.0.

Re: Running Tomcat 4.0.3 problem

2002-05-14 Thread Raghupathy, Gurumoorthy
where do you put your JSP ? and can you send the screen shot to me ( not to the forum ) and the file name t guru -Original Message-From: Joseph Rogoiyo [mailto:[EMAIL PROTECTED]]Sent: 14 May 2002 08:22To: [EMAIL PROTECTED]Subject: Running Tomcat 4.0.3 problem

SIGN OFF

2002-05-14 Thread Arockia Joseph
Title: SIGN OFF signoff SERVLET-INTEREST " ZenSar Technologies Ltd. Mail Disclaimer: This e-mail and any files transmitted with it are confidential and the views expressed in the same are not necessarily the views of ZenSar Technologies Ltd., and its Directors, Management or Employees. Thi

Re: Running Servlet in Tomcat

2002-05-14 Thread Bhushan_Bhangale
Solved installed tomcat again. -Original Message- From: Bhushan_Bhangale Sent: Tuesday, May 14, 2002 11:26 AM To: [EMAIL PROTECTED] Subject: Running Servlet in Tomcat Hi All, I have installed Tomcat 4.0.3 and was able to run the "examples" Web application. What I noticed is that the

Running Tomcat 4.0.3 problem

2002-05-14 Thread Joseph Rogoiyo
I have installed Tomcat 4.0.3 on Linux and can run the “examples” without a problem. Since I’m fairly new to JSP, I’m building my pages with Adobe GoLive 6.0. However, when I try to make the site dynamic in GoLive, the program comes back with a message that “the server is not currently proc