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 use

Mysql table create errors with ejbsamples

2001-12-19 Thread John Hogan
ough the exercies and can provide any useful pointers, it would be much appreciated. TIA. John Hogan ERROR TEXT: === [root@dalcassion orion]# java -classpath /opt/orion/application-deployments/serverclasses/mm.mysql-2.0.8 -jar orion.jar Auto-deploying ejbsamples (Ne

Mysql table create errors with ejbsamples

2001-12-19 Thread John Hogan
ough the exercies and can provide any useful pointers, it would be much appreciated. TIA. John Hogan ERROR TEXT: === [root@dalcassion orion]# java -classpath /opt/orion/application-deployments/serverclasses/mm.mysql-2.0.8 -jar orion.jar Auto-deploying ejbsamples (Ne

Re: Unsubscribe

2001-12-18 Thread John Hogan
esad -Original Message- From: Alexandru Balut <[EMAIL PROTECTED]> Date: Tue, 18 Dec 2001 16:00:38 +0200 To: Orion-Interest <[EMAIL PROTECTED]> Subject: Re: Unsubscribe > > They can build an application server and they can't maintain a mailing list? > :-) > > There is something strange

unsuscribe

2001-07-23 Thread John Hogan
unsuscribe _ Get your free E-mail at http://www.ireland.com

Re: RE: Oracle deal gag... but on a different note.

2001-06-12 Thread John Hogan
Their j2ee implementations seemed like a bunch of open source glued together. Throw in the oddDuck idea of running ejb's inside the db server and it's no wonder they threw it away. Perhaps because they couldn't give it away. _ Get your free E-mail at htt

Re: Re: I require step by step install instructions for Pet Store 1.1.2 on Orion please?

2001-05-22 Thread John Hogan
when all else fails, read the directions _ Get your free E-mail at http://www.ireland.com

Re: Sharing session between all the modules of an application

2001-05-17 Thread John Hogan
I believe you get a separate ServletContext per war. JohnH _ Get your free E-mail at http://www.ireland.com

Re: JMS or just function ??

2001-05-11 Thread John Hogan
A benefit is that your app can send messages and can forget about them. It doesn't need to wait for anything to complete. This means you don't have to keep your user waiting, who may be on the other end of something like an http request. Users don't like to wait. It's not appropriate for e

Re: Re: RE: Simple Java Doubts

2001-05-09 Thread John Hogan
this communication. Thank you for your assistance. ** Begin Original Message From: "John Hogan" <[EMAIL PROTECTED]> Sent: Wed, 9 May 2001 08:03:18 -0400 To: Orion-Interest <[EMAIL PROTECTED]> Subject:

Re: RE: Simple Java Doubts

2001-05-09 Thread John Hogan
On response 2, if the remote client is actually a web server, the scheme will work nicely. No polling would be necessary, an http request would only be issued on event. John Hogan _ Get your free E-mail at http://www.ireland.com

Re: Re: Paged search results

2001-03-28 Thread John Hogan
check out this link for application wide sharing. http://java.sun.com/docs/books/tutorial/servlets/communication/attribu tes.html _ Get your free E-mail at http://www.ireland.com

Configuring Orion's DataSourceUserManager

