Re: basic problem

2000-05-19 Thread Uwe Hanisch
> Your username > Your Passowrd two times name attribute? Should be: Your username Your Passowrd Regards Uwe === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP

Re: Mailing

2000-05-19 Thread Uwe Hanisch
Som Subhra Chakraborty wrote: > > Hi All, > > I have a list of users with links associated with each. I want to send > email (with predefined subject & message body) to the user whose name is > clicked. The person who is clicking will not know anything about that the > mail is sent, i.e., no dialo

Re: SWING FWATURES IN JSP

2000-05-19 Thread Uwe Hanisch
It seems that at least all JavaScript tree build on the Folder Tree Script. The free version 2.0 is still available: http://www.geocities.com/Paris/LeftBank/2178/foldertree.html For current commercial release 4.5 see: http://classical.red.net/essence/foldertree/ Bye, Uwe ==

[TAGLIB] Emulation of JSP 0.92 LOOP tag?

2000-05-19 Thread Uwe Hanisch
Did anyone wrote a own loop tag in JSP 1.1., which emulate JSP 0.92 LOOP tag? Exists there a free version of it? This tag should be part of standard taglib library. regards, Uwe Hanisch === To unsubscribe: mailto [EMAIL

Re: [TAGLIB] Emulation of JSP 0.92 LOOP tag?

2000-05-22 Thread Uwe Hanisch
Scott Stirling wrote: > Go to www.taglibs.com and look around. "Coming Soon!" "We recently registered our domain name at..." Mmm, may be a good tip for the future. > The JRun 3.0 custom taglib has some > flow control tags like IF, CASE, SELECT, etc. Well, I have had a look at JRun 3.0 Beta and

Re: interesting read

2000-05-23 Thread Uwe Hanisch
Just holding a big Coca-Cola bottle in my hand I think this article is really true! But why in hell should I live without fun? I mean to write good software you need much coca and many pizza's. At the end this has nothing to do with the topic of this newsgroup and JSP! Regards Uwe

Re: [TAGLIB] Emulation of JSP 0.92 LOOP tag?

2000-05-23 Thread Uwe Hanisch
Scott Stirling wrote: > > Whoops! I meant www.jsptags.com. Sorry about that. Thanks! I have already found this link. > I have to disagree. The JRun 3.0 taglib is freely available and can be > downloaded separate from the JRun product. The JRun taglib is pure Java > with no proprietary extensi

Re: [TAGLIB] Emulation of JSP 0.92 LOOP tag?

2000-05-23 Thread Uwe Hanisch
Wuups, well, sorry, I have just realised that you are from allaire. > 1. Where did you read that JRun 3.0 is not freely available? > 1. Where did you read that the JRun 3.0 taglib is not freely > available? Well, JRun is not licensed under the LGPL. I did not found the actual license yet. The on

Re: JSP tag library and bean

2000-05-23 Thread Uwe Hanisch
Christian Billen wrote: > > Hi, what would be the best approach to call a custom tag library passing a > bean property as a parameter? we are running Weblogic 5.1 > > Take for example: > > items=""/> I have just another idea. Set in your tld to "true": items true

Re: JSP tag library and bean

2000-05-23 Thread Uwe Hanisch
Christian Billen wrote: > > Hi, what would be the best approach to call a custom tag library passing a > bean property as a parameter? we are running Weblogic 5.1 > > Take for example: > > items=""/> Did you try direct accessing your bean with an jsp expression?: /> Uwe ==

Re: Tag Lib Implementation Using JavaWebServer2.0

2000-05-25 Thread Uwe Hanisch
> <%@ taglib uri="mytags.jar" prefix="mt" %> <%@ taglib uri="/PATH_TO_TLD/mytags.tld" prefix="mt" %> "The Tag Library Descriptor (TLD) is an XML document that describes a tag library." [mapping between tag name and class name as well as description of tag attributes] See "JavaServer Pages 1.1 S

Re: Help - error in compiling JSP file

2000-05-25 Thread Uwe Hanisch
In Servlet 2.2 getAttribute(String) replaces getValue(String). JRun 2.3.3 supports Servlet 2.1. JRun 3.0 rc 1 supports Servlet 2.2 + JSP 1.1 ==> Use getValue(String) or Use JRun 3.0 rc 1 Uwe === To unsubscribe: mail

[TAGLIB] tld header: JRun 3.0rc1 vs. Tomcat 3.1

2000-05-26 Thread Uwe Hanisch
Wrote my own taglib, works fine in JRun 3.0rc1 and in Tomcat 3.1 with one exception: Tomcat 3.1 requires including following !DOCTYPE tag: http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd"> JRun 3.0 rc1 don't like it. But JRun works Without any !DOCTYPE in TLD. --

Re: Good IDE for JSP?

2000-05-26 Thread Uwe Hanisch
Ben Joyce wrote: > > Hi. what are we all using for building JSP scripts? Is there anything > available similar to MS Interdev (ASP) ? Notepad's good but... JRun Studio 3.0 - just in beta stage. (see http://beta.allaire.com) It is a modified HomeSite. Uwe =

Re: subscription to your mailing list.

2000-05-30 Thread Uwe Hanisch
Ben Joyce wrote: > Does anyone know a good mailing list for general Java programming, rather > than JSP? Try newsgroup comp.lang.java.programmer. Uwe === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTE

Re: Tags in jswdk-1.0.1

2000-06-02 Thread Uwe Hanisch
> I want to know whether jswdk-1.0.1 supports custom tags implementation. > Tell me other jsp engines which support tags implementation. jswdk-1.0.1 doesn't support this, because tag lib is supported since JSP API 1.1. jswdk-1.0.1 uses Servlet API 2.1 und JSP 1.0.1. Try Tomcat ( since Servlet 2.

Re: JSP1.0 and JSP1.1

2000-06-13 Thread Uwe Hanisch
JSP 1.0 needs Servlet 2.1. JSP 1.1 needs Servlet 2.2. significant differences: - Introduction of web application concept in Servlet 2.2 - Introduction of tag library concept in JSP 1.1 (opportunity of writing your own portable tags ) What's new in Java Servlet API 2.2? see: http://www.javaw

Re: response.sendRedirect

2000-06-28 Thread Uwe Hanisch
a return statement after sendRedirect should help. response.sendRedirect(URL); return; Uwe === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found

Re: WebServer Source Code

2000-06-28 Thread Uwe Hanisch
Ritesh_Srivastava wrote: > where is this decompiler available. http://www.geocities.com/SiliconValley/Bridge/8617/jad.html === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on

Re: Session timeout

2000-06-28 Thread Uwe Hanisch
anderson wrote: > Hi, > How can I do a connection pool ? I'm using a simple > oracle connection when the session starts. How about using a search mashine? For instance a search with altavista ( +Java +JDBC +Connection +Pool +Class ) results among others: http://webdevelopersjournal.com/co