How do i get off this list?

2002-04-29 Thread Mark Porter
I've tried the form at orionserver.com to no avail ... mark __ Do You Yahoo!? Yahoo! Health - your guide to health and wellness http://health.yahoo.com

RE: how do I setup a datasource for mssql ?

2002-04-17 Thread Roland van Woerkom
You mixed up the url and connectiondriver. regards, roland -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Namens Orion Newsgroup Verzonden: dinsdag 16 april 2002 20:55 Aan: Orion-Interest Onderwerp: how do I setup a datasource for mssql ? Subject: how do I

Re: how do I setup a datasource for mssql ?

2002-04-17 Thread Lachezar Dobrev
Change the url and the driver. You have miswritten them: url=jdbc:microsoft:. connection-driver=com.microsoft.jdbc.sqlserver.SQLServerDriver Lachezar Subject: how do I setup a datasource for mssql 1 2 3 4 5 6 7 8 9 From: alt.cybercafes [EMAIL PROTECTED] === I have tried setting up

how do I setup a datasource for mssql ?

2002-04-16 Thread @Basebeans.com
Subject: how do I setup a datasource for mssql 1 2 3 4 5 6 7 8 9 From: alt.cybercafes [EMAIL PROTECTED] === I have tried setting up my the datasource like the following data-source class=com.evermind.sql.DriverManagerDataSource name=Billing schema=database-schemas/ms-sql.xml

How do I re-deploy my application?

2001-07-13 Thread Tim Kang - Syoni Communications Inc.
I have an EAR, WAR and JAR and I have successfully deployed them. I made a change to a servlet and I have bulid the whole thing again with ANT. At this point how do I redeploy the modified application? (I've tried restarting, and deloying options via admin.jar) Thanks Tim

Re: How do I re-deploy my application?

2001-07-13 Thread Ray Harrison
a change to a servlet and I have bulid the whole thing again with ANT. At this point how do I redeploy the modified application? (I've tried restarting, and deloying options via admin.jar) Thanks Tim _ Tim Kang Database Developer

RE: How do I re-deploy my application?

2001-07-13 Thread Doug Pham
Luck Doug -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Tim Kang - Syoni Communications Inc. Sent: Friday, July 13, 2001 3:49 PM To: Orion-Interest Subject: How do I re-deploy my application? I have an EAR, WAR and JAR and I have successfully deployed

Re: how do I unsubscribe?

2001-06-15 Thread Lachezar Dobrev
Unsubscribe requests should be sent to: [EMAIL PROTECTED]

how do I unsubscribe?

2001-06-14 Thread Bryan Young
I know I sound like a total newbie, but at this point I just don't care. How do I unsubscribe from this list? I tried the web site's unsubscribe (three times over four days) with no luck. The initial message sent when I joined had no useful information.

Re: How do i cache a JSP on the proxy?

2001-06-11 Thread Eduard Witteveen
Kesav Kumar [EMAIL PROTECTED] wrote: Yes. Oscache provides a proxy independent caching solution. This is nice and once can have programtically control over the caching. The only drawback(or good for some one) in the current implementation is all caching is memory based. All the caching is

Re: How do i cache a JSP on the proxy?

2001-06-11 Thread Johan Fredriksson
Title: RE: How do i cache a JSP on the proxy? what about % if ( (System.currentTimeMillis()/1000) % 15 ) counter = 0 ; % That is, you first make sure that the time is rounded down to closest second and see if that is divisable by 15, and then resetting counter Or did I

How do i cache a JSP on the proxy?

2001-06-08 Thread Eduard Witteveen
Hello, I want to cache a jsp page on the proxy (apache). My current setup is that i have apache running on port 80, with following config: VirtualHost 145.58.67.8 ServerName eduard.omroep.nl ServerAlias eduard ErrorLog /var/proxy/logs/errors

RE: How do i cache a JSP on the proxy?

2001-06-08 Thread Kesav Kumar
Title: RE: How do i cache a JSP on the proxy? I think your getLastModified() logic is not proper. You are sending lastmodified time as current time*15 which means the lastmodification time is newer the proxy thinks that this page got changed. Try this logic public long getLastModified

Re: How do i cache a JSP on the proxy?

2001-06-08 Thread Eduard Witteveen
Kesav Kumar [EMAIL PROTECTED] wrote: I think your getLastModified() logic is not proper. You are sending lastmodified time as current time*15 which means the lastmodification time is newer the proxy thinks that this page got changed. Try this logic Your correct, i made a terrible

Re: How do i cache a JSP on the proxy?

2001-06-08 Thread Stan Ng
: Friday, June 08, 2001 7:22 AM Subject: How do i cache a JSP on the proxy? Hello, I want to cache a jsp page on the proxy (apache). My current setup is that i have apache running on port 80, with following config: VirtualHost 145.58.67.8 ServerName eduard.omroep.nl ServerAlias eduard

Re: Application mapping - how do I know it from within the app?

2001-04-18 Thread Johan Fredriksson
PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Tuesday, April 17, 2001 3:45 PM Subject: Re: Application mapping - how do I know it from within the app? Oops, a check of the API would have shown that it is request.getContextPath() anyways. PS All this is in the API, my suggestion

Re: Application mapping - how do I know it from within the app?

2001-04-18 Thread Hani Suleiman
to update orion to run servlet 2.3 spec. Johan - Original Message - From: "Hani Suleiman" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Tuesday, April 17, 2001 3:45 PM Subject: Re: Application mapping - how do I know it from within the app?

Re: Application mapping - how do I know it from within the app?

2001-04-17 Thread Johan Fredriksson
5:30 PM Subject: Re: Application mapping - how do I know it from within the app? pageContext.getServletContext().getContextPath() On Wed, 11 Apr 2001, Johan Fredriksson wrote: I'm using virtual hosts in my development to make sure that all links are correctly set, that is I can access the

Re: Application mapping - how do I know it from within the app?

2001-04-17 Thread Hani Suleiman
().getContextPath(); ^ 1 error - Original Message - From: "Hani Suleiman" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Wednesday, April 11, 2001 5:30 PM Subject: Re: Applicat

Re: Application mapping - how do I know it from within the app?

2001-04-17 Thread Tim Endres
PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Wednesday, April 11, 2001 5:30 PM Subject: Re: Application mapping - how do I know it from within the app? pageContext.getServletContext().getContextPath() On Wed, 11 Apr 2001, Johan Fredriksson wrote: I'm using

Application mapping - how do I know it from within the app?

2001-04-11 Thread Johan Fredriksson
I'm using virtual hosts in my development to make sure that all links are correctly set, that is I can access the same app in two ways, either via appname.localhost or localhost/appname . The problem is that I'm not sure how to figure out on a jsp page which entry point was used, and

Re: Application mapping - how do I know it from within the app?

2001-04-11 Thread Hani Suleiman
pageContext.getServletContext().getContextPath() On Wed, 11 Apr 2001, Johan Fredriksson wrote: I'm using virtual hosts in my development to make sure that all links are correctly set, that is I can access the same app in two ways, either via appname.localhost or localhost/appname

Re: Application mapping - how do I know it from within the app?

2001-04-11 Thread Johan Fredriksson
().indexOf(request.getServletPath())); Which will return the mapping to the root of your application. Johan - Original Message - From: Johan Fredriksson To: Orion-Interest Sent: Wednesday, April 11, 2001 4:59 PM Subject: Application mapping - how do I know it from

RE: Application mapping - how do I know it from within the app?

2001-04-11 Thread elephantwalker
PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Johan FredrikssonSent: Wednesday, April 11, 2001 9:50 AMTo: Orion-InterestSubject: Re: Application mapping - how do I know it from within the app? okey, I fĂ­gured it out... With a little help. I hope this function will appear

RE: Servlet Cache - How do I purge it

2001-02-28 Thread Juan Lorandi (Chile)
$orion\application-deployments\YOUREAR\YOURWAR\persistance kill every file, the orion will recompile HTH, JP -Original Message- From: Paul G. Markovich [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 25, 2001 11:07 PM To: Orion-Interest Subject: Servlet Cache - How do I purge

RE: How do I map a .doc extension to a .jsp execution

2001-02-27 Thread Christian Billen
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Christian Kvalheim Sent: Monday, February 26, 2001 3:31 PM To: Orion-Interest Subject: How do I map a .doc extension to a .jsp execution Hello I have the following problem. We have a certain number of Word documents

RE: How do I map a .doc extension to a .jsp execution

2001-02-27 Thread Jeff Schnitzer
, 2001 5:03 AM To: Orion-Interest Subject: RE: How do I map a .doc extension to a .jsp execution I haven't tried this but try to modify the config/global-web-application.xml and add a mapping for the jsp servlet: servlet-mapping servlet-namejsp/servlet-name

RE: How do I map a .doc extension to a .jsp execution

2001-02-27 Thread Fyffe Carl
PROTECTED]] Sent: Tuesday, February 27, 2001 5:03 AM To: Orion-Interest Subject: RE: How do I map a .doc extension to a .jsp execution I haven't tried this but try to modify the config/global-web-application.xml and add a mapping for the jsp servlet: servlet-mapping servlet

