RE: Java IDE?

2002-03-23 Thread Marc Rabil
I have been following this discussion with much interest since I recently set out to re-evaluate Java IDEs - particularly for J2EE. Based on the recent JDJ poll located here: http://www.sys-con.com/java/readerschoice2002/liveupdate.cfm?cat=J2EE it would seem that a lot of folks like JBuilder.

Problem on Netscape Browser - Document Contained No Data

2002-02-14 Thread Marc Rabil
I have an application that uses a custom user manager and form-based authentication on Orion 1.3.8. Things work great with Internet Explorer, but with Netscape 4.7, the browser pops up a "Document Contained No Data" error when attempting to login - as if its not getting anything back from the ser

RE: Username and Password

2002-02-06 Thread Marc Rabil
You can get the user name for the request like this: request.getRemoteUser() I think, by design, you are not able to get the password from the container. You can however, use the request.isUserInRole() method to see what role they are in. Otherwise, you'll need to access your DB for the passwor

RE: Retrieving stateful session bean

2002-01-25 Thread Marc Rabil
I tried working through this a couple of weeks ago and found no easy solution to accessing the session in the User Manager. For what you are trying to do, it seems you should be able to use the isUserInRole() method once the request actually gets to your application to make the decisions on wha

JAXM Standalone Demo Won't Work

2002-01-11 Thread Marc Rabil
Has anyone had any luck getting the JAXM StandAlone demo (jaxm-simple.war) to work on Orion? I am getting the error below from the originating code (StandAlone.java). Any help will be appreciated, Marc Sending message to URL: http://localhost:8080/jaxm-simple/receiver java.io.FileNotFoundExcep

RE: deploying ejb without jar'ing

2002-01-09 Thread Marc Rabil
this: ... app-ejb ... As long as orion finds the META-INF for the ejbs, it does not make a difference wether it's a jar or not. it will deploy the app into $ORION_HOME/application-deployments/ as usual. - Renaud - Original Message ----- From: "Marc Rabil" <[EMAIL PROTECTE

RE: deploying ejb without jar'ing

2002-01-09 Thread Marc Rabil
I'm pretty sure you can not. Marc -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Morten Wilken Sent: Wednesday, January 09, 2002 4:10 AM To: Orion-Interest Subject: deploying ejb without jar'ing im sure ive come across this... can i deploy ejb's direc

Support for JCA

2002-01-03 Thread Marc Rabil
Does Orion support the JCA (Java Connector Architecture) 1.0 spec - i.e. can I deploy a .RAR file with a resource adapter in it? As always, any help will be greatly appreciated. Marc

EJB Primary Key of int

2001-10-04 Thread Marc Rabil
I can not figure out how to get Orion's EJB CMP to work when the primary key is an 'int'. In the deployment descriptor (ejb-jar.xml), the code is: int When starting up Orion, I get: Class 'int' not found Any help will be greatly appreciated, Marc

EJB 2.0

2001-02-15 Thread Marc Rabil
t and combine the results in Java code or 2) bypass CMP and write my own SQL statements. Any help/insight will be greatly appreciated. Marc Rabil

Broken Pipe

2001-02-02 Thread Marc Rabil
I am experiencing a sporadic IOException in an application that has a message of "Broken pipe". I've included the stack trace below. I am not sure where to look for possible problems since I don't really understand what a broken pipe is. My system is Orion 1.3.8 running on Redhat 6.2 accessing

Turning off Auto-create Tables

2000-11-15 Thread Marc Rabil
I am trying to deploy an app that uses CMP to connect to an Interbase server via the Interclient driver. On deploy, Orion starts auto-creating tables that I don't need (since the database already exists) and gives me the error below. How can I turn auto-create off or point it at the right DB? j

Orion as JBuilder Servlet Engine

2000-11-13 Thread Marc Rabil
I have JB4 Enterprise and have figured out (thanks to help from some folks on this list) how to replace IAS with Orion for running EJBs. I also would like to replace Tomcat with Orion as the web server/servlet engine so I can maintain the integrated JSP and servlet debugging. These seems to be a

JBuilder as an IDE for Orion - Can this work?

2000-08-20 Thread Marc Rabil
Like many participating on this list, we are in the early stages of trying to set-up our development and infrastructure platform.  We are building apps that use both JSPs/Servlets in the web tier and EJB's in the application tier and really like Orion for this.  We also really like JBuilder