Fw: Please help me, How to get Orion's Environment Such as HostName, Port...???

2001-03-20 Thread urey
- Original Message - From: urey To: Larry Velez Sent: Sunday, March 18, 2001 5:40 PM Subject: Re: Please help me, How to get Orion's Environment Such as HostName, Port...??? Hi Larry, It's sorry for my mistake. I want to write some Ejbs, and running them

Re: Please help me, How to get Orion's Environment Such as HostName, Port...???

2001-03-16 Thread waheed_rahuman
; Orion-Interest Sent: Friday, March 16, 2001 6:23 AM Subject: Please help me, How to get Orion's Environment Such as HostName, Port...??? Dear All, When Orion Server was started. Could you please tell me,how to get Orion's environment Such as HostName,Port,Running

Please help me, How to get Orion's Environment Such as HostName, Port...???

2001-03-15 Thread Urey.u
Dear All, When Orion Server was started. Could you please tell me,how to get Orion's environment Such as HostName,Port,Running Pathand so on in my application class file , not applet, servlet or JSP file?. Regards yoursUrey

Please help me, How to get Orion's Environment Such as HostName, Port...???

2001-03-15 Thread urey
Dear All, When Orion Server was started. Could you please tell me,how to get Orion's environment Such as HostName,Port,Running Pathand so on in my application class file , not applet, servlet or JSP file?. Regards yoursUrey

RE: how to set environment properties for an app?

2001-01-09 Thread Tony Wilson
-Interest Subject:RE: how to set environment properties for an app? This is what I originally did, and it works fine if you have just one copy of the app running. What I need to do, though, is run two copies of the app, each one

Re: Globally available environment vars

2001-01-06 Thread Tim Endres
affic from a remote client. - Original Message - From: "Tim Endres" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Friday, January 05, 2001 3:23 PM Subject: RE: Globally available environment vars Are you sure? Seems to me that all you hav

Re: Globally available environment vars

2001-01-06 Thread Reid Hartenbower
gs being read only (and what I'm doing is actually removing an old binding and creating a new one), the result is, in effect, a writable environment variable that I can see from a client. Note that I do this 'inside' the domain (in the app servers JVM, not the client's.) I haven't tried it from th

Globally available environment vars

