RE: Orion Friendly E-Commerce Components

2001-07-25 Thread Claudio Cordova
You can install the Java Pet Store from Sun and modify it. It's a complete j2ee ecommerce system. Claudio > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of xbill > Sent: Wednesday, July 25, 2001 5:49 PM > To: Orion-Interest > Subject: Orion Friendly

RE: State propagation and jsp-beans

2001-06-26 Thread Claudio Cordova
Anything serializable in session will get replicated. Claudio > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of > [EMAIL PROTECTED] > Sent: Tuesday, June 26, 2001 7:15 AM > To: Orion-Interest > Subject: State propagation and jsp-beans > > > Hi all. >

RE: Please help me with SSL

2001-06-01 Thread Claudio Cordova
Your jdk should come with the SunRsaSign version 1.0 provider, (check your java.security file). This should allow you to create RSA keys, unless you modified the file...I have downloaded the ABA Provider (JCE implementation) for encryption, and I can generate RSA keys with no problems. Claudio >

RE: Database Connectivity Problems

2001-05-03 Thread Claudio Cordova
This message comes from the JDBC Driver NOT from orion... We get that error when there is something wrong with the DB (i.e. down, etc) . Also the JDBC driver your are using should match the Orcale db version you are using. Thanks, Claudio > -Original Message- > From: [EMAIL PROTECTED] >

RE: JMS Client - topicConnection.start - NullPointerException

2001-04-17 Thread Claudio Cordova
Are your mappings correct in META-INF/appication-client.xml and orion-application.xml Claudio > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Sellers, > Christopher > Sent: Tuesday, April 17, 2001 9:24 PM > To: Orion-Interest > Subject: JMS Clie

RE: Inprise AppServer vs Orion

2001-04-12 Thread Claudio Cordova
This might give you an idea. It compares different app. servers. http://www.flashline.com/Components/appservermatrix.jsp Hope It helps. Claudio > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of > [EMAIL PROTECTED] > Sent: Thursday, April 12, 200

RE: JMS and Orion

2001-04-12 Thread Claudio Cordova
There is a bug posted for this...I had the same problem. I use my own thread to receive the messages. Claudio > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Armin Michel > Sent: Thursday, April 12, 2001 7:48 AM > To: Orion-Interest > Subject: JMS

RE: Help me please "domain was nul" message is killing me here...

2001-04-02 Thread Claudio Cordova
Alex, 1) Have you tried using both: com.evermind.server.ApplicationClientInitialContextFactory and com.evermind.server.ApplicationInitialContextFactory 2) Have you tried some how disabling the JNDI service from your client orion server? Since that is the only difference. 3) Also see if putting

RE: Question regarding servers as clients to other servers...

2001-03-22 Thread Claudio Cordova
regarding servers as clients to other servers... > > > Hi Claudio, what makes Orion look into WEB-INF/classes? To find the > META-INF? > > Thanks > -AP_ > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Claudio >

RE: Question regarding servers as clients to other servers...

2001-03-22 Thread Claudio Cordova
Hey Alex...How are you Have you tried in WEB-INF/classes/META-INF/application-client.xml Claudio > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Alex Paransky > Sent: Thursday, March 22, 2001 3:58 PM > To: Orion-Interest > Subject: RE: Question

RE: Custom Tags Bug? Please help...

2000-11-15 Thread Claudio Cordova
.. > > > I would think class is a reserved word in java. For example MyClass.class > refers to the Class of the class. I would rename it from class to > myClass or > something. Same for your getter/setter methods. > > > -Original Message- > > From:

Custom Tags Bug? Please help...

2000-11-15 Thread Claudio Cordova
Hello, I have questions about custom tags, I don't know for sure they are bugs but they seem like it. BUG #1 I have a custom tag with a required attribute called "class". When I use it in a page the compiler displays an error like: 500 Internal Server Error Error parsing JSP page /webdev/advt

Saving JSP responses

2000-10-09 Thread Claudio Cordova
Hello, I am a newbie on JSP and I am trying to forward a request fom a servlet to a jsp page and some how read the response and save it into a file without sending the result to the browser. Instead, I want repeate the process as many times as I need. Then responde with a different HTML response.