RE: Problem to deploy a application in a war file.

2002-04-08 Thread Linda Lott
try changing default.jsp to index.jsp, or change the config file where you specify the initial page. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Monday, April 08, 2002 7:12 AM To: Orion-Interest Subject: Problem to deploy a

Re: Problem to deploy a application in a war file.

2002-04-08 Thread Scott Farquhar
[EMAIL PROTECTED] wrote: P.D. do you know any comercial or free tools to admin Orion server? Whilst not a full administration suite, we provide tools that make working with Orion easier. http://www.atlassian.com/software/tools/ Cheers, Scott -- Scott Farquhar :: [EMAIL PROTECTED]

RE: problem with ResultSet Object

2002-02-17 Thread Dvornikov Victor
- From: sachin mahajan [SMTP:[EMAIL PROTECTED]] Sent:15 2002 6:32 To: Orion-Interest Subject:Re: problem with ResultSet Object Hello Thanks. Can u explain me if i will use CachedRowSet object instead of ResultSet object

Re: problem with ResultSet Object

2002-02-14 Thread Jorge Jimenez C
Sachin: I think you have a design problem. Please,anyone correct me if you think i'm wrong. From inside a JSP page you should not access a recordset returned by an EJB. EJB components represent mostly bussines objects that contains rules and data access services. From outside the EJB (from

Re: problem with ResultSet Object

2002-02-14 Thread Kesav Kumar
ResultSet is not a seralizable object. ResultSet is opened cursor to the database. If you want to pass ResultSet to client i.e jsp/servlet either conver the ResultSet data into you own custom objects or collection classes. The other alternate is to use CachedRowSet. CachedRowset is

Re: Problem on Netscape Browser - Document Contained No Data

2002-02-14 Thread John Hogan
try an html meta tab spcifying noCache -Original Message- From: Marc Rabil [EMAIL PROTECTED] Date: Thu, 14 Feb 2002 14:50:56 -0500 To: Orion-Interest [EMAIL PROTECTED] Subject: Problem on Netscape Browser - Document Contained No Data I have an application that uses a custom user

Re: problem with ResultSet Object

2002-02-14 Thread sachin mahajan
, 2002 1:48 PM Subject: RE: problem with ResultSet Object ResultSEt is not a serializable object. For RMI purpose use CachedRowSet object Take into account that this object is not for scalable applications! -Original Message- From: sachin mahajan [SMTP:[EMAIL PROTECTED]] Sent: 14

Re: problem using primary key class with orion

2001-10-12 Thread Jeff Hubbach
Jack, If you're using a user-defined primary key class, as opposed to a Java class like String or Integer, then you don't define the primkey-field in the ejb-jar.xml. From p.370 of O'reilly's Enterprise JavaBeans, 2nd Edition, describing the primkey-field entry in the ejb-jar.xml: It is not

Re: problem using primary key class with orion

2001-10-12 Thread Jack C. Miller
I'm using EJBMaker 2.0, and it inserts the primkey-field in there. I figured this out this morning, everything seems to be working smoothly now. Thanks Jack Jack, If you're using a user-defined primary key class, as opposed to a Java class like String or Integer, then you don't define the

RE: problem using primary key class with orion

2001-10-11 Thread Alex Paransky
And if you are using EJB 2.0 style CMP, hopefully, the primaryKey is defined as: public abstract String getPrimaryKey(); public abstract void setPrimaryKey(String key); or as a public String primaryKey; in a 1.0 style CMP. Methods. Right? -AP_ -Original Message- From: [EMAIL

Re: Problem starting Orion on linux...

2001-10-10 Thread Joel B. Kinney
It looks like you are using a kaffe vm, maybe try using a jdk1.2 or higher? Joel On Tue, 9 Oct 2001, Jimbo Jones wrote: I have gotten Orion to start on linux with no problems before, but now out of the blue I cannot do it. At first, it gave me a NoClassDefFoundError for

RE: Problem implementing Custom User Management using SimpleUserM anager

2001-10-10 Thread Justin Wood
PROTECTED]] Sent: 09 October 2001 06:43 To: Orion-Interest Subject: RE: Problem implementing Custom User Management using SimpleUserM anager I have not tried this yet, but it just occurred to me that the naming.principal is just establishing the jndi security context - it does not do a login. If you

RE: Problem using custom tags.

2001-10-09 Thread Johan Fredriksson
inline -Original Message- From: E Stones [mailto:[EMAIL PROTECTED]] Sent: den 8 oktober 2001 14:01 To: Orion-Interest Subject: Problem using custom tags. The following example is taken from Chapter 2 of Advanced Java Server Pages by David M. Geary I'm getting this error when I try to

RE: Problem implementing Custom User Management using SimpleUserManager

2001-10-09 Thread SAURUGGER,PETER (A-PaloAlto,ex2)
[mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 02, 2001 5:15 PM To: Orion-Interest Subject: RE: Problem implementing Custom User Management using SimpleUserManager I am also experiencing this - no matter what I try (and I'm pretty sure I've tried everything), I cannot get an application client

RE: Problem implementing Custom User Management using SimpleUserManager

2001-10-09 Thread Reason
. So let us know :) Reason http://www.exratio.com/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of SAURUGGER,PETER (A-PaloAlto,ex2) Sent: Tuesday, October 09, 2001 9:43 AM To: Orion-Interest Subject: RE: Problem implementing Custom User Management

RE: Problem using custom tags.

2001-10-09 Thread Shields James
Could someone managing this list stop these messages? I've had about 200 of them, and I'm getting a bit pied of. -Original Message- From: Johan Fredriksson [mailto:[EMAIL PROTECTED]] Sent: 09 October 2001 09:59 To: Orion-Interest Subject: RE: Problem using custom tags. inline

RE: Problem implementing Custom User Management using SimpleUserManager

2001-10-02 Thread Jeff Schnitzer
I am also experiencing this - no matter what I try (and I'm pretty sure I've tried everything), I cannot get an application client user to log in using a custom user manager (either SimpleUserManager-derived or DataSourceUserManager). Note that the application client logs in just fine using

Re: problem with collection mapping in cmps.

2001-09-27 Thread Joel B. Kinney
Hi Mayssam, I have experianced the same kind of problem. I had a few cmps that had collection and map mappings to other cmps. When I changed the orion-ejb-jar.xml and redeployed the changes didnt take effect. The solution seemed to be to recopy the orion-ejb-jar.xml to the appropriate

RE: Problem in message driven beans.

2001-08-29 Thread David Libke
Parul, For sending a message to a MessageDrivenBean you should only need this entry in the application-client.xml resource-ref res-ref-namejms/theQueueConnectionFactory/res-ref-name res-typejavax.jms.QueueConnectionFactory/res-type res-authContainer/res-auth

Re: Problem in message driven beans.

2001-08-29 Thread Parul Verma
, August 29, 2001 8:09 PM Subject: RE: Problem in message driven beans. Parul, For sending a message to a MessageDrivenBean you should only need this entry in the application-client.xml resource-ref res-ref-namejms/theQueueConnectionFactory/res-ref-name res

RE: Problem with SimpleUserManager Class for application level security...please hel

2001-08-13 Thread The elephantwalker
resend, the original didn't take. -Original Message- From: The elephantwalker [mailto:[EMAIL PROTECTED]] Sent: Sunday, August 12, 2001 8:57 PM To: Orion-Interest Subject: RE: Problem with SimpleUserManager Class for application level security...please hel You need to make a directory

Re: Problem with JMS

2001-08-09 Thread Tim Pouyer
make sure that queueConnectionFactory exits in your %orionRoot%\config\jms.xml file. - Original Message - From: Vikas Malhotra To: Orion-Interest Sent: Thursday, August 09, 2001 11:07 AM Subject: Problem with JMS Hi, I am facing a problem in my application

RE: Problem in custom User Managers !!!

2001-07-27 Thread The elephantwalker
The security exception that is being thrown through rmi is because of the default rmi restriction that only administrators have access to rmi. If you have created a custom user manager, and not created an administrator user...this will cause the exception. Try this...startup up the orionconsole,

RE: Problem with using java.util.date Objects as CMP Entityfieldsin Orion 1.5.2

2001-07-27 Thread Komal Kandi (Contractor)
use java.sql.TimeStamp object -Original Message- From: Oisin Kim [mailto:[EMAIL PROTECTED]] Sent: Friday, July 27, 2001 9:34 AM To: Orion-Interest Subject: Problem with using java.util.date Objects as CMP Entity fieldsin Orion 1.5.2 Hi all, I was wondering if anyone has had similar

RE: problem with looking up the same EJB from different servers

2001-07-26 Thread Andrew Chau
There is a flag you need to set to make it look up from remote server. It is hidden somewhere in the javadoc... -Original Message-From: Ville Rinne [mailto:[EMAIL PROTECTED]]Sent: Thursday, July 26, 2001 1:17 AMTo: Orion-InterestSubject: problem with looking up the same