RE: How do I map a .doc extension to a .jsp execution

2001-02-27 Thread Darren Gibbons
PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Fyffe Carl Sent: Tuesday, February 27, 2001 11:18 AM To: Orion-Interest Subject: RE: How do I map a .doc extension to a .jsp execution Guys, I could be wrong here, but you may want to try just setting the mime type that is sent to the browser. I

How do I map a .doc extension to a .jsp execution

2001-02-26 Thread Christian Kvalheim
Hello I have the following problem. We have a certain number of Word documents in out database that we want to output to the browser. Everything is fine, we get the document as a blob from the database and into the jsp variables. However for internet explorer to recognise the file as a word

RE: How do I map a .doc extension to a .jsp execution

2001-02-26 Thread Matt Krevs
2001 7:31 AM To: Orion-Interest Subject: How do I map a .doc extension to a .jsp execution Hello I have the following problem. We have a certain number of Word documents in out database that we want to output to the browser. Everything is fine, we get the document as a blob from the database

RE: How do I map a .doc extension to a .jsp execution

2001-02-26 Thread cybermaster
Christian, In your reponse object you have to set the MIME type (content type) to "application/vnd.ms-word" This might only work with MS Office 2000. You can find more (with some digging) at msdn.microsoft.com Peter

Servlet Cache - How do I purge it

2001-02-25 Thread Paul G. Markovich
Hi, I am using servlets in the orion default web app. My dir: Orion/defaul-web-app/Web-inf/classes/(and then my files) I have the output of my compiler set to the same directory. I start orion like: java -jar orion.jar and I stop orion with a ctrl C I have reloaded my class files and I

RE: Servlet Cache - How do I purge it

2001-02-25 Thread Matt Krevs
1 12:07 PM To: Orion-Interest Subject: Servlet Cache - How do I purge it Hi, I am using servlets in the orion default web app. My dir: Orion/defaul-web-app/Web-inf/classes/(and then my files) I have the output of my compiler set to the same directory. I start orion like: java -jar orion.jar

RE: Servlet Cache - How do I purge it

2001-02-25 Thread cybermaster
Paul, maybe this is the recurring problem in this discussion with browser settings. E.g. in IE5.5 it may reload the cached page unless you set: Tools|Internet Options|Temporary Internet Files|Settings|Check for ... From the default ("Automatically") to: "Every visit to the page" --peter

Re: how do i use EJBUserManager

2001-01-25 Thread Matt Bauer
? It needs to be specified in an ejb-jar.xml file somewhere of course! -mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Matt Bauer Sent: Thursday, January 25, 2001 5:24 AM To: Orion-Interest Subject: how do i use EJBUserManager Orion

RE: how do i use EJBUserManager

2001-01-25 Thread Marcel Schutte
: Thursday, January 25, 2001 3:34 PM To: Orion-Interest Subject: Re: how do i use EJBUserManager Where is the EJBUser bean. I found it in the orion.jar, so am I suppose to just grab the needed classes and but them in my jar, or just place the needed descriptions in my ejb-jar.xml? Matt

how do i use EJBUserManager

2001-01-24 Thread Matt Bauer
Orion is a nice app server, but poor at documentation. I have this for my orion-application.xml file: orion-application user-manager class="com.evermind.ejb.EJBUserManager" property name="home" value="com.evermind.ejb.EJBUser"/ property name="defaultGroups" value="users"/ /user-manager

RE: how do i use EJBUserManager

