简体   繁体   中英

call aspx page from my java web application

Is there a way to call my aspx page from my java web application? I got a reportviewer from my aspx and I need to show it on my web application (java).

so this is the example i want to show the aspx page on the "sample report panel"

This is a bad idea. You shouldn't be mixing output from a C# application into your Java application, though it's possible, in the sense that you could make an http request from the Java app to the the ASPX app, take the HTML you get back and embed it. However the ASPX app probably sends back a full HTML page, so you'd somehow need to strip out the report from the HTML, a hack of major proportions. You should rewrite the report in Java.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM