Re: idea=$395.00USD was: RE: Java IDE?

2002-03-24 Thread Bill Winspur
of immediate refactoring. Oh well, its intellij's business model. I suppose those excluded by the current pricing will just have to wait a few months for the open source and competitors (Borland ?) to come up to speed. Bill Winspur.

Re: Deploying components common to EJB-tier and WEB-tier

2002-03-09 Thread Bill Winspur
I have been putting the shared classes in an extension that I build into both the ear and the war. - Original Message - From: Sanjay Kumar Pandey [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Tuesday, March 05, 2002 10:27 PM Subject: Deploying components common to EJB-tier

Re: Uploading files to Orion webserver with MultipartParser API

2002-03-02 Thread Bill Winspur
I've had numerous weird and transient problems with IE 5.5. Yesterday, getting set up at a client site, I could not download j2sdk1.4 from sun, and had to go to a machine with IE5.0 to get it. However, IE5.5 was able to download netbeans just fine. The Sys Admin guys dont think its a firewall

Re: EJB from an Applet

2002-02-21 Thread Bill Winspur
You may want to check this approach to applet/ejb interaction: http://developer.java.sun.com/developer/technicalArticles/RMI/rmi/ The unstated fact seems to be, that applet-ejb communication is not explicitly supported in J2EE, unlike the client/ejb situation which is configurable via the

Re: url.openConnection() doesn't allow to pass objects or attributes

2002-02-10 Thread Bill Winspur
This article is an excellent intro to posting objects: http://developer.java.sun.com/developer/technicalArticles/RMI/rmi/ Bill. - Original Message - From: prasanth sb [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Sunday, February 10, 2002 4:15 AM Subject: Re:

Re: Shutdown causes Address in use: JVM_Bind

2002-02-09 Thread Bill Winspur
Message - From: Bill Winspur To: Orion-Interest Sent: Thursday, February 07, 2002 1:11 AM Subject: Shutdown causes Address in use: JVM_Bind I'm running Orion 1.5.3 on Nt4/SP6, and jdk1.3.1_01. The command I use to shut the server down is: C:\jdk1.3.1_01

Shutdown causes Address in use: JVM_Bind

2002-02-07 Thread Bill Winspur
I'm running Orion 1.5.3 on Nt4/SP6, and jdk1.3.1_01. The command I use to shut the server down is: C:\jdk1.3.1_01\bin\java.exe -jar admin.jar ormi://localhost admin pwd -shutdown After a shutdown, starting the server always produces the following on the orion console. Error starting

Re: Class.newInstance() Fails with InstantiationException.

2002-02-05 Thread Bill Winspur
or, right? In other words, Object obj = new EchoingPort() is legal? /Obvious Question -Steve Bill Winspur wrote: The echoing port never gets instantiated, the attempt to instantiate, by invoking Class.newInstance(), throws an InstantiationException. However, if you are asking

Class.newInstance() Fails with InstantiationException.

2002-02-04 Thread Bill Winspur
I have a servlet that would instantiate anobject, if everything worked. Unfortunately, it fails with the following exception from the Class.newInstance() method: java.lang.InstantiationException: com.wynnon.appletChannel.test.EchoingPort where EchoingPort is the class I would instantiate

Subject: Classpath Structure Error?

2001-09-23 Thread bill . winspur
SYMPTOMS When I invoke my webapp, the first request to the server causes the front servlet to throw a class-def-not-found exception for the app's session class, which it loads dynamically. The class in question is in fact present in the app's war file, in the web-inf classes directory.

RE: Newbie question

2001-09-23 Thread bill . winspur
Orion is simply an J2EE server (http, jsp and servlets, ejbs, jndi, jms), plus a relatively immature gui console. It is not a development environment. Many folks use ANT from apache.org as a make-like facility for coordinating compiles, and builds of ear files from compiled classes. Hot

Classpath Structure Problem ?

2001-09-23 Thread bill . winspur
SYMPTOMS When I invoke my webapp, the first request to the server causes the front servlet to throw a class-def-not-found exception for the app's session class, which it loads dynamically. The class in question is in fact present in the app's war file, in the web-inf classes directory.

RE: Too Many Open Files?

2001-09-17 Thread bill . winspur
I realize I'm a bit late responding to this (been in summer mode), but yes - a webmin module would be fine. -Original Message- From: Michael J. Cannon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 08, 2001 4:37 PM To: Orion-Interest Subject: Re: Too Many Open Files? Would there be

Servlet Mapping Recursion Problem

2001-05-11 Thread Bill Winspur
In my web.xml I set up the servlet mapping, for a (front) servlet to handle all requests for the web app, to '/'. This works to the extent that all requests are passed to the servlet. BUT... if I do a forward to another resource from the servlet, the servlet's doGet() method is invoked

Re: Servlet Mapping Recursion Problem

2001-05-11 Thread Bill Winspur
] Bill Winspur wrote: In my web.xml I set up the servlet mapping, for a (front) servlet to handle all requests for the web app, to '/'. This works to the extent that all requests are passed to the servlet. BUT... if I do a forward to another resource from the servlet, the servlet's

