Re: Are taglibs working in tomcat4 ?????

2001-03-21 Thread Dmitri Namiot
It's not strange. The parser is complaining because the document does not conform to its declared DTD. That's what it's supposed to do. yes, you are right. This DTD formally dictates the order. So my correct question should sounds "Why?" Why do spec authors need this order (especially for

Re: Are taglibs working in tomcat4 ?????

2001-03-20 Thread Dmitri Namiot
It is a strange xml parser in your Tomcat 4. Do they think xml attribute value depends on its position? Like info before attribute is "info" and after that is nothing? __ Get your own FREE, personal Netscape Webmail account today at

Re: How to send attachment by email through JSP?

2001-03-09 Thread Dmitri Namiot
You may use an appropriate taglib from Coldjava's collection. See http://coldjava.hypermart.net/jsp.htm and http://coldjava.hypermart.net/servlets/sendmail.htm __ Get your own FREE, personal Netscape Webmail account today at

Re: general question

2001-02-19 Thread Dmitri Namiot
you should try this code instead % pageContext.setAttribute("A","test"); % % out.println(pageContext.getAttribute("A")); % this will print.. the value of "A" which is "test" yes, this is Ok of course. But the problem is: 1) I am creating a page scope object in the tag 2) code, generated by

Re: general question

2001-02-19 Thread Dmitri Namiot
You don't understand how to put things in the context. Page scope and method scope are two different things. % String A="test"; % puts things in the method only; not the page. The page has a context all its own (which you apparently know). When you declare See: I am creating an object in the

general question

2001-02-18 Thread Dmitri Namiot
a very simple test: % String A="test"; % % out.println(pageContext.getAttribute("A")); % prints null. If 'A' is not a 'page scope' object, than what is it ? :) Is it a bug (Tomcat,Resin) or a feature? The real problem is how to create objects in JSP tags with no way to know about already

How to execute/do not execute tagâs body?

2001-02-13 Thread Dmitri Namiot
Suppose I have a BodyTag. What do I need is to grab the body as it is, do some preprocessing and execute it only after that. I can pickup a body in doAfterBody() function and return EVAL_BODY there. But it means the body was executed once already. Is it possible to avoid this first execution? In

Re: jsp object(Param) and javascript

2001-02-02 Thread Dmitri Namiot
You could check out J2J - Java to Javascript integration tool: http://coldjava.hypermart.net/servlets/j2j.htm ServletShop: java server side programming http://coldjava.hypermart.net Get your own FREE, personal Netscape WebMail

Re: Chat software.

2000-12-28 Thread Dmitri Namiot
you may check out this: http://coldjava.hypermart.net/servlets/chat.htm ServletShop: java server side programming http://coldjava.hypermart.net Get your own FREE, personal Netscape WebMail account today at

Re: taglib for parse tag

2000-12-21 Thread Dmitri Namiot
You may see this for example: http://coldjava.hypermart.net/servlets.htm http://coldjava.hypermart.net/servlets/reqtag.htm ServletShop: java server side programming http://coldjava.hypermart.net Get your own FREE, personal

Re: Load Test

2000-12-09 Thread Dmitri Namiot
you could check out this also: http://coldjava.hypermart.net/servlets/stress.htm ServletShop: java server side programming http://coldjava.hypermart.net Get your own FREE, personal Netscape WebMail account today at

[ANN] JSOS 1.75 major new release

2000-12-04 Thread Dmitri Namiot
Coldjava announced the major new release of Java Servlets Office Suite (JSOS). 30+ "out-of-the-box" components on the base of Java Servlets and Java Server Pages can be used for fast assembling web sites (services) on the base of J2EE. JSOS has a rich set of components such as Message Board,

Re: How Client Side JavaScript call serverside JSP or Servlet

2000-11-21 Thread Dmitri Namiot
check out J2J tool: http://coldjava.hypermart.net/servlets/j2j.htm It is a development tool lets you to integrate Java classes and JavaScript within your HTML pages. The main idea behind this product is how to call methods of Java classes right from JavaScript functions. ServletShop: java

Re: where to learn about JSP based dynamic web applications?

2000-11-08 Thread Dmitri Namiot
you may check out Java_To_JavaScript tool: http://coldjava.hypermart.net/servlets/j2j.htm It is a development tool lets you to integrate Java classes and JavaScript within your HTML pages. The main idea behind this product is how to call methods of Java classes right from JavaScript functions.

