Netcoole has released J-ASP 2.1, a product that can convert ASP apps to JSP or Servlet apps running on any JDK enabled system. J-ASP supports ASP core Objects,such as ASP Build-in, Installable, FileSystemOblect and ADO etc. But it can't support external ActiveX/COM objects/DLLs.
Check out http://www.netcoole.com/.
-
J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available (16 messages)
- Posted by: Davis zou
- Posted on: August 22 2002 04:28 EDT
Threaded Messages (16)
- J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available by Richard Atkinson on August 23 2002 08:41 EDT
- J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available by Deyan Petrov on August 23 2002 08:44 EDT
- J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available by Richard Atkinson on August 23 2002 08:59 EDT
- J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available by Tiberiu Fustos on August 23 2002 10:51 EDT
- J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available by Ray Offiah on August 24 2002 12:05 EDT
- J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available by Tom Pridham on August 23 2002 08:56 EDT
- J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available by Chris Novak on August 23 2002 11:41 EDT
-
J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available by Don Brown on August 23 2002 02:01 EDT
- J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available by Tahir Awan on August 23 2002 02:35 EDT
- J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available by Werner Alber on August 26 2002 06:37 EDT
- J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available by Deyan Petrov on August 23 2002 08:44 EDT
- J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available by kalpesh patel on August 26 2002 23:39 EDT
- J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available by Davis zou on August 27 2002 08:34 EDT
- J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available by m m on August 28 2002 17:29 EDT
- J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available by m m on August 28 2002 17:34 EDT
- Sun's ChiliSoft ASP by Sean Sullivan on August 27 2002 20:06 EDT
- J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available by Jaechun Noh on August 28 2002 21:18 EDT
-
J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available[ Go to top ]
- Posted by: Richard Atkinson
- Posted on: August 23 2002 08:41 EDT
- in response to Davis zou
There is more to converting an ASP application to a JSP application than just converting the code. Most ASP applications have pages full of SQL code and one of the big advantages of JSP is getting away from that development model. I wouldn't trust a conversion tool to do the job. -
J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available[ Go to top ]
- Posted by: Deyan Petrov
- Posted on: August 23 2002 08:44 EDT
- in response to Richard Atkinson
You must be joking, when for the last time did you see a production ASP page with SQL in it?? Maybe you want to tell me that in JSP I can't write JDBC code with inline SQL? -
J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available[ Go to top ]
- Posted by: Richard Atkinson
- Posted on: August 23 2002 08:59 EDT
- in response to Deyan Petrov
Ok, so you've got all your data access done through COM objects, which from my experience do not scale well unless you are using MTS. This tool isn't going to convert them for you, so you still have to do it yourself.
I'm not saying you can't write JDBC code in JSP. Just that from my experience you are much more likely to see ADO code in ASP pages than JDBC code in JSP pages. -
J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available[ Go to top ]
- Posted by: Tiberiu Fustos
- Posted on: August 23 2002 10:51 EDT
- in response to Deyan Petrov
<quote>
when for the last time did you see a production ASP page with SQL in it?? Maybe you want to tell me that in JSP I can't write JDBC code with inline SQL?
</quote>
There is significantly higher chance to have ASPs full with SQL and business rules simply because that was the programming model supported and promoted by Microsoft when it first came out. All the "wizards" and built-in Visual Studio 6 (InterDev) were generating pages filled up with SQL code in the pages. It took some time until Microsoft came out and said that it's not best practice to use their tools....
There are less JSP projects with SQL code because the associated blueprints always promoted clean separation and proper best-practices.
-
J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available[ Go to top ]
- Posted by: Ray Offiah
- Posted on: August 24 2002 12:05 EDT
- in response to Deyan Petrov
<quote>
You must be joking, when for the last time did you see a production ASP page with SQL in it??
</quote>
About two weeks ago. It was a magazine article showing folk how to use ASP. Most Active Server Pages I've come across just stick the SQL straight on the page.
Obviously you can do the same with JSP, but in my experience, I find that Java bods are more likely to the SQL code out of harm's way; in a servlet or an EJB.
-
J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available[ Go to top ]
- Posted by: Tom Pridham
- Posted on: August 23 2002 08:56 EDT
- in response to Richard Atkinson
I agree with the post about SQL in ASP pages. I am currently working on a ASP to JSP conversion...and the two biggest issues are ASP pages with SQL embedded and the fact that business rules are repeated over and over again in all of the ASPs. Every ASP project I have seen has had embedded SQL in all of the pages. I don't think there is a magic cure for an ASP -> JSP conversion......wouldn't we just end up with the same sloppy structure, just in a different language? -
J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available[ Go to top ]
- Posted by: Chris Novak
- Posted on: August 23 2002 11:41 EDT
- in response to Tom Pridham
I don't think there is a magic cure for an ASP -> JSP >conversion......wouldn't we just end up with the same >sloppy structure, just in a different language?
I agree it might be sloppy, however, if you are trying to convert over to J2EE, you could use this solution to move legacy code over. All further development could then be done correctly, and you would not have the problem of sharing a session between two servers, and maintaining two platforms. -
J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available[ Go to top ]
- Posted by: Don Brown
- Posted on: August 23 2002 14:01 EDT
- in response to Tom Pridham
That's nothing. My company just got a contract to rewrite a production asp app that had tons of sql in the client vbscript code! Remote Data Objects was a very, very bad idea.
Don -
J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available[ Go to top ]
- Posted by: Tahir Awan
- Posted on: August 23 2002 14:35 EDT
- in response to Don Brown
I am sorry to say that evaluating J-ASP is by far my worst experience with any software evaluation. There's some sloppy license checking algorithm which just says "license key is expired" though I just installed it and was using first time. Besides getting a fix from the developer and trying a complete path in classpath, I could not get it to work.
Tahir -
J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available[ Go to top ]
- Posted by: Werner Alber
- Posted on: August 26 2002 06:37 EDT
- in response to Richard Atkinson
Download eval?? -
J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available[ Go to top ]
- Posted by: kalpesh patel
- Posted on: August 26 2002 23:39 EDT
- in response to Davis zou
I am also working on a Conversion project from ASP to JSP/Struts.But the biggest problem we found was of handling includes and global variables .In ASP the only way to structure and reuse code is to use include files and global functions so how this tool is handling that.
All variables are global in the pagescope in JSP and need not be passed in the function and are visible in include so i think this tool might not be able to support this kind of conversion. -
J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available[ Go to top ]
- Posted by: Davis zou
- Posted on: August 27 2002 08:34 EDT
- in response to kalpesh patel
J-ASP does support the global variales and include files. you can try J-ASP evaluation version on your ASP project. -
J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available[ Go to top ]
- Posted by: m m
- Posted on: August 28 2002 17:29 EDT
- in response to kalpesh patel
There is sql in Asp code ...
And so?
Where is the problem?
If i understand , the problem is when u try to convert
...
Dim rs as recordset
rs.resync
...
Yes ado or dao provide a cache mecanism since 1996 !!!
until now Jdbc 2.0 provide nothing comparable. u have to keep the connection alive all the time u need the data ; or to store it in a collection or As the ibm's wizard in websphere studio, u write sql in jsp page.
I dont work for $un nor microsoft
i work for myself
asp->jsp Shaihulud
-
J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available[ Go to top ]
- Posted by: m m
- Posted on: August 28 2002 17:34 EDT
- in response to kalpesh patel
There is sql in Asp code ...
And so?
Where is the problem?
If i understand , the problem is when u try to convert
...
Dim rs as recordset
rs.resync()
...
This king of instructions ( means resync with db to refresh the data; means u are not connected all time with db but u keep ur recordset alive!)
Yes ado or dao provide a cache mecanism since 1996 !!!
until now Jdbc 2.0 provide nothing comparable. u have to keep the connection alive all the time u need the data ; or to store it in a collection or As the ibm's wizard in websphere studio, u write sql in jsp page.
asp->jsp
jsp -> asp.Net
I dont care it s just another jobs !!!!
thank u $un , thank u micro$oft
-
Sun's ChiliSoft ASP[ Go to top ]
- Posted by: Sean Sullivan
- Posted on: August 27 2002 20:06 EDT
- in response to Davis zou
Has anybody tried ChiliSoft ASP
(aka "Sun ONE Active Server Pages")?
http://www.chilisoft.com/
ChiliSoft is owned by Sun.
-
J-ASP 2.1 ASP to JSP/Servlet Conversion Tool Available[ Go to top ]
- Posted by: Jaechun Noh
- Posted on: August 28 2002 21:18 EDT
- in response to Davis zou
I saw discussions about this tool.
I also don't think that this can satisfy any one.
In my experience, it was useful using asp2php converting tool from asp to php.
Only If we get a help only a little, I think this tool is valueable.