can an applet call one of the methods of servlet?
hi everyone...
i m very new servlet and applet programming and i have come accross a problem....
i m using a applet which establishes connection with the servlet(residing on server)..i want to use few of the methods of the servlet....
now is it possible tfor me to call the methods of this servlet using its object.?
please help me..
thanx in advance
# 2
first of all thanx a lot for the reply...
but i wanted to know can an applet call any other function of servlet other than get and post....as i hacve defined some more functions in servlet..
please reply...
# 4
> first of all thanx a lot for the reply...
>
> but i wanted to know can an applet call any other
> function of servlet other than get and post....as i
> hacve defined some more functions in servlet..
>
> please reply...
I did this a while back (2003/4?) and unless it's changed you cannot do it directly, it must be GETor POST, then you could just use conditional logic to invoke another method.
# 5
but i am using these methods to establish database connectio and insert update and delete data...for each one of these functionality i have made seperate function...
i have to use servlet for databse connection as applet connection to databse is not reccomende.d..
an u suggest me of something...