Click here to Skip to main content
15,895,667 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello!

I have jsp servlet web application project but now I will implement new page with c#.net 2010

so if I finish coding new page from .net after that

How can I integate the new page into jsp servlet project for build and deployment???
Posted

You will need to come up with some way to interoperate between the two, and they will not be deployed to the same application end point.

They require a different server engine/technology to run. While they could theoretically be on the same machine, you'll still need to communicate (likely via POSTs or GETs or through SOAP web services) and secure the way you're communicating between the two.

You cannot reuse classes without first moving them over and compiling (and converting to appropriate base classes, references, etc).

Cheers.
 
Share this answer
 
Thanks.

Have example project?
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900