Re: Folder Mapping

2000-04-24 Thread orion
Hi Magnus, I made it but i got the following message : Error starting HttpServer: Error initializing site file:/usr/local/orion/config/default-web-site.xml: Error loading web-app 'defaultWebApp' at /usr/local/orion/default-web-app: Error parsing orion-web.xml at

Re: Folder Mapping

2000-04-24 Thread orion
I did it and it is working now. Thank you very much for your help. Best regards, Magnus Stenman wrote: Edit orion/default-web-app/WEB-INF/orion-web.xml and add: virtual-directory real-path="/export/home/myfolder" virtual-path="/myfolder" /. /Magnus Stenman, the Orion team -

RE: auth-method BASIC not working

2000-04-24 Thread Bailey, Jeff A
Actually, I was receiving the same error but you will find that it occurs only in IE 4 and above or Netscape 6 pr1 and newer builds. It works properly in Netscape 4.x (displays the popup window allowing authentication). Maybe this helps, maybe it doesnt, just thought I would throw it out there.

POST value encoding problem

2000-04-24 Thread Jen Hsien Huang
Orion JSP/servlet has the POST problem, that many JSP/servlet engine have already fix long time ago. I am amazing that Orion havent found this bug. If Orion use the java.net.URLDecoder to parse the Form data, the post valuse won't support i18n. Make a new URLDecoder and parse data according

Problems with URL to getRequestDispatcher()

2000-04-24 Thread Ferghil O'Rourke
Hi. Anyone experienced problems using getRequestDispatcher() with orion? The following returns null for me for 'dispatcher' RequestDispatcher dispatcher; ServletContext sc = getServletContext(); dispatcher = sc.getRequestDispatcher("/controller-web/controller_move.jsp"); if (dispatcher !=

Does Orion really support clustering?

2000-04-24 Thread Jen Hsien Huang
the document says orion support jsp/servlet clustering. but I cant figureout how to setup a clustering server. Doest orion really support clustering or just going to ? Please give me a clear answer, thanx.

Idiot at work (WAS RE: Naming exception)

2000-04-24 Thread Bailey, Jeff A
I am an idiot. It turns out that 0.9.4 was giving this error, updated the Linux server to 1.0rc1 (Internal build 5) and all was good. Sorry for the clutter Jeff -Original Message- From: Bailey, Jeff A [mailto:[EMAIL PROTECTED]] Sent: Monday, April 24, 2000 12:45 PM To:

Re: Does Orion really support clustering?

2000-04-24 Thread Karl Avedal
Hello Jen, for a short, clear answer: Yes, it does support it now. Regards, Karl Avedal Jen Hsien Huang wrote: the document says orion support jsp/servlet clustering. but I cant figureout how to setup a clustering server. Doest orion really support clustering or just going to ? Please

Re: Custom UserManager - naming context

2000-04-24 Thread Magnus Stenman
First; to use a new EJB with the EJBUserManager you only need to use an EJB where the bean implements UserEJB (ie it's remote extends upon that interface), that's the solution most customers wanting to do this (using their own EJBs as the source of user info). If you dont use username as primary

RE: Problems with URL to getRequestDispatcher()

2000-04-24 Thread Matt Krevs
Just converted from Tomcat 3.0 to Orion and we were experiencing this problem A solution that worked for us is to use getServletConfig().getServletContext().getRequestDispatcher("theUrl"); I still dont know why this actually works but it does. Another possible reason is that the JSP/Servlet

RE: Problems with URL to getRequestDispatcher()

2000-04-24 Thread Ferghil O'Rourke
Thanks Mat. That's done the trick. My problem was really that I needed to specify my URL relative to the correct context. I was able to find that out using your getRealPath() suggestion. Thanks again. Ferghil From: "Matt Krevs" [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Subject:

No Subject

2000-04-24 Thread binni
HELLLO EVERYBODY I HAVE THE PROBLEM WITH BASIC JAVA . CAN ANYONE HELP ME.. I WANT TO CONEECT "MSWORD.EXE" WITH JAVAPROJECT MEANS IF I CLICK ON BUTTON "CONNECT" .. MS WORD WILL OPEN . CAN ANYONE SEND ME A CODE . PLZ HELP ME.. UR BINNI

Naming exception

2000-04-24 Thread Bailey, Jeff A
I have the following block of code in both a jsp and a servlet within an application (for testing only): DataSource dataSource = (DataSource) new InitialContext().lookup("jdbc/SomeEJBDS"); In the jsp It works fine, no error, am able to utilize the dataSource to execute queries etc. On a