Unable to initialize SSLServerSocketFactory: Permission denied

2002-02-12 Thread BRICKER_JONATHAN_E
We have gotten this error with Orion 1.4.5 with a generated certificate and the server running as root. Error starting HTTP-Server: Unable to initialize SSLServerSocketFactory 'com.evermind.ssl.JSSESSLServerSocketFactory': Permission denied Do you have any idea what this is referring to? I can

ClassDefNotFound Exception

2002-01-28 Thread BRICKER_JONATHAN_E
I was setting up SOAP on Orion and have run into a problem. Anytime I try to use any of the SOAP admin pages( List, Deploy, and un-deploy) I get a ClassDefNotFound Exception for HttpServlet on this line: ServiceManager serviceManager =

Re: SOAP problem with Orion

2002-01-21 Thread BRICKER_JONATHAN_E
This seems to be the line that is causing problems. ServiceManager serviceManager = org.apache.soap.server.http.ServerHTTPUtils.getServiceManagerFromContext(application); Apparently the implicit 'application' call is causing the NoClassDefException. Anyone see this before? Jonathan Bricker

SOAP problem with Orion

2002-01-18 Thread BRICKER_JONATHAN_E
I was installing SOAP on my Orion 1.5.2 server but get a ClassNotFoundException javax.servlet.http.HttpServlet when I try to run anything from the SOAP admin tool. I've followed the HOWTO from Atlassian for installing and as far as I can tell Orion can find soap.jar. My other applications run

Re: Off-topic: UML Tools...Help!!!

2001-12-07 Thread BRICKER_JONATHAN_E
You can get TogetherJ in a solo version for about 1/2 of the Control Center's price. Jonathan Bricker Lilly Research Labs Java ATG Oisin Kim [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 12/07/01 12:15 PM Please respond to Orion-Interest To:Orion-Interest [EMAIL PROTECTED]

QL:EJB in Orion?

2001-11-13 Thread BRICKER_JONATHAN_E
Is the QL:EJB part of EJB 2.0 spec supported in Orion at this point? Jonathan Bricker Lilly Research Labs Java ATG

RE: Design strategy

2001-10-03 Thread BRICKER_JONATHAN_E
I would think that is this better done with LDAP and defined roles and groups. Then use the J2EE security linked to the LDAP to control access. Remember that Entity beans represent data in the database. Unless each of these things are actual data then it should not be an entity bean. Jonathan

Re: Using NT Authentication

2001-09-14 Thread BRICKER_JONATHAN_E
I've seen it down by asking for a FTP connection to the server and using the password. If it goes through then the password it good. It is clunky but it works. Jonathan Bricker Lilly Research Labs Java ATG [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 09/14/01 04:08 AM Please respond to

Test - do not read - eom

2001-09-05 Thread BRICKER_JONATHAN_E
Jonathan Bricker Lilly Research Labs Java ATG

Re: Anyone using TogetherSoft TCC with Orion?

2001-06-26 Thread BRICKER_JONATHAN_E
We are using TogetherJ with Orion. I'm not sure I can help you but for hot deployment we just make an .ear file and move it to the applications directory. Orion does the rest. All done in a make file. From our makefile: ### begin: rules for creating application jar. DIST_DIR=$(APP_HOME)/dist

RE: Orion support company

2001-04-26 Thread BRICKER_JONATHAN_E
New features for OrionSphere will include easy deploying with VisualAge for Java. You can use another deployment tool but it will not be documented and can not be used for very much. You will have the ability to use IBM's java with debugging ties. Of course it is Java 1.2.2 and you must include

Java URL to a file from within container

2001-04-10 Thread BRICKER_JONATHAN_E
I want to parse an XML file and I'm creating a java.net.URL to give the location but I seem to be running into trouble. Here is what I have: The XML file is in the .war file and is in the application( /proj/orion/application/catd/catd) I create a URL like this: URL schemaURL = new

Re: Java URL to a file from within container

2001-04-10 Thread BRICKER_JONATHAN_E
found the answer myself with some experimenting. I was able to reach the file by changing the protocol to http and putting in my port number. basically treating it like a jsp. Now I have my next problem. One that I have been worrying that I would have for about for a day or so.

Re: Hot deployment not so hot

2001-03-30 Thread BRICKER_JONATHAN_E
When we had similar problems we would remove the application from the application directory, the ear and the files from the applications-deployment directory. Make sure you stop the server before doing this. Jonathan Bricker Lilly Research Labs Java ATG Dan North [EMAIL PROTECTED] Sent by:

Java Mail and javax.activation.DataSource

2001-03-20 Thread BRICKER_JONATHAN_E
Hello all, I'm setting up J2EE program and I'm having trouble getting the Java mail to work. I am getting a java.lang. NoClassDefFoundError: javax/activation/DataSource error when I call Message msg = new MimeMessage(session); Everything else is set up and my code is nearly identical to the ATM