Re: Stored procedures and J2EE

2001-09-07 Thread Daniel López
Hi, I think I might add our 2c, even though they are completely against the trend ;). In fact, we don't use EJBs at all, unsing instead Stored Procedures to perform the business logic. When we started, EJB was an, IMHO, inmature technology that forced people to write lots of intermediate classes

RE: How to call A EJB in OC4j from other Servers

2001-09-07 Thread Montebove Luciano
HI Paolo, For invoking an EJB in an Orion server from a servlet/Jsp in a different Orion instance you don't need at all to code nothing (jndi properties) in your servlet/JSP. Simply: 1)You have to add your ejb server in rmi.xml of the invoker Orion. An example: server host=yourEJBHost

Fw: Session share problem.

2001-09-07 Thread Morten Wilken
ARRGH 3rd post of this message :-( - Original Message - From: Morten Wilken To: Orion-Interest Sent: Thursday, September 06, 2001 8:24 AM Subject: Fw: Session share problem. reposting ¡è#¡è%#¡è% mailinglist :-) - Original Message - From: Morten Wilken To:

RE: Debugging with Orion/Kawa Pro 5.0

2001-09-07 Thread Owen Fellows
I remember seeing something about orion not working in Kawa Enterprise. We had a problem where if you install Enterprise the uninstalled. Then installed Kawa Pro you could not run orion from inside. Can't remember if this was orion but there where issues with changing Kawa'a (if think kawa

UNSUSCRIBE

2001-09-07 Thread áÌÅËÓÁÎÄÒ
UNSUSCRIBE

using config/mime.types

2001-09-07 Thread Yao Rong
Hi, I am very interesting in this subject: How to work it out using these files? (1)config\global-web-application.xml (2)config\mime.types If I change the items of mime.types, need I restart the orion server to retrieve latest mimetype items? If I hope to keep the mime.types under application

Re: Instantiating a SAX parser (Xerces)

2001-09-07 Thread Maximilian Eberl
Have You tried to place the JAR file in the /orion main directory ? That is not very elegant but has worked many times in such ClassNotFound-cases. -- Maximilian Eberl Online Development Astarte New Media AG Waldstrasse 65 76133 Karlsruhe Tel.: 0721-98554-80 Fax 0721-98554-99 mailto:[EMAIL

Re: Anyody had success with Expresso Framwork in Orion?

2001-09-07 Thread Ganasen Gounden
Please let me know if anybody had any success of setting up and install tje Jcoroporate Expresso framework in Orion or Oracle OC4j. Please let me know your configurations steps and which files and version you have downloaded. Your help is appreciated. Regards [EMAIL PROTECTED] 07/26/01

how to set charset

2001-09-07 Thread Vorác Jirí
Hi, I need use windows-1250 charset in my web appication. I use %@ page contentType=text/html; charset=windows-1250% directive and meta http-equiv=Content-Type content=text/html; charset=windows-1250 tag in my jsp. In orion-web.xml (in orion/applications/shop/shop/WEB-INF) is orion-web-app

Re: How to call A EJB in OC4j from other Servers

2001-09-07 Thread Venkata_Nallam
Hello Paolo, Thank you for help. It work well. Surprise is that, On remote machine I have only three class 1. remote Interface 2. Home interface 3. Client Class. When I executed the Client class, It is working fine even WITHOUT applicationi-client.xml. Please

RE: Not in an application scope

2001-09-07 Thread Carles Pairot
Hi, I have tried Owen's option with no luck. The users should be looked for in the database and not in principals.xml, but it doesn't work. I don't know why this is happening because it works perfectly in a web application but it doesn't in an application-client. application-client.xml looks

UNSUSCRIBE

2001-09-07 Thread Paul Maurer
UNSUBSCRIBE

Re: Instantiating a SAX parser (Xerces)

2001-09-07 Thread Dean H. Saxe
I did. I finally was able to get it working by using the following to startup orion: java -classpath xerces.jar -jar orion.jar -dhs At 12:14 PM 9/7/01 +0200, you wrote: Have You tried to place the JAR file in the /orion main directory ? That is not very elegant but has worked many times in

UNSUSCRIBE

2001-09-07 Thread Gregory Scott
_ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp

ORacle db string over 4000 chars

2001-09-07 Thread Nusairat, Joseph F.
Title: ORacle db string over 4000 chars Does anyone know how to handle this oracle 8.x u can have a varchar set to 4k ... sooo to do more than that i tried using a long and a long raw and inserting it that way ... however whenver i go over 4000 chars it bombs any one come across

Help ! Troubles with SOAP and Stateless EJB

2001-09-07 Thread Stepan Samarin
Hi ! Situation is quite simple: I've Orion 1.5.2 and Apache Soap 2.2 I'm trying to access stateless EJB via SOAP and constantly get a error: Client application says: [SOAPException: faultCode=SOAP-ENV:Server; msg=Unable to initialize context] Server says:

RE: Calling a EJB application with in the Default servlet Context

2001-09-07 Thread Kesav Kumar
Two ponints to cosider. 1) Are you deploying EJB and servlets under same application? My guess is you are trying to use default servlet context then did you deploy the EJB in application.xml? 2) Is your JNDI name of the EJB is matching with the ejb-ref name in the web-xml? Kesav Kumar

RE: ORacle db string over 4000 chars

2001-09-07 Thread SAURUGGER,PETER (A-PaloAlto,ex2)
Title: ORacle db string over 4000 chars use clob instead of varchar -Original Message-From: Nusairat, Joseph F. [mailto:[EMAIL PROTECTED]]Sent: Friday, September 07, 2001 8:39 AMTo: Orion-InterestSubject: ORacle db string over 4000 chars Does anyone know how to handle

FORM based authentication with form-login-page as a JSP

2001-09-07 Thread Trujillo, Kris
Here's some starting context for my question I have a war file that has been configured to use FORM based authentication. I have set the form-login-page in the web.xml of the war file to point to a jsp file in my war file. I have setup constraints against different jsps in the war file

Re: ORacle db string over 4000 chars

2001-09-07 Thread Stephen Davidson
Hi Joseph. Yes, we have seen this. We found two solutions/workarounds. Solution 1: Set the field type to long varchar, and used the oracle 816classes12.zip file for the drivers (the later ones have a bug in them that won't handle strings over 2K). Solution 2: Set the field type to BLOB or

RE: FORM based authentication with form-login-page as a JSP

2001-09-07 Thread SAURUGGER,PETER (A-PaloAlto,ex2)
Would be interesting to control where a user goes, e.g. always redirecting them to the home page. Unfortunately, I don't have an answer to your question, just another observation: you don't even have to submit the page to j_security_check (see e.g. atm/atm-web/login.jsp) - orion -knows- where to

Auto-reply: RE: FORM based authentication with form-login-page as a JSP

2001-09-07 Thread CHRIS.CHELLIAH
I will be out of the office from 10-Sep-2001 to 03-Oct-2001, with limited email and voice mail access. For business matters, please click on the link below to contact the relevant person. PetStore eXtreme matters :James H. Brooks Other business matters, my manager : David L. Johnson Thank you.

UNSUSCRIBE

2001-09-07 Thread Vinay Khandelwal
__ Do You Yahoo!? Get email alerts NEW webcam video instant messaging with Yahoo! Messenger http://im.yahoo.com