RE: deployment tool

2001-11-20 Thread DeVincentiis Giustino
Hi, you can try Ant (http://jakarta.apache.org/ant/) Giustino -Original Message- From: kamsky@yahoo [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 20, 2001 6:54 AM To: Orion-Interest Subject: deployment tool Hi, Is there a deployment tool that is easier than

RE: JUnitee

2001-11-16 Thread DeVincentiis Giustino
Hello Tim, I have junitee working and do not remember any particular hint. I followed the instructions at http://junitee.sourceforge.net/tutorial.html and all works fine. No code added to TestServlet, the only change I have made was to use a TestForm JSP to dynamically load the package under

FW: OC4J and Oracle 9i AS product version mappings

2001-09-14 Thread DeVincentiis Giustino
No, it isn't 1.0.5, it should be1.5.0. Bye Giustino De Vincentiis -Messaggio originale-Da: GUNDA, Satish / RSAIFS - IOM [mailto:[EMAIL PROTECTED]]Inviato: venerdì 14 settembre 2001 16.39A: Orion-InterestOggetto: RE: OC4J and Oracle 9i AS product version mappings Thanks

R: Orion-Struts (more question)

2001-04-12 Thread DeVincentiis Giustino
In your code fragment there's no "bean:message" tags. Anyway, I've got the following line in a jsp that works fine: html:link page="/ricercaSoggetto.do"bean:message key="index.soggetto.ricerca"//html:link You need the following init-param in the ActionServlet configuration (web.xml):

R: EJB 2.0

2001-02-15 Thread DeVincentiis Giustino
It seems to me that Orion does not yet support EJB-QL neither EJB 2.0 many-to-many relationships. However, if you are interested in EJB 2.0 and finders, you may have a look at http://www.orionsupport.com/. Giustino De Vincentiis -Messaggio originale- Da: Marc Rabil [mailto:[EMAIL

R: Virtual hosts

2001-02-06 Thread DeVincentiis Giustino
There is an example at http://www.orionsupport.com/articles/vhosts.html Giustino De Vincentiis -Messaggio originale- Da: Henrik Skafsgaard Larsen [mailto:[EMAIL PROTECTED]] Inviato: marted 6 febbraio 2001 14.02 A: Orion-Interest Oggetto: Virtual hosts If you have 2 (or more) virtual

R: frustrated - jdbc: No suitable driver

2001-01-30 Thread DeVincentiis Giustino
Try initializing the context this way: ... Properties props = new Properties(); props.setProperty("java.naming.factory.initial","com.evermind.server.Applica tionClientInitialContextFactory"); props.setProperty("java.naming.provider.url", "ormi://localhost/app-name");

R: R: frustrated - jdbc: No suitable driver

2001-01-30 Thread DeVincentiis Giustino
w Hashtable(); ht.put(Context.INITIAL_CONTEXT_FACTORY, "com.evermind.server.ApplicationClientInitialContextFactory"); ht.put(Context.PROVIDER_URL, "ormi://192.168.1.3"); ht.put(Context.SECURITY_PRINCIPAL, "someUser"); ht.put(Context.SECURITY_CREDENTIALS, &

R: Distributed EJB's

2000-12-11 Thread DeVincentiis Giustino
Look at http://www.mail-archive.com/orion-interest@orionserver.com/msg02763.html Giustino De Vincentiis e-mail: [EMAIL PROTECTED] -Messaggio originale- Da: Karsten Beving [mailto:[EMAIL PROTECTED]] Inviato: lunedì 11 dicembre 2000 15.16 A: Orion-Interest Oggetto: Distributed EJB's Hi.

R: Servlet not found

2000-12-06 Thread DeVincentiis Giustino
Hi, looking at orion documentation (web.xml configuration file) the syntax of url-pattern tag is: url-pattern/*.thePattern/url-pattern so try adding the '/'... Giustino De Vincentiis e-mail: [EMAIL PROTECTED] -Messaggio originale- Da: PHiL [mailto:[EMAIL PROTECTED]] Inviato:

R: How to use EJBUserManager?

2000-12-04 Thread DeVincentiis Giustino
Hello Alexander, if you want to use an EJB named Account you should have the following classes: - AccountBean (extending EJBUserBean), - Account (extending EJBUser), - AccountHome (extending EJBHome, you have to copy all the definitions from EJBUserHome modifying the return type, and optionally