he servlet?
It's very easy to determine what is a client of a servlet -- anything
that sends requests to and receives responses from it.
> -Original Message-
> From: Mark E. Zawadzki [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 11:35 AM
> To: [EMAIL
s, a servlet can very well access the hard disk.
> > >
> > > regards,
> > > Anoop
> > >
> > > -Original Message-
> > > From: S Srinivas Nayak [mailto:[EMAIL PROTECTED]]
> > > Sent: Tuesday, September 17, 2002 7:40 PM
> > > T
lto:[EMAIL PROTECTED]]
Sent: Tuesday, September 17, 2002 11:35 AM
To: [EMAIL PROTECTED]
Subject: Re: Can a Servlet...
Technically, the server requests that the client send the cookie.
--- "Galbreath, Mark" <[EMAIL PROTECTED]> wrote:
> Uh uh...and in the case of a cookie? ;
day, September 17, 2002 11:26 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Can a Servlet...
>
>
> No a Servlet can not access the hard disk of the client computer because the
> servlet is running on the server. The only was for any Server side
> mechanism to access information
Uh uh...and in the case of a cookie? ;-)
Mark
-Original Message-
From: Monte Gardner [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 17, 2002 11:26 AM
To: [EMAIL PROTECTED]
Subject: Re: Can a Servlet...
No a Servlet can not access the hard disk of the client computer because the
question, yes, a servlet can very well access the hard disk.
>
> regards,
> Anoop
>
> -Original Message-
> From: S Srinivas Nayak [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 7:40 PM
> To: [EMAIL PROTECTED]
> Subject: Re: Can a Servlet...
>
&g
Title: RE: Can a Servlet...
servlets cannot access the client machine hard disk ...
applets can but they need to be signed applet
...
Regards
Guru
-Original Message-From: Anoop Kumar V
[mailto:[EMAIL PROTECTED]]Sent: 17 September 2002
15:58To: [EMAIL PROTECTED
Title: RE: Can a Servlet...
no.. an applet cannot and should not be allowed to access the hard disk.. in order to prevent any malicious attempts..
To answer the question, yes, a servlet can very well access the hard disk.
regards,
Anoop
-Original Message-
From: S Srinivas Nayak
no may be an applet can do that for u
- Original Message -
From: priya <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, September 17, 2002 7:27 PM
Subject: Can a Servlet...
> Can a servlet access the hard disk of the client machine ... ???
>
> Regards,
> Priya
>
>
_
Hey!
I see that no one replied to you basic-Java question, so I will
give you a clue.
Study some more on packages in your Java book, and understand
why you got the class loader error message. It is saying it can
not find one of the classes that it needs.
There are several ways for organizing y
Dear all,
After corrected the typo pointed out by Geeta, My Handler servlet can work now. But I
have new prolems now: I made a myTest.jar file which included the "Test.class" and put
it in the same path as Handler.class. Then I configured the JBuilder's "required
libaries" and added the myTest
Hi Ying:
You've got a typo: Replace:
public class EbXMLHandler extends EbTest {
with
public class EbXMLHandler extends Test {
Cheers!
Geeta
In the form calling the servlet in the Parent HTML page, set target as the
other frame
e.g
Abhay
- Original Message -
From: Ravi P Mishra <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 09, 2001 5:53 AM
Subject: can a servlet response be directed to a particular fra
Of course, it can. you won't have to write java-code, this can be achieved
by simple HTML:
in your frameset-file you give the frames two different names (e.g 'menu'
and 'main') by writing .
in the left frame you use the 'target'-Attribute of to "send" the
response to the other frame, e.g.
and t
Hi,
You have to specify in the FORM tag the target like this:
BW,
Andras.
- Original Message -
From: "Ravi P Mishra" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 09, 2001 2:23 AM
Subject: can a servlet response be directed to a particular frame in a
bi-fr
Hi ravi,
You can do onething after the submit button, let the servlet redirect to a
page which spits the complete 2frames with proper sources.
I mean do the following:
1. Let the servlet redirect to an HTML page which simply spits an HTML page
which in its onLoad function calls a java script whi
hi Ravi!
Look i'am not sure ..not now, cause my server is down, but there
is something i did once..is not what you want but may help you ..i think.
well i have two frames :
1) menu.html FRAME
2) my target frame
in the menu.html a put a link Simple servlet
so the "servletpage.html
pradeep wrote:
>
> Whatever u are trying to do is "client pull", u can do "server
> push"too(similar mech. with server serving the data over a period of time).
> either refer to Jason Hunter's book or sometime back there were same kind of
> questions in the list , check up the archives.
>
> regds,
Hi
Whatever u are trying to do is "client pull", u can do "server
push"too(similar mech. with server serving the data over a period of time).
either refer to Jason Hunter's book or sometime back there were same kind of
questions in the list , check up the archives.
regds,
-pradeep
-Original
srinivas wrote:
> import java.net.*;
> import java.io.*;
>
> public class four
> {
> static char c;
> public static void main(String[] args)
> {
> int x = 0;
> try
> {
> URL url = new
> URL("http://164
Peter wrote:
>
> Is it possible for a servlet to write a file onto the clients hard drive ?
>
> I'm making a small payroll program where the user wants to save the payslip
> onto his/her hard drive so that it can be printed later.
>
> So far I've only managed to get the servlet to print files back
Hi,
Servlets are server-side java classes, and I would like to quote certain
manuals where they say servlets are to server just as applets to client ...
So if you want to write something on client's computer you shall be needing
to write a small applet that speaks to servlet's "please write somet
On Sat, 19 Jun 1999, Peter wrote:
> Is it possible for a servlet to write a file onto the clients hard
> drive ?
>
> I'm making a small payroll program where the user wants to save the
> payslip onto his/her hard drive so that it can be printed later.
>
> So far I've only managed to get the servl
The servlet cannot write directly onto the user's hard drive (unless we're
talking about cookies)--to allow that would open up HUGE security holes.
You might be able to achieve the same thing with a signed applet that
received the information to save from the servlet and in turn saves it on
the u
24 matches
Mail list logo