Re: Sending JSP output to a different stream

2000-10-11 Thread Dmitri Namiot
you can do this through custom tag lib. E.g. check out what we did for WAP/non-WAP output: http://coldjava.hypermart.net/servlets/wmltags.htm ServletShop: java server side programming http://coldjava.hypermart.net Get your

Re: JSP JavaBeans and WML

2000-09-27 Thread Dmitri Namiot
check out http://coldjava.hypermart.net/servlets.htm for JSP tools for WML developers ServletShop: java server side programming http://coldjava.hypermart.net Get your own FREE, personal Netscape WebMail account today at

[ANN] Stress tool - test your servlets/JSP

2000-09-25 Thread Dmitri Namiot
Stress tool for your web applications. Lets you to test your servlets/JSP pages. Supports sessions simulation, so you may test your real applications. Available on Coldjava site: http://coldjava.hypermart.net/servlets/stress.htm ServletShop: java server side programming

Re: Is there a tool to convert HTML TO WML ??

2000-09-22 Thread Dmitri Namiot
check out http://coldjava.hypermart.net for H2W servlet and escape taglib ServletShop: java server side programming http://coldjava.hypermart.net Get your own FREE, personal Netscape WebMail account today at

[Ann] Request taglib

2000-08-29 Thread Dmitri Namiot
HttpRequest taglib: JSP tags library. Allows you to proceed GET/POST requests to to the specified host (cgi-script/servlet). So you can for example obtain contents of some page and use extracted information in your own jsp page. Taglib may be useful for portal developers for example. See:

[ANN] JSP taglib for WAP/WML developers

2000-06-26 Thread Dmitri Namiot
JSP taglib (wmltags 1.0) for WAP/WML developers is available on http://coldjava.hypermart.net ServletShop: java server side programming http://coldjava.hypermart.net Get your own FREE, personal Netscape WebMail account today

Re: JSP/WML

2000-06-26 Thread Dmitri Namiot
also check out http://coldjava.hypermart.net for WAP/WML taglib and Java servlets supports WML ServletShop: java server side programming http://coldjava.hypermart.net Get your own FREE, personal Netscape WebMail account today

PageContext ?

2000-06-20 Thread Dmitri Namiot
Hello, developing own tag I can obtain ServletRequest: ServletRequest req=pageContext.getRequest() But how can I get HttpServletRequest ? I need to access to the header (HttpServletRequest.getHeader()) within my tag. thank you, Dmitry. ServletShop: java server side programming

Re: Calendar Server

2000-06-16 Thread Dmitri Namiot
check out http://coldjava.hypermart.net ServletShop: java server side programming http://coldjava.hypermart.net Get your own FREE, personal Netscape WebMail account today at http://webmail.netscape.com.

Re: SWING FWATURES IN JSP

2000-05-20 Thread Dmitri Namiot
check out simple tree servlet on http://coldjava.hypermart.net/servlets/tree.htm ServletShop: java server side programming http://coldjava.hypermart.net Get your own FREE, personal Netscape WebMail account today at

[ANN] Java servlets office suite

2000-05-17 Thread Dmitri Namiot
Coldjava implemented version 1.46 of Servlets Office Suite (Java SOS). Java SOS is a collection of "out of the box" Java servlets ready for building Web pages. SOS plays the same role as a set of CGI scripts and can be used to add dynamic capabilities to Web sites. It's free for any

Very urgent

2000-05-13 Thread Dmitri Namiot
you can use some like SELECT id="mySelect" style="WIDTH:120" But it works for IE only (I am not sure about Netscape 6). ServletShop: java server side programming http://coldjava.hypermart.net Get your own FREE, personal

Re: JSP on CD

2000-05-11 Thread Dmitri Namiot
You can use 2.2 container, supports WAR files. ServletShop: java server side programming http://coldjava.hypermart.net Get your own FREE, personal Netscape WebMail account today at http://webmail.netscape.com.

Re: Java appet https

2000-05-11 Thread Dmitri Namiot
check out http://coldjava.hypermart.net/servlets/j2j.htm == Hello, is it possible to send form-data to java server pages from Java applets? I have the following constraints: 1. JSP is running in a https server 2. I can't use java 1.2 plugin I

Re: Multiple values from a select menu with request.getParameter ?

