iplanet

2001-12-12 Thread Yan Zhu
anyone using iplanet webserver 6.0 as a j2ee web container? how do you feel about it? thanks yan === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTE

Re: iplanet

2001-12-12 Thread Yan Zhu
is Tomcat capable of doing load balancing with resonnate? I am also having so much problem with iplanet, I am thinking about ditching it, but I have to be sure something like Tomcat is ready for enterprise usage. thanks yan Mike Akerman wrote: > On Wed, 12 Dec 2001, Yan Zhu wr

Re: Web Application Structure iplanet4.1 ??

2001-12-12 Thread Yan Zhu
I don't think it supports j2ee standards in 4.1 sufi malak wrote: > what is the Web Application Structure for iPlanet4.1, I did not find > anything in the doc, thanks > > _ > Get your FREE download of MSN Explorer at http://explor

Re: Web Application Structure iplanet4.1 ??

2001-12-12 Thread Yan Zhu
as far as i know, it does NOT support web.xml, or taglib, or WEB-INF, it supports standard jsp, servlet etc, but that's about it. Troy Campano wrote: > Do you know if it supports TABLIBs? > What would be something comparable to the web.xml file? > > Thank you for any help you can give! > > -

tomcat

2001-12-12 Thread Yan Zhu
ok, I got tomcat, could someone recommand a good place/book for tutorials/docs on webapps? using tomcat? I already read the doc comes with it, seems to be a bit vague. thanks yan === To unsubscribe: mailto [EMAIL PROTECTED

Re: tomcat

2001-12-12 Thread Yan Zhu
s - Colorado Design Centers Unix/Windows Systems Administrator, WAN, LAN, Desktop, Voice, Printers, Security Focal Point, & Local CIO Service Delivery Manager Contact VOICE: 720-494-2330 ¿ FAX: 720-494-2331 -Original Message- From: Yan Zhu [mailto:[EMAIL PROTECTED]] Sent: Wednesday, Dec

Re: good webserver

2001-12-20 Thread Yan Zhu
As far as iplanet goes, there are many problems with J2ee applications. It is behaving very unpredicatablly, for example, sometimes it failes to stop/start correctly. iPlanet also provides very little technical supports, you have to figure out most of the problems yourself. Having said that, i

Re: Please reply soon

2001-12-29 Thread Yan Zhu
3. maybe return the collection in xml format, then you can use xsl to change the displays anytime you want to. 4. webmacro uses a display template to totally separate the data from html, that might help to. JOSHY MON M C wrote: > Hi all > I want to make a list page(JSP), that shows a list of emp

oci8 and tnsname

2002-01-18 Thread Yan Zhu
hey all, Has anyone used an Oracle thick client like oci8 to resolve a database name through tnsname file? I know you can do things like thin@ip:host:sid, but I need my jsp to be able to look up the names (since I do clustering), and I always get a tns look up error. I am running Oracle 8.1.7

iplanet web server and oci driver?

2002-01-21 Thread Yan Zhu
hey all, Has anyone successfully used oracle oci driver in iplanet web container? this is what I am trying to do: <%@ page import="java.util.*" %> <%@ page import="java.sql.*" %> <% String db_driver = "oracle.jdbc.driver.OracleDriver"; String username = "blah"; String password =

Re: oci8 and tnsname

2002-01-22 Thread Yan Zhu
I think I am doing exactly that. :( Nguyen Tra Linh wrote: > Hi Yan Zhu. > If you use JDBC thin, the connect string looks like: > lConnection conn = DriverManager.getConnection > ("jdbc:oracle:thin:uid/passwd@ip:port:sid"); > whereas in JDBC thick (OCI) the connect

Re: iplanet web server and oci driver?

2002-01-22 Thread Yan Zhu
TNSNAMES.ORA file to change the host name to a numeric IP address > and try again. > > - Original Message - > From: "Yan Zhu" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Monday, January 21, 2002 10:14 PM > Subject: iplanet web server and o

Re: Book

2002-01-28 Thread Yan Zhu
Web Development with Java Server Pages by Duane K. Fields and Mark A. Kolb     Konstantin Becker wrote:  Hi!I am new in JSP. I need a book about JSP. Can you help me? thanks Konstantin BeckerE-Mail: [EMAIL PROTECTED]Tel.:  (07231) / 155002Mobil: (0170) / 2409793---

Re: HTML/JSP/BEAN/XML

2000-11-24 Thread Yan Zhu
umm, first of, java bean, ( if we are not talking about ejbs) are a myth. There are no significant differences between java beans and java classes. If I remember correctly, there are only 3. Something like you have to have a constrcutor takes no parameters, you need to code public get and set

jsp object and javascript

2001-01-31 Thread Yan Zhu
hey all, is there a way to reference jsp java object inside of a javascript function? thanks yan === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] wi

Re: jsp object and javascript

2001-01-31 Thread Yan Zhu
EMAIL PROTECTED]] > Sent: Wednesday, January 31, 2001 8:01 AM > To: [EMAIL PROTECTED] > Subject: Re: jsp object and javascript > > I don't think so because your JSP objects are at the server side and > Javascript is at the client side. > > Seb > > > -Origi

Re: jsp object and javascript