2001-01-05 Thread John D'Ausilio
that those environment vars are not available (by any naming convention I've been able to think up) in the ejb modules. I can put the env-entry into the deployment descriptor for the bean that needs the value and get access, but that would be too messy for the end-user to be messing with! Anyone have any

RE: Globally available environment vars

2001-01-05 Thread Jason Smith
How about having an initializer bind some property files into JNDI that can then be accessed by the web ejb modules.

RE: Globally available environment vars

2001-01-05 Thread Tim Endres
Are you sure? Seems to me that all you have to do is use the constructor InitialContext( Properties props ) to specify the environment that you wish via the java.naming.provider.url property. In other words, can't a web module just use "ormi://host:port/appname" to get a Context that

how to set environment properties for an app?

2001-01-04 Thread Ari Halberstadt
How do i set env properties for an app? I need to pass in an environment property in some manner to customize a j2ee app so that I can have two (or more) versions of the app running off of the same deployment ear. I looked in orion-application.xml, but there is nothing there. I tried env

Has anyone used RUE to monitor Orion in a production environment?

2000-11-01 Thread Mike Cannon-Brookes
RUE - http://rue.nolimits.ro/ This looks like a very useful tool to monitor Orion in a production environment, has anyone done this? You could monitor things like: - memory usage - open connections - connections in use - status of connections (ie up down full) Has anyone used

RE: ORION running under Solaris Environment

2000-10-26 Thread Drye, Stephen
Solaris Environment Hi David, You can do whatever you want, the hardware requiriments are not very big, and on a development environment normally you won't have a lot of users. You could have the more powerful machine like a main server when all the developments could be tested. Another

ORION running under Solaris Environment

2000-10-25 Thread David Sierra Fernandez
I want to build my development department with Orion under Sun Solaris. I want advise about: * How it should be implemented: one server with Orion inside it and terminals running that instance of Orion or Orion installed in all of the workstations * What are the hardware

Re: ORION running under Solaris Environment

2000-10-25 Thread Ismael Blesa Part
Hi David, You can do whatever you want, the hardware requiriments are not very big, and on a development environment normally you won't have a lot of users. You could have the more powerful machine like a main server when all the developments could be tested. Another possibility is that you

Lookup of Orion-based EJB from Tomcat-based servlet (java:comp/env namespace is only available from within the J2EE environment)

2000-10-04 Thread McLain, Mark
p/env namespace is only available from within the J2EE environment ." A command-line client application run on the same coworker's computer IS able to successfully lookup the same EJB on my computer using the "java:com/env/fungi" String literal. Thi

RE: Lookup of Orion-based EJB from Tomcat-based servlet (java:comp/env namespace is only available from within the J2EE environment)

2000-10-04 Thread Jason Smith
v namespace is only available from within the J2EE environment ." A command-line client application run on the same coworker's computer IS able to successfully lookup the same EJB on my computer using the "java:com/env/fungi" S

RE: Lookup of Orion-based EJB from Tomcat-based servlet (java:comp/env namespace is only available from within the J2EE environment)

2000-10-04 Thread Arved Sandstrom
p/env namespace is only available from within the J2EE environment") NOTE: This is a repost. The message now includes a subject (oops!) and more detail. A coworker and I are trying to create a servlet that will run on his computer under Tomcat. This servlet is attempting to lookup and use a

Re: HTTPSession timeouts in SSL environment

2000-09-01 Thread Jacek Laskowski
Todd McGrath wrote: Perplexed by a problem I'm having: I have a custom login solution that writes a string to a user's HttpSession Object: session.setAttribute("login", new java.util.Date().toString()); In the app, I have a controller servlet that checks for this session attribute

Re: HTTPSession timeouts in SSL environment

2000-09-01 Thread Christian Sell
As far as I remember, there is another difference between sendRedirect() and RequestDispatcher.forward(). I once tested both alternatives, and I found that with forward(), the client never gets to know that he hase been sent to another page, i.e. the URL does not show, the reload button reloads

RE: HTTPSession timeouts in SSL environment

2000-09-01 Thread Magnus Rydin
Title: RE: HTTPSession timeouts in SSL environment Hi Chris, you are right. using a RequestDispatcher only redirects the request on the server side, wihtout informing the client. a sendRedirect() will ask the client to go to another page, thus changing header info and the whole thing

Re: HTTPSession timeouts in SSL environment

2000-09-01 Thread Jacek Laskowski
Christian Sell wrote: As far as I remember, there is another difference between sendRedirect() and RequestDispatcher.forward(). I once tested both alternatives, and I found that with forward(), the client never gets to know that he hase been sent to another page, i.e. the URL does not show,

RE: HTTPSession timeouts in SSL environment

2000-09-01 Thread Todd McGrath
september 2000 11:17 To: Orion-Interest Subject: Re: HTTPSession timeouts in SSL environment As far as I remember, there is another difference between sendRedirect() and RequestDispatcher.forward(). I once tested both alternatives, and I found that with forward(), the cl

HTTPSession timeouts in SSL environment

2000-08-31 Thread Todd McGrath
Perplexed by a problem I'm having: I have a custom login solution that writes a string to a user's HttpSession Object: session.setAttribute("login", new java.util.Date().toString()); In the app, I have a controller servlet that checks for this session attribute with each request:

RE: Setting EJB environment

2000-08-24 Thread Arved Sandstrom
Subject: Setting EJB environment I need to set the environment in the client so that i can receive informations (eg. current user) in my server (ejb, orion-server). what i tried on the clientside is: Hashtable pros = new Hashtable(); pros.put( Context.INITIAL_CONTEXT_FACTORY

ENVIRONMENT

2000-07-19 Thread David Sierra Fernandez
I'm creating a complete web app and I know how to access from my code to env-entry, ejb-ref and resource-ref but I want to know how to access to a: init-param and context-param an the differnces in code between them. I haven't found any reference in J2EE spec nor Servlets esp. Is there any

RE: EntityContext Environment

2000-07-05 Thread pminearo
Thanks, that solved the class cast exception, but I am not getting anything for the EntityContext's environment. I get an empty Hashtable back. I guess a better question would be: To set the principal and credential in the EntityContext's environment, does that have to go through

Re: EntityContext Environment

2000-07-05 Thread Karl Avedal
a ClassCastException. Regards, Karl Avedal [EMAIL PROTECTED] wrote: I am trying to get the EntityContext's environment . Since Sun deprecated the getEnvironment() method. I have to use the JNDI interface. My code looks like this: try { InitialContext ic1 = new InitialContext();

Re: Orion in high load production environment

2000-02-24 Thread Karl Avedal
Hello, Since we don't have any "Orion success stories" on our site yet, I thought I'd name a few of our larger users to give you some idea about who are using Orion. * www.vpro.nl - was described on this list by Daniel Ockeloen * wap.hjemmenett.no - the WAP version of a large norwegian portal.

Re: Orion in high load production environment

2000-02-21 Thread Daniel Ockeloen
ASHWINJM wrote: Hi All, Has anyone here used / is using Orion in production with over 100,000 hits/day? I'm evaluating several products right now, and would like to know this group's opinion on Orion's capabilities as far as load handling goes. Regards, Ashwin Yep, www.vpro.nl has

Re: Orion in high load production environment

2000-02-21 Thread David Sierra Fernandez
Hullo, Orion users: I'd like to know a short description of the hardware used with Orion to get this performance of load handling: number of servers, features of the servers (RAM, cache, processor,... ) OS, DataBase... Thank you very much, special to Daniel Ockeloen. -- Sierr@ -- On