2000-05-05 Thread Dmitri Namiot
in html: use keyword multiple select name="mylist" multiple option1-st/option option2-nd/option ... /select in JSP/servlet request.getParameter("mylist") You will selected values, splited by commas. ServletShop: java server side programming http://coldjava.hypermart.net

Re: Mail servlet

2000-05-03 Thread Dmitri Namiot
check out this: http://coldjava.hypermart.net/servlets/formmail.htm ServletShop: java server side programming http://coldjava.hypermart.net Get your own FREE, personal Netscape WebMail account today at

Re: How to dynamicaly include files in jsp, not using %include file=filename%?

2000-04-21 Thread Dmitri Namiot
Use: jsp:include page=... jsp:include is processed at the request time. ServletShop: java server side programming http://coldjava.hypermart.net Get your own FREE, personal Netscape WebMail account today at

Re: returning large resultsets

2000-04-01 Thread Dmitri Namiot
you can use applet bridge for calling your server-side classes from JavaScript. It works on the top of HTTP and Ok with firewalls. See http://coldjava.hypermart.net/servlets/j2j.htm Another way of doing it would be to use an applet and have the CORBA connectivity directly between the browser and

Re: Model 2 questions

2000-03-28 Thread Dmitri Namiot
While I understand the benefits of using request instead of session, I cannot figure out the syntax on JSP to get the request, i.e. if Action class stores response class in request and not in session. Is it just the same as for session, i.e. instead of calling session.getAttribute we

Re: JSP or Servlet and Connection Pool

2000-03-15 Thread Dmitri Namiot
Take a look at DBPool.class on http://coldjava.hypermart.net ColdJava: java server side programming http://coldjava.hypermart.net Get your own FREE, personal Netscape WebMail account today at http://webmail.netscape.com.

Re: Java in javscript

2000-03-15 Thread Dmitri Namiot
take a look at J2J servlet on http://coldjava.hypermart.net --- Hi All, Do we need to have live connect or something equivalent to call Java methods in JavaScript? I have tried with the code as mentioned in the mail using internet explorer.

Re: sendRedirect or forward?

2000-03-15 Thread Dmitri Namiot
sendRedirect() causes a "call-back" to the client and returns back with the new page. Hi, I am curious, using JSP and all..is it better to FORWARD to another page, or use the response.sendRedirect(). I notice a strange side effect in using the forward in that the URL of the browser no

Re: Email question

2000-03-13 Thread Dmitri Namiot
have look at FormMail Servlet on http://coldjava.hypermart.net - Hi, I'm making a site that sends postcards, I've done most of the stuff quite easily but need to send an email to the recipient. How do I do this within a JSP page. I'd rather code the email

Re: Display PROBLEM in text fields for JSP

2000-03-13 Thread Dmitri Namiot
try to use ": value="%=table.getCity()%" -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Sivakumar S Sent: Sunday, 27 February 2000 10:47 To: [EMAIL PROTECTED] Subject: Display PROBLEM in text fields for

[ANN] J2J: Java to JavaScript integration

2000-03-09 Thread Dmitri Namiot
J2J version 1.2 is available for download from http://coldjava.hypermart.net J2J lets you to have access to server side java objects directly from within your JavaScript applications. ColdJava: java server side programming http://coldjava.hypermart.net

Re: Calendar Servlet or JSP

2000-03-05 Thread Dmitri Namiot
have look CalendarServlet at http://coldjava.hypermart.net -- Hi, I am looking for a ready-to-use Calendar Servlet or JSP source code. I would appreciate you sharing any information that you might be having. Thankyou. cheers, Amar..

Re: Java in javascript

2000-02-27 Thread Dmitri Namiot
yes, you can use your results as a strings in JavaScript. P.S. also see J2J servlet on http://coldjava.hypermart.net It what you are looking for. --- Hi, I also want to know if this is possible. Does javascript recognises the return values from java

Re: Html - Servlet

2000-02-13 Thread Dmitri Namiot
yes, you can create form with hidden fields and use form.submit(); in JavaScript a href="javascript:your_func();".../a script language="JavaScript" function your_func() { ... document.forms.your_form.submit(); } /script - Hi, Can a form be posted

Re: javascript and jsp

2000-02-06 Thread Dmitri Namiot
JavaScript is client side issue. So you need to transfer this variable to server by some way. One of solutions you can see at http://coldjava.hypermart.net It is J2J servlet. ColdJava: java server side programming http://coldjava.hypermart.net

