?
Thanks & Regards
Anil
-Original Message-
From: A mailing list for discussion about Sun Microsystem's Java Servlet
API Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of Rahul
Asanikar
Sent: Tuesday, March 12, 2002 11:25 AM
To: [EMAIL PROTECTED]
Subject: Re: Applet-Servlet Communicatio
ur doGet or doPost is returned and the streams are obsolete by the time u
try to
read the object.
see if u are doing the read in the same thread and not in a thread other
than doGet.
- Original Message -
From: Anil Kumar <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, March 11,
I had myself a few troubles with applet to servlet communication and i saw a
solution on the web that it worked for me...
try this when you create the ObjectOutputStream...
ObjectOutputStream objOut = new ObjectOutputStream(new GZIPOutputStream
(urlconnection.getOutputStream()));
It worked for
yes it is possible..
but please consult the archives and some books and some exemple very simple
on the net, please search a little before ask to others peoples ..
- Original Message -
From: "Hugo Malheiro" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, September 04, 2001 4:24
Yep
you have to do the same as your browser will do.
Just connect on port 80 of the server and send a header.
ChoKamir
ApocalypseT
The Key To Knowledge
http://home.kabelfoon.nl/~jijih
[EMAIL PROTECTED]
- Original Message -
From: Hugo
g list for discussion about Sun Microsystem's Java Servlet
API Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of Ajay
Bhadauria
Sent: Tuesday, July 24, 2001 8:48 AM
To: [EMAIL PROTECTED]
Subject: Re: Applet - Servlet communication losing session in Netscape
I am using WebLogic App. Server 5
I am using WebLogic App. Server 5.1 (web as well as App. server), but I
think there is no problem regarding Application server settings as in other
part of application , where a servlet is being called from html page, same
session checks work fine in both IE and Netscape.
-Original Message---
Stop using deprecated technology. JWS was dumped by Sun over a year ago in
favor of (what is now) Tomcat. Check out jakarta.apache.org for details.
Cheers!
Mark
- Original Message -
From: "ck chiam" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, July 02, 2001 10:20 PM
Subjec
Huh?
- Original Message -
From: "Rohit Parik" <[EMAIL PROTECTED]>
Sent: Tuesday, April 24, 2001 9:56 AM
> Not even that ... in case you are typing the url in your browser as
> http://localhost/ .. ur pagename. then just change it by specifying the
port
> number as well and bingo there u
-
From: Vacca Davide
To: [EMAIL PROTECTED] ; Rohit Parik
Sent: Tuesday, April 24, 2001 7:40 PM
Subject: Re: Applet servlet communication
I've specified the port number; infact I've written:
new URL(this.getCodeBase(),
"http://localhost:8080/servlet/myPackage.myServlet";);
: [EMAIL PROTECTED]
- Original Message -
From: Mark Galbreath
To: [EMAIL PROTECTED]
Sent: Tuesday, April 24, 2001 5:56 PM
Subject: Re: Applet servlet communication
Because the applet is now under the SecurityManager domain of your IE web
browser and you are restricted from accessing
Dont remember exactly as to how I solved this problem but I believe I
removed either the
con.doInput(true);
or
con.doOutput(true);
statement and it worked fine for me.
Hope this helps.
Regards
Rohit Parik
Netweb Software, India
Ph: +91-265-301424
+91-265-314729
Fax: +91-265-314756
emai
Visual Age 3.5x uses a JRE within the IBM distribution. for IBM's
appletviewer, the java.policy is at:
c:\Program Files\IBM\Visual Age for Java\ide\program\lib\security.
when you run the applet from a browser, you will need to put the java.policy
into the security directory for the
JRE fo
Because the applet is now under the SecurityManager domain of your IE web
browser and you are restricted from accessing anything but an originating
webserver on port 80. Try changing your security parameters through the
browser menu: Tools > Options > Security.
Cheers!
Mark
- Original Messa
Hey!
Want something to try? Set the content-length. See this
archive for examples on how to do that. It has been discussed
before.
Sans adieu,
Danny Rubis
puppala sreenivas wrote:
> Hello Gurus,
> I am posting this again with the hope that someone out there will be able to
> help me out.
>
ot know the proxy server, work thru proxies. Any inputs would
> be very helpful.
>
> Thanks,
> Jayant.
>
> -Original Message-
> From: Bo Xu [mailto:[EMAIL PROTECTED]]
> Sent: Friday, November 10, 2000 9:44 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Applet-servlet
elpful.
Thanks,
Jayant.
-Original Message-
From: Bo Xu [mailto:[EMAIL PROTECTED]]
Sent: Friday, November 10, 2000 9:44 AM
To: [EMAIL PROTECTED]
Subject: Re: Applet-servlet communication does not work on internet.
Hiroshi Kasamatsu wrote:
> Applet-servlet communication does not wor
Hiroshi Kasamatsu wrote:
> Applet-servlet communication does not work on internet.
> I have been making efforts to find clues,but I cannot see the light yet.
> I tried some URL connections,but only to fail.
> The remnant clue I expect is how to select doPost,doGet.
> *
Thanks giga
-Original Message-
From: Giga Bytes [SMTP:[EMAIL PROTECTED]]
Sent: Friday, November 10, 2000 12:59 PM
To: [EMAIL PROTECTED]
Subject:Re: Applet-servlet communication
Chapter 10 0f Jason Hunter's Java Se
Chapter 10 0f Jason Hunter's Java Servlet Programming discusses the options.
> Hi all
> Is there any simple way for applet servlet communication?
> Thanks
> shanthi
>
>
___
> To unsubscribe, send email to [EMAIL PROTECTED] and
Vijayamohan,
Try adding the code below.
Regards,
Rob Griffin
Quest Software
E-mail: [EMAIL PROTECTED]
Web site: http://www.quest.com
> -Original Message-
> From: A mailing list for discussion about Sun Microsystem's Java Servlet
> API Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of
I would be of the opinion that you can have applet/servlet combos that work
well. But I know just as many people who have don't think it's a good idea
than people who do. My company has been tweaking ours for a real long time
and we still have occasional problems with it (Proxy Servers, Really s
Applet and Servlet communication by sending serialised objects back and forth
is your best book. Get a copy of Jason Hunter's Book "Java Servlet Programming"
OReilly.
What actually have to do is built a servlet and acts a middle tier to database and also
communicate to and back to an applet.
--
Discussed many times on this list. Search the archives for "applet
servlet": http://archives.java.sun.com/archives/servlet-interest.html
Here's an example with complete source code:
http://www.about.com/kmukhar
Check the examples for ch10 at http://www.servlets.com
http://www.servletguru.com (Do
Or use URL rewriting if using Java plugin.
-Original Message-
From: Kevin Mukhar [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 07, 2000 9:31 AM
To: [EMAIL PROTECTED]
Subject: Re: [Re: Applet Servlet communication]
Silvia Gaspar wrote:
>
> If we call a servlet f
Although the code is not complete, it will run and will get a cookie
from the site that it connects to.
Kevin Mukhar wrote:
>
> This code is not complete. It only has enough to show getting a cookie
> and setting a cookie. Actually getting a page or sending GET or POST
> data is not shown. Replac
Silvia Gaspar wrote:
>
> Thank you very much. Can you, please tell me how can the applet do
> this. Do you have any example?
This code is not complete. It only has enough to show getting a cookie
and setting a cookie. Actually getting a page or sending GET or POST
data is not shown. Repla
Silvia Gaspar wrote:
>
> If we call a servlet from an applet that creates a session. And then
> call a seconde servlet from the same applet, Does the second servlet
> recoginizes the session created by the first servlet?
It can. For this to happen, the applet must perform the cookie
manag
Agosto de 2000 17:01
To: [EMAIL PROTECTED]
Subject: Re: [Re: Applet Servlet communication]
Hi,
The Http URL method will not cause any socket problems.
An alternative strategy would be to use XML stream to communicate between
Applet and servlet.
Regards
Subbu
>From: abhishek shodhan <
icrosystem's Java
>Servlet API Technology." <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: Re: [Re: Applet Servlet communication]
>Date: Wed, 16 Aug 2000 13:28:27 EAT
>
>So if sockets cause problems with firewalls, what about Http URL methods?
>do
>they al
I dont think they do...
In any case, go thru O Riellythe book talks abt all this..
Love Rajesh
On Wed, 16 Aug 2000, abhishek shodhan wrote:
> So if sockets cause problems with firewalls, what about Http URL methods? do
> they also cause problems while communication between Applets and Servle
So if sockets cause problems with firewalls, what about Http URL methods? do
they also cause problems while communication between Applets and Servlets?
Love Always
Abhishek Shodhan.
[EMAIL PROTECTED] wrote:
Hi Ravi,
Yes, it is possible to open a socket from an applet and communicate to a
servlet
Hi Ravi,
Yes, it is possible to open a socket from an applet and communicate to a
servlet thru it, but opening sockets could cause problems with firewalls.
For the code, look thru O Reilly's book on Servlet Programming...Applet
Servlet communication. There is a neat piece of code in there..
Hope t
ECTED]>
Envoyé : mercredi 28 juin 2000 14:06
Objet : Re: applet-servlet communication
> Eswar,
> No no! Not from a servlet. Browser. An applet running in native browser VM
> "belongs" to the web page, but an applet running in the plugin does not,
> even though it sits on the
get the session
ID in the applet in order to attach to the URL ???
Thanx a lot for your help dave .
- Message d'origine -
De : <[EMAIL PROTECTED]>
À : <[EMAIL PROTECTED]>
Envoyé : mercredi 28 juin 2000 14:06
Objet : Re: applet-servlet communication
> Eswar,
pen the ServletExec admin page.
Hope this helps,
Dave
-Original Message-
From: Eswar Subramanyam [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 28, 2000 7:45 AM
To: [EMAIL PROTECTED]
Subject: Re: applet-servlet communication
Thanx alfonso for the reply,
But there is a proble
23:50
Objet : Re: applet-servlet communication
> Eswar Subramanyam wrote:
> >
> > thanx dave
> >
> > But i am using servlet-exec and did not find any cookies setting ..
> > Can you please tell me how to overcome this problem ? I will give you a
> > brief expl
>
Envoyé : mardi 27 juin 2000 23:50
Objet : Re: applet-servlet communication
> Eswar Subramanyam wrote:
> >
> > thanx dave
> >
> > But i am using servlet-exec and did not find any cookies setting ..
> > Can you please tell me how to overcome this problem ?
Eswar Subramanyam wrote:
>
> thanx dave
>
> But i am using servlet-exec and did not find any cookies setting ..
> Can you please tell me how to overcome this problem ? I will give you a
> brief explanation
the servlet engine sometimes uses cookies to keep track of sessions.
Normally, an applet in
-
From: Eswar Subramanyam <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, June 26, 2000 6:21 AM
Subject: Re: applet-servlet communication
> in fact this is the way i am invoking . But the applet works when i invoke
> the servlet through a Browser native VM. But when it runs
serverside
- Message d'origine -
De : <[EMAIL PROTECTED]>
À : <[EMAIL PROTECTED]>
Envoyé : lundi 26 juin 2000 11:43
Objet : Re: applet-servlet communication
> Hi,
>
> How do you try to invoke the servlet?
>
> In general, "invoking a servlet"
essage-
> From: Eswar Subramanyam [mailto:[EMAIL PROTECTED]]
> Sent: Monday, June 26, 2000 10:52 AM
> To: [EMAIL PROTECTED]
> Subject: Re: applet-servlet communication
>
>
> thanx dave
>
> But i am using servlet-exec and did not find any cookies setting ..
> Can you
engine and use URL rewriting.
> Dave Godbey
>
> -Original Message-
> From: Eswar Subramanyam [mailto:[EMAIL PROTECTED]]
> Sent: Friday, June 23, 2000 12:57 PM
> To: [EMAIL PROTECTED]
> Subject: Re: applet-servlet communication
>
>
> I am doing the same and re
-
From: Eswar Subramanyam [mailto:[EMAIL PROTECTED]]
Sent: Friday, June 23, 2000 12:57 PM
To: [EMAIL PROTECTED]
Subject: Re: applet-servlet communication
I am doing the same and really stuk inbetween Java plugin 1.2.2, Servlet and
Apache
If you get some response please let me know
I am doing the same and really stuk inbetween Java plugin 1.2.2, Servlet and
Apache
If you get some response please let me know ...
- Message d'origine -
De : <[EMAIL PROTECTED]>
À : <[EMAIL PROTECTED]>
Envoyé : vendredi 23 juin 2000 17:55
Objet : applet-servlet communication
> can
duraisamy kannan wrote:
>
> can some one explain the specifics of applet-servlet communication?
Discussed many times on this list. Check the archives:
http://archives.java.sun.com/archives/servlet-interest.html
Check the examples for ch10: http://www.servlets.com
Download the code and look for t
>>> Scholnick Steve <[EMAIL PROTECTED]> 01-Jun-00 3:07:30 PM >>>
>when i first write an object to the URLConnection, it gets sent
>over the wire to the servlet. i then read the return object. when
>i try to write again to the servlet (using the same URLConnection
>object), i get the following
s one - let me know if you need any
more info.
Dave
> -Original Message-
> From: SUBHAPRATHA SRIDHARAN [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, May 25, 2000 2:51 PM
> To: [EMAIL PROTECTED]
> Subject: Re: Applet-Servlet communication
>
> Hi,
>
> What
Hi,
What exception do you get? Is that a Security exception?
Browsers does not support JDK1.2. They need Plug-in.
Regards.
>From: Shaila C D <[EMAIL PROTECTED]>
>Reply-To: "A mailing list for discussion about Sun Microsystem's Java
>Servlet API Technology." <[EMAIL PROTECTED]>
>To: [E
First of all, the only chance of this ever working(if any), is if you run the
browser on the same machine that has the Webserver and applet. Since you
use localhost, that will always refer to the local m/c. If this is indeed
the way
you have it, then you may need to check to see that the machine h
Have a doPost() in your servlet and let it call doGet() passing the
req and the res in to it ...
Also u can check the request method in your applet by calling
getRequestMethod() on the connection object.
cheers
>From: Shaila C D <[EMAIL PROTECTED]>
>Reply-To: "A mailing list for discussion abo
you can check whether your sevlet has been load or not.
if it is not, obviously there is something wrong with the name of it.
you 'd better check the configuration o that servlet in th eweb server.
best regard
zh jiang
-Original Message-
From: EXT Thomas Schuchert [mailto:[EMAIL PROTEC
Title: RE: Applet Servlet Communication
hi see to it that both applet and servlet are in classpath and teel me which server are you using?
--
From: PANKIL R. SHAH[SMTP:[EMAIL PROTECTED]]
Reply To: A mailing list for discussion about Sun Microsystem's Java Servle
basically when u run applet it is stuck with the security problems.
u need to create the security and make ur applet secured over the
internet/intranet.
use verisign certificate.
use sign tools from netscape.
perhaps it might work.
regards
P.
_
Hey!
This may not be a servlet problem. It may be your applet.
Does the applet work?
Q: Why are you serving up the applet this way?
Why not just launch the applet on the client browser
with some HTML.
More information is needed. What kind of problem
are you having connecting to DB?
Sans adi
It seems that RMI is not supported by some browsers. Try HTTP tunneling
instead.
-
Cristian Saceanu
WebQuote.com Inc.
[EMAIL PROTECTED]
-Original Message-
From: Pavan Sulibhavi <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Date: Wednesday
Hi pravan
I've been working on this for sometime. i can call rmi from applet in my pc
by starting rmiregistry. but i'm not sure how to call from the server.
there's not much of info about how to user stub and skeleton classes from
the server. as per jason hunter book, i'm trying to write rmi as se
Hi pravanI've been working on this for
sometime. i can call rmi from applet in my pcby starting rmiregistry. but
i'm not sure how to call from the server.there's not much of info about how
to user stub and skeleton classes fromthe server. as per jason hunter book,
i'm trying to write rmi as
RAD InfoTech wrote:
>
> Our research shows HTTP Tunneling is one way to achieve > applet-to-servlet
>communication. Are there other methods?
You may find some information here:
http://www.j-nine.com/pubs/applet2servlet/Applet2Servlet.html
http://www.servlets.com/ (See examples for Ch 10)
__
I think it's a security restriction, not an error. Try testing with
appletviewer. If everything is OK, it will work.
Probably you are trying to run the applet on the same machine with the
servlet (localhost:8080), and you get this message above. I don't know
exactly why MS I.E. does that, but if
n about Sun Microsystem's
Java Servlet API Technology."
<[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
cc:
Subject: Re: Applet-Servlet Communication
replied on 9/3
-Original Message-
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]
Date:
replied on 9/3
-Original Message-
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]
Date: Tue, March 07, 2000 09:14 PM
Subject: Re: Applet-Servlet Communication
Well you have a lot of possibilities.
You can have an HTTPServlet to which you send a request encoded in
Also JAVA Server Programming by Wrox press and Inside Servlets by Addison
Wesley are good books.
-Original Message-
From: Maxime Poulin [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 08, 2000 12:44 AM
To: [EMAIL PROTECTED]
Subject: Re: Applet-Servlet Communication
Well you have a
Hey!
Are you asking whether this can be done. The answer is yes.
You can check the archive of this list for many helpful suggestions
on how to do this. Also, it is recommended that you get yourself
a book on Java servlets; many are suggested in the archive.
As for the JTable, if you are only
Title: RE: Applet-Servlet Communication
Well you have a lot of possibilities.
You can have an HTTPServlet to which you send a request encoded in an URL which contains the parameters, which you will receive in the doGet method of the servlet. Then, you query the database, format the result
yes it is very much possible
it is easier if the u can use object outputstream to send serializable
objects
and retrieve the object in the servlet and use it to query the
database
although we are able to do the following using a IE browser and
jwsdk1.0.1 (
we are tryi
Refer to Java Servlet Programming by O'REILLY, for applet servlet
communication.
- Original Message -
From: "Rajesh Shrivastav" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, March 05, 2000 03:20
Subject: Applet-Servlet Communication
> HGi Every Body,
>
> I want to send a par
On Mon, 24 Jan 2000, Reiner Lange wrote:
> Hello to all!
>
> Is it possible to send parameters from an applet
> to a servlet with the POST method and to get
> a HTML page back with
> getAppletContext().showDocument() ?
A simple trick to implement the desired functionality is to have your
servlet
hi
I am doing the same thing but the values if y send it as name value pair
the other side(Servlet) I am getting the null values. So the solution I
found is pack the parameters in a vector and send that vector as serialized
objecti.e by using the objectOutputStream of the url and there you retriev
plet-Servlet Communication
>How do we connect to a database using an applet? Does this need to have
>anything with Servlets??
>
>-Original Message-
>From: Jason Hunter [mailto:[EMAIL PROTECTED]]
>Sent: Monday, September 27, 1999 11:53 AM
>To: [EMAIL PROTECTED]
>Subje
gt;
To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Date: Monday, September 27, 1999 10:37 AM
Subject: Re: Applet-Servlet Communication
>Paul Lingwood wrote:
>>
>> ok first of all ... sample code
>> Sending info from applet to servlet :
>>
>> // this is the sendGetMes
e liu <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Date: Monday, September 27, 1999 10:29 AM
Subject: Re: Applet-Servlet Communication
>>on ure second point ... i need to know a few things .. like :
>>is it a stand alone app
>>is it run inside a br
How do we connect to a database using an applet? Does this need to have
anything with Servlets??
-Original Message-
From: Jason Hunter [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 27, 1999 11:53 AM
To: [EMAIL PROTECTED]
Subject: Re: Applet-Servlet Communication
Paul Lingwood
Paul Lingwood wrote:
>
> ok first of all ... sample code
> Sending info from applet to servlet :
>
> // this is the sendGetMessage Func used above
For the record, taken from com.oreilly.servlet.HttpMessage and
reprinted without acknowledgment. Shame on you, Paul. You probably
didn't mean any ha
: [EMAIL PROTECTED]
cc:
Subject Re: Applet-Servlet Communication
:
have u tried passing serialized objects between the applet and servlet and
vice versa ?
If not .. i'm currently working on a project that does so ... i can give u
some code examples.
-Origi
>on ure second point ... i need to know a few things .. like :
>is it a stand alone app
>is it run inside a browser
>is it run outside a browser
>what exactly do u want to do with it ??
Thanks Paul, while maybe the applet should run outside a browser.
Julie
stand alone app
is it run inside a browser
is it run outside a browser
what exactly do u want to do with it ??
Paul
-Original Message-
From: Julie liu <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Date: Friday, September 24, 1999 5:58 PM
Subject: Re: Applet-Ser
?
>If not .. i'm currently working on a project that does so ... i can give u
>some code examples.
>-Original Message-
>From: Julie liu <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
>Date: Friday, September 24, 1999 4:26 PM
>Subject: R
OTECTED]>
Date: Friday, September 24, 1999 4:26 PM
Subject: Re: Applet-Servlet Communication
>Can S.B Help me?
>
>I would like to let the servelet and applet communicate with each other,
>actually I would like to use servelet to control the life time of applet,
is
>that possible? and
Can S.B Help me?
I would like to let the servelet and applet communicate with each other,
actually I would like to use servelet to control the life time of applet, is
that possible? and how can I keep the applet at the top all the time?
Julie
>From: "Mark E. Novak" <[EMAIL PROTECTED]>
>Reply-T
Hello Mark,
You get this error if your server and client are on the same machine
because Netscape looks in the classpath for the applet before looking
at the codebase URL.
If you are running Windows here a way to get round this:
1. Open a DOS box.
2. Enter
SET CLASSPATH=
3. Enter the fu
Check this out:
http://www.j-nine.com/pubs/applet2servlet/index.htm
--- "Mark E. Novak" <[EMAIL PROTECTED]> wrote:
> Can anyone out there help me?
>
> I'm using JDK1.8, JavaWebServer1.1 and Netscape.
>
> I am serving up an applet from an html page
> delivered by a servlet. The applet is located i
Hi Gerardo
I couldn't understand what exactly is your problem is.
If ur are not receiving any object in the servlet side then it could be
because of
u not connecting to it.
U have just opened a connection to the servlet.
u haven't actually connected to it by saying
Look at the following article. It may not be the exact solution but it may give you
some pointers:
http://www.javaworld.com/javaworld/jw-10-1998/jw-10-apptowin32.html
--
sabir semerkant | [EMAIL PROTECTED] | founder & CTO | rare minds
-Original Message-
From:Venkata Kanugula
S
If I read your post right - then you would need to create a policy file for
the applet giving it access to the specified URL.
The tool to create this is the 'policytool.exe' in the JDK's \bin path.
Hope that helps
sc
-Original Message-
From: Venkata Kan
>The type 2 communication i.e socket one is bidirectional but the type 1 is
>not(by default). I have read that we can simulate bidirectional
>communication using applet-http-cgi combination. How can this be done ?
>Although my problem involves no servlet programming, but it seems that this
>proble
Satya -
A useful article:
http://www.j-nine.com/pubs/applet2servlet/Applet2Servlet.html
Mike Drummond
--
From: satya.m
To: SERVLET-INTEREST
Subject: Applet/Servlet Communication
Date: Sunday, June 06, 1999 10:16AM
Hi,
Can anybody help me with how to work out communication between
Hi Satya,
In the event handler of the button,
Construct an URL giving the path of the Servlet
Eg:
If the Servlet resides in Ur local m/c in Servlets
directory,
try {
URL url = new URL("http","localhost",8080,path);
URLConnection servletConnection = url.openConnection();
88 matches
Mail list logo