2001-01-24 Thread Mike Cannon-Brookes
To: Orion-Interest Subject: how do i use EJBUserManager Orion is a nice app server, but poor at documentation. I have this for my orion-application.xml file: orion-application user-manager class="com.evermind.ejb.EJBUserManager" property name="home" value="

RE: how do i deploy ear

2000-11-30 Thread J Davis
30, 2000 12:59 AMTo: Orion-InterestSubject: how do i deploy ear Hi everyBody Ihave already created an B2B.ear file now i want to deploytool it into orion server how do i do that in server.xml i have this application name = "B2B" path="B2B.ear" / and in

database schema mapping and MS SQL Server 7 - does the schema mapping work ? How do I make it work ?

2000-11-22 Thread Somdeth Souvanlasy
Hi, The orionserver site isn't responding today, so I can't check bugzilla to see if this is an outstanding bug. Configuration Orion 1.4.0 Windows 2000 Professional Sun JDK 1.3 MS SQL Server 7 BEA Weblogic MSSQLServer 7 type 4 JDBC drivers version 5.1.0 (evaluation drivers) Situation I'm

SV: database schema mapping and MS SQL Server 7 - does the schema mapping work ? How do I make it work ?

2000-11-22 Thread Klaus . Myrseth
7 - does the schema mapping work ? How do I make it work ? Hi, The orionserver site isn't responding today, so I can't check bugzilla to see if this is an outstanding bug. Configuration Orion 1.4.0 Windows 2000 Professional Sun JDK 1.3 MS SQL Server 7 BEA Weblogic MSSQLServer 7

RE: How do I get the RoleManager?

2000-11-20 Thread Juan Lorandi (Chile)
de 2000 4:40 To: Orion-Interest Subject: How do I get the RoleManager? I can not get the RoleManager. I have tried to use: RoleManager roleMgr = (RoleManager) (new InitialContext()).lookup( "java:comp/RoleManager" ); as I have seen others mention on the mailing list. No matt

How do I get the RoleManager?

2000-11-19 Thread Tim Endres
I can not get the RoleManager. I have tried to use: RoleManager roleMgr = (RoleManager) (new InitialContext()).lookup( "java:comp/RoleManager" ); as I have seen others mention on the mailing list. No matter what I try, I get only the NameNotFoundException. What is the trick to getting

How do I deploy?

2000-11-10 Thread Sharmila Pillai
Hi, I am using JBuilder4 to build an application with 2 seesion beans and a client servlet. Wonder if anyone can help me in deploying this in Orion server? The directory structure looks like this: c:/jbproject/ejb/game - all .java,.class c:/jbproject/ejb/game/META-INF

how do I set redeploy of beans

2000-11-09 Thread Daniel G. Koulomzin
How do I set auto-redeploy of EJB jars on or off? -Dan -- Daniel G. Koulomzin Digital Media On Demand 244 Brighton Ave. 3rd Floor Allston MA 02134

Re: Now how do I explain this? One entity bean, multiple data sources perhaps...

2000-10-31 Thread Robert Krueger
At 17:09 31.10.00 , you wrote: Hiya, Ok. Built Entity bean. Deployed in jar. After some fiddling that is. My situation is this; I have four environments. A "dev", "test", "stage" and snip/ in short: what you really want is not possible. you cannot dynamically associate a cmp entity with a

Now how do I explain this? One entity bean, multiple data sources perhaps...

2000-10-30 Thread Kimberley Scott
Hiya, Ok. Built Entity bean. Deployed in jar. After some fiddling that is. My situation is this; I have four environments. A "dev", "test", "stage" and "production' environments. (Explanation as to why is available on demand. Sigh) Each consists of at least one web server and a database server.

How do I set the number of connections in the db-connectionpool?

2000-10-27 Thread Anders Bohman
OO Anders Bohman OO Team Leader/Programmer Java O http://www.flowinteractive.se tel. 587 19 126 :: mob. 0709 - 480 126

NEWBIE QUESTION: How do I shut this thing down

2000-10-12 Thread Robert Keith
Hi Guys, I have trawled through the docs to try and find a way to shut orion down cleanly, however I can't find the default username and password in order to shut it down. Can you guys let me know what it is? cheers Rob

Re: NEWBIE QUESTION: How do I shut this thing down

2000-10-12 Thread Sven van 't Veer
Robert Keith wrote: Hi Guys, I have trawled through the docs to try and find a way to shut orion down cleanly, however I can't find the default username and password in order to shut it down. Can you guys let me know what it is? cheers Rob I guess it's the one you created with:

Re: NEWBIE QUESTION: How do I shut this thing down

2000-10-12 Thread Miles Daffin
See the 'orion/Readme.txt' (should be renamed to README_FIRST.txt - I missed it for days). Follow the instructions. General ACL stuff is set in /config/principals.xml. * To shutdown:java -jar admin.jar ormi://localhost/ adminID adminPass -shutdown * To restart:java -jar admin.jar

Re: NEWBIE QUESTION: How do I shut this thing down

2000-10-12 Thread Chris Woods
ormi://localhost admin_user admin_password -shutdown Give that a go. (It's _almost_ covered in the FAQ under "How do I restart Orion?") HTH. -- Chris Woods [EMAIL PROTECTED] ICQ #21740987 AIM GnarlyBob69

Re: NEWBIE QUESTION: How do I shut this thing down

2000-10-12 Thread Hitesh Jasani
Robert, Check the principals.xml file in the config directory. In it you should find an entry for the admin user and his password -- see below. users user username="admin" password="123" deactivated="false" descriptionThe default

RE: How do I create a news app user?

2000-08-18 Thread Frank Eggink
Alex, Have a look in the principals.xml file in the config directory. If you remove the 'deactivated=true' properties for admin and user, you will be able to log in using either one of them. Cheers, Frank On Friday, August 18, 2000 9:04 AM, Alex Johnson [SMTP:[EMAIL PROTECTED]] wrote: Hi

RE: How do I create a news app user?

2000-08-18 Thread Alex Johnson
Thanks, that did the trick. I had been playing with the principles.xml file in the actual /news directory and didn't seem to have any luck. Alex --On Friday, August 18, 2000 11:45 AM +0200 Frank Eggink [EMAIL PROTECTED] wrote: Alex, Have a look in the principals.xml file in the config

How do I source code debug

2000-06-29 Thread hanasaki
I have a team with half using JBuilder and half using netbeans. How can these two IDE's be used to source code debug jsp, Servlet and beans in Onion? Onion runs as a separate process and this has be bewildered. Additionally, netbeans has its own jsp engine to further simplify? complicate?

help: How Do I run My JSP Program

2000-05-12 Thread kandasami kumaravel
Hi All! I have created , my custom tags in JSP .WHere Can I Put all my class files,jar jsp files.So I can test the tags. Lesson1: in Jsp ,tells how to create ..but I don't see documentation were to load execute. Please giude me to run my First TAG extension program in JSP using orion.

How do I get an instance of javax.transaction.TransactionManager?

2000-04-05 Thread Alex Paransky
I am trying to interface TOPLink with Orion. The last thing I need to do is get an instance of javax.transaction.TransactionManager. How do I do this in Orion? Thanks. -AP_

How do I?

2000-03-28 Thread Peter Giannopoulos
How do I unsubscribe from the list? Thank you.

Re: How do I read the client digital certificate's info in a servlet ?

2000-03-10 Thread Magnus Stenman
ge - From: "Ariel Aramburu" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Cc: "Magnus Stenman" [EMAIL PROTECTED] Sent: Wednesday, March 08, 2000 5:12 PM Subject: How do I read the client digital certificate's info in a servlet ? Hi !!!

How do I read the client digital certificate's info in a servlet ?

2000-03-08 Thread Ariel Aramburu
Hi !!! I made a test site with Orion 0.9.4 where I inforce double authentication, so that BOTH the client and the server are forced to interchange certificates. I would like to read in the server, that is, orion, the contents of the digital certificate presented. How do I do

RE: How do I tell my Container Managed entity bean which datasourcetouse?

1999-12-25 Thread Mike Cannon-Brookes
a com.evermind.server.ejb.EJBDataSource before so they could be using that. In my EJB work I've only ever needed DefaultXADataSource 2. How do I tell a particular bean to use a different data source? In the bean's deployment descriptor,(bean directory/orion/orion-ejb-jar.xml) there is a datasource tag