Invoke an asp page from Java
888525Apr 11 2013 — edited Apr 12 2013Hi ,
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,