Re: Nested tags in orion

2000-07-26 Thread Lorin Kobashigawa
Never mind, i figured it out. Sorry for the hassle. -Lkb At 03:58 PM 7/25/00 -0700, you wrote: Hey, I switched to Orion recently from tomcat, and I'm having a problem with nested jsp tags. test:TestBodyTag trtdtest:TestEntityTag //td/tr /test:TestBodyTag doesn't seem to work in orion.

ClassCastException

2000-07-26 Thread Martin Wells
Hi all, Another quick question. I have a globally allocated (application scope) bean that manages my dbconnection pooling system. I've been seeing a lot of "java.lang.ClassCastException: DBConnectionPool". When I'm doing development on various jsp's and beans that utilise this as an include

PathInfo and servlet-mapping

2000-07-26 Thread Lorin Kobashigawa
Ok, I've determined that I don't always lose my pathInfo. It's only when i try to map my servlet as the default servlet. How do i do a getPathInfo() on my default servlet? Here is the entry in my web.xml file. what am i doing wrong? When I use: servlet-namePrintPathInfo/servlet-name

Problem with deployed EJB Sesstion bean

2000-07-26 Thread Ratz, Peter
Hello, i have deployed a session bean on my orion server. The bean is called "Hello" and is deployed as application Hello. I have also created a client standalone app. When i try to lookup my Hello bean with the name "Hello" and with the following provider-url "ormi://server/Hello" i get the

RE: This could be Interesting

2000-07-26 Thread Hansen, Keir M.
This could be the first unbiased survey of EJB developers on a very important and somewhat elusive question. Of course, a poll gets better the more persons that participate. Hopefully, this list will reach the widest range of developers. I would encourage you to send it to fellow

Re: OR Map mapping

2000-07-26 Thread Vlad Petric
Hi, I got into the same problem. I had an Entity bean called Users, containing a Map called properties. I replaced the cmp-field-mapping for "properties" in the orion-ejb-jar.xml with (I think it is pretty self-explanatory): cmp-field-mapping name="properties" map-mapping

Re: resin config with orion

2000-07-26 Thread Tom MAK
Hi Edwin, First of all, I test the integration within my development machine, but I think it should work for distributed machines also. I did NOT change "anything" in my Orion config. I just change the config of the web server to listen to port 8080 and all default http request will go to

Re: How to trap orion shutdown

2000-07-26 Thread Eric Richardson
Hi Vidur, I don't know if this will help but Servlet.destroy() should be called on shutdown of the web container. Eric :-) Vidur Dhanda wrote: Hello, Is there a way to get a notification when the orion server gets a shutdown request? My application needs to do some clean-up prior to server

Re: How to trap orion shutdown

2000-07-26 Thread Robert Krueger
At 07:57 26.07.00 , Eric Richardson wrote: Hi Vidur, I don't know if this will help but Servlet.destroy() should be called on shutdown of the web container. Eric :-) and also when the web application is reloaded due to a code change or a change in web.xml which is probably not what he wants.

SSL initialization time

2000-07-26 Thread Mattias Arbin
The initialization of an SSL session is pretty slow, at least when using the default SSL provider. On my machine it sometimes takes seconds. Would it be possible to fix this? (I have read about doing tricks with the random seed generation) If so, are there any plans to do so? /Mattias

No Subject

2000-07-26 Thread José Joaquín Fernández
unsubsribe

RE: Deployment

2000-07-26 Thread Juan Pablo Lorandi
I am using it all the time with no problems... And BTW I can say it's neat that orion is compatible with the RI, something VERY important that only orion does... -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Sent: Wednesday, July 26, 2000 3:29 PMTo:

RE: PathInfo and servlet-mapping

2000-07-26 Thread Robert Krueger
the best source for this is the spec.have you verified that your understanding of the spec is correct? we use both servlet mappings with url-patterns and security-constraints and path info and so far it all behaves very consistent although you might have a case where it doesn't. maybe a

RE: How to trap orion shutdown

2000-07-26 Thread Conrad Chan
Furthermore, I have an auto-start java module that will listen for socket connection. Every time I redeploy my application. The java module will start again and of course will return a 'Address already bind' error. I defintely need the shutdown notification to stop the running instance

Principles sanity check. The saga continues

2000-07-26 Thread Dave Smith
I have my web-app set up for basic authentication and that works well. security-constraint web-resource-collection web-resource-nameEJB/web-resource-name url-pattern/ejbtest.jsp/url-pattern

RE: Getting remote objects

2000-07-26 Thread Dave Smith
These are not exclusive, they are both required: Context context = new InitialContext(); MyHome mh = (MyHome)javax.rmi.PortableRemoteObject.narrow( context.lookup("HomeName"), MyHome.class); It used to be permissible to just do MyHome th = (MyHome)context.lookup("HomeName"); but the

Re: Getting remote objects

2000-07-26 Thread Joel Shellman
Does anyone know what problems could occur if you used the old method? What symptoms would we see if we were using the old method, but it wasn't working? Thanks, -- Joel Shellman Chief Software Architect The virally-driven B2B marketplace for outsourcing projects http://www.ants.com/90589781

RE: Getting remote objects

2000-07-26 Thread VASQUEZ_JASON
Interesting...I will go ahead and use the narow method from now on, but I did some experimentation and it worked with just the lookup w/ Orion. Thanks for the info! -Jason

Unfound servlet directory

2000-07-26 Thread hanasaki
I have a package schema of com.myCompany.apps.[ap1,ap2...] com.myCompany.servlets.[servlet1] The default global-web-application.xml specifies orion-web-app jsp-cache-directory="./persistence" servlet-webdir="/servlet" development="true" The goal is to have one

RE: Getting remote objects

2000-07-26 Thread Dave Smith
You would get ClassCastExceptions (I think). Orion does not use RMI over IIOP so the old method will work, but will not necessarily be portable to all app servers (including the J2EE). Dave Smith Senior Team Leader Aristocrat Technologies Australia Pty Ltd mailto:[EMAIL PROTECTED]

JDBC Connection problem

2000-07-26 Thread Ishpal
hello, I'm new here and trying to setup orion server. The problem is with the data-souce.xml My environment is as ... O.S.-- Linux RedHat-6.2, JDK-- jdk1.2.2 from Sun DataBase-- MySQL. JDBC driver-- mm.mysql.jdbc-1.2c In the config/data-sources.xml file My configurations are...

RE: JDBC Connection problem

2000-07-26 Thread Dave Smith
You have updated the wrong fields. You need something like data-source name="Profile" class="com.evermind.sql.ConnectionDataSource" {DO NOT CHANGE} location="jdbc/DefaultDS" pooled-location="jdbc/DefaultPooledDS"

RE: WEB-SITE

2000-07-26 Thread Brady Moritz
It could also be useful if you have multiple domain names, and thus websites, running on the same instance of the server. Thanks Brady Moritz Moritz Designs -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of David Sierra Fernandez Sent: Wednesday,

RE: Deployment

2000-07-26 Thread Christophe Hartwig
You can also use EJX... It is a generic EJB XML descriptor editor... It can be customized with home made plug ins, to allow AS specific behavior... And I find it more useable than deploy tool... and it is OpenSource... http://www.dreambean.com http://www.dreambean.com Bye Christophe