• 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
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

How to pass a parameter from an ASP page to the servlet

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Iam having a situation. I want to pass a parameter from an ASP page (running on IIS) to a servlet (running on Weblogic)
Any suggestions..?? experience??? in this issue...
pleae help...
 
Sheriff
Posts: 4313
Android IntelliJ IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
1st thing
"moutts"-
Welcome to the JavaRanch!
Please adjust your displayed name to meet the JavaRanch Naming Policy. You can change it here.
2nd thing
You can pass a parameter through a URL
ex: http://www.blah.com/WebApplicatoin.somePage.jsp?param1=asdf¶m2=qwerty
You can not however pass a session object from an ASP to a JSP or servlet(that I know of).
[ July 15, 2002: Message edited by: Jessica Sant ]
 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Well if it is the case of passing param's from a asp web page to jsp page then using the URL...and appended by the param which you want to pass. I think you would have done if this was the pblm.
Well friend, if you want to execute a component of JSP from Windows ..using asp then I should say it's not possible, it's like trying to execute a component of UNIX from windows env, next to impossible :-)
Good Luck!.
 
moutts
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thanks guys,
Your suggestions helped me. As Mr. Reddy identified correctly, that was not my main issue. But anyhow, i solved the issue and i really appreciate for your kind cooperation..
thanks
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic