• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Pass value from JSP -> ASP ->Applet ???

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please help:
I have a stand alone application which is an Applet running inside a ASP page on a remote server. The Applet need to response to the input passed from another application's JSP page.
How can I do that?
Certainly,I can pass parameter to ASP page from JSP using a queryString. and the Applet is running on ASP page, and then What?
Any better solution?
 
Ranch Hand
Posts: 76
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you have to submit your page ... from JSP to ASP...you simply pass the parameters in Query String thats fine....now the from ASP file you need to pass the parameters to applet...
inside <applet> </applet>
tag you can use <param> tag to pass any parameters
that you can get using getParameter i applet
in simple case this approach will work...otherwise XMLRPC is a powerful thing for cross platform and cross lang. communication
hope this helps
 
Cob is sand, clay and sometimes straw. This tiny ad is made of cob:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic