Convert JSP's to ASP.Net

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have to convert some JSP's to C#(ASP.Net),I know there are a number of
tools to do this task including the Microsoft Java Language Conversion
Assistant 2.0.

I a looking for some recommendations from people who have successfully used
some of the tools.

TIA,
Vinny
 
Vinny said:
I have to convert some JSP's to C#(ASP.Net),I know there are a number
of tools to do this task including the Microsoft Java Language
Conversion Assistant 2.0.

I a looking for some recommendations from people who have
successfully used some of the tools.

TIA,
Vinny

AFAIK the Conversion Assistant converts *java code* to some dotNet language
(J#, C#, VB.Net??).
I don't think it will translate JSP's to useable asp.net files, as they have a very different structure.

Hans Kesting
 
I think your going to struggle to do this via a conversion tool, the problem
is that there are a multitude of ways to write a JSP site, and quite a few
to develop and asp.net site. The conversion tools are really desogned to
take java code and replace it with comparable code from C# for example, they
wont be able to take your inline java snippets, or your taglibs and
automatically convert the jsp page into an asp.net equivalent. The best you
could try is to take the code from a class and try to convert that
automatically, and then re-engineer your interface code to asp.net to use
the new methods in code behind.

--
Regards

John Timney
ASP.NET MVP
Microsoft Regional Director
 
Back
Top