2001-02-01 Thread Yan Zhu
Ha Ha! It worked! You guys are too cool! thanks yan Hung Yee wrote: > Here's some more details as to what is happening between jsp code and > javascript code: > http://thejspbook.com/faq/details.jsp?id=1003 > > -Original Message- > From: Yan Zhu [mailto:[E

jsp object(Param) and javascript

2001-02-01 Thread Yan Zhu
spbook.com/faq/details.jsp?id=1003 > > -Original Message- > From: Yan Zhu [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 31, 2001 6:47 PM > To: [EMAIL PROTECTED] > Subject: Re: jsp object and javascript > > really? wow, let me try that. > > "Konuru, Ra

Re: jsp object(Param) and javascript

2001-02-01 Thread Yan Zhu
Hung Yee wrote: > Javascript code on the client cannot access Java objects that were created > in the JSP page on the server! > but I did. In fact, I have a ejb created on a totally different server, and I got the remote interface, persisted that in http session, and called it from javascrip

Re: jsp object(Param) and javascript

2001-02-01 Thread Yan Zhu
7;s VALUE from jsp code to > javascript code, BUT not the object(i.e., variable) itself. Do not get > confused between a value returned by a method in a Java object with the Java > object itself - they're not the same thing. > > -Original Message- > From: Yan Zhu [mailto:[EMAI

design patterns

2001-02-02 Thread Yan Zhu
anyone has any suggestions about good books on design patterns for using java in a j2ee, enterprise enviorment? thanks yan === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest:

connection pooling

2001-02-14 Thread Yan Zhu
hey all, Has anyone implemented database conneciton pooling for jsp pages yet? Is this something I have to write myself or can I use the jdbc 2.0 extentions and connectionpool interface? If so, anyone has a sample I can take a look at ? thanks. yan ==

access to application scope object

2001-02-15 Thread Yan Zhu
hey all, how do you get access to a application scope object through servlet? or how do you get to the "applicaton" object? thanks yan === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". F

applet and servlet

2001-04-18 Thread Yan Zhu
hey guys, I am trying to dynamically update a page content based on server response. basically, I need javascript function access server side code. I know I can get javascript to talk to applet, so can I stick a invisible applet in the page, and make it talk to servl

help please!

2001-04-24 Thread Yan Zhu
hey all, I can't figure this out. I am using iPlanet web server 6.0. I loaded a applet in a jsp page, now, how do I call a public method of the applet in a javascript function? I know it can be done in a html page, but I can't seem to do the same thing within a jsp page. thank

question about import

2000-09-19 Thread Yan Zhu
hey all, hmm, I am using iPlanet web server (enterrpise edition) sp2. trying to write some jsps, here is my problem, in my page, I have something like this: <%@ page import="yan.test.*" %> then if I do this:

Re: question about import

2000-09-19 Thread Yan Zhu
really? according to the book i am read now, "web developement with java server pages", it should. thanks Hans Bergsten wrote: > Yan Zhu wrote: > > > > hey all, > > hmm, I am using iPlanet web server (enterrpise edition) sp2. > >

weblogic question

2000-09-21 Thread Yan Zhu
hey all, just starting up with weblogic 5.1 on solaris 2.7. Does weblogic itself contains all the necessary classes for j2ee? such as javax.ejb etc? I tried to complie some examples, the emp probject and it says package javax.ejb not found in import. should I install the j2ee sdk? thanks

Re: weblogic question

2000-09-21 Thread Yan Zhu
oops, sorry, wrong list. Angus Mezick wrote: > 1: THIS IS NOT A WEBLOGIC LIST! > > ok, now that that is done. > > Yup, weblogic contains all you need. One thing you might want to remember > is you need to include weblogicaux.jar in your classpath. > --Angus > Yan Zh

Re: Please help me with this!

2000-10-02 Thread Yan Zhu
session.setAttribute("myvar","test") something like this? Lorena Carlo wrote: > Hi everybody, > > Can somebody give me an example of declaring a variable in request scope > (servlet) in order to see it then in a JSP page?. > > Thanks in advance > > Lorena Carlo > > =

Re: mail by jsp

2000-10-07 Thread Yan Zhu
java mail, just need to get the .jar file then you are on your way. Muhammad Asim Ajmal wrote: > how can send the mail by the jsp page? which mail API of java can we > use plzzz help me by the refrance of some small example > > regards > asim > >

Re: JSP & iPLANET

2000-10-17 Thread Yan Zhu
easy, go to the admin page, tell it to enable jsp, then go to the classpath, and put your class path in there. "Venkatesh.Kesavan" wrote: > All, > > I am new to JSP. > > Can anyone let me know how to use JSP in iPlanet webserver. I am not able to > access the newly created classfiles in my jsp

Re: JSP with Bean

2000-10-25 Thread Yan Zhu
I think what might be happening is you have to update the classpath in your webserver. Duc Nguyen wrote: > Hi, > I am new to JSP. I created a jsp page that display a content of a table in > my data base which work fine. I took a further step to create a java bean > to handle all of mine conne

object pooler

2002-11-03 Thread Yan Zhu
does anyone have expeirence with a good object pooler in a web app enviornment? thanks yan === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with bod