RE: Java IDE?

2002-03-27 Thread Justin Crosbie
I hate the way it doesn't support folder hierarchies. The new one even less than 3.2.3, which allowed one folder level per project. I don't see why not, it seems like such a trivial thing. -Original Message- From: Joydeep Kamdar [mailto:[EMAIL PROTECTED]] Sent: 25 March 2002 16:11 To:

RE: Using NT security

2002-03-14 Thread Justin Crosbie
to store plain-text passwords, which is something most people don't do anyway. Exchange definitely offers an alternative authentication mechanism, but that falls outside of the standard javamail SMTP interface. Andre -Original Message-From: Justin Crosbie [mailto

RE: timed events

2002-03-13 Thread Justin Crosbie
I have done this using the java.util.Timer class. I created a class that extends the TimerTask class, and calls the EJB. I made a singleton class that wraps the Timer class, so I can call it from the servlet layer to schedule tasks, and guarantee only one instance per VM. Thus, my EJBs aren't

Using NT security

2002-03-13 Thread Justin Crosbie
Hi all, I checked thearchives and support pages for this, didn't seem to find it. Is there any way to get Orion to usethe NT username+password of whoever is logged in, for running client apps? Currently I'm reading them from a config file, which obviously is not ideal. Also, I am using

RE: File Upload from an Application

2002-03-04 Thread Justin Crosbie
Also, You will need to use a POST form, with the parameter: enctype=multipart/form-data. Don't forget to handle the parameters as well as the files, they're no longer visible with req.getParameter() when you use this. There is a few MultipartParsers out there, including an Orion version. I

RE: Uploading files to Orion webserver with MultipartParser API

2002-03-04 Thread Justin Crosbie
Looks like this didn't go through again. This a hint? (lol) ;) -Original Message- From: Justin Crosbie Sent: 04 March 2002 10:31 To: 'Orion-Interest' Subject: RE: Uploading files to Orion webserver with MultipartParser API Hi Bill, Now that you mention it, I have never been able

RE: Uploading files to Orion webserver with MultipartParser API

2002-02-28 Thread Justin Crosbie
Hi again, Hopefully this one will get through (lol) :) Thanks for the reply Joan, much appreciated. The faulty browser appears to be: IE 5.50.4522.1800 SP1 IE 5.50.4807.2300 SP2 We don't use a proxy server, and we always use HTTP 1.1. OS is Windows 2000 and WinNT for server, and Win2000 only

RE: Uploading files to Orion webserver with MultipartParser API

2002-02-27 Thread Justin Crosbie
Hi Thanks for that, I wasn't aware of those classes, I gave them a go. Similar problem. Different error, but its occasionally failing. I also tried the non-brand-specific UploadServlet.java, similar results. However, I have gotten closer. It was failing on Internet Explorer 5.5. I tried

Uploading files to Orion webserver with MultipartParser API

2002-02-21 Thread Justin Crosbie
Hi, I'm wondering if this has anything to do with the Orion webserver. I am using the com.oreilly.servlet.multipart.MultipartParser to upload files to my servlet. If you try the same file several times, it will sometimes work and sometimes fail with a Corrupt form data: no leading boundary

RE: Job Scheduler pattern

2002-02-08 Thread Justin Crosbie
it for you? But seriously, there are commercial apps for J2EE scheduling if that's the kind of thing you are after, just use google... Geoff -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Justin Crosbie Sent: Saturday, January 26, 2002 2:49 AM To: Orion

FW: Job Scheduler pattern

2002-01-29 Thread Justin Crosbie
This doesn't look like it got processed, I'll send it again... -Original Message- From: Justin Crosbie Sent: 28 January 2002 12:50 To: 'Orion-Interest' Subject: RE: Job Scheduler pattern Hi again, Thanks for the help on this. What I've done so far is this: 1. Implemented

Job Scheduler pattern

2002-01-25 Thread Justin Crosbie
Hi, I'm not sure if I've asked this before, or if I should be asking on a general EJB list. I'd like to implement a job scheduler in J2EE. This would shcedule the execution of EJB methods at a specified time in the future. It would have to be persistent, and jobsd would be rescheduled upon

RE: Job Scheduler pattern

2002-01-25 Thread Justin Crosbie
pattern The www.orionsupport.com site has a sample scheduler that can easily be converted to do something like this. On Fri, 25 Jan 2002, Justin Crosbie wrote: Hi, I'm not sure if I've asked this before, or if I should be asking on a general EJB list. I'd like to implement a job scheduler

RE: Multiply datasources for one application??

2002-01-16 Thread Justin Crosbie
We have configured data-sources.xml to point to multiple sources, the code references the relevant ejb-location value as a JNDI lookup. This works for Entity Beans and direct JDBC. Entity beans use the setEntityContext method to reference the corect source. They can also use the

RE: question about ip allocation

2002-01-09 Thread Justin Crosbie
Hi, Two IP addresses - is this two network addresses, or is it two IP that point to the same DNS entry? If you have two network addresses, on two separate network cards, this should not happen. If they are actually pointing to the same address, you will have to put Orion on a different port to

RE: Class-Path entries in Manifest.mf for EJBs

2001-11-22 Thread Justin Crosbie
Hi Marc, Have you tried adding a library path=/ entry in your Orion application.xml. This should point to the directory that Orion unpacks your library files to. HTH, Justin -Original Message- From: Marc Eilens [mailto:[EMAIL PROTECTED]] Sent: 22 November 2001 09:20 To: Orion-Interest

RE: How can I start Orion Server as a service in Windows NT/2000 ?

2001-11-12 Thread Justin Crosbie
Hi Vu, You need the JNT application from http://www.eworksmart.com/JNT/ Install this and type a command similar to the following, from where you installed Orion: jnt "/InstallAsService:Orion Application Server" "/SD[ORION_HOME]" -jar orion.jar where [ORION_HOME] is where you

RE: Transaction behaviour

2001-10-22 Thread Justin Crosbie
- From: Justin Crosbie [mailto:[EMAIL PROTECTED]] Sent: 19 October 2001 05:34 To: Orion-Interest Subject: Transaction behaviour Hi all, We have implemented a session facade architecture, with session beans calling multiple entity beans. We have configured the trans-attribute

RE: JavaMail problem

2001-10-19 Thread Justin Crosbie
Hi, Thanks for the replies. Still no joy, this is strange behaviour. We don't want to enable relaying totally, because of the security risks. Yet its still a problem if we enable it for specific IP addresses, it doesn't work. We can enable routing to specific external domains, and this works.

Transaction behaviour

2001-10-19 Thread Justin Crosbie
Hi all, We have implemented a session facade architecture, with session beans calling multiple entity beans. We have configured the trans-attribute as Required for everything, as normal. What is the exact criteria for a session method to rollback? Is it that it must be a system initiated

RE: MDB in orion 1.5.2 using Queue

2001-10-18 Thread Justin Crosbie
Hi Romen, did you specify the admin security credentials? its -Djava.naming.security.credentials=admin password If you don't give this, it pops up a textbox asking for the password. Maybe you are tabbing off this before it pops up? Did you enable jms from server.xml by uncommenting the

JavaMail problem

2001-10-16 Thread Justin Crosbie
ange to disable relaying except for the IP address of the machine the appserver is on. The problem is I'm still getting the "javax.mail.SendFailedException: 550 Relaying is prohibited" error. Can anyone shed any light on this? Is there something in Orion I need to do as well? Thanks for any help. Justin Crosbie