autoreload of jsp files failed while working hard on a single jsp

2001-04-12 Thread Norman Timmler
hi, usally the autoreload function of jsp's works fine, but after some savings on a single jsp or some time passes (something between 10 minutes and half a day) orion does not reload the jsp correctly. if you press reload in your browser the old page is shown without changes actually made in the

Re: autoreload of jsp files failed while working hard on a single jsp

2001-04-12 Thread Santosh Kumar
you have to restart orion..no other option. santosh -Original Message- From: Norman Timmler [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Date: Thursday, April 12, 2001 1:48 PM Subject: autoreload of jsp files failed while working hard on a single jsp hi, usally the

RE: javax.crypto

2001-04-12 Thread Van Duong
Hi,I want to generate secret key for encrypting a credit card number. But It provide a error as follow:java.lang.NoClassDefFoundError at javax.crypto.KeyGenerator.getInstance([DashoPro-V1.2-120198])Could anyone tell me what this error is? any help I would highly appreciate.Van DuongMy code:

Re: Including jar files in my web app ?

2001-04-12 Thread Jasper Straaten
Title: SV: Including jar files in my web app ? Hi Eddie, I have been experiencing the same classpath-related problems. Searching through this maillinglist i found out more people have problems with this. One thing that seems to be working is starting orion without -jar orion.jar but with

Orion-Struts (more question)

2001-04-12 Thread olivier
Hi, Thanks to the trick I have seen on this site about how to make struts working with Orion, I thought that was all good...not exactly. I can use most of tags I need, except the bean:message one: html:link page="/editRegistration.do?action=create"Registration/html:link (The trick is to

Setting a Stateful Session Bean Timeout

2001-04-12 Thread Wojciech Uliasz
The "Mastering Enterprise Java Beans" says that EJB descriptor defines the bean specific timeout. Orion file "ejb-jar.xml" alows tag env-entry to set entries but documentation doesn't mention how to set bean timeout. After deplyment in orion-ejb.jar.xml file there is parameter timeout set to

AW: autoreload of jsp files failed while working hard on a single jsp

2001-04-12 Thread Norman Timmler
it is a bug, isn't it? really anoying if you work with 3 or more people on one project. you have to restart the orion server every 10 minutes and it takes a while to come up again. :-(( -Ursprngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Im Auftrag von Santosh

RE: parsePostData

2001-04-12 Thread Fyffe Carl
Frank, Did you figure this problem out? I have been having the same problem and hope you can shed some light on the subject. Ernie, Because it is nice to have all of the data in one variable that isn't a request object. Just my two cents. Carl -Original Message- From: [EMAIL

RE: Kawa 5.0 Ent and Orion 1.4.7

2001-04-12 Thread Kemp Randy-W18971
I think someone on this list contacted the Kawa development team, and the answer they received was that integration with Orion would be accomplished in an up and coming Kawa service pack. -Original Message- From: Kalle Anka [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 11, 2001 5:06

Re: autoreload of jsp files failed while working hard on a single jsp

2001-04-12 Thread Santosh Kumar
That is a major source of concern and wastage of time for our dev. project. But we got used to it. ;-) -Original Message- From: Norman Timmler [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Date: Thursday, April 12, 2001 5:58 PM Subject: AW: autoreload of jsp files failed while

sharing class files between applications

2001-04-12 Thread Taavi Tiirik
Hello, Is there a way to specify classpath for a web application so that instead of having all servlets and other class files int WEB-INF/classes I could share them between different web applications. And yes, I still want to use development=true option and have the class files compiled

java.lang.InternalError thrown ...

2001-04-12 Thread Frank Eggink
Hi, The jdk 1.3 JVM of SUN (oth on Windows and Linux) throws a java.lang.InternalError on redeployment, after calling Runtime.getRuntime.exec(...). At some moment in time a need to do some administration on my Linux server. That moment is defined my a client calling a Session Bean on the

R: Orion-Struts (more question)

2001-04-12 Thread DeVincentiis Giustino
In your code fragment there's no "bean:message" tags. Anyway, I've got the following line in a jsp that works fine: html:link page="/ricercaSoggetto.do"bean:message key="index.soggetto.ricerca"//html:link You need the following init-param in the ActionServlet configuration (web.xml):

RE: Kawa 5.0 Ent and Orion 1.4.7

2001-04-12 Thread Jarek Skreta
Hi, He have received a beta release of Kawa 5.0 SP1 (which includes out of the box support for Orion) for testing sometime ago. There is at present a SP1 available from Allaire's website for download (http://www.allaire.com) although as we are not using it (we are using the one that they sent

Xerces and Xalan

2001-04-12 Thread Mikael Ståldal
Why does Orion uses such old versions of Xerces and Xalan? It would be nice with JAXP 1.1 support.

RE: autoreload of jsp files failed while working hard on a single jsp

2001-04-12 Thread Mike Cannon-Brookes
I think you all have more problems than Orion. I'd suggest looking at the dates on your multiple machines (usually this happens when one is behind another so the save does not come up as a modified file on the server). I've NEVER had to restart Orion to load a JSP before - and it's been working

Re: Xerces and Xalan

2001-04-12 Thread Hani Suleiman
1.4.8 is rumoured to support JAXP1.1, so we just have to wait for the next update! On Thu, 12 Apr 2001, Mikael Stldal wrote: Why does Orion uses such old versions of Xerces and Xalan? It would be nice with JAXP 1.1 support.

Re: AW: autoreload of jsp files failed while working hard on a single jsp

2001-04-12 Thread Dan North
Has anyone posted this to bugzilla? Just a thought At 14:23 12/04/2001 +0200, you wrote: it is a bug, isn't it? really anoying if you work with 3 or more people on one project. you have to restart the orion server every 10 minutes and it takes a while to come up again. :-((

JMS and Orion

2001-04-12 Thread Armin Michel
I setup an application that successfully uses a pub/sub topic. On subscriber side I am currently using "subscriber.receive()" to retrieve the sent messages (in an extra thread). So far, so good. But: I'd like to use "subscriber.setMessageListener()" instead. And this doesn't work (up to now).

Re: sharing class files between applications

2001-04-12 Thread Geoffrey Marshall
I know this is not the solution you're looking for, but what I do is simply define all my packages in /com/domainName/package(s)/classes. Then in the /WEB-INF/classes directory for each application, I simply make a symbolic link ( ln -s /com com). So far, so good. On Thursday, April 12,

RE: autoreload of jsp files failed while working hard on a single jsp

2001-04-12 Thread Aniket V U
I agree. I havent had a problem till date of Orion not auto re-loading my jsp files. I do this all the time and in fact quite a few JSP files get updated on our production system all the time without having to restart orion. Aniket At 07:12 PM 4/12/2001, you wrote: I think you all have more

RE: Xerces and Xalan

2001-04-12 Thread Randahl Fink Isaksen
I upgraded my versions without any problems encountered - maybe you too could benefit from replacing your two jar files. Remember, however, that you should download the latest version of Xalan and use BOTH the xalan.jar AND THE xerces.jar which comes with Xalan - that way you can be sure your

RE: javax.crypto

2001-04-12 Thread Dean Parker
Try placing the 4 cryptography jars in java_home\jre\lib\ext directory of the virtual machine you are using. DP -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Van DuongSent: Thursday, April 12, 2001 4:33 AMTo: Orion-InterestSubject: RE:

RE: autoreload of jsp files failed while working hard on a single jsp

2001-04-12 Thread cybermaster
Auto-reload works correctly for me only for files in the applications/my-app/my-app-web directory. Files in subdirectories of .../my-app-web, e.g. .../my-app-web/secure/*.jsp don't get automatically reloaded ... so far couldn't find any deployment descriptor that would change this behaviour.

RE: parsePostData

2001-04-12 Thread cybermaster
Maybe you can get what you want if you take a look at the File Upload Page on www.orionsupport.com (at least when the site can be accessed - it's great, but seems ot be too popular for it's own good, and can't be accessed half of the time) --peter -Original Message- From: [EMAIL

www.orionsupport.com

2001-04-12 Thread Taavi Tiirik
I haven't been able to use www.orionsupport.com from this corner of world for some time now. Is it just me or is it bigger? It does respond to ping though but http server seems to have problems. Can anybody pour some light... thanks, Taavi

Re[2]: AW: autoreload of jsp files failed while working hard on a single jsp

2001-04-12 Thread Rafael Alvarez
Orion autoreload features have worked very well al the time, either in development, integration and production enviroments, EXCEPT when we got a problem of date synchronization between our integration and production servers (our integration server have a date greater that the production one).

ORION RISE FROM THE DEAD!

2001-04-12 Thread skyman
I've been watching Orion for awhile using/testing. It so close to being ideal for me and my clients and we are ready to buy. But development seems to have stopped lately. Updates to the web site are virtually non-existant (ie ORION 1.2 released on main site)...meanwhile we are up to 1.4.5

RE: www.orionsupport.com

2001-04-12 Thread Arved Sandstrom
No, it's not just you. So, unless you also live and work in Nova Scotia, it's not a localized problem. I haven't gotten through all day. Regards, Arved Sandstrom -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Taavi Tiirik Sent: Thursday, April 12, 2001

RE: JMS and Orion

2001-04-12 Thread Claudio Cordova
There is a bug posted for this...I had the same problem. I use my own thread to receive the messages. Claudio -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Armin Michel Sent: Thursday, April 12, 2001 7:48 AM To: Orion-Interest Subject: JMS and

Usage of the Service console...

2001-04-12 Thread Chaya Ramanujam
I've been playing with the Service console. It took me way longer to create, install and deploy a J2ee app using the console than it did when I did everything myself on the command line (creating the directory structures, creating very simple deployment descriptors, creating the jar and war

Re: www.orionsupport.com

2001-04-12 Thread Ben Kruger
There is a trick. goto google and do something like this. jndi site:orionsupport.com Then used the cached results :) Taavi Tiirik wrote: I haven't been able to use www.orionsupport.com from this corner of world for some time now. Is it just me or is it bigger? It does respond to ping

url-pattern help

2001-04-12 Thread Robert S. Sfeir
To get multiple mappings I seem to have to do this for things to work: servlet-mapping servlet-namejtransit/servlet-name url-pattern/*.taf/url-pattern /servlet-mapping servlet-mapping

RE: ORION RISE FROM THE DEAD!

2001-04-12 Thread Kemp Randy-W18971
David: Most people on this list are fans of Orion and are rooting for them to succeed. Personally, I root for the small guys, like Orion, Jboss, and Jonas, only because this technology should be available to everyone, and not just companies with deep pockets. Orion is the only commercial

RE: www.orionsupport.com

2001-04-12 Thread Robert_Lasch
No luck here in IL, USA -Original Message- From: Mike Sick [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 12, 2001 1:25 PM To: Orion-Interest Subject: Re: www.orionsupport.com no luck here in NC, USA - Original Message - From: "Taavi Tiirik" [EMAIL PROTECTED] To:

Re: ORION RISE FROM THE DEAD!

2001-04-12 Thread Rian Schmidt
Boy, do I ever second those sentiments. So far, we've had *great* luck with Orion, including CMP EJBs/JSP/taglibs/filters... I've worked with the commercial servers, Enhydra, and jBoss as well, and I really hope that Orion is released into the open-source community if they're going to tank as a

Re: ORION RISE FROM THE DEAD! - What we have here is a failure to communicate ...

2001-04-12 Thread Mike Sick
Hey Randy, I think that most people who bothered to join this list want Orion to succeed and I can see how you might have taken David's words badly. There's no doubt that there are a significant number of Orion fans that are very dedicated (me included). It's natural, however, to want resolution

RE: ORION RISE FROM THE DEAD!

2001-04-12 Thread Eduardo Estefano
I just got a message from bugzila saying one of the bugs I submitted was fixed. This must mean that they are still updating the product.

Re: Re: ORION RISE FROM THE DEAD!

2001-04-12 Thread skyman
I really hope that Orion is released into the open-source community if they're going to tank as a business. I never thought of that. I guess the real question may be: "What is Orion's/Ironflare's business model?" Taking a wild guess, not based on any first hand knowledge/contact/experience,

Re: Re: ORION RISE FROM THE DEAD!

2001-04-12 Thread Hani Suleiman
David, nothing personal, I'm just hanging my reply off yours as it's the latest one in this thread... BUT some of us are very bored of this thread popping up every few weeks. Sure, Orion hasn't released a new version in a couple of months now (I think), and I'm as desperately eager for 1.4.8 as

Inprise AppServer vs Orion

2001-04-12 Thread jthomas
Hi all, I am pushing hard to get Orion included in the last shortlist for our next product. Only because of the support issues(that everyone here understands),my manager is inclined to consider something like Inprise Appserver as a better alternative.. Now,could anyone here give me some

RE: Inprise AppServer vs Orion

2001-04-12 Thread Claudio Cordova
This might give you an idea. It compares different app. servers. http://www.flashline.com/Components/appservermatrix.jsp Hope It helps. Claudio -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Thursday, April 12, 2001

W3C Log Format

2001-04-12 Thread Hitesh Patel
does orion support W3C Extended Format (like IIS)? http://www.w3.org/TR/WD-logfile.html if not, what can I do to change it? thanks folks! hitesh ___ hitesh r. patel 213.639.8837 ticketmaster online

Re: parsePostData

2001-04-12 Thread Frank LaRosa
Yes, I figured out that the parsePostData is intended for mime-encoded multipart forms, not regular HTML forms. I made myself a helper class to move all the form data into a hashtable. You have to call this from within the JSP page, but then you can pass the hashtable anywhere you want. import

productive comment.

2001-04-12 Thread skyman
David, nothing personal, I'm just hanging my reply off yours as it's the latest one in this thread...BUT some of us are very bored of this thread popping up every few weeks. Sure, Orion hasn't released a new version in a couple of months now (I think), and I'm as desperately eager for 1.4.8

Re: javax.crypto

2001-04-12 Thread Jay Armstrong
One version is in jce1_2_1.jar You must download jce-1_2_1.zip from Sun. There are US export restrictions. Jay Armstrong [EMAIL PROTECTED] Van Duong wrote: Hi, Does anyone can tell me where the package javax.crypto is? Thanks in advance, Van Duong

RE: W3C Log Format

2001-04-12 Thread Alex Paransky
Hitesh, if you look at the documentation located at http://www.orionserver.com/docs/web-site.xml.html you will notice that there are few options available for the formatting of the output log. Here is some text from this file: access-log format="$ip - $user - [$time] '$request' $status $size"

Re: productive comment.

2001-04-12 Thread Jeff Hubbach
I agree with the comment below, but only to a point. I had another developer in our company raise concern over orion because of a database connection error that is thrown in the FAQ section of the orionserver.com website. I expressed to him, and I firmly believe, that I'd much rather have them

RE: productive comment.

2001-04-12 Thread elephantwalker
List, We have an organic community here, but the list has been our only output. The support from the company is lacking. Orionsupport seems to have been a good outlet for some, but appears to be down for a spell. Many here have used the other commercial packages (I have used weblogic and

Andrew J Papada/IDSS_CERT is out of the office.

2001-04-12 Thread APapada
I will be out of the office starting 04/13/2001 and will not return until 04/19/2001. I will respond to your message when I return.

RE: productive comment.

2001-04-12 Thread Hani Suleiman
It would be nice if we could post "success stories" and "hints" directly on the OrionServer web site. If they want to commercialize the product, and don't have the bucks or people to provide support...let *us* provide this service through a "community" process. A great idea, and it's the

RE: productive comment.

2001-04-12 Thread Michael J. Cannon
RE: How do we take the next step? A sig is, classically a _S_pecial _I_nterest _G_roup, in the computer culture. orionsig.net, orionsig.org and orionsig.com are available. Pick 'em. Don't need a license from anyone to be a 'general purpose special interest group,' as long as you don't purport