Most secure browsers require the applet to be signed..then you will have to have to acquire a Certificate which travels with the applet which contains a valid authenticatication lease to a Certificate Server ..The long and short is there are alot worse things than having Javascript enabled..

Martin Gainty

______________________________________________

Disclaimer and confidentiality note

Everything in this e-mail and any attachments relating to the official business of Laconia Data Systems (LDS) is proprietary to the company. It is confidential, legally privileged and protected by law. LDS does not own and endorse any other content. Views and opinions are those of the sender unless clearly stated as being that of LDS.

The person addressed in the e-mail is the sole authorised recipient. Please notify the sender immediately if it has unintentionally reached you and do not read, disclose or use the content in any way.

LDS can not assure that the integrity of this communication has been maintained nor that it is free of errors, virus, interception or interference.

             _______________________________________________

 

>From: Paul Copeland <[EMAIL PROTECTED]>
>Reply-To: A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: Re: jsp & javascript
>Date: Tue, 27 Aug 2002 15:16:33 -0700
>MIME-Version: 1.0
>Received: from mc2-f23.law16.hotmail.com ([65.54.237.30]) by mc2-s15.law16.hotmail.com with Microsoft SMTPSVC(5.0.2195.4905); Tue, 27 Aug 2002 15:31:30 -0700
>Received: from swjscmail2.java.sun.com ([192.18.99.108]) by mc2-f23.law16.hotmail.com with Microsoft SMTPSVC(5.0.2195.4905); Tue, 27 Aug 2002 15:18:51 -0700
>Received: from swjscmail1 (swjscmail1.Sun.COM [192.18.99.107])by swjscmail2.java.sun.com (Postfix) with ESMTPid 9158B224AF; Tue, 27 Aug 2002 16:14:22 -0600 (MDT)
>Received: from JAVA.SUN.COM by JAVA.SUN.COM (LISTSERV-TCP/IP release 1.8d) with spool id 2640480 for [EMAIL PROTECTED]; Tue, 27 Aug 2002 16:12:33 -0600
>Received: from postoffice.inreach.com (postoffice.inreach.com [209.142.2.45]) by swjscmail1.java.sun.com (Postfix) with ESMTP id 58C0B480E for <[EMAIL PROTECTED]>; Tue, 27 Aug 2002 16:12:32 -0600 (MDT)
>Received: from jotobjects.com ([66.241.93.124]) by postoffice.inreach.com (Post.Office MTA v3.5.3 release 223 ID# 0-68376U62000L6200S0V35) with ESMTP id com for <[EMAIL PROTECTED]>; Tue, 27 Aug 2002 15:16:43 -0700
>Delivered-To: [EMAIL PROTECTED]
>X-Mailer: Mozilla 4.76 [en]C-CCK-MCD NSCPCD476 (Win95; U)
>X-Accept-Language: en
>References: <[EMAIL PROTECTED]>
>Message-ID: <[EMAIL PROTECTED]>
>Sender: A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]>
>Organization: JOT Object Technologies
>Return-Path: [EMAIL PROTECTED]
>X-OriginalArrivalTime: 27 Aug 2002 22:18:52.0603 (UTC) FILETIME=[B9AB70B0:01C24E17]
>
>Or just return a 204 HTTP Status Code and you don't have to go into the
>Hidden Frame stuff perhaps.
>
>Paul Copeland, JOT Object Technologies -- http://www.jotobjects.com
>
> >
> > Date: Fri, 23 Aug 2002 22:46:48 -0600
> > From: Walter Meyer <[EMAIL PROTECTED]>
> > Subject: Re: jsp & javascript
> >
> > Not to be an ass, but what if you write and applet but they disable java?
> > Does your company have any type of browser rules? There's only so much
> > hand holding that you can should be expected to do.
> >
> > "If you make it idiot proof, someone will make a better idiot."
> >
> > I'm not sure exactly what you're trying to do. What happens after the
> > data is sent to the server? Do you need to send data to the server without
> > reloading the page?
> >
> > One way to send the data to the server would be to store the javascript
> > array in a hidden form field and submit the form to the server. If the
> > form is in an inline or hidden frame, you can do all of this without
> > reloading the page the user sees.
> >
> > Am I on the right track?
> >
> > Walt
> >
> > ---- Sohaila Roberts <[EMAIL PROTECTED]>wrote:
> > > This app is local to my department. If they turn off javascript they
> > > will
> > > come to me asking 'why isnt it working'.
> > >
> > > I'm just going to use an applet-servlet method now, I was misinformed
> > > on
> > > how jsp would help me.
> > >
> > > Thanks
> > >
> > > On Fri, 23 Aug 2002, techhead4life wrote:
> > >
> > > > well what if they disable javascript from the browser what do u use
> > > then?
> > > >
> > > > ----- Original Message -----
> > > > Wrom: ALPTCXLYRWTQTIPWIGYOKSTTZRCLBDXRQBG
> > > > To: <[EMAIL PROTECTED]>
> > > > Sent: Friday, August 23, 2002 1:23 PM
> > > > Subject: Re: jsp & javascript
> > > >
> > > >
> > > > > You can't execute Java code from an HTML page without going through
> > > an
> > > > > applet
> > > > > to do it. Java code in a JSP executes on the server side to help
> > > create
> > > > the
> > > > > web page that is sent to the browser. On the client side, if you
> > > don't
> > > > use
> > > > > an applet, the best you can hope for is to try to make JavaScript
> > > > > do what you want, but, as you know, JavaScript isn't Java.
> > > > >
> > > > > Duane Morse, Eldorado Computing Inc., Phoenix, Arizona
> > > > >
> > > > >
> > > > > -----Original Message-----
> > > > > Wrom: JSNBOHMKHJYFMYXOEAIJJPHSCRTNHGSWZIDREXCAXZOWCONEUQZA
> > > > > Sent: Friday, August 23, 2002 10:05 AM
> > > > > To: [EMAIL PROTECTED]
> > > > > Subject: jsp & javascript
> > > > >
> > > > >
> > > > > Hi, i have a jsp page which includes javascript. in one of my javascript
> > > > > functions i want to open a connection to a servlet and send it
> > > some data
> > > > > that is stored in a javascript Array. I am using the method i used
> > > with
> > > > > applets to open a URLConnection to my servlet and send the data
> > > via an
> > > > > objectoutputstream.. my code is as follows..
> > > > >
> > > > > function printform()
> > > > > {
> > > > > var servlet = "http://localhost:1000/pr/servlet/pr"
> > > > > if(getData()) {
> > > > > <%@
> > > > > Serializable formData[] = { data };
> > > > > URLConnection con = servlet.openConnection();