Skip to Main Content

Java Programming

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Invoke an asp page from Java

888525Apr 11 2013 — edited Apr 12 2013
Hi ,

I have a scenario where I have an asp page which has various buttons on the asp page.
I want to call this asp page from my Java application which uses swings,applets,servlets.
I am using IIS and weblogic for the Java application.

Once I call the asp page and hit on any button on the asp page the control will transfer to a .NET project which will do the processing as per the user request
and bring back a pdf page.

I can use the below to open the asp page from java

URL urltest = new URl("Location for the asp page");
appletContext.showDocument(urltest,"test");


So will this pdf page automatically show up ?What my concern is how will the interaction between java and .net take place like do I need to maintain the session or something or pass any cookie data? I dont have any ideas how to implement this

Any suggestions ?


thanks,
Thanks,
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 10 2013
Added on Apr 11 2013
2 comments
386 views