2001-03-22 Thread John Hogan
All, Just a few questions on the orionsupport article dealing with DataSourceUserManager (http://www.orionsupport.com/articles/datasourceusermanager.html). TIA John Hogan 1) This article starts off with the statement "A user is an entity". Does this mean you need to have alrea

CMP, advanced OR mapping?

2001-03-12 Thread John Hogan
an agency table. Can multiple keys like this be mapped in orion-ejb-jar.xml? TIA. John Hogan _ Get your free E-mail at http://www.ireland.com

Sending Serializable obj from ejb to servlet

2001-03-01 Thread John Hogan
asses needed by a servlet, that would be much appreciated. TIA. John Hogan javax.ejb.EJBException at PaidTransaction_ORList4.getObjects (PaidTransaction_ORList4.java:75) at com.evermind.server.ejb.ORList.size(JAX) at java.util.ArrayList.(Unknown Source)

recreate tables for a cmp

2001-02-28 Thread John Hogan
orion is started. I was wondering if anyone knows of a easier way to signal orion to recreate db tables for an cmp bean? TIA. John Hogan _ Get your free E-mail at http://www.ireland.com

Re: re: configuring jdbc with oracle...

2001-02-26 Thread John Hogan
As a sanity check, you may want to make sure you can get the Product example running with Oracle first (http://www.orionserver.com/docs/ejbexamples/index.html). There's some good by the numbers instructions for editing the xml files ... Also, make sure your oracle classes12.zip is in orion\l

Re: Re: configuring jdbc with oracle...

2001-02-24 Thread John Hogan
are you seeing any errors on Orion startup? _ Get your free E-mail at http://www.ireland.com

Re: product demo with oracle

2001-02-15 Thread John Hogan
pilot error, never mind. It's working fine now. Thanks _ Get your free E-mail at http://www.ireland.com

product demo with oracle

2001-02-15 Thread John Hogan
All, I'm working the product demo and have apparently encountered a bit of difficulty with deployment. I'm using the steps defined for product demo (http://www.orionserver.com/docs/ejbexamples/) and am seeing two things that aren't right (below). Also, I've set up a new Oracle datasource an

Re: RE: Orion Server compared to Oracle AS

2001-02-10 Thread John Hogan
ty). Also, it would seemingly raise your db license fees if you have to beef up your db machine to handle this extra function. Have you got into this issue yet? Thank you. John Hogan _ Get your free E-mail at http://www.ireland.com

Orion Server compared to Oracle AS

2001-02-09 Thread John Hogan
Has anyone done/know of a comarison of these two products? I know Oracle sits on Apache and JServ, and that bench marks on the Orion site show that Orion has some clear advantages vs Apache. I'm hoping someone has some first experiences they can share. TIA. JohnH __

Re: Form-based authentication not working right

2001-02-06 Thread John Hogan
Are you only specifing a partial path, relying on a default page name (index.jsp, default.jsp)? If so, in your redirect code, be specific and specify the entire path, including the file name. You should also be able to turn off directory browsing. I don't know how to do this with Orion thou

Re: Re: message-driven beans from a topic

2001-02-03 Thread John Hogan
If the observable (sender) has knowledge of who the observers/listeners are, you can use the MessageDrivenBean as a notification service. The observable delegates notification to the MessageDrivenBean, and includes recipients as part of the message. There will be just one instance of the Mes

Re: Getting back to the previous jsp

2001-01-19 Thread John Hogan
It would be something like <%=request.getHeader("http_referer")%> This will build a link to the previous page _ Get your free E-mail at http://www.ireland.com

Re: Redirection

2001-01-04 Thread John Hogan
this is very common and you need to investigate the java servlet api. Pay special attention to the HttpServletRequest and HttpServletResponse classes. _ Get your free E-mail at http://www.ireland.com

Re: What's going on with Orion?

2001-01-04 Thread John Hogan
Christmas/New Years _ Get your free E-mail at http://www.ireland.com

Re: An apology for Christian Sell

2000-12-14 Thread John Hogan
You were right the first time Michael. _ Get your free E-mail at http://www.ireland.com

Re: Anyone help me of Javamail ?

2000-12-11 Thread John Hogan
try out the samples that come with the javamail install from Sun _ Get your free E-mail at http://www.ireland.com

Re: RE: Help me please in post method

2000-12-10 Thread John Hogan
Have you switched your servlet to perform doPost instead of doGet? John Hogan _ Get your free E-mail at http://www.ireland.com

ejb/jdbc sample

2000-11-21 Thread John Hogan
can anyone provide a few pointers on getting the ejb.product sample going. I'm having a bit of difficulty with the db password. It looks like the default is sa with no password (below). TIA. John Hogan D:\orion\demo\ejb\product>java - classpath ..\..\..\orion.jar;..\..\..

unscribe

2000-07-02 Thread John Hogan
unscribe [EMAIL PROTECTED] _ Get your free E-mail at http://www.ireland.com