RE: When are tags executed?

2004-08-11 Thread Ross, Douglas
You could also use the XMLHttpRequest or the DOMDocument object to load xml requests without refreshing the page. We use these for loading trees. -Original Message- From: Helios Alonso [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 11, 2004 2:13 PM To: Tag Libraries Users List Subject:

Re: When are tags executed?

2004-08-11 Thread Helios Alonso
Weird idea (but it tries to Keep It Simple): replace the Java Applet with a HTTP request, it is: when your Javascript wants to validate something, create a window (small, invisible, 0 pixel frame, or something) with a URL requesting validation like: www.server.com/validating/data?value1=xxx&value

RE: When are tags executed?

2004-08-11 Thread Ross, Douglas
Communication between JavaScript and Applet's running the browser is tennuous at best. If it worked before the SP, my guess is the problem is security related. You need to determine if the applet is still receiving JavaScript messages. Then you need to determine if the applet is able to reply back

RE: When are tags executed?

2004-08-11 Thread Simon Benzekri
When you say real time validation's Do you mean that all your validation is javascript?. -Original Message- From: michael [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 11, 2004 10:48 AM To: Tag Libraries Users List Subject: Re: When are tags executed? The tags are used to create th

Re: When are tags executed?

2004-08-11 Thread michael
At 07:41 AM 8/11/2004, you wrote: The problem is we currently have a web app that has a jsp's JavaScript communicating with an applet that can query a database. You have a JavaScript on an HTML page communicating with an applet that can query a database. That is important. There are no client s

Re: When are tags executed?

2004-08-11 Thread Don Albertson
Karl Coleman wrote: Can someone explain when tags are executed? Namely, custom tags and the tag. The problem is we currently have a web app that has a jsp's JavaScript communicating with an applet that can query a database. It allows us to do real-time validation against database values. We know

Re: When are tags executed?

2004-08-11 Thread michael
The tags are used to create the response. So, they are executed during the creation of the response. I hope that helps. At 07:41 AM 8/11/2004, you wrote: Can someone explain when tags are executed? Namely, custom tags and the tag. The problem is we currently have a web app that has a jsp's J

When are tags executed?

2004-08-11 Thread Karl Coleman
Can someone explain when tags are executed? Namely, custom tags and the tag. The problem is we currently have a web app that has a jsp's JavaScript communicating with an applet that can query a database. It allows us to do real-time validation against database values. We know it is bad design.

Re: can i call a java class in jstl?

2004-08-11 Thread Helios Alonso
Sorry, myMethod only executes if it's some bean property accesor, otherwise it's an error (EL is for bean evaluation, only, at least in a ). So the bean constructor approach is the working one. At 10:27 11/08/2004 +0800, you wrote: --- Helios Alonso <[EMAIL PROTECTED]> µÄÕýÎÄ£º > In the first