Re: Problem connecting to Ms Sql Server 2000

2001-06-23 Thread Joseph B. Ottinger
That's not a problem with your entity bean - that's a problem with your choice of JDBC drivers. The JdbcOdbc can't handle multiple threads. Solution: get a better driver. On Sat, 23 Jun 2001, Sergei Batiuk wrote: Hey people, I am having trouble connecting to MS SQL 2000 from my entity bean.

RE: Problem connecting to Ms Sql Server 2000

2001-06-22 Thread elephantwalker
Sergei, Its probably the sun driver, I have had the same problems with Access, of all things, with a standalone program. I would suggest using another jdbc-odbc bridge besides sun's. Use www.nogginware.com 's jdbc-odbc bridge, its cheap, and it works. You can test it for free. regards, the

RE: Problem with starting Orion on Solaris 8

2001-06-10 Thread elephantwalker
Mahesh, there were issues with auto-deployment and earlier versions. I would upgrade to 1.5.2 the latest stable version, 1.4.0 is a little behind the times now. Check the permissions on your deploy directory and the application directory, does orion have write access? (write permissions are not

Re: Problem with jsp pages

2001-06-01 Thread Marcel Schutte
Hi Antonio, The way you wrote it right now, getServletContext() should be a method of your current jsp and it isn't. That's what the error is telling you. The correct way to access the servlet context is to use the implicit object 'application'. This is a predefined variable in every jsp. For

RE: Problem with jsp pages

2001-06-01 Thread elephantwalker
, the elephantwalker -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Marcel Schutte Sent: Friday, June 01, 2001 1:50 AM To: Orion-Interest Subject: Re: Problem with jsp pages Hi Antonio, The way you wrote it right now, getServletContext() should be a method

Re: Problem with jsp pages

2001-06-01 Thread Milosz Witkowski
try: request.getAttribute(STH); page.getServletContext().getAttribute(STH); in JSP pages you have severial classes such page, request, session from them you have access to what you want. - Original Message - From: Antonio Vazquez [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED]

Re: Problem with jsp pages

2001-06-01 Thread Lachezar Dobrev
Hi. I guess by the err log, that you are trying to use this method in a JSP page. As by the specs in a JSP to get a reference to the cotext you should use the "pageContext" object, that is found in every JSP page. Why not give it a try? TRY: Vector vectorUsuarios =

Re: Problem accessing EJB from client

2001-04-25 Thread Earl Marwil
The lookup must be in the same named application as the ejb server, so the provider url must include the application name like ormi://localhost/app_name This is the most likely cause of a NameNotFoundException. At 19:45 4/23/2001 +0100, you wrote: Hi, I am successfully accessing my Session

Re: Problem accessing EJB from client

2001-04-25 Thread Earl Marwil
The lookup must be in the same named application as the ejb server, so the provider url must include the application name like ormi://localhost/app_name This is the most likely cause of a NameNotFoundException. At 19:45 4/23/2001 +0100, you wrote: Hi, I am successfully accessing my Session

RE: Problem ( solution) with ejbStore() and Oracle CLOBs

2001-04-19 Thread Paul Medcraft
No joy with this but thanks anyway. I haven't noticed any problems with the original solution (below) in the last couple of weeks. -Original Message- From: Dan North [mailto:[EMAIL PROTECTED]] Sent: 11 April 2001 18:00 To: Orion-Interest Subject: Re: Problem ( solution

Re: Problem ( solution) with ejbStore() and Oracle CLOBs

2001-04-11 Thread Dan North
This is more likely to be to do with isolation level than transactionality (although the two are closely related). You might try setting: entity-deployment name="YourBean" isolation="repeatable_read" ... /entity-deployment in your orion-ejb-jar.xml. Disclaimer: I could well be

RE: Problem with @ character submitted in POST request through CGIServlet, TunnelServlet

2001-04-04 Thread David Oliver
Strangely enough, I ran into this problem yesterday. It seems that different browsers report the value of the CONTENT-LENGTH variable differently. for reasons I acn't conceive of, MSIE deducts 2 characters from the length it reports for each @ in the form output. Netscape does not. I

RE: problem running oracle with orion: 'oracle.jdbc.driver.OracleDriver' not found!

2001-03-25 Thread Roland Dong
] [mailto:[EMAIL PROTECTED]]On Behalf Of denis despinoy Sent: Saturday, March 24, 2001 11:09 AM To: Orion-Interest Subject: Re: problem running oracle with orion: 'oracle.jdbc.driver.OracleDriver' not found! Hi, Just copy classes12.zip (Oracle jdbc driver) in your orion/lib directory - just alongside

