Re: how to access servlet from the jsp page

2001-09-21 Thread David Gee (MAYA Design)
> yeah, it can be done with ASP because COM objects are put into the HTML > document using the tag, which is part of the DOM and can be > manipulated as such. JavaBeans never end up as objects in the rendered HTML > page, the tag is processed on the server and ripped out of the > rendered file.

Re: how to access servlet from the jsp page

2001-09-21 Thread David Gee (MAYA Design)
yeah, it can be done with ASP because COM objects are put into the HTML document using the tag, which is part of the DOM and can be manipulated as such. JavaBeans never end up as objects in the rendered HTML page, the tag is processed on the server and ripped out of the rendered file. View sourc

Re: how to access servlet from the jsp page

2001-09-21 Thread David Gee (MAYA Design)
> Dick, hey, there's no need for name-calling ;p > I can't imagine anyone ever trying to tie an event such as a rollover to a > server-side class. The network latency would make the UI not very > useable. What is supposed to happen on the UI when the rollover or click > event happens? actuall

Re: how to access servlet from the jsp page

2001-09-21 Thread David Gee (MAYA Design)
#x27;t need ;¬) The last time I did anything like tying events to user input I was using ActionListeners in applets. probably be too heavyweight a front end tho if you're after tying beans to javascript events. > -----Original Message- > From: David Gee (MAYA Design) [mailto:[EMAIL

Re: how to access servlet from the jsp page

2001-09-21 Thread David Gee (MAYA Design)
> Hi David, > > To use something similar to VBScript/COM objects in java you would use > JSP/JavaBeans. I know, I'm already (successfully) doing that. My problem is tying Javabean method calls into user events (clicks, rollovers, etc). This is possible with VBScript/COM, but I haven't been able t

Re: how to access servlet from the jsp page

2001-09-21 Thread David Gee (MAYA Design)
I've been trying to do something similar, with no luck. I know you can do this with ASP, as shown at: http://www.microsoft.com/downloads/search.asp? (view the source) but I've found no way of doing anything like this with JSP, which is a pretty serious shortcoming. It's a pity Javascript doesn'

Re: Unsubscribing

2001-09-19 Thread David Gee (MAYA Design)
would that include you? (and now me, too) david - Original Message - From: "Mike Viet" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 19, 2001 4:23 PM Subject: Re: Unsubscribing > CUPID,SHAME ON YOU F'IN MARON. > > I certainly agree with Richard, we should put a

Dynamic HTML/Javascript & JSP

2001-09-19 Thread David Gee (MAYA Design)
I'm looking for some resources on using DHTML/JavaScript with JSP. What I'm trying to do is call a method from a javascript event handler, ie: LINK TEXT where someFunction calls the Java method. here is some example code of what I have right now: <%@ page info="Portal Page" import="co