porting java 2 dotnet (any idea)

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

Guest

Hi,
when i am converting java to dotnet through java language conversion wizard
present in vs.net, i am able to do it only for console applications of java.
i am not able to do it for web based applications.
can u give me some idea as to how to convert it.

Thanks in Advance,
Nizam
 
Hi,
when i am converting java to dotnet through java language conversion
wizard
present in vs.net, i am able to do it only for console applications of
java.
i am not able to do it for web based applications.
can u give me some idea as to how to convert it.

Thanks in Advance,
Nizam

Basically, by hand.
As I'm sure you're already aware, the .NET Framework class library does not
have direct equivalents to all classes in the Java API (just as the Java API
does not have direct equivalents to all .NET Framework classes).
There is also a question of technologies. ASP.NET primarily supports server
side automation, while the Java API offers applets, servlets, Java server
pages, etc.
So, depending on what you are using from the Java API, you may have to
redesign your application, or at least redesign the interface.
 
Back
Top