RE: problem running oracle with orion: 'oracle.jdbc.driver.OracleDriver' not found!

2001-03-25 Thread Taavi Tiirik
Try following code in your .jsp file: InitialContext ctx = new InitialContext(); DataSource ds = (DataSource)ctx.lookup("jdbc/Oracle"); Connection conn = ds.getConnection(); Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("SELECT * FROM dual"); while( rs.next() ){

Re: problem running oracle with orion: 'oracle.jdbc.driver.OracleDriver' not found!

2001-03-24 Thread denis despinoy
Hi, Just copy classes12.zip (Oracle jdbc driver) in your orion/lib directory - just alongside HypersonicSQL driver hsql.jar... In Orion/config/data-sources.xml u can setup the DataSource lookup along with the url,database name usr and pwd and instance of the database u ref etc... Post if u

Re: problem running oracle with orion: 'oracle.jdbc.driver.OracleDriver'not found!

2001-03-24 Thread Justen Stepka
Add the jar/zip to the orion lib folder. On Fri, 23 Mar 2001, Roland Dong wrote: I tried to run oracl with orion. When I started orion I got the following error message: Error initializing server: DriverManagerDataSource driver 'oracle.jdbc.driver.OracleDriver' not found. Where is

RE: Problem with Filters and RequestDispatcher in Orion 1.4.5

2001-03-23 Thread Mike Cannon-Brookes
Title: SV: Problem with Filters and RequestDispatcher in Orion 1.4.5 Orion invokes filters on _every request_. That's internal and external. This is IMHO the way it should be done. (Some filters require this to work!) Tomcat only invokes it on _external requests_. AFAIK there is some debate

Re: Problem with Filters and RequestDispatcher in Orion 1.4.5

2001-03-23 Thread Marcel Schutte
Just out of curiosity, but why don't you use the standard servlet provisions for authentication? Are there things you can do more easily using filters? I'm just starting to look at what filters can do, so any comments are welcome. Marcel - Original Message - From: "Anders Janmyr" [EMAIL

RE: problem running oracle with orion: 'oracle.jdbc.driver.OracleDriver' not found!

2001-03-23 Thread elephantwalker
I believe that its the class path stuff, doesn't work with a jar. You need to drop the class12.zip (weird, I am using class111.zip) in the lib directory. Your data-sources is fine. Regards, Elephantwalker. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf

RE: problem running oracle with orion: 'oracle.jdbc.driver.OracleDriver' not found!

2001-03-23 Thread Wagner, SnowWolf CAR
the file is classes12.zip and should be in the orion/lib SnowWolf -Original Message- From: Roland Dong [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 24, 2001 1:10 AM To: Orion-Interest Subject: problem running oracle with orion: 'oracle.jdbc.driver.OracleDriver' not found! I

RE: Problem in Executing the First Example given in the Orion taglib-tutorial Documentation !!

2001-03-15 Thread Arved Sandstrom
rong Sent: Wednesday, March 14, 2001 7:40 PM To: Orion-Interest Subject: RE: Problem in Executing the First Example given in the Orion taglib-tutorial Documentation !! Hi all, Please implicate me with Mike and Robert Nicholson, who politely warned Srinivas two days before Mike did (and afte

RE: Problem in Executing the First Example given in the Orion taglib-tutorial Documentation !!

2001-03-15 Thread Jay Armstrong
o the point, if you're going to threaten someone, do it in private - I neither need to see it nor do I want to see it. Regards, Arved Sandstrom -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jay Armstrong Sent: Wednesday, March 14, 2001 7:40 PM To: Orion-In

RE: Problem in Executing the First Example given in the Orion taglib-tutorial Documentation !!

2001-03-14 Thread Arved Sandstrom
March 14, 2001 12:11 PM To: Orion-Interest Subject: RE: Problem in Executing the First Example given in the Orion taglib-tutorial Documentation !! Importance: High Yo, Srinivas...you've been warned before here...post in plain text and turn off the 'send reply on reading' in your lousy Microc

RE: Problem in Executing the First Example given in the Orion taglib-tutorial Documentation !!

2001-03-14 Thread Jay Armstrong
mailto:[EMAIL PROTECTED]]On Behalf Of Michael J. Cannon Sent: Wednesday, March 14, 2001 12:11 PM To: Orion-Interest Subject: RE: Problem in Executing the First Example given in the Orion taglib-tutorial Documentation !! Importance: High Yo, Srinivas...you've been warned before here...post in plain

Re: Problem in Executing the First Example given in the Oriontaglib-tutorial Documentation !!

2001-03-12 Thread SCOTT FARQUHAR
What does the file taglib.tld contain? It looks like there is a problem with that file. [EMAIL PROTECTED] 03/12/01 02:34pm Hi, I have downloaded the Helloworld.jsp, taglib.tld and helloworld .java compiled and got helloworld.class . and created the same directory structure as mentioned in

Fwd: Your message concerning Re: Problem in Executing theFirst Example given in the Orion

2001-03-12 Thread SCOTT FARQUHAR
08:35:18 +1000 Message-Id: [EMAIL PROTECTED] X-Mailer: Orion ListServer Date: Tue, 13 Mar 2001 08:14:15 +1000 From: "SCOTT FARQUHAR" [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Subject: Re: Problem in Executing the First Example given in the Orion taglib-tutorial Doc

Re: Problem in Executing the First Example given in the Orion taglib-tutorial Documentation !!

2001-03-12 Thread srinivas
Hi Magnus Rydin, Here is the file which u want to have a look on it. Here is the taglib.tld file , Please check whether it has any errors. Taglib.tld file ?xml version="1.0" encoding="ISO-8859-1" ? !DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"

RE: Problem in Executing the First Example given in the Orion taglib-tutorial Documentation !!

2001-03-12 Thread Robert Nicholson
Please don't request readreceipts to messages you send to the list. Normally the list should filter these out. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of srinivasSent: Monday, March 12, 2001 5:49 PMTo: Orion-InterestSubject: Re

RE: Problem starting up Orion, Please help!

2001-03-08 Thread Roland Dong
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Gabriel CiuloaicaSent: Wednesday, March 07, 2001 11:26 PMTo: Orion-InterestSubject: Re: Problem starting up Orion, Please help! for running jsp you need to copy tools.jar from jdk to orion directory. gabi

RE: Problem starting up Orion, Please help!

2001-03-07 Thread elephantwalker
It looks like your server is already using the port that rmi is listening to...something like 23791. The docs talk about a file called rmi.xml which needs to be modified if you aren't going to use 23791. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On

RE: Problem starting up Orion, Please help!

2001-03-07 Thread Roland Dong
"IO Error: Address already in use" solved! I have not figured out why I can not run jsp examples. Basically, the orion is up and running but it won't take jsp for example, if I run the following example http://uxb.wiu.edu:10008/wazzup.jsp I got 500 Internal Server

RE: Problem starting up Orion, Please help!

2001-03-07 Thread Dvornikov Victor
Before stating your server check your host ports. Below is a very simple but useful portscanner import java.net.*; import java.io.*; public class TestPortScanner { public static void main(String[] args) { String host = "localhost"; if (args.length 0) { host = args[0];

Re: Problem starting up Orion, Please help!

2001-03-07 Thread Gabriel Ciuloaica
for running jsp you need to copy tools.jar from jdk to orion directory. gabi - Original Message - From: Roland Dong To: Orion-Interest Sent: Thursday, March 08, 2001 7:22 AM Subject: Problem starting up Orion, Please help! I just installed orion1.4.5 in

RE: Problem retrieving dependents after Orion restart

2001-03-06 Thread Jeff Schnitzer
, March 05, 2001 10:37 PM To: Orion-Interest Subject: RE: Problem retrieving dependents after Orion restart Has any one been able to get the Entity(1) to Dependent(N) relationship working? I am thinking of removing Dependent objects and just using Entity Beans. However, in the way Orion handles rel

RE: Problem retrieving dependents after Orion restart

2001-03-06 Thread Dan North
method for Phone which is "findByPerson". If you put a getPhone() method on Person, it can hide the call to the finder on Phone. Jeff -Original Message- From: Alex Paransky [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 10:37 PM To: Orion-Interest Subject: R

RE: Problem retrieving dependents after Orion restart

2001-03-06 Thread Alex Paransky
Of Randahl Fink Isaksen Sent: Monday, March 05, 2001 11:59 PM To: Orion-Interest Subject: RE: Problem retrieving dependents after Orion restart I had the same symptom once, I had declared my primary keys as Integer and returned int rather than Integer in my ejbCreate methods. Have you accidently done

RE: Problem retrieving dependents after Orion restart

2001-03-06 Thread Alex Paransky
] [mailto:[EMAIL PROTECTED]]On Behalf Of Dan North Sent: Tuesday, March 06, 2001 8:52 AM To: Orion-Interest Subject: RE: Problem retrieving dependents after Orion restart You can also enforce the dependency (cascade delete) by overriding void ejbRemove() throws RemoteException in your EJB class to find

RE: Problem retrieving dependents after Orion restart

2001-03-05 Thread Alex Paransky
Here is an excerpt from orion-ejb-jar.xml, can someone tell me if I have something configured incorrectly. Again, the data is properly written to the database, it is just NOT READ when orion is restarted and getPhoneDependents() api is executed. entity-deployment name="ejb.person.PersonEntity"

RE: Problem retrieving dependents after Orion restart

2001-03-05 Thread Alex Paransky
one know what the problem is? Thanks. -AP_ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Alex Paransky Sent: Monday, March 05, 2001 6:13 PM To: Orion-Interest Subject: RE: Problem retrieving dependents after Orion restart Here is an excerpt from

RE: Problem retrieving dependents after Orion restart

2001-03-05 Thread Alex Paransky
05, 2001 6:13 PM To: Orion-Interest Subject: RE: Problem retrieving dependents after Orion restart Here is an excerpt from orion-ejb-jar.xml, can someone tell me if I have something configured incorrectly. Again, the data is properly written to the database, it is just NOT READ when orion

RE: Problem retrieving dependents after Orion restart

2001-03-05 Thread Randahl Fink Isaksen
). R. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Alex Paransky Sent: 6. marts 2001 04:59 To: Orion-Interest Subject: RE: Problem retrieving dependents after Orion restart I have been playing with the simple example some more, and still cannot

RE: problem in accessing ejb from a bean in web-inf/classes direc tory .

2001-02-28 Thread Andre Vanha
8 AM To: 'Andre Vanha' Subject: RE: problem in accessing ejb from a bean in web-inf/classes direc tory . Where can I find the web.xml and orion-web.xml files?. Prabahkar -Original Message- From: Andre Vanha [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 27, 2001 5:42 PM To: Orion

Re: problem in accessing ejb from a bean in web-inf/classes directory .

2001-02-27 Thread Rafael Alvarez
Hello Prabahkar, Monday, February 26, 2001, 7:38:40 PM, you wrote: Try using Object hdrObj = cntx.lookup("B2BOrderHeader"); I think I remember vagely a thread in this list about java:comp/, but that was 3000 messages ago :). Anyway, this works fine for me. -- Best regards, Rafael

RE: problem in accessing ejb from a bean in web-inf/classesdirec tory .

2001-02-27 Thread Prabahkar Subramaniam
der"); Thanks in advance for your help Prabahkar -Original Message- From: Rafael Alvarez [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 27, 2001 10:59 AM To: Orion-Interest Subject: Re: problem in accessing ejb from a bean in web-inf/classes directory . Hello Prabahkar, Monday,

RE: problem in accessing ejb from a bean in web-inf/classes direc tory .

2001-02-27 Thread Andre Vanha
Did you define the ejb-refs in your web.xml and link them correctly in orion-web.xml? It works fine for me. Andre -Original Message- From: Prabahkar Subramaniam [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 27, 2001 2:14 PM To: Orion-Interest Subject: RE: problem in accessing ejb

RE: Problem with a finder QUERY.

2001-02-14 Thread fresnaULL
ge - From: Luong, Tony S322 [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Tuesday, February 13, 2001 6:19 PM Subject: RE: Problem with a finder QUERY. The code "String findByName_query = "people.name like $1"" in the home interface does not do an

RE: Problem with two Orions on same box!!!

2001-02-09 Thread Duffey, Kevin
Not sure about RMI server, but each application deployed as an xml config file for it. In that file, which is specified in the server.xml file, you list the port you want http to listen on. Look in the web-site.xml.html in the docs folder. In my server.xml I have web-site path="./bm_web.xml" /.

Re: Problem with two Orions on same box!!!

2001-02-09 Thread Jim Archer
In the case of the web server, in the config directory is an XML file in which you set that. Go to Orion's web site and read the installation instructions. The long version tells you exactly what to set. Jim --On Thursday, February 08, 2001 3:32 PM +0530 Mohit Palhan [EMAIL PROTECTED]

RE: Problem with two Orions on same box!!!

2001-02-09 Thread Rob Lapensee
In the config directory: In rmi.xml make sure that the port attribute is set (4000 in this example): ?xml version="1.0"? !DOCTYPE rmi-server PUBLIC "Orion RMI-server" "http://www.orionserver.com/dtds /rmi-server.dtd" rmi-server port="4000" !-- A remote server connection example -- !--

RE: Problem with two Orions on same box!!!

2001-02-09 Thread Tony Wilson
, 2001 7:29 PM To: Orion-Interest Subject:RE: Problem with two Orions on same box!!! Not sure about RMI server, but each application deployed as an xml config file for it. In that file, which is specified in the server.xml

Re: Problem with latest Oracle JDBC.zip..anyone having similar problems?

2001-02-01 Thread Alexey_Ryndin/Storactive
I don't know about 1.4.5, but I use 1.4.0 with Oracle 8.1.7 for more then couple of month and there is no such error. Alexey Ryndin

RE: Problem

2001-01-26 Thread Tim Drury
Title: RE: Problem Mangesh, (Because OI is so slow, I'm cc'ing you directly) Where to put orion-ejb-jar.xml is probably one of the most frequently asked questions and the answer can be found in the list archives. Use the Orion-Interest archives - they are searchable and have the answers

RE: Problem

2001-01-25 Thread Tim Drury
Title: RE: Problem Mangesh, I just wrote a how-to for custom finders and submitted it to orionsupport, but seeing as how orionsupport is down... Which orion-ejb-jar.xml are you modifying? If you are modifying the one in application-deployments/ it will get overwritten. You have to copy

Re: Problem

2001-01-25 Thread Stan Ng
Title: RE: Problem btw, a mirror of orionsupport is available at http://www.theculprit.com - Original Message - From: Tim Drury To: Orion-Interest Sent: Thursday, January 25, 2001 12:30 PM Subject: RE: Problem Mangesh, I just wrote a how-to for custom

RE: Problem

2001-01-25 Thread mangesh laad
it with its own created finder-methods. I can give you the directory structure if you want . Once again thanks for theinformation Regards Mangesh laad From: Tim Drury <[EMAIL PROTECTED]> Reply-To: Orion-Interest <[EMAIL PROTECTED]> To: Orion-Interest <[EMAIL PROTECTED]> Subj

Re: problem invalidating servlet

2001-01-24 Thread Boris Erukhimov
Try this ... if (event instanceof LogoutEvent) { HttpSession validSession = request.getSession(true); validSession.setAttribute(WebKeys.ModelManagerKey, mm); } ~boris Matt Bauer wrote: I have this small bit of code that handles a log out. What I want to do is invalidate the

RE: problem invalidating servlet

2001-01-24 Thread Conrad Chan
I think he was trying to invalidate the existing session before setting the attribute. Conrad -Original Message- From: Boris Erukhimov [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 4:05 AM To: Orion-Interest Subject: Re: problem invalidating servlet Try

Re: problem invalidating servlet

2001-01-24 Thread Matt Bauer
Indeed I was Matt Conrad Chan wrote: I think he was trying to invalidate the existing session before setting the attribute. Conrad -Original Message- From: Boris Erukhimov [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 4:05 AM To: Orion-Interest Subject: Re

Re: problem invalidating servlet

2001-01-24 Thread Boris Erukhimov
wrote: I think he was trying to invalidate the existing session before setting the attribute. Conrad -Original Message- From: Boris Erukhimov [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 4:05 AM To: Orion-Interest Subject: Re: problem invalidating servlet

RE: Problem Compiling Servlet! Please help

2001-01-24 Thread Roland Dong
]]On Behalf Of Kemp Randy-W18971 Sent: Monday, January 22, 2001 1:14 PM To: Orion-Interest Subject: RE: Problem Compiling Servlet! Please help Do you have the servlet.jar in your classpath (needed for Tomcat) or put the tools.jar in the Orion directory (see Orion installation instructions)? Try

RE: Problem Compiling Servlet! Please help

2001-01-22 Thread Kemp Randy-W18971
: Monday, January 22, 2001 3:06 PM To: Orion-Interest Subject: RE: Problem Compiling Servlet! Please help I have successfully auto-compiled the servlet(HelloWorld2.java) by following the instruction in the documentation. However, I wanted to compile the servlet with JDK 1.3 compiler to compile

Re: Problem with CMP - persisting a Multi-dimensional array!

2001-01-18 Thread Markus Holmberg
Multidimensinal arrays don't seem to work with Orion CMP. Try emulating your multidimensional array with a singledimensional array in your Java code. Regards, Markus. On Wed, Jan 17, 2001 at 11:53:13AM -, Bernard wrote: Hello everyone. I am having problems trying to persist the

Re: Problem with CMP - persisting a Multi-dimensional array!

2001-01-17 Thread Agus K. Pranantoseno
U can try used set (or list) instead of array. - Original Message - From: Bernard [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Wednesday, January 17, 2001 6:53 PM Subject: Problem with CMP - persisting a Multi-dimensional array! Hello everyone. I am having problems

RE: Problem with pkclass .Thanks Tommy

2000-12-08 Thread Puthezhath, Rajeev (TWII Boston)
Hi Tommy, It worked. I modified my PK class and it has worked. I was struggling with this problem for long. Thanks. regards Rajeev -Original Message- From: Tommy Eriksson [mailto:[EMAIL PROTECTED]] Sent: Friday, December 08, 2000 1:02 AM To: Orion-Interest Subject: Re: Problem

Re: Problem with pkclass

2000-12-07 Thread Tommy Eriksson
I was experiencing the same kind of trouble just the other day. May fault was in implementing the PK class I had forgot to implement the equals and the hashCode methods, hope it helps. Example of one of my PK classes: package knut.ejb.entity; public class UserContactPK implements

RE: Problem - Calling EJB in Orion from Resin

2000-11-23 Thread Russ White
My 2c It is foolish to use Resin with Orion. Why would you ever want to do this? Just use Orion. Resinand Orion areso similar that you should be able to run your servlets just fine on Orion. If you want a separate servlet container just run two instances of Orion. It will be much

Re: Problem with build script

2000-11-07 Thread gbhalerao
oops. That wasn't the right code java fork="yes" classname="com.evermind.client.orion.OrionConsoleAdmin" arg value="ormi://localhost/"/ arg value="admin"/ arg value="ironmax"/ arg value="-restart"/ classpath

Re: Problem using JavaMail with Orion

2000-10-24 Thread Santosh Kumar
If you are using jdk1.3 then push the javamail.jar or mail.jar whatever it is {jar relevant to javamail] into jre/lib/ext folder...The problem should not arise... santosh - Original Message - From: Aleksi Kallio [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Tuesday,

Re: Problem deploying EJBs using a MySQL data-source

2000-10-14 Thread Robert Krueger
the error message is quite explicit. what kind of datasource does 'jdbc/DefaultCoreDS' point to? is that the location you specified in orion-ejb-jar.xml for your entity beans? if so, did you map it to "jdbc/DefaultEJBDS"? I don't see it in your datasource declaration. robert At 17:13

RE: Problem using admin.jar

2000-08-26 Thread Santosh S
Title: RE: Problem using admin.jar Hi, The problem still persists on both Linux as well as NT. Is the admin port different from the webservers port. If so what is the admin port or where can it be found. regards santosh s :) -Original Message-From: Magnus Rydin [mailto

RE: Problem using admin.jar

2000-08-26 Thread Santosh S
PROTECTED]] Sent: Saturday, August 26, 2000 5:30 PM To: Orion-Interest Subject: Re: Problem using admin.jar Hello Santosh, I know others have answered, but I'd like to clarify somewhat why the error message says. StreamCorruptedException means that the data gotten back from the server isn't consitent

Re: Problem using admin.jar

2000-08-26 Thread Karl Avedal
Hello Santosh, I know others have answered, but I'd like to clarify somewhat why the error message says. StreamCorruptedException means that the data gotten back from the server isn't consitent with what can be expected, or like the docs say it: "Thrown when control information that was read

RE: Problem with Cart example in Orion 1.0.3 - classnotfound exce ption

2000-08-24 Thread Subramanian . Balasubramanian
know if you can help. Regards Subbu. Santosh S [EMAIL PROTECTED]@orionserver.com on 08/23/2000 08:42:28 PM Please respond to Orion-Interest [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] cc: Subject: RE: Problem with Cart example in Orion 1.0.3

Re: Problem with Cart example in Orion 1.0.3 - classnotfound exception

2000-08-24 Thread Subramanian . Balasubramanian
Hello, I have solved this problem with all your help and able to run the Cart example now in Win 95. The main problem seems to be setting up of the datasource (hypersonic sql) though I thought the Cart example does not use any Container manager data services. Thanks a lot! Regards Subbu.

RE: Problem with Cart example in Orion 1.0.3 - classnotfound exception

2000-08-23 Thread Santosh S
Hi, Is orion.jar available in yout classpath ? regards santosh s :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 24, 2000 2:39 AM To: Orion-Interest Subject: Problem with Cart example in Orion 1.0.3 - classnotfound exception Hello, I

  1   2   >