Re: Basic Authentication

2001-05-11 Thread Bill Winspur
. In a url-pattern, '*' seems to mean 'whatever the root directory is'. Given the above and appropriate group and user defns in orion\config\principals things work OK. I've attached a zip of my test-app's application's xml files. Bill. - Original Message - From: Bill Winspur [EMAIL

Crimson Crash

2001-05-10 Thread Bill Winspur
This popped up on about my third sever restart after upgrading to 1.4.8. Given Sun's interest in this event, I thought Magnus, et al, might also be interested. Ironically, the url below for advising sun returns an Internal server error :-)

Re: Crimson Crash

2001-05-10 Thread Bill Winspur
this error in detail to http://java.sun.com/cgi-bin/bugreport.cgi --- Apart from this Orion seems to be doing what I expect it to do. Sun will be contacting me. Bill. - Original Message - From: Bill Winspur To: Orion-Interest Sent: Wednesday, May 09, 2001

Re: common practice for configuring orion app/web-site

2001-05-10 Thread Bill Winspur
I prefer to do lots of little apps tied togoether by the data they share in an enterprise database (I'll admit the term enterprise database is optimistic but I've just done two years at a client who started his IT shop from scratch, so I'm spoiled). The many apps to one db patttern was

Re: broken default web app - not found

2001-05-07 Thread Bill Winspur
Joey, I had the same problem (basic understanding missing), but got around it and did a howto (attached). Hope this helps. Like you I wanted to keep the jsp examples. I repackaged them as a war file (not covered in the howto, degrading the examples, to a 'normal' web-app. There were a few changes

Basic Authentication

2001-05-07 Thread Bill Winspur
I want to implement basic authentication and used the primer at http://www.jollem.com/~ernst/orion-security-primer/ as a guide, but have not managed to password protect page one so far. TheURL I'm trying to protect responds normally with no login dialog being presented, i.e. my security

Re: Basic Authentication

2001-05-07 Thread Bill Winspur
-nameHead Count Application/realm-name /login-config ... /web-app -- Brian Adair Software Developer Telepak.net http://www.telepak.net Bill Winspur wrote: I want to implement basic authentication and used the primer at http://www.jollem.com/~ernst/orion-security-primer

Re: remote deployment, how?

2001-04-17 Thread Bill Winspur
illa so Magnus et al can get this one fixed? This seems to work for us. Regards, The Elephantwalker -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Bill Winspur Sent: Tuesday, April 17, 2001 12:15 AM To: Orion-Interest Subject: Re: remote deploy

Re: remote deployment, how?

2001-04-17 Thread Bill Winspur
e: remote deployment, how? Hi Bill, please, see comments inline: Bill Winspur wrote: I dont like the underscore prefixing either, particularly in my development environment. At present, on my development wkstation, I manually replace the ear file in orion/applications while t

Re: OrionSupport - if you care about the 'Orion community', read it! WAS RE: productive comment.

2001-04-17 Thread Bill Winspur
Mike, went to the egroup on yahoo, signed up, but could not see any buttons/links to check/post messages. I have a 'howto setup a custom welcome-app' doc to submit for what its worth. Bill - Original Message - From: "Mike Cannon-Brookes" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL

Re: configuring jndi

2001-04-05 Thread Bill Winspur
I'm interested. What was the problem ? Bill. - Original Message - From: "Christy Nicklas" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Thursday, April 05, 2001 2:50 PM Subject: RE: configuring jndi Actually, you can ignore my earlier message, as I found the immediate

Localhost and IP Yield Different Pages

2001-04-01 Thread Bill Winspur
I've just wasted an hour or so debugging a non-existent problem with my default-app configuration that was caused by IE's page cache ! It had locked onto a page for http://localhostwhich it presented instead of the page I'd confugured. Short of persuading MS to get out of the html

Re: admin.jar deploy failed after autoupdate

2001-04-01 Thread Bill Winspur
I was doing autoupdate to a 1.3.8 installation - after re-installing at the 1.4.5 level the problem is gone. - Original Message - From: Bill Winspur To: Orion-Interest Sent: Monday, March 26, 2001 12:14 PM Subject: admin.jar deploy failed after autoupdate

admin.jar deploy failed after autoupdate

2001-03-26 Thread Bill Winspur
I've been using admin.jar to deploy my appsfor several months, but it failed after I did an autoupdate on my server (about Mar 13th). The failuremessages areendless repetition of: at com.evermind.server.ApplicationServerSystemProperties.getProperty(JAX)at