RE: java/jsp dynamic data

2003-02-13 Thread Jim Henderson
is a little fuzzy. Can someone clarify this? -Original Message- From: Mike Jackson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 11, 2003 4:31 PM To: Tomcat Users List Subject: RE: java/jsp dynamic data You could look into doing an applet with rmi back to the server it came from. Or do

RE: java/jsp dynamic data

2003-02-13 Thread Barney Hamish
-Original Message- From: Jim Henderson [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 13, 2003 3:46 PM To: 'Tomcat Users List' Subject: RE: java/jsp dynamic data I have wondered about using RMI over the Internet before. I have an in house WEB Start application that uses RMI

Re: java/jsp dynamic data

2003-02-13 Thread Will Hartung
From: Barney Hamish [EMAIL PROTECTED] Sent: Thursday, February 13, 2003 6:54 AM Subject: RE: java/jsp dynamic data I saw an interesting article about this recently about using javascript to do RPC using an iframe. You could either use this as a pure HTML solution or use it in conjunction

Re: java/jsp dynamic data

2003-02-11 Thread Jake Robb
You can have your users turn down their browser security settings, and then the applet has free reign. Of note: I have an applet that accesses data from a remote host, and Internet Explorer lets it run with normal security settings. -Jake - Original Message - From: Jeff Ousley [EMAIL

RE: java/jsp dynamic data

2003-02-11 Thread Tim Moore
It sounds like you'll need to use an applet. By default, an applet can connect back to the host that you downloaded it from, so if that's all you need, you're set. Otherwise, it's still possible, but you'll need to sign the applet and the users will have to grant it permission to access the

Re: java/jsp dynamic data

2003-02-11 Thread Mark
Have a peek at pushlet technology. Sounds like it's geared toward what you're looking for: http://www.javaworld.com/jw-03-2000/jw-03-pushlet.html At 2/11/2003 12:08 PM, you wrote: All, I'm sorry to bring this up again, but I'm just not seeing clearly and maybe someone here could help. I need

RE: java/jsp dynamic data

2003-02-11 Thread Turner, John
That looks REALLY interesting...thanks for the pointer. John -Original Message- From: Mark [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 11, 2003 3:18 PM To: Tomcat Users List Subject: Re: java/jsp dynamic data Have a peek at pushlet technology. Sounds like it's geared

Re: java/jsp dynamic data

2003-02-11 Thread Erik Price
Jeff Ousley wrote: I though maybe an applet would suit my needs, but it needs to access data on remote hosts. Doesn't the applet security prevent this? Have the applet consult the originating server for data, and have the originating server do the work of querying the remote server. Erik

Re: java/jsp dynamic data

2003-02-11 Thread Will Hartung
From: Turner, John [EMAIL PROTECTED] Sent: Tuesday, February 11, 2003 12:26 PM Subject: RE: java/jsp dynamic data That looks REALLY interesting...thanks for the pointer. Yeah, this does look interesting. I happen to be neck deep on something like this (it's next on my stack). I had

RE: java/jsp dynamic data

2003-02-11 Thread Mike Jackson
You could look into doing an applet with rmi back to the server it came from. Or do an EJB message bean, where the message queue is the server that the applet came from (don't know if you can do this, but it's like that you can). --mikej -=- mike jackson [EMAIL PROTECTED] -Original