admin.jar -bindWebApp

2000-10-08 Thread [EMAIL PROTECTED]
I am trying to use admin.jar to bind a web app, I do something like this: java -jar admin.jar ormi://localhost admin pass -bindWebApp appName web default-web-site /Web And I get the following message: Error: java.lang.NullPointerException Any Ideas ? TIA Damian

how to capture stdout ?

2000-10-08 Thread TH Lim
Hi! Is there a setting in Orion server where allows me to capture System.out.println() and System.err.println() in a file? If so, how do set it? thank you /lim/

RE: How does orionconsole do it?? (remote EJBs)

2000-10-08 Thread Stanislav Maximov
Hello, is there a typo in provider URL? Should be "ormi:..." instead of "orim:...". stas@ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of James Ho Sent: Sunday, October 08, 2000 11:10 AM To: Orion-Interest Subject: How does orionconsole do it??

RE: how to capture stdout ?

2000-10-08 Thread Mike Cannon-Brookes
Sure, Just start with java -jar orion.jar -out stdout.log -err stderr.log Mike PS There are other options you might not be aware of, but these are the most useful IMHO - try java -jar orion.jar -? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of TH

Re: getting EJB home from JSP

2000-10-08 Thread Al Fogleson
Title: The only time I have ever seen this is when I forgot to cast my PortableRemoteObject.narrow() call it should be something like... CategoryManagerHomehome; home = (CategoryManagerHome) PortableRemoteObject.narrow(ctx.lookup("myhome"), CategoryManagerHome.class); you still

Re: How does orionconsole do it?? (remote EJBs)

2000-10-08 Thread Al Fogleson
interesting, I connect to a remote server all the time using my clients. I just set up a jndi.properties file, but it would be similar to your setup. About the only thing I see is the /stamp after your remoteserver. I have never had anything after the ormi://remoteserver, Doing all the lookup in

RE: Does Orion have an FTP service?

2000-10-08 Thread Mike Cannon-Brookes
Neville, We run Orion on Linux and as such just use ProFTP (or you could use ftpd / wuftpd). Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Neville Burnell Sent: Monday, October 09, 2000 1:18 PM To: Orion-Interest Subject: Does Orion have an FTP

Re: Does Orion have an FTP service?

2000-10-08 Thread Jason Rimmer
Why bother FTP'ing the file? Not only is the file sent cleartext ("orders" sound like they make include credit card info, etc.) but it's also one more system (and another daemon, e.g. security concerns) to write and support. Just make the file accessible via password protected HTTPS.

Re: Does Orion have an FTP service?

2000-10-08 Thread Damian Guy
You are going to be downloading the files from the machine with Orion on it right ? If so, why don't you use a servlet ? You can then just right a simple program on your remote orders system that connects to a servlet that returns the orders. Damian Hi, Does orion have an FTP service? If

How does orionconsole do it?? (remote EJBs)

2000-10-08 Thread James Ho
Hi everyone, I am currently trying to access an remote EJB from a servlet. I had this, in my code.. env.put(Context.INITIAL_CONTEXT_FACTORY,"com.evermind.server.rmi.RMIInitialContextFactory"); env.put(Context.PROVIDER_URL,"orim://remoteserver/stamp");