Migrate Stand alone app to J2EE application server

Hi,

I need some clarifications for my doubts.

I have a core Java stand alone application that is connected to database (2-tier) with JDBC.

And my boss want to migrate the app to J2EE application server.

But as I know J2EE application server is for web application,

but mine is stand alone core Java app, so it might not be feasible.

And the application is fully accessing Swing GUI features like JTable,

so I don't think it is a good idea to convert the app to J2EE web application.

But anyway, I want to check the possibility of the migration.

I am thinking the possible way is to convert to Applet.

But what disadvantages or restrictions can be happened if I take that,

like memory pre-allocation problem?

And the application server is on another country, also we might use the database on that side.

I'd appreciate if you give me your opinion on the above issue.

Thank you in advance.

[983 byte] By [Gilotina] at [2007-11-27 5:58:54]
# 1
No, you can't migrate a swing app to a J2EE server.You could isolate the database access code and move that to the J2EE server and modify the Swing client so that it'd act more like a thin client, as just an interface for the database.
-Kayaman-a at 2007-7-12 16:34:33 > top of Java-index,Java Essentials,Java Programming...
# 2
well you'd be re-writing itif you're using a jtable to edit cells and update them and so on; it's probably not the 'best' candidate for a website.
prob.not.sola at 2007-7-12 16:34:33 > top of Java-index,Java Essentials,Java Programming...