Re: ASP to JSP converstion

2001-08-09 Thread Konrad Musial
You may try using CodeCharge (www.codecharge.com) to speed up the conversion, as well as generate JSP or ASP or C#, PHP, ColdFusion, etc. from single environment. That way you may be able to end your conversion worries or at least get started... Konrad - Original Message - From: "Parker,

Re: Possible to add dynamic string in an include directive?

2001-08-09 Thread Ashish Shrestha
"Duffey, Kevin" wrote: > This is what you want: > > <% > String contextPath = request.getContextPath(); > %> > > <%@ include file="<%= contextPath %>/path/header.inc" %> > > stuff.. > > <%@ include file="<%= contextPath %>/path/footer.inc" %> > This is what you do: <% String contextPath = r

Re: ASP to JSP converstion

2001-08-09 Thread Shawn Zhu
on that note, I agree with Celeste, that any decent c/c++ coder will have no problem with the whole Java/Jsp/Servlet stuff. ASP can be equally good, however, I prefer coding in JSP/Java. -Original Message- From: Haseltine, Celeste [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 09, 200

Re: ASP to JSP converstion

2001-08-09 Thread Shawn Zhu
An example I found in a jsp page: <%@ page contentType="application/vnd.ms-excel" %> <%-- Note that there are tabs, not spaces, between columns. --%> 19971998199920002001 (Anticipated) 12.313.414.515.616.7 -Original Message- From: lee hwaying [mailto:[EMAIL

Re: ASP to JSP converstion

2001-08-09 Thread Lars Thuring
Hi, "Parker, Kenneth" wrote: > Well, I'd prefer to stay with ASP, but my project is moving over to JSP. If > I can't figure out how to re-write the app in JSP, I'm may be history. > > That's why I'm hoping I can do a quicky conversion for something and I'm > looking for some kind of conversion

Re: ASP to JSP converstion

2001-08-09 Thread Lars Thuring
"Parker, Kenneth" wrote: > Well, I'd prefer to stay with ASP, but my project is moving over to JSP. If > I can't figure out how to re-write the app in JSP, I'm may be history. > That's why I'm hoping I can do a quicky conversion for something and I'm > looking for some kind of conversion tool. I

Re: ASP to JSP converstion

2001-08-09 Thread Haseltine, Celeste
Lee, MS has distributed a free excel COM component that you can use inside of a JSP. It displays an existing excel sheet only that resides on the server, it does NOT allow you to modify or create a new excel sheet. I don't remember where I downloaded it from, but you should be able to do a sear

Re: ASP to JSP converstion

2001-08-09 Thread lee hwaying
any one has any idea how to launch excel from jsp or servelet without using linar, which cost money??? >From: "Haseltine, Celeste" <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and >reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: ASP to JSP

Re: ASP to JSP converstion

2001-08-09 Thread lee hwaying
have a look at http://www.linar.com/jintegra/doc/ >From: "Parker, Kenneth" <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and >reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: ASP to JSP converstion >Date: Thu, 9 Aug 2001 08:23:17 -0400 > >We

Re: ASP to JSP converstion

2001-08-09 Thread Haseltine, Celeste
Kenneth, I have worked on both the MS side of the shop (VB VC++ COM and ASP) and the Java side of the shop (Java, JSP, RMI). On of the major difference between ASP and JSP is that ASP is interpreted, where as JSP is compiled by your JSP server into a servlet the first time you "hit" the JSP file

AW: Connection to The Database

2001-08-09 Thread Hille, Stephan
Hi, check your sid in the url (jdbc:oracle:thin:@server:port:sid) for the jdbc-connection, for example: jdbc:oracle:thin:@www.oracle.com:1521:orcl.   for errorcode 12505 see oracle-documentation for details:   TNS-12505 TNS:listener could not resolve SID given in connect descriptor      Cau

Re: ASP to JSP converstion

2001-08-09 Thread Jon Garry
I am in a similar situation where I am moving from a COM/ASP scenario over to a Bean/JSP environment. >From my experiences so far, I'd say that a tool to convert from ASP over to JSP isn't going to exist and I'd not put a lot of faith in the output that any tool would output, and there could be o

Connection to The Database

2001-08-09 Thread Duc Nguyen
Hi all, I am trying to make connection to Oracle DataBase Using Oracle JDBC Thin And UserName = "Scott", Password="tiger"   And I got this Error Message   io exception: Connection refused(DESCRIPTION=(TMP=)(SVNNUM=135294976)(ERROR=(CODE=12505)(EMFI=4   Can someone help me out on this please.  

Schedular

2001-08-09 Thread srinivas tadikonda
Hi all,     Is there any java or jsp based  Schedulars.  It contains automail also. Its more or less calendar but it will have one facility auto mailsystem. Please help me. Thanks inadvance.   Regards Srinivas       Get your FREE download of MSN Explorer at http://explorer.msn.com

Re: invoke exe written in other language from JSp/ servelet?

2001-08-09 Thread Christian Roslawski
> > hi thanks, may i know what package to import ? > Runtime and Process are located in the package java.lang, which is imported automatically by the Java Compiler (so you don't have to import it). Be careful what you execute, especially if it includes user-input from a web-form. This could compr

Re: ASP to JSP converstion

2001-08-09 Thread Parker, Kenneth
Well, I'd prefer to stay with ASP, but my project is moving over to JSP. If I can't figure out how to re-write the app in JSP, I'm may be history. That's why I'm hoping I can do a quicky conversion for something and I'm looking for some kind of conversion tool. I know that finding a magic tool is

Re: invoke exe written in other language from JSp/ servelet?

2001-08-09 Thread lee hwaying
hi thanks, may i know what package to import ? >From: "Artigas, Ricardo Y." <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and >reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: invoke exe written in other language from JSp/ servelet? >Date: T

Re: invoke exe written in other language from JSp/ servelet?

2001-08-09 Thread Artigas, Ricardo Y.
Hi, lee. You can use: Process p = Runtime.getRuntime().exec( "command" ); to execute the command you want. HTH. > -Original Message- > From: lee hwaying [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, August 09, 2001 6:46 PM > To: [EMAIL PROTECTED] > Subject: invoke exe written in ot

regenerating jsp file from servlet

2001-08-09 Thread John Thomas
Hi every one, I need to regenerate a jsp file from servlet code. Is there any tools available for doing it.? Regards John Thomas === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For diges

invoke exe written in other language from JSp/ servelet?

2001-08-09 Thread lee hwaying
does anybody know if we can invoke a normal .exe process written in other language in different machine/same machine from java servelet or JSP? _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp =

Re: Re- initialising a Bean

2001-08-09 Thread Mohammad Ramzan
Thanks Hans & Hamid for your help, I have found a very simple solution to this: By placing tags within the body of the use , the set property was only executing when the bean was instantiated (which was the problem, as when a user went back to change the form or created a new project the bea

Re: Offtopic: Hiding Javascript - Can be done

2001-08-09 Thread Steven Elliott
on 09/08/2001 09:15, Geert Van Damme at [EMAIL PROTECTED] wrote: > > That won't do very much. > Simply type in the URL to the hardeep.js file and you can read it. > No, it's very simple. You can not hide client side scripting for the user. Not > a chance. > > Geert Van Damme > -Original Messag

Re: Offtopic: Hiding Javascript

2001-08-09 Thread Geert Van Damme
That won't do very much. Simply type in the URL to the hardeep.js file and you can read it. No, it's very simple. You can not hide client side scripting for the user. Not a chance.   Geert Van Damme -Original Message-From: A mailing list about Java Server Pages specification a

Re: ASP to JSP converstion

2001-08-09 Thread lee hwaying
BTW, may i know why do you want to convert? ASP is poweful and they are introducing .NET. >From: Brad Rhoads <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: Re: ASP to JSP converstion >Date: Wed, 8 Aug 2001 16:02:31 -0500 > >http://www.oracle.com/features/9i/

Re: Offtopic: Hiding Javascript

2001-08-09 Thread Kailash
one way is to - include your java script file in to your page. by this method script file doesn't get visible to the user.