session_destroy frees session variables on JRUN 3.1

2002-01-25 Thread Arif Senol
Hi all, After a session is opened on our server, I set some session variable using session.setAttribute method. And if the user closes the window or his session expires, the session_destroy event occurs which is in global.jsa ... So, I want to get the session variables using

Jrun4 beta - Nozomi -login

2002-01-25 Thread Justin MacCarthy
Who do you email for access to the Jrun4 beta - Nozomi ??? Thanks Justin __ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community.

RE: Jrun4 beta - Nozomi -login

2002-01-25 Thread Jeff Dingle
i had the same problem just enter user: admin pass: admin these are in the jrun-users.xml file hope that solves your problem cheers jeff -Original Message- From: Justin MacCarthy [mailto:[EMAIL PROTECTED]] Sent: Friday, January 25, 2002 9:34 AM To: JRun-Talk

RE: ms sql2000 jdbc drivers

2002-01-25 Thread Jeff Dingle
we (the royal) were going to use this in our production environment but the driver had problems with large blobs -Original Message- From: Lachlan Roche [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 5:56 PM To: JRun-Talk Subject: Re: ms sql2000 jdbc drivers I have been

JRun 4 beta 2 and OSX

2002-01-25 Thread John Schladenhauffen
Hey All, Beta 2 looks good. The Linux install even works with OSX. :-) Just do a -i swing when running the installer at the command line. For more help on the installer you can do a --help . Now if I could only get Neo installed...

Re: JRun 4 beta 2 and OSX

2002-01-25 Thread Russ Ferguson
where do you get the jrun beta? or the neo beta for that matter ;) thanks. ...russ - Original Message - From: John Schladenhauffen [EMAIL PROTECTED] To: JRun-Talk [EMAIL PROTECTED] Sent: Friday, January 25, 2002 10:55 AM Subject: JRun 4 beta 2 and OSX Hey All, Beta 2 looks good. The

RE: JRun 4 beta 2 and OSX

2002-01-25 Thread Verma_Dilip
This site doesn't have anything. is it required send them a mail to get JRun 4 beta or it can be downloaded from some location? -Original Message- From: Jeff Dingle [mailto:[EMAIL PROTECTED]] Sent: Friday, January 25, 2002 11:17 AM To: JRun-Talk Subject: RE: JRun 4 beta 2 and OSX

RE: JRun 4 beta 2 and OSX

2002-01-25 Thread Scott Stirling
We're working on it right now. I am about to send an announcement out to jrun-talk as soon as we open up the new beta user registration page. Scott Stirling Macromedia -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, January 25, 2002 11:28 AM To:

Re: JRun 4 beta 2 and OSX

2002-01-25 Thread Russ Ferguson
does macromedia have any plan to make a java deveopment program kind of like dreamweaver or are they going to stick with just the jsp side of things? if that is the case. any recomendations on a good java development program and a book? thanks ..russ

RE: JRun 4 beta 2 and OSX

2002-01-25 Thread Scott Stirling
I don't think Macromedia wants to try to compete with JBuilder, VisualAge, etc. Web developers are our main audience and strengths in the visual tools arena. If you want a good Java IDE, a great one to try is IDEA from www.intellij.com. It's great for productivity. Has a lot of features for

RE: JRun 4 beta 2 and OSX

2002-01-25 Thread Drew Falkman
Russ- Macromedia has three Java IDE's (using the term loosely): 1. Dreamweaver UltraDev JRun 2. JRun Studio 3. Kawa They are all different. UltraDev basically hides the actual code (you can look at it, but it is mostly autogenerated) - and it only generates JSP code. There are no real

Re: JRun 4 beta 2 and OSX

2002-01-25 Thread Russ Ferguson
im going to be using jrun at work. i thought kawa was discontinued thats why i asked about an ide. thanks for the help ...russ Russ- Macromedia has three Java IDE's (using the term loosely): 1. Dreamweaver UltraDev JRun 2. JRun Studio 3. Kawa They are all different. UltraDev

RE: JRun 4 beta 2 and OSX

2002-01-25 Thread Scott Stirling
Couple things I would add... 1. Kawa is discontinued. 2. UltraDev 4 doesn't hide the code if you don't want it to. You can use it in design, code, or design/code. I usually use it (for HTML coding) in design/code, which is awesome -- you let it draw tables and resize things, then go in and

RE: JRun 4 beta 2 and OSX

2002-01-25 Thread Mark Phelps
Is this GUI Deployment tool you mention free? Where can it be downloaded? My ears pop up when somebody mentions free tools. -Original Message- From: Scott Stirling [mailto:[EMAIL PROTECTED]] Sent: Friday, January 25, 2002 12:15 PM To: JRun-Talk Subject: RE: JRun 4 beta 2 and OSX

RE: JRun 4 beta 2 and OSX

2002-01-25 Thread Gunter Sammet
:-) 3. We have integrated our GUI Deployment Tool with JBuilder :-) Personal ( which is free ), so you can develop EJB's easily :-) with Borland and JRun. We are updating this tool to :-) support EJB 2.0 as part of the JRun 4 release cycle. AFAIK, JBuilder Personal is not supposed to be used

Trouble moving app from 3.0 to 3.1

2002-01-25 Thread Nick de Voil
I developed this app on JRun 3.0 on W2K. Now I am trying to deploy it on Jrun 3.1 on Linux and a few things are coming up. Like, I am using some object classes in my JSP files like this: %@ page import=com.blah.beans.*,java.util.* % % ContentList contentList; ContentObject parentObject = new

Re: Trouble moving app from 3.0 to 3.1

2002-01-25 Thread John Schladenhauffen
Try using a ; between packages, instead of a , From: Nick de Voil [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Fri, 25 Jan 2002 15:05:12 -0500 To: JRun-Talk [EMAIL PROTECTED] Subject: Trouble moving app from 3.0 to 3.1 %@ page import=com.blah.beans.*,java.util.* %

Re: Trouble moving app from 3.0 to 3.1

2002-01-25 Thread Nick de Voil
Thanks John, but that got me: Syntax: import expected after this token Next I've tried jarring all the classes into a jar file in WEB-INF/lib, but now I get Compilation error occured: Found 2 errors in JSP file: x.jsp:22: Error: The file ContentList.class was found in directory

RE: Trouble moving app from 3.0 to 3.1

2002-01-25 Thread John Schladenhauffen
%@ page import=com.blah.beans.*,java.util.* % % ContentList contentList; ContentObject parentObject = new ContentObject(); // these 2 types are part of the com.blah.beans package Sorry, your syntax for package separators was correct (,) in the page directive. Are you hard coding your classpath

[ANN] JRun 4 in public beta

2002-01-25 Thread Scott Stirling
Hello, JRun 4 is in beta 2, the first public beta of JRun 4, code named Nozomi. http://betaprograms.macromedia.com/nozomi Full J2EE 1.3 compatibility will be in beta 3, but beta 2 has all the Web stuff (Servlet 2.3 JSP 1.2). Main compat. items missing in beta 2 are full CMP 2.0 and