Re: how I can access DB

2000-02-05 Thread Dmitri Namiot
check out DBpool class at http://coldjava.hypermart.net ColdJava: java server side programming http://coldjava.hypermart.net Get your own FREE, personal Netscape WebMail account today at http://webmail.netscape.com.

Re: Graphs using JSP

2000-02-03 Thread Dmitri Namiot
just use table and appropriate columns width td width ... -Original Message- From: SANJEEVMITTAL [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 02, 2000 3:09 AM To: [EMAIL PROTECTED] Subject: Graphs using JSP? Hi Friends, Can we generate graphs using JSP? Lets say, I

Re: New article: The Problems with JSP

2000-01-28 Thread Dmitri Namiot
100% agree with Geoff being so far away from .au domain but sharing the same idea we developed alaJSP tool :-) - Just like to add my 2c on this topic: [note: this is my opinion: please don't be offended] One of the main problems with JSP is it's

Re: [Re: New article: The Problems with JSP]

2000-01-28 Thread Dmitri Namiot
as for me it is not a problem "copying" the ASP format ..." But from my opinion it is not enough. The good stuff from ASP is a database integration (I do not talk here about quality of that, do not flame please :-). ADO it is a first stuff why people are using ASP (again, it is my opinion and

Re: development decision

2000-01-19 Thread Dmitri Namiot
Just one of solutions: From your html page (from JavaScript) you can call public methods of your applet. This applet talks with servlet and uses this servlet as a bridge to your server side application. In our case we are implementing some RPC for server side java classes. So applet returns some

Re: How to access a JAVASCRIPT method within JSP

2000-01-18 Thread Dmitri Namiot
can i access a javascript method within jsp... one of solutions you can see at http://coldjava.hypermart.net J2J servlet lets you call server side java from JavaScript ColdJava: java server side programming http://coldjava.hypermart.net

[ANN] alaJSP preprocessor ver. 1.45

2000-01-07 Thread Dmitri Namiot
We are pleased to announce that ColdJava implemented next version of our preprocessor alaJSP. This development tools allows you to directly use Java classes from your HTML pages. alaJSP is available for download from: http://coldjava.hypermart.net ColdJava: java server side programming

Re: jsp javascript..

1999-12-28 Thread Dmitri Namiot
also have look at alaJSP on http://coldjava.hypermart.net ColdJava: java server side programming http://coldjava.hypermart.net Get your own FREE, personal Netscape WebMail account today at http://webmail.netscape.com.

Re: Query on JSP !!

1999-11-24 Thread Dmitri Namiot
Agreed, reading JSP pages is not an easy deal. So why we are developed our alaJSP stuff. You can treat it as a "simplified" JSP and in the same time avoid using separate templates. - Well, we got a bit different view: servlet in its nature has

Re: Cold Fusion

1999-11-11 Thread Dmitri Namiot
but Jrun now has got some subset of CF -tags. See developer forums on the Allaire site. vendor also check out our products alaJSP at http://coldjava.hypermart.net In some terms it is similar to CF but it is a 100% Java (servlet). /vendor My development group uses JRun. Another group we work

Visibility of form element values to JSP scriptlet

1999-11-09 Thread Dmitri Namiot
have look at alaJSP stuff on our site. It is a preprocessor. So all Java calls will be compiled into HTML itself. And you can mix Java/JavaScript in your pages. That is a main idea behind this product. Hi all, I was wondering whether the form element's values are directly visible

Re: JSP vs Servlets?

1999-11-09 Thread Dmitri Namiot
the real good stuff in ASP in not VB code in HTML pages. What most of people are using is ADO. I can have easy connectivity to the different data source, connection pool by default etc. etc. 4. Because of JSP's tendency to look like Microsoft Active Server Pages, ASP, in many respects, it is

Re: [Re: when to use Bean !!!]

1999-10-27 Thread Dmitri Namiot
ot; [EMAIL PROTECTED] wrote: Dmitri Namiot wrote: looks like very logical and clear model, but see: you submit your forms to servelt. (I also like one servlet per application, just more easy to maintain). So your logic (application logic) is supported by servlet. What in that case the added valu

Re: Getting the Locale from the Browser

1999-10-27 Thread Dmitri Namiot
this header ("Accept-Language") may not be included. It depends on you browser settings (see preferences). Enumeration e = request.getHeaderNames() while (e.hasMoreElements()) { String KeyValue = (String) e.nextElement(); if (KeyValue.equals("Accept-Language") //

Re: when to use Bean !!!

1999-10-26 Thread Dmitri Namiot
looks like very logical and clear model, but see: you submit your forms to servelt. (I also like one servlet per application, just more easy to maintain). So your logic (application logic) is supported by servlet. What in that case the added value from JSP-beans to web-application ? Yes, we have

Re: Session Tracking and GNUJSP?

1999-10-15 Thread Dmitri Namiot
It means you have got different sessions for you LoginServlet and servlet you redirect to. ColdJava: java server side programming http://coldjava.hypermart.net Get your own FREE, personal Netscape WebMail account today at

Re: NAS - javascript.

1999-10-08 Thread Dmitri Namiot
Hello, JSP is a server side based stuff, JavaScript is a client based. Maybe you need to check your design solutions ? P.S. or by the way have look at the product from the letter you initially reply :-) It is what alaJSP for. No page compilation, just preprocessing and your JavaScript will be

[ANN] alaJSP - jsp-similar preprocessor ver 1.34

1999-10-07 Thread Dmitri Namiot
We are pleased to announce that ColdJava implemented next version of our preprocessor alaJSP It is available for download from: http://coldjava.hypermart.net alaJSP allows you to use java objects within your html-pages. What is new in 1.34: * conditional preprocessing

Re: returning a value from bean ?

1999-09-23 Thread Dmitri Namiot
That depends on engine I think. Looks like GNU JSP can do that. P.S. have look at alaJSP stuff - also reloads classes without restart. Hi, I have tried changing the method name also. I have one more question. Might have been discussed in this forum. This is about the caching of the bean. I

usebeans as java interfaces - how ?

1999-09-14 Thread Dmitri Namiot
Hi Olga, you can not create instance of interface in Java. You have to have non-abstract class. But you can use some like that for existing beans: jsp:useBean id="yourBean" scope="yourScope" type="yourInterface" / -- I'd like to be able to use

Re: Thoughts on the usage of Java Beans in JSP

1999-09-14 Thread Dmitri Namiot
agreed. That is a why we are developing/using our own stuff: alaJSP have look at http://coldjava.hypermart.net http://coldjava.hypermart.net/servlets/alaJSP.htm - translated to HTML text (not to servlet) - script language is still JavaScript - allows to use any java classes (at the first

[ANN] jsp-similar preprocessor alaJSP ver 1.31

1999-09-07 Thread Dmitri Namiot
ColdJava is proud to announce the release 1.31 of alaJSP processor. You can download last version from our site: http://coldjava.hypermart.net ColdJava: java server side programming http://coldjava.hypermart.net Get your

Re: Handling The Browser Back Button, et al (tms)

1999-08-18 Thread Dmitri Namiot
just redirect your page after user hit submit. In that case pressing 'Back' just return to redirected page. I think it is a standard techniques. ColdJava: java server side programming http://coldjava.hypermart.net Get your own

[ANN] alaJSP ver 1.27 - JSP similar servlet

1999-08-05 Thread Dmitri Namiot
you are welcome to download last version of alaJSP servlet from ColdJava site: http://coldjava.hypermart.net java servlet allows you to mix java and HTML objects. ColdJava: java server side programming http://coldjava.hypermart.net

Re: jsp:useBean How do I use a constructor with parameters????

1999-07-17 Thread Dmitri Namiot
yes, it is a bad restriction and that follows from the bean definition. So now you should be able only run zero-arg constructor and set parameters after that via separate calls (some like setSomething(...) Regards, Dmitry P.S. by the way, see our alaJSP stuff: http://coldjava.hypermart.net

[ANN] JSP-similar processor alaJSP

1999-07-06 Thread Dmitri Namiot
JSP-similar processor alaJSP ver. 1.21 http://coldjava.hypermart.net Get your own FREE, personal Netscape WebMail account today at http://webmail.netscape.com.

[ANN] alaJSP - jsp-similar preprocessor ver 1.38

1999-01-02 Thread Dmitri Namiot
We are pleased to announce that ColdJava implemented next version of our preprocessor alaJSP. It is available for download from: http://coldjava.hypermart.net alaJSP is yet another way to use java objects within your html-pages. ColdJava: java server side programming